﻿@charset "UTF-8";

/*-----------------
    # Typography
-----------------*/

@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@300;400;500;600;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@300;400;500;600;700&amp;family=Kalam:wght@300;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&amp;display=swap");

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

:root {
    --main-color-one: #10837A;
    --main-color-two: #000565;
    --secondary-color: #053b87;
    --heading-color: #04072E;
    --paragraph-color: #727777;
    --heading-font: "Barlow Semi Condensed", sans-serif;
    --heading-font-02: "Kalam", cursive;
    --body-font: "Roboto", sans-serif;
    --animate-delay: 0.3s;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    font-family: var(--body-font);
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    /* border: 1px solid aqua; */
    -moz-osx-font-smoothing: grayscale;
    /* Firefox */
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
}

body {
    margin: 0;
    color: var(--paragraph-color);
    overflow-x: hidden;
    font-family: var(--body-font);
    font-size: 14px;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-image: linear-gradient(125deg, #4AD295 0%, #5889ce 100%);
    border-radius: 10px;
}

h1 {
    font-size: 48px;
    line-height: 1.0833333333;
}

h2 {
    font-size: 36px;
    line-height: 1.4444444444;
}

h3 {
    font-size: 24px;
    line-height: 1.0833333333;
}

h4 {
    font-size: 20px;
    line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

p {
    color: var(--paragraph-color);
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin-bottom: 10px;
    line-height: 24px;
}

a {
    color: inherit;
    text-decoration: none;
    color: var(--paragraph-color);
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: inherit;
}

pre {
    word-break: break-word;
}

a i {
    padding: 0 2px;
}

img {
    max-width: 100%;
}

ol {
    counter-reset: counter;
    padding-left: 0;
}

ol li {
    list-style: none;
    margin-bottom: 1rem;
}

ol li:before {
    counter-increment: counter;
    content: counter(counter);
    font-weight: 500;
    margin-right: 10px;
}

.table td {
    border: 1px solid #ccc;
}

.btn-clr {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-clr i {
    transition-duration: .3s;
}

.btn-clr[aria-expanded=true] i {
    transform: rotate(180deg);
}


/*input and button type focus outline disable*/

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #ddd;
}

code {
    color: #faa603;
}

.dark-bg {
    background-color: #111d5c;
}

.section-bg-1 {
    background-color: #f4f7fc;
}

.check-list-02 {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list-02 li {
    display: block;
    padding-left: 20px;
    position: relative;
    z-index: 0;
}

.check-list-02 li:after {
    position: absolute;
    left: 0;
    top: 0;
    font-family: "fontawesome";
    content: "";
    color: var(--main-color-one);
}

.error {
    color: #dc3545 !important;
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: block;
    padding-left: 20px;
    position: relative;
    z-index: 0;
}

.check-list li:after {
    position: absolute;
    left: 0;
    top: 0;
    font-family: "fontawesome";
    content: "";
    color: var(--main-color-one);
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    clear: both;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

.comment-navigation .nav-previous>a,
.posts-navigation .nav-previous>a,
.post-navigation .nav-previous>a,
.comment-navigation .nav-next>a,
.posts-navigation .nav-next>a,
.post-navigation .nav-next>a {
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.comment-navigation .nav-previous:hover>a,
.posts-navigation .nav-previous:hover>a,
.post-navigation .nav-previous:hover>a,
.comment-navigation .nav-next:hover>a,
.posts-navigation .nav-next:hover>a,
.post-navigation .nav-next:hover>a {
    color: var(--main-color-one);
}


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/


/* Text meant only for screen readers. */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}


/* Do not show the outline on the skip link target. */

#content[tabindex="-1"]:focus {
    outline: 0;
}


/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/

.padding-left-0 {
    padding-left: 0;
}

.padding-right-0 {
    padding-left: 0;
}

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

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

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-25 {
    padding-top: 25px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-35 {
    padding-top: 35px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-top-45 {
    padding-top: 45px;
}

.padding-top-55 {
    padding-top: 55px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-top-65 {
    padding-top: 65px;
}

.padding-top-70 {
    padding-top: 70px;
}

.padding-top-75 {
    padding-top: 75px;
}

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

.padding-top-85 {
    padding-top: 85px;
}

.padding-top-90 {
    padding-top: 90px;
}

.padding-top-95 {
    padding-top: 95px;
}

.padding-top-100 {
    padding-top: 100px;
}

.padding-top-105 {
    padding-top: 105px;
}

.padding-top-110 {
    padding-top: 110px;
}

.padding-top-115 {
    padding-top: 115px;
}

.padding-top-120 {
    padding-top: 120px;
}

.padding-top-140 {
    padding-top: 140px;
}

.padding-top-150 {
    padding-top: 150px;
}

.padding-top-160 {
    padding-top: 160px;
}

.padding-top-190 {
    padding-top: 190px;
}

.padding-top-200 {
    padding-top: 200px;
}

.padding-top-210 {
    padding-top: 210px;
}

.padding-top-260 {
    padding-top: 260px;
}

.padding-top-310 {
    padding-top: 310px;
}

.padding-top-360 {
    padding-top: 360px;
}

.padding-top-390 {
    padding-top: 390px;
}

.padding-top-400 {
    padding-top: 400px;
}

.padding-top-600 {
    padding-top: 600px;
}

.padding-top-640 {
    padding-top: 640px;
}

.padding-top-720 {
    padding-top: 720px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-15 {
    padding-bottom: 15px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-25 {
    padding-bottom: 25px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-35 {
    padding-bottom: 35px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-bottom-45 {
    padding-bottom: 45px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-bottom-55 {
    padding-bottom: 55px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.padding-bottom-65 {
    padding-bottom: 65px;
}

.padding-bottom-70 {
    padding-bottom: 70px;
}

.padding-bottom-75 {
    padding-bottom: 75px;
}

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

.padding-bottom-85 {
    padding-bottom: 85px;
}

.padding-bottom-90 {
    padding-bottom: 90px;
}

.padding-bottom-95 {
    padding-bottom: 95px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

.padding-bottom-110 {
    padding-bottom: 110px;
}

.padding-bottom-105 {
    padding-bottom: 105px;
}

.padding-bottom-115 {
    padding-bottom: 115px;
}

.padding-bottom-120 {
    padding-bottom: 120px;
}

.padding-bottom-130 {
    padding-bottom: 130px;
}

.padding-bottom-140 {
    padding-bottom: 140px;
}

.padding-bottom-135 {
    padding-bottom: 135px;
}

.padding-bottom-200 {
    padding-bottom: 200px;
}

.padding-bottom-280 {
    padding-bottom: 280px;
}

.padding-bottom-285 {
    padding-bottom: 285px;
}

.padding-bottom-150 {
    padding-bottom: 150px;
}

.padding-bottom-160 {
    padding-bottom: 160px;
}

.padding-bottom-165 {
    padding-bottom: 165px;
}

.padding-bottom-170 {
    padding-bottom: 170px;
}

.padding-bottom-180 {
    padding-bottom: 180px;
}

.padding-bottom-200 {
    padding-bottom: 200px;
}

.padding-bottom-215 {
    padding-bottom: 215px;
}

.padding-bottom-260 {
    padding-bottom: 260px;
}

.padding-bottom-300 {
    padding-bottom: 300px;
}

.padding-bottom-350 {
    padding-bottom: 350px;
}

.padding-bottom-460 {
    padding-bottom: 460px;
}

.margin-top-minus-90 {
    margin-top: -90px;
}

.margin-top-minus-100 {
    margin-top: -100px;
}

.margin-top-120 {
    margin-top: 120px;
}

.margin-top-150 {
    margin-top: 150px;
}

.margin-top-160 {
    margin-top: 160px;
}

.padding-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.padding-110 {
    padding-top: 110px;
    padding-bottom: 110px;
}

.padding-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.padding-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padding-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.padding-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.padding-65 {
    padding-top: 65px;
    padding-bottom: 65px;
}

.padding-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.padding-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.padding-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.padding-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-15 {
    margin-top: 15px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-35 {
    margin-top: 35px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-55 {
    margin-top: 55px;
}

.margin-top-60 {
    margin-top: 60px;
}

.margin-top-70 {
    margin-top: 70px;
}

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

.margin-top-90 {
    margin-top: 90px;
}

.margin-top-100 {
    margin-top: 100px;
}

.margin-bottom-0 {
    margin-bottom: 0px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-25 {
    margin-bottom: 25px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-35 {
    margin-bottom: 35px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.margin-bottom-55 {
    margin-bottom: 55px;
}

.margin-bottom-60 {
    margin-bottom: 60px;
}

.margin-bottom-70 {
    margin-bottom: 70px;
}

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

.margin-bottom-90 {
    margin-bottom: 90px;
}

.margin-bottom-120 {
    margin-bottom: 120px;
}

.margin-bottom-150 {
    margin-bottom: 150px;
}

.margin-top-100 {
    margin-bottom: 100px;
}

.margin-top-110 {
    margin-top: 110px;
}

.margin-top-115 {
    margin-top: 115px;
}

.margin-top-120 {
    margin-top: 120px;
}

.min-height-600 {
    min-height: 600px;
}

.overflow-hidden {
    overflow: hidden;
}


/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft {
    float: left;
    clear: both;
    margin-right: 20px;
}

.alignright {
    float: right;
    clear: both;
    margin-left: 20px;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em;
}

.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.alignwide {
    max-width: 1100px;
}


/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}


/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

.sticky {
    display: block;
}

.updated:not(.published) {
    display: none;
}

.blog-pagination ul li {
    display: inline-block;
}

.blog-pagination ul li+li {
    margin: 0 5px;
}

.blog-pagination ul li {
    display: inline-block;
}

.blog-pagination ul li+li {
    margin: 0 5px;
}

.blog-pagination {
    display: block;
    width: 100%;
}

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

.blog-pagination ul li a,
.blog-pagination ul li span {
    display: block;
    padding: 3px 25px;
    border: 1px solid #e2e2e2;
    line-height: 40px;
    text-align: center;
    font-weight: 600;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.blog-pagination ul li span.current,
.blog-pagination ul li a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}


/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}


/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    max-width: 100%;
}


/* Make sure logo link wraps around logo image. */

.custom-logo-link {
    display: inline-block;
}


/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    clear: both;
}

.wp-caption img[class*=wp-image-] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}


/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}


/*----------------------------------------
    # Unit test
------------------------------------------*/

.wp-link-pages a {
    margin: 0 5px;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.wp-link-pages {
    margin-bottom: 30px;
    margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
    border: 1px solid #e2e2e2;
    padding: 5px 15px;
    display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
    background-color: var(--main-color-one);
    color: #fff;
    border-color: var(--main-color-one);
}

.wp-link-pages span:first-child {
    margin-right: 5px;
}

dl,
ol,
ul {
    padding-left: 15px;
}

.post-password-form input {
    display: block;
    border: 1px solid #e2e2e2;
    height: 50px;
    border-radius: 3px;
    padding: 0 20px;
}

.post-password-form label {
    font-weight: 600;
    color: #333;
}

.post-password-form input[type=submit] {
    width: 100px;
    height: 50px;
    background-color: var(--main-color-one);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.post-password-form input[type=submit]:hover {
    background-color: #121A2F;
}

.footer-widget .table td,
.footer-widget .table th {
    padding: 0.5rem !important;
}


/*---------------------------------------
    ## Button
---------------------------------------*/

.btn-wrapper {
    display: block;
}

.btn-wrapper.administration {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.btn-wrapper.poll-btn {
    position: fixed;
    top: 50%;
    right: -2.5%;
    z-index: 2;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.btn-wrapper.vote-btn {
    margin-top: 38px;
}

.btn-wrapper .boxed-btn {
    background-color: var(--secondary-color);
    color: #fff;
    display: inline-block;
    padding: 17px 27px;
    border-radius: 5px;
    text-transform: capitalize;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    font-weight: 600;
}

.btn-wrapper .boxed-btn.btn-sanatory {
    background-color: var(--main-color-one);
    text-transform: uppercase;
    -webkit-box-shadow: 0 7px 20px rgb(74 210 149 / .5);
    box-shadow: 0 7px 20px rgb(74 210 149 / .5);
}

.btn-wrapper .boxed-btn.btn-sanatory .icon-paper-plan {
    margin-left: 5px;
}

.btn-wrapper .boxed-btn.btn-sanatory:hover {
    background-color: var(--secondary-color);
    -webkit-box-shadow: 0 7px 20px rgba(14, 17, 90, 0.3);
    box-shadow: 0 7px 20px rgba(14, 17, 90, 0.3);
}

.btn-wrapper .boxed-btn.btn-sanatory.style-01 {
    background-color: transparent;
    color: var(--main-color-one);
    border: 2px solid var(--main-color-one);
    -webkit-box-shadow: none;
    box-shadow: none;
    text-transform: capitalize;
}

.btn-wrapper .boxed-btn.btn-sanatory.style-01.reverse {
    color: #fff;
    border-color: #fff;
}

.btn-wrapper .boxed-btn.btn-sanatory.style-01.reverse:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--main-color-one);
}

.btn-wrapper .boxed-btn.btn-sanatory.style-01 i {
    margin-right: 10px;
    margin-left: 0;
}

.btn-wrapper .boxed-btn.btn-sanatory.style-01 .fa-chevron-right {
    margin-left: 10px;
    margin-right: 0px;
}

.btn-wrapper .boxed-btn.btn-sanatory.style-01:hover {
    background-color: var(--main-color-one);
    border-color: var(--main-color-one);
    color: #fff;
}

.btn-wrapper .boxed-btn.btn-sanatory.style-02 {
    background-color: transparent;
    color: var(--heading-color);
    border: 2px solid var(--heading-color);
    -webkit-box-shadow: none;
    box-shadow: none;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 700;
}

.btn-wrapper .boxed-btn.btn-sanatory.style-02 i {
    margin-right: 10px;
    margin-left: 0;
}

.btn-wrapper .boxed-btn.btn-sanatory.style-02:hover {
    background-color: var(--heading-color);
    border-color: var(--heading-color);
    color: #fff;
}

.btn-wrapper .boxed-btn.btn-sanatory.style-03 {
    background-color: var(--heading-color);
    width: 100%;
    padding-top: 14px;
    border: 1px solid var(--heading-color);
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.btn-wrapper .boxed-btn.btn-sanatory.style-03:hover {
    background: transparent;
    border: 1px solid #fff;
}

.btn-wrapper .boxed-btn.btn-sanatory.volunteer {
    padding: 17px 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-wrapper .boxed-btn.btn-sanatory.volunteer i {
    margin-right: 12px;
}

.btn-wrapper .boxed-btn.btn-poll {
    background-color: var(--main-color-one);
    text-transform: uppercase;
    padding: 21px 27px;
}

.btn-wrapper .boxed-btn.btn-poll:hover {
    background-color: var(--main-color-one);
}

.btn-wrapper .boxed-btn:hover {
    background-color: var(--secondary-color);
}

.btn-wrapper .boxed-btn.btn-rounded {
    border-radius: 30px;
}

.btn-wrapper .boxed-btn.reverse-color {
    background-color: var(--main-color-two);
}

.btn-wrapper .boxed-btn.reverse-color:hover {
    background-color: var(--main-color-one);
}

.btn-wrapper .boxed-btn.political-btn {
    background-color: #fff;
    color: var(--main-color-one);
    padding: 14px 30px;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.btn-wrapper .boxed-btn.political-btn i {
    margin-left: 10px;
}

.btn-wrapper .boxed-btn.political-btn.style-01 {
    padding: 15px 60px;
    border-radius: 4px;
    outline: none;
    border: none;
}

.btn-wrapper .boxed-btn.political-btn.style-01:hover {
    background: var(--heading-color);
}

.btn-wrapper .boxed-btn.political-btn:hover {
    background: var(--main-color-one);
    color: #fff;
}

.btn-wrapper .boxed-btn.event-btn {
    background: transparent;
    color: var(--main-color-one);
    padding: 0;
    font-size: 18px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 700;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.btn-wrapper .boxed-btn.event-btn:hover {
    margin-left: 8px;
}

.btn-wrapper .boxed-btn.event-btn i {
    font-size: 18px;
    margin-right: 12px;
}

.close-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 60px;
    height: 60px;
    color: #fff;
    border-color: var(--main-color-one);
    background-color: var(--main-color-one);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    padding: 0;
    text-align: center;
    border: none;
}

.close-btn:focus {
    outline: none;
}

.desktop-center {
    text-align: center;
}

.desktop-left {
    text-align: left;
}

.desktop-right {
    text-align: right;
}

@media only screen and (max-width: 768px) {
    .tablet-center {
        text-align: center;
    }
    .tablet-left {
        text-align: left;
    }
    .tablet-right {
        text-align: right;
    }
}

@media only screen and (max-width: 414px) {
    .mobile-center {
        text-align: center;
    }
    .mobile-left {
        text-align: left;
    }
    .mobile-right {
        text-align: right;
    }
}


/*---------------------------------------
    ## Back Top
---------------------------------------*/

.back-to-top {
    position: fixed;
    right: 90px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    z-index: 99;
    font-size: 25px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 5px rgba(15 80 15 / 0.5);
    ;
    box-shadow: 0 0 5px rgba(15 80 15 / 0.5);
    ;
    display: none;
}

.Wahts_app {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    z-index: 99;
    font-size: 25px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 5px rgba(15 80 15 / 0.5);
    box-shadow: 0 0 5px rgba(15 80 15 / 0.5);
}

.enquary-btn-mdl {
    position: fixed;
    right: 30px;
    bottom: 90px;
    width: 50px;
    height: 50px;
    background: #EE1C25;
    color: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    z-index: 999;
    font-size: 20px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 5px rgba(15 80 15 / 0.5);
    box-shadow: 0 0 5px rgba(15 80 15 / 0.5);
}

.enquary-btn-mdl span {
    position: relative;
}

.enquary-btn-mdl span .en-Mssg {
    position: absolute;
    right: 0;
    top: -62px;
    padding: 8px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 14px;
}

.EnqMsg {
    right: 20px;
    width: 200px;
    bottom: 151px;
    opacity: 1;
    font-size: 14px;
    position: fixed;
    z-index: 999;
    color: #000;
    padding: 12px;
    text-align: left;
    background: #fff;
    line-height: 1.5;
    border: 1px solid #eee;
    transition: all .8s ease-in-out;
    -webkit-transition: all .8s ease-in-out;
    -moz-transition: all .8s ease-in-out;
    -ms-transition: all .8s ease-in-out;
    -o-transition: all .8s ease-in-out;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.croSS {
    cursor: pointer;
    position: absolute;
    z-index: 999;
    top: -15px;
    left: -15px;
    color: #000;
    background-color: #fff;
    border-radius: 50%;
    font-size: 25px;
}

.modal-content {
    background-color: #1B54A6;
}

.modal-title {
    color: #fff;
    opacity: 1;
}

.close {
    color: #fff;
    opacity: 1;
}

.video-section.style-02 {
    margin-bottom: 80px;
}

.video-play {
    color: #233d62;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.video-play::after {
    content: "";
    position: absolute;
    left: 29%;
    top: -130%;
    z-index: -1;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    border: 1px solid var(--main-color-one);
    border-radius: 50%;
    -webkit-animation: pulse-video 1500ms ease-out infinite;
    animation: pulse-video 1500ms ease-out infinite;
}

.video-play i {
    background: var(--main-color-one);
    height: 45px;
    width: 45px;
    line-height: 45px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    margin-left: 40px;
    margin-right: 10px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.video-play.style-01 {
    font-size: 20px;
}

.video-play.style-01::after {
    left: 19%;
    top: -177%;
    z-index: -1;
    width: 110px;
    height: 110px;
    line-height: 110px;
    border-color: #fff;
}

.video-play.style-01 i {
    height: 80px;
    width: 80px;
    line-height: 80px;
}

.video-play.style-02:hover i {
    border-color: red;
    color: red;
}

.video-play.style-02 i {
    background: transparent;
    height: 95px;
    width: 95px;
    line-height: 95px;
    border: 2px solid #fff;
    border-radius: 4px;
    margin-left: 0;
    font-size: 24px;
}

.video-play.style-02::after {
    display: none;
}

.video-play.style-03 i {
    width: 146px;
    height: 146px;
    line-height: 146px;
    font-size: 35px;
}

.video-play.style-03::after {
    left: 17%;
    top: -410%;
    width: 160px;
    height: 160px;
    line-height: 160px;
    border: 1px solid #fff;
}

.video-play.style-04 i {
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 16px;
    color: var(--main-color-one);
    background: #fff;
}

.video-play.style-04 span {
    font-size: 16px;
    line-height: 21px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: #373737;
}

.video-play.style-04::after {
    content: none;
}

.video-play.style-05 i {
    margin-left: 0;
    margin-right: 0;
}

.video-play.style-05::after {
    left: -15px;
}

.video-popup {
    color: #233d62;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.video-popup::after {
    content: "";
    position: absolute;
    left: 23%;
    top: -222%;
    z-index: -1;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: rgba(221, 19, 26, 0.4);
    border-radius: 50%;
    -webkit-animation: pulse-video-02 2000ms ease-out infinite;
    animation: pulse-video-02 2000ms ease-out infinite;
}

.video-popup::before {
    content: "";
    position: absolute;
    left: 16%;
    top: -275%;
    z-index: -1;
    width: 120px;
    height: 120px;
    line-height: 120px;
    background: rgba(221, 19, 26, 0.2);
    border-radius: 50%;
    -webkit-animation: pulse-video-02 2000ms ease-out infinite;
    animation: pulse-video-02 2000ms ease-out infinite;
}

.video-popup i {
    background: var(--main-color-one);
    width: 78px;
    height: 78px;
    line-height: 78px;
    font-size: 20px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    margin-left: 40px;
    margin-right: 10px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

@-webkit-keyframes pulse-video {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-video {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes pulse-video-02 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-video-02 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}


/*------------------------------
    Testimonial Item
-----------------------------*/

.single-testimonial-item {
    position: relative;
    background-color: #fff;
    border: 3px solid rgba(221, 19, 26, 0.21);
    padding: 35px 30px;
    border-radius: 10px 5px 5px 5px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    margin-bottom: 50px;
}

.single-testimonial-item:hover {
    background-color: var(--main-color-one);
    border-color: 0;
    -webkit-box-shadow: 0px 12px 40px rgba(221, 19, 26, 0.45);
    box-shadow: 0px 12px 40px rgba(221, 19, 26, 0.45);
}

.single-testimonial-item:hover .testimonial-carousel .owl-nav {
    visibility: visible;
}

.single-testimonial-item:hover .icon span {
    color: #fff;
}

.single-testimonial-item:hover .content .title {
    color: #fff;
}

.single-testimonial-item:hover .content .description {
    color: #fff;
}

.single-testimonial-item .content .title {
    font-size: 24px;
    line-height: 32px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #04072E;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.single-testimonial-item .content .description {
    font-size: 16px;
    line-height: 28px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #04072E;
    margin-bottom: 0;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.single-testimonial-item .shape-01 {
    position: absolute;
    top: -3px;
    max-width: 137px;
    right: -3px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.single-testimonial-item .icon {
    margin-bottom: 10px;
}

.single-testimonial-item .icon span {
    color: var(--main-color-one);
    font-size: 66px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.single-testimonial-item-02 {
    position: relative;
    background-color: #fff;
    border: 2px solid rgba(221, 19, 26, 0.12);
    border-radius: 10px;
    padding: 40px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    margin-bottom: 50px;
    z-index: 0;
    overflow: hidden;
    height: 335px;
}

.single-testimonial-item-02:hover {
    -webkit-box-shadow: 0px 10px 30px rgba(221, 19, 26, 0.15);
    box-shadow: 0px 10px 30px rgba(221, 19, 26, 0.15);
}

.single-testimonial-item-02:hover .shape-01 {
    opacity: 1;
    visibility: visible;
}

.single-testimonial-item-02 .content .title {
    font-size: 24px;
    line-height: 32px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #04072E;
    margin-bottom: 25px;
}

.single-testimonial-item-02 .shape-01 {
    position: absolute;
    top: -3px;
    max-width: 137px;
    right: -30px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    opacity: 0;
    visibility: hidden;
}

.single-testimonial-item-02 .icon.style-01 {
    margin-bottom: 18px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: transparent linear-gradient(215deg, #FEEDF0 0%, #FFFFFF 100%);
    border-radius: 50%;
    font-size: 36px;
    color: var(--main-color-one);
    margin-right: 20px;
    position: relative;
}

.single-testimonial-item-02 .icon.style-01::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='100' ry='100' stroke='%23CCCCCCFF' stroke-width='2' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 100px;
    top: -8px;
    left: 8px;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.testimonial-carousel .owl-nav {
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    opacity: 0;
}

.testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    color: var(--main-color-one);
    font-size: 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0 12px 20px rgba(74, 210, 149, 0.24);
    box-shadow: 0 12px 20px rgba(74, 210, 149, 0.24);
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.testimonial-carousel .owl-nav .owl-prev:hover {
    color: #fff;
    background: var(--main-color-one);
}

.testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    right: -35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    color: var(--main-color-one);
    font-size: 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0 12px 20px rgba(74, 210, 149, 0.24);
    box-shadow: 0 12px 20px rgba(74, 210, 149, 0.24);
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.testimonial-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background: var(--main-color-one);
}

.testimonial-carousel:hover .owl-nav {
    opacity: 1;
}

.party-single-item.vision .content .icon {
    margin-top: 5px;
}

.party-single-item.vision .content .icon i {
    color: var(--main-color-one);
}

.party-single-item.style-01 .content .subtitle p {
    color: #fff;
}

.party-single-item.style-01 .content .title {
    color: #fff;
    margin-bottom: 20px;
}

.party-single-item.style-01 .content .description {
    color: #fff;
}

.party-single-item.style-02 .content .subtitle p {
    color: #fff;
}

.party-single-item.style-02 .content .subtitle .icon {
    margin-top: 5px;
}

.party-single-item.style-02 .content .subtitle .icon i {
    font-size: 12px;
    color: #fff;
}

.party-single-item.style-02 .content .title {
    font-size: 40px;
    line-height: 55px;
    font-family: var(--heading-color);
    font-weight: 700;
    color: #fff;
}

.party-single-item.style-02 .content .quotes .description {
    font-size: 20px;
    line-height: 35px;
    font-weight: 400;
    font-family: var(--body-font);
    color: #fff;
    max-width: 890px;
    margin-bottom: 20px;
}

.party-single-item.style-02 .content .quotes i {
    font-size: 64px;
    color: #fff;
    position: absolute;
    right: 4%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.party-single-item.party-member {
    margin-bottom: 50px;
}

.party-single-item.party-member p {
    font-size: 18px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 500;
}

.party-single-item .content .subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.party-single-item .content .subtitle p {
    font-size: 20px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    margin-right: 10px;
}

.party-single-item .content .subtitle .icon {
    margin-top: 5px;
}

.party-single-item .content .subtitle .icon i {
    font-size: 10px;
    color: var(--main-color-one);
    margin-right: 5px;
}

.party-single-item .content .subtitle .icon i:last-child {
    margin-right: 0;
}

.party-single-item .content .title {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 25px;
}

.party-single-item .content .title.style-01 {
    line-height: 55px;
    font-size: 30px;
}

.party-single-item .content .description {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 25px;
    max-width: 510px;
}

.party-single-item .content .description.style-01 {
    max-width: 560px;
}

.party-single-item .content .feedback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.party-single-item .content .feedback span {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--main-color-one);
    margin-right: 20px;
}

.party-single-item .content .feedback p {
    font-size: 16px;
    line-height: 23px;
    font-family: var(--body-font);
    font-weight: 700;
    max-width: 172px;
    color: var(--main-color-one);
    margin-bottom: 0;
}

.party-single-item .content .vision-quotes {
    background: #fff;
    padding: 20px 35px;
    border-left: 5px solid var(--main-color-one);
    position: relative;
    max-width: 520px;
}

.party-single-item .content .vision-quotes .title {
    font-size: 22px;
    line-height: 35px;
    font-family: var(--body-font);
    font-weight: 500;
    max-width: 445px;
    margin-bottom: 0;
}

.party-single-item .content .vision-quotes .icon {
    position: absolute;
    top: 40%;
    right: 9%;
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
}

.party-single-item .content .author-meta {
    margin-bottom: 30px;
}

.party-single-item .content .author-meta .author-name {
    font-size: 16px;
    line-height: 35px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #fff;
}

.party-single-item .content .author-meta .line {
    display: inline-block;
    width: 80px;
    height: 2px;
    background: #fff;
    margin-bottom: 3px;
    margin-left: 10px;
}

.party-single-item .content .quotes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.section-title {
    margin-bottom: 60px;
}

.section-title .subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 15px;
}

.section-title .subtitle p {
    font-size: 20px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
    margin-right: 10px;
}

.section-title .subtitle .icon {
    margin-right: 10px;
    margin-top: 5px;
}

.section-title .subtitle .icon span {
    font-size: 12px;
    color: var(--main-color-one);
    margin-right: 5px;
}

.section-title .subtitle .icon span:last-child {
    margin-right: 0;
}

.section-title .title {
    font-size: 40px;
    line-height: 55px;
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.section-title .title.style-01 {
    text-align: left;
    color: #fff;
    margin-bottom: 13px;
}

.section-title .title.style-02 {
    text-align: left;
}

.section-title .description {
    font-size: 18px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 500;
    color: #4F4F6B;
    text-align: center;
}

.section-title .description.style-01 {
    font-size: 16px;
    line-height: 21px;
    color: #fff;
    font-weight: 400;
    text-align: left;
}

.section-title .description.style-02 {
    text-align: left;
}

.top-rated-title .title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 45px;
}

.counter-single-item {
    position: absolute;
    bottom: 60px;
    left: 30px;
}

.counter-single-item.style-01 {
    left: 50px;
}

.counter-single-item.style-02 {
    bottom: 15px;
}

.counter-single-item .counter-item {
    display: inline-block;
    width: 130px;
    height: 130px;
    padding-top: 15px;
    background-color: transparent;
    margin-right: 15px;
    border: 1px solid #fff;
    border-radius: 5px;
}

.counter-single-item .counter-item:last-child {
    margin-right: 0;
}

.counter-single-item .counter-item span {
    text-align: center;
    display: block;
    line-height: 55px;
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 14px;
    color: #fff;
}

.counter-single-item .counter-item h6 {
    color: var(--heading-color);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    background: #fff;
    padding: 8px;
    border-radius: 0px 0px 5px 5px;
}

.campaign-list-item {
    padding: 38px 50px 30px 20px;
}

.campaign-list-item .list-single-items {
    margin-bottom: 30px;
    padding-bottom: 30px;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    border-bottom: 1px dashed #CFCFCF;
}

.campaign-list-item .list-single-items:last-child {
    margin: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.campaign-list-item .list-single-items.active {
    background: var(--main-color-one);
    border-radius: 10px;
}

.campaign-list-item .list-single-items.active .content .designation .event {
    background: #fff;
    color: var(--main-color-one);
}

.campaign-list-item .list-single-items.active .content .designation .date {
    color: #fff;
}

.campaign-list-item .list-single-items.active .content .title {
    color: #fff;
}

.campaign-list-item .list-single-items.active .content p {
    color: #fff;
}

.campaign-list-item .list-single-items .content .designation {
    margin-bottom: 20px;
}

.campaign-list-item .list-single-items .content .designation .event {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #fff;
    background: var(--main-color-one);
    padding: 5px 15px;
    border-radius: 5px;
    margin-right: 30px;
}

.campaign-list-item .list-single-items .content .designation .date {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #828282;
}

.campaign-list-item .list-single-items .content .title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    font-family: var(--body-font);
    margin-bottom: 15px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.campaign-list-item .list-single-items .content .title:hover {
    color: var(--main-color-one);
}

.campaign-list-item .list-single-items .content p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 0px;
}

.campaign-list-item .list-single-items .content p.style-01 {
    margin-bottom: 0;
}

.campaign-list-item-02 {
    padding: 30px 40px 15px 40px;
    border: 1px dashed #D2D2D2;
    border-radius: 10px;
}

.campaign-list-item-02 .list-single-items {
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    margin-bottom: 30px;
}

.campaign-list-item-02 .list-single-items:last-child {
    margin: 0;
    border-bottom: 0;
}

.campaign-list-item-02 .list-single-items.active {
    background: var(--main-color-one);
    border-radius: 10px;
    padding: 20px 18px;
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.campaign-list-item-02 .list-single-items.active .content .designation .event {
    background: #fff;
    color: var(--main-color-one);
}

.campaign-list-item-02 .list-single-items.active .content .designation .date {
    color: #fff;
}

.campaign-list-item-02 .list-single-items.active .content .title {
    color: #fff;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.campaign-list-item-02 .list-single-items.active .content .title:hover {
    color: #ffff;
}

.campaign-list-item-02 .list-single-items.active .content p {
    color: #fff;
}

.campaign-list-item-02 .list-single-items .content .designation {
    margin-bottom: 18px;
}

.campaign-list-item-02 .list-single-items .content .designation .event {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #fff;
    background: var(--main-color-one);
    padding: 5px 15px;
    border-radius: 5px;
    margin-right: 30px;
}

.campaign-list-item-02 .list-single-items .content .designation .date {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #828282;
}

.campaign-list-item-02 .list-single-items .content .title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--body-font);
    margin-bottom: 14px;
    cursor: pointer;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.campaign-list-item-02 .list-single-items .content .title:hover {
    color: var(--main-color-one);
}

.campaign-list-item-02 .list-single-items .content p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

.testimonial-carousel-two .owl-item.center .volunteer-single-items {
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    min-height: 440px;
    overflow: visible;
    border: 1px solid var(--main-color-one);
    padding: 10px;
    -webkit-box-shadow: 0px 13px 26px rgba(221, 19, 26, 0.2);
    box-shadow: 0px 13px 26px rgba(221, 19, 26, 0.2);
}

.testimonial-carousel-two .owl-item.center .volunteer-single-items .content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.volunteer-section-area {
    margin-top: 75px;
}

.volunteer-section-area.style-01 {
    margin-top: 120px;
}

.volunteer-section-area.style-02 {
    margin-top: 116px;
}

.volunteer-section-area.style-03 {
    margin-top: 106px;
}

.testimonial-carousel-two .owl-nav .owl-next {
    position: absolute;
    top: -105px;
    left: 80%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    color: var(--main-color-one);
    font-size: 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0 7px 20px rgba(221, 19, 26, 0.24);
    box-shadow: 0 7px 20px rgba(221, 19, 26, 0.24);
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.testimonial-carousel-two .owl-nav .owl-next:hover {
    background: var(--main-color-one);
    color: #fff;
}

.testimonial-carousel-two .owl-nav .owl-prev {
    position: absolute;
    top: -105px;
    right: 80%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    color: var(--main-color-one);
    font-size: 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0 7px 20px rgba(221, 19, 26, 0.24);
    box-shadow: 0 7px 20px rgba(221, 19, 26, 0.24);
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.testimonial-carousel-two .owl-nav .owl-prev:hover {
    background: var(--main-color-one);
    color: #fff;
}

.volunteer-single-items {
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    padding-bottom: 0px;
    border-radius: 10px;
    -webkit-transition: height 0.7s all;
    transition: height 0.7s all;
    margin-bottom: 30px;
    border: 1px solid #fff;
    min-height: 280px;
    overflow: hidden;
}

.volunteer-single-items:hover {
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    min-height: 441px;
    overflow: visible;
    border: 1px solid red;
    padding: 10px;
    -webkit-box-shadow: 0px 13px 26px rgba(221, 19, 26, 0.2);
    box-shadow: 0px 13px 26px rgba(221, 19, 26, 0.2);
}

.volunteer-single-items:hover .content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.volunteer-single-items .thum img {
    border-radius: 10px;
    width: 100%;
}

.volunteer-single-items .content {
    text-align: center;
    padding-top: 45px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
    visibility: hidden;
}

.volunteer-single-items .content .author-meta .author-name {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--body-font);
    color: var(--heading-color);
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.volunteer-single-items .content .author-meta .designation {
    font-size: 16px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
    margin-top: 10px;
    margin-bottom: 23px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.volunteer-single-items .content .social-links {
    margin-bottom: -22px;
    position: relative;
    z-index: 99;
}

.volunteer-single-items .content .social-links i {
    width: 32px;
    height: 32px;
    border: 1px solid var(--main-color-one);
    line-height: 32px;
    text-align: center;
    margin-right: 10px;
    font-size: 15px;
    color: var(--main-color-one);
    border-radius: 5px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    background-color: #fff;
    position: relative;
}

.volunteer-single-items .content .social-links i+i::after {
    content: "";
    position: absolute;
    top: 15px;
    left: -15px;
    width: 14px;
    height: 1px;
    background: #fff;
}

.volunteer-single-items .content .social-links i:hover {
    background: var(--main-color-one);
    color: #fff;
}

.volunteer-single-items .content .social-links i:last-child {
    margin-right: 0;
}

.volunteer-single-items-02 {
    position: relative;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    position: relative;
    padding-bottom: 0px;
    border-radius: 10px;
    -webkit-transition: height 0.7s all;
    transition: height 0.7s all;
    margin-bottom: 30px;
    margin-right: 30px;
    border: 1px solid #fff;
    height: 280px;
    overflow: hidden;
}

.volunteer-single-items-02:hover {
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    height: 430px;
    overflow: visible;
    border: 1px solid red;
    padding: 10px;
    -webkit-box-shadow: 0px 13px 26px rgba(221, 19, 26, 0.2);
    box-shadow: 0px 13px 26px rgba(221, 19, 26, 0.2);
}

.volunteer-single-items-02:hover .content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.volunteer-single-items-02 .thum img {
    border-radius: 10px;
    width: 100%;
}

.volunteer-single-items-02 .content {
    text-align: center;
    padding-top: 45px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
    visibility: hidden;
}

.volunteer-single-items-02 .content .author-meta .author-name {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--body-font);
    color: var(--heading-color);
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.volunteer-single-items-02 .content .author-meta .designation {
    font-size: 16px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
    margin-top: 10px;
    margin-bottom: 23px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.volunteer-single-items-02 .content .social-links {
    margin-bottom: -22px;
    position: relative;
    z-index: 99;
}

.volunteer-single-items-02 .content .social-links i {
    width: 32px;
    height: 32px;
    border: 1px solid var(--main-color-one);
    line-height: 32px;
    text-align: center;
    margin-right: 10px;
    font-size: 15px;
    color: var(--main-color-one);
    border-radius: 5px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    background-color: #fff;
    position: relative;
}

.volunteer-single-items-02 .content .social-links i+i::after {
    content: "";
    position: absolute;
    top: 15px;
    left: -15px;
    width: 14px;
    height: 1px;
    background: #fff;
}

.volunteer-single-items-02 .content .social-links i:hover {
    background: var(--main-color-one);
    color: #fff;
}

.volunteer-single-items-02 .content .social-links i:last-child {
    margin-right: 0;
}

.team-section-area {
    margin-top: 106px;
}

.team-section-area .team-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.team-section-area .team-wrapper .team {
    width: 33.33%;
}


/*----------------------------
    Counterup Item
----------------------------*/

.counter-section-area {
    position: relative;
    margin-top: 75px;
}

.counter-section-area.style-01 {
    margin-top: 120px;
}

.counter-section-area.style-02 {
    margin-top: 105px;
}

.counter-section-area.bg-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 120px 0px;
}

.counter-section-area .counter-shape {
    position: absolute;
    top: 0px;
    left: 31%;
    opacity: 0.1;
}

.counter-section-area .counter-shape.style-01 {
    top: 0;
    left: -1%;
}

.counter-section-area .counter-shape-01 {
    position: absolute;
    top: 0px;
    left: 34%;
    opacity: 0.1;
}

.counter-section-area .counter-shape-01.style-01 {
    top: 0;
    left: 2%;
}

.counter-section-area .counter-shape-02 {
    position: absolute;
    bottom: 0;
    right: 30%;
    opacity: 0.1;
}

.counter-section-area .counter-shape-02.style-01 {
    bottom: 0;
    right: -1%;
}

.counter-section-area .counter-shape-03 {
    position: absolute;
    bottom: 0;
    right: 33%;
    opacity: 0.1;
}

.counter-section-area .counter-shape-03.style-01 {
    bottom: 0;
    right: 2%;
}

.counter-section-inner {
    background: #fff;
    -webkit-box-shadow: 0px 12px 40px rgba(221, 19, 26, 0.28);
    box-shadow: 0px 12px 40px rgba(221, 19, 26, 0.28);
    padding: 60px;
    border-radius: 10px;
}

.counter-section-inner.political {
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.counter-item-list li {
    width: calc(100% / 3);
}

.counter-item-list li+li {
    border-left: 1px solid #a8aab1;
}

.single-counterup-01 {
    text-align: center;
    border-right: 1px dashed #AAAAAA;
}

.single-counterup-01.style-01 {
    border-right: 0;
}

.single-counterup-01 .content .title {
    font-size: 20px;
    line-height: 26px;
    color: var(--heading-color);
    font-family: var(--body-font);
    font-weight: 500;
}

.single-counterup-01 .content .count-wrap {
    font-size: 65px;
    line-height: 55px;
    font-weight: 700;
    color: var(--main-color-one);
    font-family: var(--heading-font);
    margin-bottom: 15px;
}

.single-counterup-02 {
    text-align: center;
    background: #fff;
    -webkit-box-shadow: 0px 12px 30px rgba(221, 19, 26, 0.12);
    box-shadow: 0px 12px 30px rgba(221, 19, 26, 0.12);
    padding: 42px 42px;
    border-radius: 10px;
    position: relative;
}

.single-counterup-02.style-01::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 127px;
    border-radius: 0px 3px 3px 0px;
    background-color: var(--main-color-one);
}

.single-counterup-02.style-02::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 127px;
    border-radius: 3px 0px 0px 3px;
    background-color: var(--main-color-one);
}

.single-counterup-02 .content .title {
    font-size: 20px;
    line-height: 26px;
    color: var(--heading-color);
    font-family: var(--body-font);
    font-weight: 500;
}

.single-counterup-02 .content .count-wrap {
    font-size: 65px;
    line-height: 55px;
    font-weight: 700;
    color: var(--main-color-one);
    font-family: var(--heading-font);
    margin-bottom: 15px;
}

.news-section-start {
    margin-top: 116px;
}

.news-section-start.home-three {
    background: #F8F8FF;
    padding: 115px 0px 92px 0px;
}

.our-speeches-section {
    margin-top: 106px;
}

.news-single-items {
    margin-bottom: 30px;
    display: block;
}

.news-single-items.style-01 {
    position: relative;
    z-index: 0;
}

.news-single-items.style-01 .tropics .date {
    position: absolute;
    font-size: 14px;
    line-height: 32px;
    font-weight: 400;
    font-family: var(--body-font);
    color: #fff;
    top: 25px;
    right: 20px;
}

.news-single-items.style-01 .content {
    bottom: 60px;
}

.news-single-items .news-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 425px;
    width: 100%;
    position: relative;
    border-radius: 10px;
}

.news-single-items .news-bg.speeches-bg::before {
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#04072E00), to(#04072E));
    background: transparent linear-gradient(180deg, #04072E00 0%, #04072E 100%);
}

.news-single-items .news-bg::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(4, 7, 46, 0)), to(#04072e));
    background: linear-gradient(180deg, rgba(4, 7, 46, 0) 50%, #04072e 100%);
    border-radius: 10px;
    z-index: 1;
}


/* blog img start */

.news-single-items .news-bg img {
    object-fit: cover;
    height: 100%;
    position: absolute;
}


/* blog img end */

.news-single-items .even {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #fff;
    background: var(--main-color-one);
    padding: 0px 15px;
    border-radius: 5px;
    position: absolute;
    left: 20px;
    top: 25px;
}

.news-single-items .content {
    position: absolute;
    bottom: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 0px 30px;
    z-index: 2;
}

.news-single-items .content .title {
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
    font-family: var(--body-font);
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.news-single-items .content .title:hover {
    color: var(--main-color-one);
}

.news-single-items .content .author-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.news-single-items .content .author-meta .author-name {
    font-size: 13px;
    line-height: 32px;
    font-weight: 400;
    font-family: var(--body-font);
    color: #fff;
    margin-right: 40px;
}

.news-single-items .content .author-meta p {
    font-size: 14px;
    line-height: 32px;
    font-weight: 400;
    font-family: var(--body-font);
    color: #fff;
}

.news-single-list {
    list-style: none;
    border: 1px dashed #cccccc;
    border-radius: 10px;
    margin: 0;
    padding: 19px;
}

.news-single-list .news-single-list-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

.news-single-list .news-single-list-items:last-child {
    margin-bottom: 0;
}

.news-single-list .news-single-list-items+li {
    border-top: 1px dashed #CCCCCC;
    padding-top: 20px;
}

.news-single-list .news-single-list-items .thumb img {
    border-radius: 10px;
    margin-right: 17px;
    width: 100px;
}

.news-single-list .news-single-list-items .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.news-single-list .news-single-list-items .content .date {
    font-size: 14px;
    line-height: 32px;
    font-weight: 400;
    font-family: var(--body-font);
    color: #747474;
}

.news-single-list .news-single-list-items .content .title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--body-font);
    color: var(--heading-color);
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.news-single-list .news-single-list-items .content .title:hover {
    color: var(--main-color-one);
}

.our-vision-item {
    margin-top: 40px;
}

.our-vision-item .vision-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 410px;
    border-radius: 8px;
}

.our-vision-item .vision-bg .btn-wrapper a {
    font-size: 16px;
}

.our-vision-item .content {
    padding: 60px 40px;
}

.our-vision-item .content .subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.our-vision-item .content .subtitle p {
    font-size: 20px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    margin-right: 10px;
}

.our-vision-item .content .subtitle .icon {
    margin-top: 5px;
}

.our-vision-item .content .subtitle .icon i {
    font-size: 10px;
    color: #fff;
    margin-top: 12px;
}

.our-vision-item .content .title {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: 100px;
    color: #fff;
}

.vision-single-item-wrapper {
    position: relative;
}

.vision-single-item-wrapper::after {
    content: "";
    position: absolute;
    z-index: -1;
    height: 650px;
    width: 595px;
    background-color: #EFEFF7;
    border-radius: 4px;
    top: 15%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.vision-single-item-wrapper .our-vision-single-item {
    padding: 35px 32px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #EFEEF6;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    margin-bottom: 30px;
}

.vision-single-item-wrapper .our-vision-single-item:hover {
    background: var(--main-color-one);
    border-color: var(--main-color-one);
    -webkit-box-shadow: 0px 20px 40px rgba(221, 19, 26, 0.28);
    box-shadow: 0px 20px 40px rgba(221, 19, 26, 0.28);
}

.vision-single-item-wrapper .our-vision-single-item:hover .content .title {
    color: #fff;
}

.vision-single-item-wrapper .our-vision-single-item:hover .content p {
    color: #fff;
}

.vision-single-item-wrapper .our-vision-single-item:hover .icon {
    color: #fff;
}

.vision-single-item-wrapper .our-vision-single-item.style-01 {
    margin-top: 60px;
}

.vision-single-item-wrapper .our-vision-single-item.style-02 {
    margin-top: -60px;
}

.vision-single-item-wrapper .our-vision-single-item.style-03:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    -webkit-box-shadow: 0px 20px 40px rgba(14, 17, 90, 0.24);
    box-shadow: 0px 20px 40px rgba(14, 17, 90, 0.24);
}

.vision-single-item-wrapper .our-vision-single-item .icon {
    margin-bottom: 15px;
    font-size: 60px;
    color: var(--main-color-one);
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.vision-single-item-wrapper .our-vision-single-item .content {
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.vision-single-item-wrapper .our-vision-single-item .content .title {
    font-size: 24px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 19px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.vision-single-item-wrapper .our-vision-single-item .content p {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 0;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.join-party-section-area {
    background: var(--heading-color);
    padding: 125px 0px 0px;
}

.join-party-section-area.style-02 {
    padding: 120px 0px 120px;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.join-party-section-area.style-02 .shape-01 {
    position: absolute;
    top: -5%;
    left: 0;
}

.join-party-section-area.style-02 .shape-02 {
    position: absolute;
    bottom: -10%;
    right: -15%;
}

.join-party-section-area.style-02 .join-single-item .content .subtitle .icon {
    margin-top: 6px;
    color: #fff;
}

.join-party-section-area.join-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.join-party-section-area .join-single-item .content .subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.join-party-section-area .join-single-item .content .subtitle p {
    font-size: 20px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    margin-right: 10px;
}

.join-party-section-area .join-single-item .content .subtitle .icon {
    font-size: 10px;
    color: var(--main-color-one);
    margin-top: 12px;
}

.join-party-section-area .join-single-item .content .title {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.join-party-section-area .join-single-item .content p {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #fff;
    margin-bottom: 25px;
}

.join-party-section-area .join-single-item .content .description.style-02 {
    margin-top: 20px;
}

.join-party-section-area .join-single-item .content .join-widget {
    background-color: #fff;
    padding: 30px;
    border-left: 5px solid var(--main-color-one);
    margin-top: 40px;
    position: relative;
}

.join-party-section-area .join-single-item .content .join-widget p {
    color: var(--heading-color);
    font-size: 22px;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
    .join-party-section-area .join-single-item .content .join-widget p {
        font-size: 18px;
    }
}

.join-party-section-area .join-single-item .content .join-widget .icon {
    position: absolute;
    top: 10px;
    right: 30px;
    color: var(--main-color-one);
    opacity: 0.1;
    font-size: 60px;
}

.join-party-section-area .join-single-item .video-btn {
    margin-bottom: 75px;
}

.contact-page-wrapper {
    position: relative;
    top: 70px;
}

.contact-page-wrapper.style-01 {
    top: 0;
}

.contact-page-wrapper.style-03 {
    top: 0px;
}

.contact-page-wrapper.style-05 .contact-form .content .title {
    color: var(--heading-color);
}

.contact-page-wrapper.style-05 .contact-form .contact-page-form .form-group textarea {
    color: #C9C9C9;
    padding: 15px 20px;
    border: 1px dashed #C9C9C9;
    border-radius: 2px;
}

.contact-page-wrapper.style-05 .contact-form .contact-page-form .form-group textarea::-webkit-input-placeholder {
    color: #C9C9C9;
    padding: 0;
}

.contact-page-wrapper.style-05 .contact-form .contact-page-form .form-group textarea::-moz-placeholder {
    color: #C9C9C9;
    padding: 0;
}

.contact-page-wrapper.style-05 .contact-form .contact-page-form .form-group textarea:-ms-input-placeholder {
    color: #C9C9C9;
    padding: 0;
}

.contact-page-wrapper.style-05 .contact-form .contact-page-form .form-group textarea::-ms-input-placeholder {
    color: #C9C9C9;
    padding: 0;
}

.contact-page-wrapper.style-05 .contact-form .contact-page-form .form-group textarea::placeholder {
    color: #C9C9C9;
    padding: 0;
}

.contact-page-wrapper.style-05 .contact-form .contact-page-form .form-group .form-control {
    color: #C9C9C9;
    padding: 15px 20px;
    border: 1px dashed #C9C9C9;
    border-radius: 2px;
}

.contact-page-wrapper.style-05 .contact-form .contact-page-form .form-group .form-control::-webkit-input-placeholder {
    color: #C9C9C9;
}

.contact-page-wrapper.style-05 .contact-form .contact-page-form .form-group .form-control::-moz-placeholder {
    color: #C9C9C9;
}

.contact-page-wrapper.style-05 .contact-form .contact-page-form .form-group .form-control:-ms-input-placeholder {
    color: #C9C9C9;
}

.contact-page-wrapper.style-05 .contact-form .contact-page-form .form-group .form-control::-ms-input-placeholder {
    color: #C9C9C9;
}

.contact-page-wrapper.style-05 .contact-form .contact-page-form .form-group .form-control::placeholder {
    color: #C9C9C9;
}

.contact-page-wrapper.style-05 .contact-form .contact-page-form .btn-wrapper .boxed-btn.political-btn {
    background-color: var(--main-color-one);
    color: #fff;
}

.contact-page-wrapper .contact-form.contact-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 30px 37px 30px;
    border-radius: 6px;
}

.contact-page-wrapper .contact-form.contact-bg.style-01 {
    padding: 55px 45px 40px 45px;
    border-radius: 10px;
}

.contact-page-wrapper .contact-form .content {
    margin-bottom: 35px;
    position: relative;
}

.contact-page-wrapper .contact-form .content .title {
    font-size: 24px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 700;
    color: #fff;
}

.contact-page-wrapper .contact-form .content .title-shape {
    position: absolute;
    left: 29%;
    top: -50%;
}

.contact-page-wrapper .contact-form .content .title-shape.style-01 {
    left: 16%;
    top: -45%;
}

.contact-page-wrapper .contact-form .content .title-shape.style-02 {
    left: 32%;
    top: -45%;
}

.contact-page-wrapper .contact-form .contact-page-form .form-group {
    margin-bottom: 25px;
}

.contact-page-wrapper .contact-form .contact-page-form .form-group textarea {
    width: 100%;
    height: 97px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    border-radius: 2px;
    resize: none;
}

.contact-page-wrapper .contact-form .contact-page-form .form-group textarea::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 19px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #fff;
    padding: 15px 20px;
}

.contact-page-wrapper .contact-form .contact-page-form .form-group textarea::-moz-placeholder {
    font-size: 14px;
    line-height: 19px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #fff;
    padding: 15px 20px;
}

.contact-page-wrapper .contact-form .contact-page-form .form-group textarea:-ms-input-placeholder {
    font-size: 14px;
    line-height: 19px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #fff;
    padding: 15px 20px;
}

.contact-page-wrapper .contact-form .contact-page-form .form-group textarea::-ms-input-placeholder {
    font-size: 14px;
    line-height: 19px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #fff;
    padding: 15px 20px;
}

.contact-form .form-control,
.contact-page-form .form-group textarea {
    color: #fff;
}

.contact-page-wrapper .contact-form .contact-page-form .form-group textarea::placeholder {
    font-size: 14px;
    line-height: 19px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #fff;
    padding: 15px 20px;
}

.hthumb .video-play.style-03 i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
    margin-left: 52px;
    margin-top: -4px;
}

.hthumb .video-play {
    display: block;
    z-index: 9999999;
}

.hthumb .video-play.style-03::after {
    left: 30%;
    top: -22%;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border: 1px solid #fff;
}

.hthumb .btn-wrapper.administration {
    -webkit-transform: translate(-65%, -15%);
    transform: translate(-65%, -15%);
}

.contact-page-wrapper .contact-form .contact-page-form .form-group .form-control {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    border-radius: 2px;
    height: 50px;
    padding: 6px 12px;
}

.contact-page-wrapper .contact-form .contact-page-form .form-group .form-control::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 19px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #fff;
    padding: 15px 20px;
    padding-left: 0;
}

.contact-page-wrapper .contact-form .contact-page-form .form-group .form-control::-moz-placeholder {
    font-size: 14px;
    line-height: 19px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #fff;
    padding: 15px 20px;
    padding-left: 0;
}

.contact-page-wrapper .contact-form .contact-page-form .form-group .form-control:-ms-input-placeholder {
    font-size: 14px;
    line-height: 19px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #fff;
    padding: 15px 20px;
    padding-left: 0;
}

.contact-page-wrapper .contact-form .contact-page-form .form-group .form-control::-ms-input-placeholder {
    font-size: 14px;
    line-height: 19px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #fff;
    padding: 15px 20px;
    padding-left: 0;
}

.contact-page-wrapper .contact-form .contact-page-form .form-group .form-control::placeholder {
    font-size: 14px;
    line-height: 19px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #fff;
    padding: 15px 20px;
    padding-left: 0;
}

.contact-form .title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--heading-color);
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group .form-control {
    padding: 22px 30px;
    border: 1px solid #cccccc;
    font-size: 16px;
    line-height: 21px;
    font-family: var(--body-font);
    font-weight: 300;
    border-radius: 10px;
}

.volunteer-form {
    background: #FFF9FC;
    padding: 50px;
    border-radius: 10px;
}

.volunteer-form.style-01 {
    border: 1px solid rgba(204, 204, 204, 0.5);
}

.volunteer-form .form-question {
    margin-top: 18px;
    margin-bottom: 38px;
}

.volunteer-form .form-question .title {
    font-size: 16px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 700;
    margin-bottom: 18px;
}

.volunteer-form .form-question .check-box-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.volunteer-form .form-question .check-box-wrapper .check-box {
    margin-right: 30px;
}

.volunteer-form .form-question .check-box-wrapper .check-box .container-box {
    font-size: 16px;
    line-height: 21px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
    padding-left: 30px;
    position: relative;
}

.volunteer-form .form-question .check-box-wrapper .check-box .container-box .checkmark {
    background: #fff;
    border: 1px solid #C9C9C9;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.volunteer-form .form-question .check-box-wrapper .check-box .container-box .checkmark::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 18px;
    height: 18px;
    background: var(--main-color-one);
    border: 1px solid var(--main-color-one);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border-radius: 50%;
}

.volunteer-form .form-question .check-box-wrapper .check-box .container-box .checkmark::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    width: 8px;
    z-index: 1;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.volunteer-form .form-question .form-group .form-control {
    padding: 22px 30px;
    border: 1px solid #cccccc;
    font-size: 16px;
    line-height: 21px;
    font-family: var(--body-font);
    font-weight: 300;
    border-radius: 10px;
}

.party-member-section-area {
    margin-top: 186px;
}

.party-member-section-area.style-01 {
    background: #FFF9FC;
    padding: 120px 0px 100px 0px;
    margin-top: 120px;
}

.party-member-section-area.style-02 {
    background: #FFF9FC;
    padding: 110px 0px 10px 0px;
    margin-top: 120px;
}

.party-member-section-area.home-three {
    margin-top: 115px;
}

.testimonial-carousel-eight .owl-item.center .single-party-member-item .content .author-meta {
    visibility: visible;
    opacity: 1;
    top: 65%;
}

.testimonial-carousel-eight .owl-item.center .single-party-member-item .content .social-links {
    visibility: visible;
    opacity: 1;
    left: 5%;
}

.testimonial-carousel-eight .owl-item.center .single-party-member-item-02 .content {
    opacity: 1;
    visibility: visible;
    top: 45%;
}

.testimonial-carousel-eight .owl-item.center .single-party-member-item-02 .thumb img {
    border: 5px solid var(--main-color-one);
    border-radius: 10px;
    width: 100%;
}

.testimonial-carousel-eight .owl-nav {
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    opacity: 0;
}

.testimonial-carousel-eight .owl-nav .owl-prev {
    position: absolute;
    left: -35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    color: var(--main-color-one);
    font-size: 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0 12px 20px rgba(221, 19, 26, 0.24);
    box-shadow: 0 12px 20px rgba(221, 19, 26, 0.24);
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.testimonial-carousel-eight .owl-nav .owl-prev:hover {
    color: #fff;
    background: var(--main-color-one);
}

.testimonial-carousel-eight .owl-nav .owl-next {
    position: absolute;
    right: -35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    color: var(--main-color-one);
    font-size: 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0 12px 20px rgba(221, 19, 26, 0.24);
    box-shadow: 0 12px 20px rgba(221, 19, 26, 0.24);
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.testimonial-carousel-eight .owl-nav .owl-next:hover {
    color: #fff;
    background: var(--main-color-one);
}

.testimonial-carousel-eight.political-member .owl-nav {
    opacity: inherit;
}

.testimonial-carousel-eight.political-member .owl-nav .owl-prev {
    top: -25%;
    left: 87%;
    border: 1px solid #fff;
}

.testimonial-carousel-eight.political-member .owl-nav .owl-prev:hover {
    border: 1px solid var(--main-color-one);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.testimonial-carousel-eight.political-member .owl-nav .owl-next {
    top: -25%;
    right: 0%;
    border: 1px solid #fff;
}

.testimonial-carousel-eight.political-member .owl-nav .owl-next:hover {
    border: 1px solid var(--main-color-one);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.single-party-member-item {
    position: relative;
    overflow: hidden;
}

.single-party-member-item:hover .content .author-meta {
    visibility: visible;
    opacity: 1;
    top: 65%;
}

.single-party-member-item:hover .content .social-links {
    visibility: visible;
    opacity: 1;
    left: 5%;
}

.single-party-member-item .thumb img {
    border-radius: 10px;
}

.single-party-member-item .content {
    padding-bottom: 110px;
}

.single-party-member-item .content .author-meta {
    background-color: #fff;
    padding: 26px 64px;
    border-radius: 6px;
    -webkit-box-shadow: 0 15px 30px rgba(221, 19, 26, 0.14);
    box-shadow: 0 15px 30px rgba(221, 19, 26, 0.14);
    text-align: center;
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.single-party-member-item .content .author-meta .author-name {
    font-size: 24px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
}

.single-party-member-item .content .author-meta .designation {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
    margin-top: 9px;
}

.single-party-member-item .content .social-links {
    position: absolute;
    top: 5%;
    left: -15%;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.single-party-member-item .content .social-links ul {
    list-style: none;
}

.single-party-member-item .content .social-links ul li {
    margin-bottom: 10px;
}

.single-party-member-item .content .social-links ul li i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 15px;
    color: var(--main-color-one);
    border-radius: 5px;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    background-color: #fff;
}

.single-party-member-item .content .social-links ul li i:hover {
    background: var(--main-color-one);
    color: #fff;
}

.single-party-member-item-02 {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.single-party-member-item-02:hover .content {
    opacity: 1;
    visibility: visible;
    top: 45%;
}

.single-party-member-item-02:hover .thumb img {
    border: 5px solid var(--main-color-one);
    border-radius: 10px;
    width: 100%;
}

.single-party-member-item-02 .thumb img {
    border-radius: 10px;
    border: 5px solid transparent;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.single-party-member-item-02 .content {
    background: rgba(221, 19, 26, 0.8);
    border-radius: 10px;
    width: 284px;
    position: absolute;
    z-index: 1;
    left: 9%;
    top: 85%;
    padding: 30px 30px 30px 30px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    opacity: 0;
    visibility: hidden;
}

.single-party-member-item-02 .content .author-meta .author-name {
    text-align: center;
    font-size: 24px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px;
}

.single-party-member-item-02 .content .author-meta .designation {
    text-align: center;
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #fff;
    margin-top: 5px;
    margin-bottom: 22px;
}

.single-party-member-item-02 .content .social-links {
    text-align: center;
}

.single-party-member-item-02 .content .social-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-party-member-item-02 .content .social-links ul li {
    display: inline-block;
    margin-right: 10px;
}

.single-party-member-item-02 .content .social-links ul li:last-child {
    margin-right: 0px;
}

.single-party-member-item-02 .content .social-links ul li i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 15px;
    color: var(--main-color-one);
    border-radius: 5px;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    background-color: #fff;
    border: 1px solid #fff;
}

.single-party-member-item-02 .content .social-links ul li i:hover {
    background: transparent;
    color: #fff;
}

.political-gallery-section {
    margin-top: 116px;
}

.political-gallery-item.style-01 {
    padding: 50px 0;
    background-color: #FFF9FC;
}

.political-gallery-item .gallery-single-items {
    margin-bottom: 30px;
}

.political-gallery-item .gallery-single-items:hover .thumb::before {
    visibility: visible;
    opacity: 0.5;
}

.political-gallery-item .gallery-single-items:hover .thumb .cart-icon {
    visibility: visible;
    opacity: 1;
}

.political-gallery-item .gallery-single-items:hover .thumb.style-01::before {
    opacity: 0.7;
}

.political-gallery-item .gallery-single-items:hover .content .title {
    visibility: visible;
    opacity: 1;
}

.political-gallery-item .gallery-single-items .thumb {
    position: relative;
    z-index: 0;
}

.political-gallery-item .gallery-single-items .thumb.style-01 {
    position: relative;
}

.political-gallery-item .gallery-single-items .thumb.style-01 img {
    border-radius: 0;
}

.political-gallery-item .gallery-single-items .thumb.style-01::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #04072e;
    z-index: 1;
    border-radius: 0;
}

.political-gallery-item .gallery-single-items .thumb img {
    border-radius: 10px;
    width: 100%;
}

.political-gallery-item .gallery-single-items .thumb .cart-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    visibility: hidden;
    font-size: 24px;
    z-index: 1;
    width: 75px;
    height: 75px;
    border: 3px solid #fff;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    opacity: 0;
}

.political-gallery-item .gallery-single-items .thumb::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--heading-color);
    opacity: 0;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    visibility: hidden;
    border-radius: 10px;
}

.political-gallery-item .gallery-single-items .content .title {
    font-size: 24px;
    line-height: 35px;
    font-family: var(--body-font);
    font-weight: 700;
    color: #fff;
    position: absolute;
    top: 70%;
    max-width: 410px;
    left: 18%;
    visibility: hidden;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    opacity: 0;
}

.testimonial-carousel-seven .owl-nav .owl-prev {
    position: absolute;
    right: 20%;
    top: -85px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    color: var(--main-color-one);
    font-size: 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0 12px 20px rgba(74, 210, 149, 0.24);
    box-shadow: 0 12px 20px rgba(74, 210, 149, 0.24);
    border: 1px solid #fff;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.testimonial-carousel-seven .owl-nav .owl-prev:hover {
    border: 1px solid var(--main-color-one);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.testimonial-carousel-seven .owl-nav .owl-next {
    position: absolute;
    right: 16%;
    top: -85px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    color: var(--main-color-one);
    font-size: 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0 12px 20px rgba(74, 210, 149, 0.24);
    box-shadow: 0 12px 20px rgba(74, 210, 149, 0.24);
    border: 1px solid #fff;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.testimonial-carousel-seven .owl-nav .owl-next:hover {
    border: 1px solid var(--main-color-one);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.people-say-single-item {
    padding: 50px 0px 0px 20px;
}

.people-say-single-item.style-01 {
    padding: 60px 40px;
}

.people-say-single-item .content .subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.people-say-single-item .content .subtitle p {
    font-size: 20px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    margin-right: 10px;
}

.people-say-single-item .content .subtitle .icon {
    margin-top: 5px;
}

.people-say-single-item .content .subtitle .icon i {
    font-size: 10px;
    color: var(--main-color-one);
    margin-top: 12px;
    margin-right: 5px;
}

.people-say-single-item .content .subtitle .icon i:last-child {
    margin-right: 0;
}

.people-say-single-item .content .title {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 25px;
}

.people-say-single-item .content .title.style-01 {
    max-width: 400px;
    line-height: 55px;
}

.people-say-single-item .content .description {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
    margin-bottom: 25px;
    max-width: 510px;
}

.people-say-single-item .content .author-meta {
    margin-bottom: 30px;
}

.people-say-single-item .content .author-meta .author-name {
    font-size: 16px;
    line-height: 35px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
}

.people-say-single-item .content .author-meta .line {
    display: inline-block;
    width: 80px;
    height: 2px;
    background: #505050;
    margin-bottom: 3px;
    margin-left: 10px;
}

.people-say-single-item .quotes {
    position: absolute;
    top: 7%;
    left: 2%;
    z-index: -1;
    max-width: 185px !important;
}

.people-say-single-item .quotes.style-01 {
    position: absolute;
    top: 7%;
    left: 64%;
    z-index: -1;
    width: 94px !important;
}

.people-say-single-item .quotes.style-02 {
    left: 75%;
    top: 10%;
    width: 95px;
}

.people-say-single-item-02 {
    background: #fff;
    border-radius: 6px;
}

.people-say-single-item-02.style-01 {
    background: linear-gradient(176deg, #e8454a 0%, #dd131a 100%);
}

.people-say-single-item-02 .people-say-bg-02 {
    background-repeat: no-repeat;
    background-position: 50% 42%;
    min-height: 480px;
    border-radius: 6px;
}

.people-say-single-item-02 .content .subtitle p {
    color: var(--main-color-one);
}

.people-say-single-item-02 .content .description {
    color: var(--heading-color);
}

.people-say-single-item-02 .content .author-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.people-say-single-item-02 .content .author-meta .thumb {
    margin-right: 20px;
}

.people-say-single-item-02 .testimonial-carousel-four .owl-nav .owl-prev {
    font-size: 28px;
    position: absolute;
    top: 82%;
    right: 22%;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.people-say-single-item-02 .testimonial-carousel-four .owl-nav .owl-prev:hover {
    color: var(--main-color-one);
}

.people-say-single-item-02 .testimonial-carousel-four .owl-nav .owl-next {
    font-size: 28px;
    position: absolute;
    top: 82%;
    right: 15%;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.people-say-single-item-02 .testimonial-carousel-four .owl-nav .owl-next:hover {
    color: var(--main-color-one);
}

.people-say-section {
    margin-top: 48px;
}

.people-say-section.style-01 {
    margin-top: 0px;
}

.people-say-section.people-say-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0px 60px 0px;
    position: relative;
}

.people-say-section.people-say-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--heading-color);
    opacity: 0.85;
}

.people-say-section .shapes .shape-01 {
    position: absolute;
    top: 0;
    left: 24%;
}

.people-say-section .shapes .shape-02 {
    position: absolute;
    bottom: 0%;
    left: 8%;
}

.people-say-section .shapes .shape-03 {
    width: 290px;
    height: 1px;
    background-color: var(--main-color-one);
    position: absolute;
    top: 385px;
    left: 13%;
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    z-index: 0;
}

.people-say-section .shapes .shape-04 {
    width: 315px;
    height: 1px;
    background-color: var(--main-color-one);
    position: absolute;
    top: 175px;
    left: 13%;
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    z-index: 0;
}


/*-----------------------------
    Accordion Item
-----------------------------*/

.accordion-wrapper .card {
    border: none;
    background-color: transparent;
    border: 1px solid var(--main-color-one);
    border-radius: 5px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.accordion-wrapper .card+.card {
    margin-top: 20px;
}

.accordion-wrapper .card .card-header {
    background-color: transparent;
    padding: 0;
    border: none;
}

.accordion-wrapper .card .card-header a {
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--body-font);
    background-color: #fff;
    color: var(--heading-color);
    border-radius: 5px;
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.accordion-wrapper .card .card-header a:after {
    position: absolute;
    right: 30px;
    top: 15px;
    content: "";
    font-family: "fontawesome";
}

.accordion-wrapper .card .card-header a[aria-expanded=true] {
    background: var(--main-color-one);
    border-radius: 5px 5px 0px 0px;
    color: #fff;
}

.accordion-wrapper .card .card-header a[aria-expanded=true]:after {
    content: "";
}

.accordion-wrapper .card .card-body {
    background-color: #fff;
    padding: 20px 30px;
    border-top: 0;
    border-radius: 0px 0px 5px 5px;
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--heading-color);
    -webkit-transition: 0.7s alternate;
    transition: 0.7s alternate;
}

.accoridion-section {
    background: #FFF9FC;
    padding: 116px 0px 128px 0px;
    position: relative;
    margin-top: 103px;
}

.accoridion-section.style-01 {
    margin-top: 120px;
}

.accoridion-section.style-02 {
    padding: 246px 0px 0 0px;
    margin-top: 0;
}

.accoridion-section .section-title .title {
    font-size: 40px;
    font-weight: 700;
    color: #000629;
    line-height: 55px;
}

.accoridion-section .shape {
    position: absolute;
    right: 14%;
    top: 32%;
}

.accoridion-section .shape-01 {
    position: absolute;
    top: 65%;
    left: 10%;
}

.accoridion-section .shape-02 {
    position: absolute;
    top: 15%;
    left: 20%;
}

.accordion-wrapper-02 .card {
    border: none;
    background-color: #fff;
    border: 1px solid var(--main-color-one);
    border-radius: 6px;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.accordion-wrapper-02 .card+.card {
    margin-top: 20px;
}

.accordion-wrapper-02 .card .card-header {
    background-color: transparent;
    padding: 0;
    border: none;
}

.accordion-wrapper-02 .card .card-header a {
    display: block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--heading-font);
    color: var(--heading-color);
    padding: 20px 20px 20px 25px;
    cursor: pointer;
    position: relative;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.accordion-wrapper-02 .card .card-header a:after {
    position: absolute;
    right: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--main-color-one);
    content: "";
    font-family: "fontawesome";
}

.accordion-wrapper-02 .card .card-header a[aria-expanded=true] {
    background: var(--main-color-one);
    color: #fff;
}

.accordion-wrapper-02 .card .card-header a[aria-expanded=true]:after {
    content: "";
    color: #fff;
}

.accordion-wrapper-02 .card .card-body {
    background: var(--main-color-one);
    padding: 0px 20px 25px 25px;
    border-top: 0px;
    border-radius: 0px 0px 4px 4px;
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #fff;
    -webkit-transition: 0.3s alternate;
    transition: 0.3s alternate;
}

.our-principle-section {
    margin-top: 106px;
}

.princilple-single-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.princilple-single-items.style-01 {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
    padding-left: 28px;
}

.princilple-single-items.style-01:last-child {
    margin-bottom: 0px;
}

.princilple-single-items:hover .icon::after {
    -webkit-animation: round 6s linear infinite;
    animation: round 6s linear infinite;
}

.princilple-single-items .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: transparent linear-gradient(215deg, #FEEDF0 0%, #FFFFFF 100%);
    border-radius: 50%;
    font-size: 36px;
    color: var(--main-color-one);
    margin-right: 30px;
    position: relative;
}

.princilple-single-items .icon.style-01 {
    width: 97px;
    height: 97px;
    line-height: 97px;
    margin-right: 30px;
}

.princilple-single-items .icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='100' ry='100' stroke='%23CCCCCCFF' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='7' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 100px;
    border-radius: 100px;
    top: -8px;
    left: 8px;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.princilple-single-items .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.princilple-single-items .content .title {
    font-size: 20px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 700;
    margin-bottom: 15px;
}

.princilple-single-items .content .title.style-01 {
    font-size: 24px;
    line-height: 30px;
    color: var(--heading-color);
    margin-bottom: 10px;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.princilple-single-items .content .title.style-01:hover {
    color: var(--main-color-one);
}

.princilple-single-items .content p {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    max-width: 250px;
}

.princilple-single-items .content p.style-01 {
    max-width: inherit;
    color: #505050;
}

@-webkit-keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.audio-player {
    position: absolute;
    width: 100%;
    bottom: 25px;
    background: transparent;
    -webkit-box-shadow: 0 0 20px 0 #000a;
    box-shadow: 0 0 20px 0 #000a;
    font-family: arial;
    color: white;
    font-size: 0.75em;
    overflow: hidden;
}

.audio-player .timeline {
    background: white;
    width: 147px;
    height: 4px;
    position: relative;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 10px 0 #0008;
    box-shadow: 0 2px 10px 0 #0008;
}

.audio-player .timeline .progress {
    background: var(--main-color-one);
    width: 0%;
    height: 100%;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

.audio-player .controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
}

.audio-player .controls .play-container {
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    background: red;
    border-radius: 2px;
}

.audio-player .controls .toggle-play.play {
    cursor: pointer;
    position: relative;
    left: 65%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border: 7px solid #0000;
    border-left: 13px solid white;
}

.audio-player .controls .toggle-play.pause {
    height: 15px;
    width: 20px;
    cursor: pointer;
    position: relative;
    top: 50%;
    left: 62%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.audio-player .controls .toggle-play.pause:before {
    position: absolute;
    top: 0;
    left: 0px;
    background: white;
    content: "";
    height: 15px;
    width: 3px;
}

.audio-player .controls .toggle-play.pause:after {
    position: absolute;
    top: 0;
    right: 8px;
    background: white;
    content: "";
    height: 15px;
    width: 3px;
}

.audio-player .controls .time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.audio-player .controls .time>* {
    padding: 2px;
}

.audio-player .controls .volume-container {
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.audio-player .controls .volume-container .volume-button {
    height: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.audio-player .controls .volume-container .volume-button i {
    font-size: 16px;
}

.audio-player .controls .volume-container .volume-slider {
    position: absolute;
    left: -3px;
    top: 8px;
    z-index: -1;
    width: 0;
    height: 10px;
    background: white;
    -webkit-box-shadow: 0 0 20px #000a;
    box-shadow: 0 0 20px #000a;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

.audio-player .controls .volume-container .volume-slider .volume-percentage {
    background: var(--main-color-one);
    height: 100%;
    width: 75%;
}

.audio-player .controls .volume-container:hover .volume-slider {
    left: -86px;
    width: 80px;
}

.issues-single-items {
    margin-bottom: 30px;
}

.issues-single-items .issue-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    min-height: 570px;
    border-radius: 10px;
    position: relative;
}

.issues-single-items .issue-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#04072E00), to(#04072E));
    background: linear-gradient(180deg, #04072E00 0%, #04072E 100%);
    border-radius: 10px;
}

.issues-single-items .content {
    padding: 0px 30px 30px 30px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.issues-single-items .content .title {
    font-size: 24px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    margin-bottom: 30px;
}

.issues-single-items .content .title:hover {
    color: var(--main-color-one);
}

.issues-single-items .content p {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #CCCCCC;
}

.issues-around-us-section {
    margin-top: 50px;
}

.more-issue-section {
    margin-top: 108px;
}

.issues-details-section .bg-wrapper {
    overflow: hidden;
}

.issues-details-section .bg-wrapper .issue-details-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 600px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    overflow: hidden;
}

.issues-details-section .bg-wrapper .issue-details-bg:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.issues-details-section .content .title {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--heading-color);
    margin-top: 25px;
    margin-bottom: 20px;
}

.issues-details-section .content .subtitle {
    font-size: 20px;
    line-height: 32px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
    border-left: 4px solid var(--main-color-one);
    padding-left: 10px;
    margin-bottom: 20px;
}

.issues-details-section .content .description {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
    margin-bottom: 20px;
}

.issues-details-section .content .description+.description {
    border-top: 2px dashed #CCCCCC;
    padding-top: 20px;
}

.issues-details-section .taking-action-issue {
    position: relative;
    overflow: hidden;
}

.issues-details-section .taking-action-issue::after {
    content: "";
    position: absolute;
    top: 225px;
    right: 0;
    border-left: 2px dashed #C9C9C9;
    width: 98%;
    height: 65%;
}

.issues-details-section .taking-action-issue .subtitle {
    font-size: 20px;
    line-height: 32px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
    border-left: 4px solid var(--main-color-one);
    padding-left: 10px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.issues-details-section .taking-action-issue .action-single-items {
    background: #F9F9F9;
    padding: 26px 30px 26px 136px;
    border: 1px solid rgba(227, 227, 227, 0.5);
    border-radius: 0px 10px 10px 0px;
    margin-left: 75px;
    margin-bottom: 30px;
    position: relative;
}

.issues-details-section .taking-action-issue .action-single-items:last-child {
    margin-bottom: 0;
}

.issues-details-section .taking-action-issue .action-single-items::after {
    content: "";
    position: absolute;
    left: -57px;
    top: 86px;
    width: 8px;
    height: 8px;
    background: var(--main-color-one);
    border-radius: 50%;
    z-index: 1;
}

.issues-details-section .taking-action-issue .action-single-items::before {
    content: "";
    position: absolute;
    left: -62px;
    top: 81px;
    width: 18px;
    height: 18px;
    border: 2px solid red;
    border-radius: 50%;
    z-index: 1;
}

.issues-details-section .taking-action-issue .action-single-items .title {
    font-size: 20px;
    line-height: 32px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.issues-details-section .taking-action-issue .action-single-items p {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
}

.issues-details-section .taking-action-issue .action-single-items .action-shape {
    padding: 66px;
    background-repeat: no-repeat;
    background-position: center left;
    position: absolute;
    top: 50%;
    left: -16px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.issues-details-section .taking-action-issue .action-single-items .action-shape p {
    font-size: 50px;
    line-height: 60px;
    font-family: var(--heading-font);
    font-weight: 600;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.testimonial-carousel-six .owl-nav .owl-prev {
    position: absolute;
    right: 7%;
    top: -85px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    color: var(--main-color-one);
    font-size: 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0 12px 20px rgba(221, 19, 26, 0.24);
    box-shadow: 0 12px 20px rgba(221, 19, 26, 0.24);
    border: 1px solid #fff;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.testimonial-carousel-six .owl-nav .owl-prev:hover {
    border: 1px solid var(--main-color-one);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.testimonial-carousel-six .owl-nav .owl-next {
    position: absolute;
    right: 0%;
    top: -85px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    color: var(--main-color-one);
    font-size: 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0 12px 20px rgba(221, 19, 26, 0.24);
    box-shadow: 0 12px 20px rgba(221, 19, 26, 0.24);
    border: 1px solid #fff;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.testimonial-carousel-six .owl-nav .owl-next:hover {
    border: 1px solid var(--main-color-one);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.progress-item .single-progressbar .progressbar {
    width: 100%;
    position: relative;
    background-color: transparent;
    border: 1px solid #AAAAAA;
    padding: 2px 0px 2px 2px;
}

.progress-item .single-progressbar .progressbar .proggress {
    height: 5px;
    width: 10px;
}

.progress-item .single-progressbar .progressbar .percentCount {
    position: absolute;
    color: white;
    left: 0%;
    top: -43px;
    background-color: var(--main-color-one);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 500;
}

.progress-item .single-progressbar .progressbar .percentCount::after {
    position: absolute;
    content: "";
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -17px;
    border-top: 10px solid var(--main-color-one);
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
}

.progress-content .goal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
}

.progress-content .goal .raised {
    color: #fff;
}

.donation-single-items {
    margin-bottom: 50px;
}

.donation-single-items .bg-wrapper {
    overflow: hidden;
    border-radius: 10px;
}

.donation-single-items .bg-wrapper.style-01 {
    margin-top: 30px;
}

.donation-single-items .bg-wrapper .donation-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 600px;
    border-radius: 10px;
    position: relative;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.donation-single-items .bg-wrapper .donation-bg.style-01::before {
    content: none;
}

.donation-single-items .bg-wrapper .donation-bg.style-01:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.donation-single-items .bg-wrapper .donation-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#04072E00), to(#04072E));
    background: transparent linear-gradient(180deg, #04072E00 0%, #04072E 100%);
    border-radius: 10px;
}

.donation-single-items .bg-wrapper .donation-bg .content {
    position: absolute;
    bottom: 20px;
    padding: 0px 30px;
    width: 100%;
}

.donation-single-items .bg-wrapper .donation-bg-02 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 430px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.donation-single-items .bg-wrapper .donation-bg-02:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.donation-single-items .content {
    margin-top: 25px;
}

.donation-single-items .content .author-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.donation-single-items .content .author-meta .thumb {
    margin-right: 20px;
}

.donation-single-items .content .author-meta .thumb img {
    margin-right: 10px;
}

.donation-single-items .content .author-meta .thumb .author-name {
    font-size: 14px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
}

.donation-single-items .content .author-meta .date i {
    margin-right: 10px;
    font-size: 16px;
}

.donation-single-items .content .author-meta .date span {
    font-size: 14px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
}

.donation-single-items .content .title {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: 28px;
    cursor: pointer;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.donation-single-items .content .title:hover {
    color: var(--main-color-one);
}

.donation-single-items .content .subtitle {
    font-size: 20px;
    line-height: 32px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
    border-left: 4px solid var(--main-color-one);
    padding-left: 10px;
    margin-bottom: 15px;
}

.donation-single-items .content .description {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
}

.donation-content-section .donate-programm .content .subtitle {
    font-size: 32px;
    line-height: 42px;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--heading-color);
    border-left: 4px solid var(--main-color-one);
    padding-left: 10px;
    margin-bottom: 20px;
}

.donation-content-section .donate-programm .content .description {
    font-size: 18px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 500;
    color: #4F4F6B;
}

.donation-content-section .donate-programm .content .description.style-01 {
    max-width: 520px;
}

.donation-content-section .donate-programm .content .notice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #FEEDF0;
    border: 1px solid rgba(204, 204, 204, 0.5);
    border-radius: 10px;
    padding: 5px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.donation-content-section .donate-programm .content .notice .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--main-color-one);
    border-radius: 10px;
    font-size: 35px;
    color: #fff;
    margin-right: 24px;
}

.donation-content-section .donate-programm .content .notice p {
    font-size: 18px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
    margin: 0;
}

.donation-content-section .donate-programm .content .notice p span {
    color: var(--heading-color);
}

.donation-content-section .donate-programm .content .amount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.donation-content-section .donate-programm .content .amount .btn-wrapper {
    margin-bottom: 40px;
    margin-top: 15px;
}

.donation-content-section .donate-programm .content .amount .btn-wrapper .price-btn {
    border: 1px solid rgba(204, 204, 204, 0.5);
    background: #fff;
    padding: 10px 22px;
    border-radius: 5px;
    margin-right: 20px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--heading-color);
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.donation-content-section .donate-programm .content .amount .btn-wrapper .price-btn.style-01 {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    font-family: var(--heading-font);
    color: #AAAAAA;
    padding: 15px 22px;
}

.donation-content-section .donate-programm .content .amount .btn-wrapper .price-btn:hover {
    border-color: var(--main-color-one);
    color: var(--main-color-one);
}

.donation-content-section .donate-programm .content .amount .form-group .form-control {
    width: 160px;
    height: 60px;
}

.donation-content-section .donate-programm .content .amount .form-group .form-control::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    font-family: var(--heading-font);
    color: #AAAAAA;
    padding-left: 10px;
}

.donation-content-section .donate-programm .content .amount .form-group .form-control::-moz-placeholder {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    font-family: var(--heading-font);
    color: #AAAAAA;
    padding-left: 10px;
}

.donation-content-section .donate-programm .content .amount .form-group .form-control:-ms-input-placeholder {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    font-family: var(--heading-font);
    color: #AAAAAA;
    padding-left: 10px;
}

.donation-content-section .donate-programm .content .amount .form-group .form-control::-ms-input-placeholder {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    font-family: var(--heading-font);
    color: #AAAAAA;
    padding-left: 10px;
}

.donation-content-section .donate-programm .content .amount .form-group .form-control::placeholder {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    font-family: var(--heading-font);
    color: #AAAAAA;
    padding-left: 10px;
}


/*Wp  BlockQuote */

blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large) {
    padding: 40px;
    margin-top: 60px;
    margin-bottom: 40px;
    border: 1px solid #CCCCCC;
    position: relative;
    text-align: left;
    color: #fff;
    z-index: 0;
}

blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large):before {
    content: "";
    font-family: "icomoon";
    font-weight: 900;
    display: block;
    position: absolute;
    z-index: -1;
    top: -22px;
    left: 35px;
    color: var(--main-color-one);
    font-size: 50px;
    line-height: 0.8;
    width: 100px;
    height: 50px;
    text-align: center;
    background: #fff;
}

blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large):after {
    content: "";
    font-family: "icomoon";
    font-weight: 900;
    display: block;
    position: absolute;
    z-index: -1;
    bottom: -28px;
    right: 45px;
    color: var(--main-color-one);
    font-size: 50px;
    line-height: 0.8;
    background: #fff;
    height: 50px;
    width: 100px;
    text-align: center;
}

blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large) p {
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-size: 34px;
    font-weight: 500;
    line-height: 46px;
    font-style: italic;
}

blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large) .author-name {
    font-size: 20px;
    line-height: 24px;
    font-family: var(--heading-font);
    font-weight: 500;
    font-style: italic;
    color: var(--main-color-one);
    position: absolute;
    right: 13%;
    bottom: -13%;
    background: #fff;
    width: 152px;
    text-align: center;
}

blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large) .author-name.style-01 {
    right: 19%;
    bottom: -20%;
}

blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large) cite {
    color: #001b61 !important;
    font-weight: 700;
    margin-top: 10px;
    display: block;
    font-style: normal;
}

.event-single-items {
    margin-bottom: 50px;
}

.event-single-items .event-img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 10px;
}

.event-single-items .bg-wrapper {
    overflow: hidden;
    border-radius: 10px;
}

.event-single-items .bg-wrapper.style-01 {
    margin-top: 30px;
}

.event-single-items .bg-wrapper .event-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 570px;
    border-radius: 10px;
    position: relative;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.event-single-items .bg-wrapper .event-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#04072E00), to(#04072E));
    background: linear-gradient(180deg, #04072E00 0%, #04072E 100%);
    border-radius: 10px;
}

.event-single-items .content {
    background: #FFF9FC;
    padding: 30px 35px;
    border: 1px solid rgba(201, 201, 201, 0.5);
    border-radius: 10px;
    margin: -60px 15px 0px 15px;
    position: relative;
}

.event-single-items .content.style-01 {
    margin: 0px;
    border: none;
    background: transparent;
    padding: 0;
    border-radius: 6px;
}

.event-single-items .content.style-01 .subtitle {
    border-bottom: 0;
    margin: 25px 0px 5px;
}

.event-single-items .content.style-01 .subtitle .location {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.event-single-items .content.style-01 .subtitle .location .icon {
    color: var(--main-color-one);
    font-size: 20px;
}

.event-single-items .content.style-01 .subtitle .location p {
    margin-bottom: 3px;
    font-size: 20px;
    line-height: 32px;
}

.event-single-items .content.style-01 .subtitle .time {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.event-single-items .content.style-01 .subtitle .time .icon {
    color: var(--main-color-one);
    font-size: 20px;
}

.event-single-items .content.style-01 .subtitle .time p {
    margin-bottom: 3px;
    font-size: 20px;
    line-height: 32px;
}

.event-single-items .content.style-01 .title {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--heading-font);
}

.event-single-items .content .subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px dashed rgba(204, 204, 204, 0.5);
    margin-bottom: 20px;
    cursor: pointer;
}

.event-single-items .content .subtitle .location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 40px;
    font-size: 14px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #4F4F6B;
}

.event-single-items .content .subtitle .location .icon {
    font-size: 15px;
    margin-right: 8px;
}

.event-single-items .content .subtitle .time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #4F4F6B;
}

.event-single-items .content .subtitle .time .icon {
    font-size: 15px;
    margin-right: 8px;
}

.event-single-items .content .title {
    font-size: 24px;
    line-height: 36px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.event-single-items .content .title:hover {
    color: var(--main-color-one);
}

.event-single-items .content p {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
    margin-bottom: 21px;
}

.event-single-items .post-mate {
    width: 82px;
    height: 82px;
    text-align: center;
    background: var(--main-color-one);
    border-radius: 4px;
    padding: 22px;
    position: absolute;
    top: -35px;
    right: 30px;
}

.event-single-items .post-mate.style-01 {
    top: 80%;
}

.event-single-items .post-mate::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 94%;
    height: 94%;
    border-radius: 4px;
}

.event-single-items .post-mate .post-date {
    font-size: 35px;
    margin-bottom: 0;
    color: #fff;
    font-family: var(--heading-font-02);
    font-weight: 700;
    line-height: 23px;
}

.event-single-items .post-mate .post-month {
    color: #fff;
    font-family: var(--heading-font-02);
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
}

.event-content-section {
    position: relative;
}

.event-content-section .event-single-shape {
    position: absolute;
    left: -78%;
    top: -12%;
}


/*-------------------------
    Contact Info Item
-------------------------*/

.contact-info-list-02 {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-info-list-02 .single-info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    /* align-items: center; */
}

.contact-info-list-02 .single-info-item+.single-info-item {
    margin-top: 18px;
}

.contact-info-list-02 .single-info-item .icon {
    color: var(--secondary-color);
    font-size: 20px;
    margin-right: 12px;
    width: 25px;
}

.contact-info-list-02 .single-info-item .icon .icon-envelope {
    font-size: 14px;
}

.contact-info-list-02 .single-info-item .details {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 500;
    color: #505050;
}

.contact-page-form-section.contact-form-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    padding-top: 120px;
    position: relative;
}

.contact-page-form-section.contact-form-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 59, 135, 0.9);
}

.contact-page-form-section .contact-item-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    margin-bottom: -300px;
    -webkit-box-shadow: 0px 10px 40px rgba(72, 72, 72, 0.1);
    box-shadow: 0px 10px 40px rgba(72, 72, 72, 0.1);
    position: relative;
}

.contact-page-form-section .contact-item-wrapper .contact-shape {
    position: absolute;
    bottom: 4%;
    left: 20%;
}

.contact-page-form-section .contact-item-wrapper .contact-shape-02 {
    position: absolute;
    left: 0%;
    bottom: 35%;
}

.contact-page-form-section .contact-item-wrapper .contact-shape-03 {
    position: absolute;
    left: 39%;
    top: 35%;
}

.contact-page-form-section .contact-item-wrapper .contact-shape-04 {
    position: absolute;
    left: 11%;
    top: 8%;
}

.contact-page-form-section .contact-item-wrapper .contact-single-item .content {
    margin-bottom: 50px;
}

.hContact {
    padding: 50px 0 0;
}

.contact-single-item h4 {
    font-size: 3rem;
}

.contact-page-form-section .contact-item-wrapper .contact-single-item .content .title {
    font-size: 40px;
    line-height: 55px;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.contact-page-form-section .contact-item-wrapper .contact-single-item .content p {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
    margin-bottom: 0px;
}

.services-single-section {
    background: #FFF9FC;
    padding: 106px 0px 90px 0px;
    position: relative;
}

.services-single-section .services-shape {
    position: absolute;
    bottom: 13%;
    left: 8%;
}

.services-single-section .services-shape-02 {
    position: absolute;
    right: 14%;
    bottom: 5%;
}

.services-single-section .services-shape-03 {
    position: absolute;
    left: 34%;
    top: 22%;
}

.services-single-item {
    position: relative;
    background-color: #fff;
    border: 1px solid rgba(227, 227, 227, 0.5);
    border-radius: 5px;
    padding: 40px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    margin-bottom: 30px;
    z-index: 0;
    overflow: hidden;
}

.services-single-item:hover {
    background-color: var(--main-color-one);
    border-color: 0;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.services-single-item:hover .testimonial-carousel .owl-nav {
    visibility: visible;
}

.services-single-item:hover .icon {
    color: #fff;
    border-color: #fff;
}

.services-single-item:hover .content .title {
    color: #fff;
}

.services-single-item:hover .content .description {
    color: #fff;
}

.services-single-item:hover .shape-01 {
    opacity: 1;
    visibility: visible;
}

.services-single-item:hover .btn-wrapper .event-btn {
    color: #fff;
}

.services-single-item .content .title {
    font-size: 24px;
    line-height: 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #04072E;
    margin-bottom: 20px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.services-single-item .content .description {
    font-size: 16px;
    line-height: 28px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #505050;
    margin-bottom: 25px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.services-single-item .shape-01 {
    position: absolute;
    top: -3px;
    max-width: 137px;
    right: -3px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    opacity: 0;
    visibility: hidden;
}

.services-single-item .icon {
    margin-bottom: 15px;
    width: 90px;
    height: 90px;
    line-height: 100px;
    text-align: center;
    background: transparent;
    font-size: 50px;
    color: var(--main-color-one);
    margin-right: 20px;
    position: relative;
    border: 1px dashed var(--main-color-one);
    border-radius: 50%;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.project-plaing-section {
    margin-top: 120px;
}

.project-plaing-section .single-items-wrapper.planing-bg {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    min-height: 514px;
    border-radius: 6px;
    width: 100%;
    padding-top: 55px;
}

.project-plaing-section .single-items-wrapper .planing-single-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #FFF9FC;
    -webkit-box-shadow: 0px 15px 30px rgba(221, 19, 26, 0.14);
    box-shadow: 0px 15px 30px rgba(221, 19, 26, 0.14);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 6px;
}

.project-plaing-section .single-items-wrapper .planing-single-item.style-01 {
    margin-left: 50px;
}

.project-plaing-section .single-items-wrapper .planing-single-item .content .title {
    font-size: 16px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 700;
    color: #6B6B6B;
    margin-bottom: 0;
}

.project-plaing-section .single-items-wrapper .planing-single-item .content p {
    font-size: 30px;
    line-height: 40px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--main-color-one);
    margin-bottom: 0;
}

.project-plaing-section .single-items-wrapper .planing-single-item .icon {
    font-size: 34px;
    margin-right: 25px;
}


/*-----------------------
    Blog Grid Item
-----------------------*/
.Blog_Dbg{
    padding: 20px 0px;
    position: relative;
    background-color: #053b87;
}

.blog-details-items {
    border-bottom: 1px dashed rgba(204, 204, 204, 0.5);
}

.blog-details-items .thumb {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 25px;
}

.blog-details-items .thumb img {
    border-radius: 10px;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    width: 100%;
}

.blog-details-items .thumb img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-details-items .blog-list-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-details-items .blog-list-items ul li {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
    margin-bottom: 0;
    padding-bottom: 15px;
    padding-left: 40px;
    position: relative;
}

.blog-details-items .blog-list-items ul li::after {
    content: "";
    font-family: "fontawesome";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    color: var(--main-color-one);
    margin-right: 20px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.blog-details-items .blog-list-items ul li i {
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    color: var(--main-color-one);
    margin-right: 20px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.blog-details-items .blog-details-item-header h6 {
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 500;
    color: var(--main-color-one);
    margin-bottom: 5px;
}

.blog-details-items .title {
    font-size: 30px;
    line-height: 36px;
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);
    cursor: pointer;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.blog-details-items .title:hover {
    color: var(--main-color-one);
}

.blog-details-items p {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
    margin-bottom: 10px;
}

.blog-details-footer {
    padding-top: 50px;
}

.blog-details-footer .tags {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-details-footer .tags .title {
    font-size: 16px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 500;
    color: #292929;
    margin-right: 17px;
}

.blog-details-footer .tags li a {
    font-size: 14px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    padding: 5px 15px;
    border-radius: 2px;
    background: #F3F3F3;
    margin-right: 10px;
}

.blog-single-pagination {
    margin-top: 50px;
}

.blog-single-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blog-single-pagination ul li a {
    font-size: 16px;
    line-height: 35px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--main-color-one);
}

.blog-single-pagination ul li a .fa-arrow-left {
    margin-right: 15px;
}

.blog-single-pagination ul li a .fa-arrow-right {
    margin-left: 15px;
}

.top-rated-section {
    margin-top: 75px;
}

.top-rated-section .testimonial-carousel-six .owl-nav .owl-prev {
    position: absolute;
    right: 11%;
    top: -85px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    color: var(--main-color-one);
    font-size: 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0 12px 20px rgba(221, 19, 26, 0.24);
    box-shadow: 0 12px 20px rgba(221, 19, 26, 0.24);
    border: 1px solid #fff;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.top-rated-section .testimonial-carousel-six .owl-nav .owl-prev:hover {
    border: 1px solid var(--main-color-one);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.top-rated-section .testimonial-carousel-six .owl-nav .owl-next {
    position: absolute;
    right: 0%;
    top: -85px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    color: var(--main-color-one);
    font-size: 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0 12px 20px rgba(221, 19, 26, 0.24);
    box-shadow: 0 12px 20px rgba(221, 19, 26, 0.24);
    border: 1px solid #fff;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.top-rated-section .testimonial-carousel-six .owl-nav .owl-next:hover {
    border: 1px solid var(--main-color-one);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.comment-form-wrap .reply-title {
    font-size: 24px;
    line-height: 65px;
    font-family: var(--body-font);
    font-weight: 700;
    color: #292929;
}

.comment-form-wrap p {
    font-size: 14px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
}

.comment-form-wrap .comment-form .form-group {
    margin-bottom: 22px;
}

.comment-form-wrap .comment-form .form-group .form-control {
    height: 64px;
    border: 1px solid rgba(204, 204, 204, 0.5);
    border-radius: 4px;
}

.comment-form-wrap .comment-form .form-group .form-control::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 300;
    color: #AAAAAA;
    padding-left: 15px;
}

.comment-form-wrap .comment-form .form-group .form-control::-moz-placeholder {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 300;
    color: #AAAAAA;
    padding-left: 15px;
}

.comment-form-wrap .comment-form .form-group .form-control:-ms-input-placeholder {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 300;
    color: #AAAAAA;
    padding-left: 15px;
}

.comment-form-wrap .comment-form .form-group .form-control::-ms-input-placeholder {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 300;
    color: #AAAAAA;
    padding-left: 15px;
}

.comment-form-wrap .comment-form .form-group .form-control::placeholder {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 300;
    color: #AAAAAA;
    padding-left: 15px;
}

.comment-form-wrap .comment-form .form-group .textarea {
    height: 180px;
    resize: none;
    margin-bottom: 27px;
}

.history-single-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.history-single-item+.history-single-item::after {
    content: "";
    width: 2px;
    height: 105%;
    bottom: 58%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 1px dashed #AAAAAA;
    position: absolute;
    z-index: -2;
}

.history-single-item::before {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 45%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--main-color-one);
    z-index: -1;
}

.history-single-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.history-single-item:nth-child(even) .history-year {
    margin-right: 145px;
}

.history-single-item .circle {
    width: 12px;
    height: 12px;
    background: var(--main-color-one);
    border-radius: 50%;
    position: absolute;
    right: 50%;
    top: 47%;
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}

.history-single-item .history-single-item-content .thumb {
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 285px;
    border-radius: 10px 10px 0px 0px;
}

.history-single-item .history-single-item-content .content {
    padding: 30px;
    -webkit-box-shadow: 0px 12px 30px rgba(80, 80, 80, 0.2);
    box-shadow: 0px 12px 30px rgba(80, 80, 80, 0.2);
    border-radius: 0px 0px 10px 10px;
}

.history-single-item .history-single-item-content .content .title {
    font-size: 24px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
}

.history-single-item .history-single-item-content .content p {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #6B6B6B;
    max-width: 420px;
}

.history-single-item .history-year {
    margin-left: 145px;
    width: 120px;
    height: 85px;
    text-align: center;
    background: var(--main-color-one);
    border-radius: 6px;
}

.history-single-item .history-year .month {
    font-size: 18px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
}

.history-single-item .history-year .year {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0;
}

.poll-wrapper {
    background: #fff;
    padding: 40px;
    max-width: 600px;
    width: 500px;
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    position: fixed;
    z-index: 999;
    right: -500px;
    top: 70%;
    -webkit-transform: translateY(-70%);
    transform: translateY(-70%);
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.poll-wrapper.vote {
    right: 0%;
}

.poll-wrapper header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.poll-wrapper header .thumb img {
    border-radius: 6px;
    margin-right: 20px;
}

.poll-wrapper header .content .voter-name {
    font-size: 24px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
}

.poll-wrapper header .content span {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
}

.wrapper .poll-area {
    margin: 20px 0 15px 40px;
}

.poll-area .label {
    display: block;
    margin-bottom: 20px;
    border-radius: 5px;
    border-radius: 30px;
    padding: 16px;
    background: #F9F9FF;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.poll-area .label:hover {
    border-color: #ddd;
}

.label.selected {
    border-color: #6665ee !important;
}

.label .content-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    pointer-events: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.label .content-wrap .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.label .content-wrap .circle {
    height: 19px;
    width: 19px;
    display: block;
    border: 1px solid #C9C9C9;
    background: #fff;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.label.selected .content-wrap .circle {
    border-color: var(--main-color-one);
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.label .content-wrap .circle::after {
    content: "";
    height: 12px;
    width: 12px;
    line-height: 12px;
    background: #6665ee;
    border-radius: inherit;
    position: absolute;
    left: 49%;
    top: 47%;
    -webkit-transform: translate(-46%, -46%);
    transform: translate(-46%, -46%);
    display: none;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.poll-area .label:hover .content-wrap .circle::after {
    display: block;
    background: transparent;
}

.label.selected .content-wrap .circle::after {
    display: block;
    background: var(--main-color-one) !important;
}

.label .content-wrap span {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--body-font);
    color: var(--heading-color);
}

.label .content-wrap .percent {
    display: none;
    color: var(--main-color-one);
}

.label .progress {
    height: 7px;
    width: 100%;
    position: relative;
    background: #f0f0f0;
    margin: 8px 0 3px 0;
    border-radius: 30px;
    display: none;
    pointer-events: none;
}

.label .progress.style-01 {
    height: 7px;
    width: 100%;
    position: relative;
    background: #f0f0f0;
    margin: 8px 0 3px 0;
    border-radius: 30px;
    display: none;
    pointer-events: none;
}

.label .progress.style-02 {
    height: 7px;
    width: 100%;
    position: relative;
    background: #f0f0f0;
    margin: 8px 0 3px 0;
    border-radius: 30px;
    display: none;
    pointer-events: none;
}

.label .progress:after {
    position: absolute;
    content: "";
    height: 100%;
    background: #ccc;
    width: calc(1% * var(--w));
    border-radius: inherit;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.label .progress.style-01:after {
    position: absolute;
    content: "";
    height: 100%;
    background: #ccc;
    width: calc(1% * var(--w));
    border-radius: inherit;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.label .progress.style-02:after {
    position: absolute;
    content: "";
    height: 100%;
    background: #ccc;
    width: calc(1% * var(--w));
    border-radius: inherit;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.label .progress.style-03:after {
    position: absolute;
    content: "";
    height: 100%;
    background: #ccc;
    width: calc(1% * var(--w));
    border-radius: inherit;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.label.selected .progress::after {
    background: var(--main-color-one);
    -webkit-animation: loader 0.7s linear;
    animation: loader 0.7s linear;
}

.label.selected .progress.style-01::after {
    background: var(--main-color-one);
    -webkit-animation: loader01 0.7s linear;
    animation: loader01 0.7s linear;
}

.label.selected .progress.style-02::after {
    background: var(--main-color-one);
    -webkit-animation: loader02 0.7s linear;
    animation: loader02 0.7s linear;
}

.label.selected .progress.style-03::after {
    background: var(--main-color-one);
    -webkit-animation: loader03 0.7s linear;
    animation: loader03 0.7s linear;
}

.label.selectall .progress,
.label.selectall .content-wrap .percent {
    display: block;
}

input[type=radio],
input[type=checkbox] {
    display: none;
}

@-webkit-keyframes loader {
    0% {
        width: 0%;
    }
    100% {
        width: 20%;
    }
}

@keyframes loader {
    0% {
        width: 0%;
    }
    100% {
        width: 20%;
    }
}

@-webkit-keyframes loader01 {
    0% {
        width: 0%;
    }
    100% {
        width: 40%;
    }
}

@keyframes loader01 {
    0% {
        width: 0%;
    }
    100% {
        width: 40%;
    }
}

@-webkit-keyframes loader02 {
    0% {
        width: 0%;
    }
    100% {
        width: 10%;
    }
}

@keyframes loader02 {
    0% {
        width: 0%;
    }
    100% {
        width: 10%;
    }
}

@-webkit-keyframes loader03 {
    0% {
        width: 0%;
    }
    100% {
        width: 30%;
    }
}

@keyframes loader03 {
    0% {
        width: 0%;
    }
    100% {
        width: 30%;
    }
}


/*----------------------------------------
  ## Search Popup
----------------------------------------*/

.search-popup.active .search-form {
    visibility: visible;
    opacity: 1;
}

.search-popup .search-form {
    min-width: 500px;
    /* position: absolute; */
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

.search-popup .search-form .form-group .form-control {
    border: none;
    border-radius: 0px;
    height: 60px;
    padding: 0 100px 0 30px;
}

.search-popup .search-form .submit-btn {
    position: absolute;
    right: -15px;
    top: -20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-color: var(--hover-color);
    background-color: var(--hover-color);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    padding: 0;
    text-align: center;
}

.search-popup .search-form .submit-btn span {
    color: #fff;
    font-size: 20px;
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(42, 40, 29, 0.8);
    z-index: 9;
    content: "";
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.body-overlay.active {
    visibility: visible;
    opacity: 1.5;
}

.click-mobile-search {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 5;
    width: 100%;
    padding: 20px;
    background: #fff;
}


/*-------------------------
    ## Preloader Css
---------------------------*/

.preloader-inner {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    background-color: #fff;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.preloader-inner .loader {
    width: 50px;
    height: 50px;
}

.preloader-inner .loader {
    -webkit-animation: name duration timing-function delay iteration-count direction fill-mode;
    animation: name duration timing-function delay iteration-count direction fill-mode;
}

.preloader-inner .loader svg g g path:first-child {
    -webkit-animation: loader_one 0.8s ease-in infinite;
    animation: loader_one 0.8s ease-in infinite;
}

.preloader-inner .loader svg g g path:nth-child(2) {
    -webkit-animation: loader_two 0.8s ease-in infinite;
    animation: loader_two 0.8s ease-in infinite;
}

.preloader-inner .loader svg g g path:last-child {
    -webkit-animation: loader_three 0.8s ease-in infinite;
    animation: loader_three 0.8s ease-in infinite;
}

@-webkit-keyframes loader_one {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes loader_one {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes loader_two {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes loader_two {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes loader_three {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes loader_three {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}


/*--------------------------------------------------------------
	## Header
--------------------------------------------------------------*/

.header-area {
    padding: 290px 0 225px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.header-area.style-04 .header-top {
    margin-top: 0;
}

.header-area.style-04 .header-top::after {
    display: none;
}

.header-area.style-04 .top-single-items {
    position: unset;
    -webkit-transform: none;
    transform: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #D2D2D2;
}

.header-area.style-04 .top-single-items .top-single-item .icon i {
    color: var(--heading-color);
}

.header-area.style-04 .top-single-items .top-single-item .content .title {
    color: var(--heading-color);
}

.header-area.style-04 .top-single-items .top-single-item .form-select {
    color: var(--heading-color);
    font-weight: 400;
}

.header-area.style-04 .top-single-items .top-single-item .form-select option {
    background-color: #fff;
}

.header-area.style-04 .btn-wrapper {
    margin-top: 50px;
}

.header-area.style-04 .btn-wrapper a {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--main-color-one);
    color: var(--main-color-one);
    font-size: 18px;
    font-weight: 700;
}

.header-area.style-04 .btn-wrapper a:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.header-area.style-04 .top-social-share {
    margin-bottom: 0;
    margin-top: 40px;
}

.header-area.style-04 .top-social-share i:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.header-area.header-sanatory {
    background-color: transparent;
    padding: 70px 0 25px;
    min-height: 80vh;
}

.header-area.header-sanatory .header-inner {
    overflow: hidden;
}

.header-area.header-sanatory .header-inner.style-02 .subtitle {
    padding-left: 0;
    font-size: 24px;
    font-weight: 500;
    text-transform: unset;
    font-family: var(--body-font);
}

@media only screen and (max-width: 991px) {
    .header-area.header-sanatory .header-inner.style-02 .subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

.header-area.header-sanatory .header-inner.style-02 .subtitle .title-shape {
    position: absolute;
    top: 10%;
    left: 34%;
}

@media only screen and (max-width: 991px) {
    .header-area.header-sanatory .header-inner.style-02 .subtitle .title-shape {
        display: none;
    }
}

.header-area.header-sanatory .header-inner.style-02 .btn-wrapper a {
    border: 1px solid #fff;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: unset !important;
}

.header-area.header-sanatory .header-inner.style-02 .btn-wrapper a:hover {
    background-color: #fff;
    color: var(--main-color-one);
}

.header-area.header-sanatory .header-inner .title {
    font-size: 65px;
    line-height: 75px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 600px;
}

.header-area.header-sanatory .header-inner .title.style-01 {
    max-width: inherit;
    text-align: center;
    color: #04072E;
}

.header-area.header-sanatory .header-inner .title.style-02 {
    margin: 0 auto;
    font-size: 79px;
    line-height: 112px;
    text-transform: unset !important;
}

@media only screen and (max-width: 991px) {
    .header-area.header-sanatory .header-inner .title.style-02 {
        font-size: 50px;
        line-height: 60px;
    }
}

.header-area.header-sanatory .header-inner h5 {
    font-size: 20px;
    line-height: 28px;
    font-family: "Roboto";
    font-weight: bold;
    color: #04072E;
}

.header-area.header-sanatory .header-inner h5 i {
    font-size: 10px;
    color: var(--main-color-one);
    margin-right: 10px;
    transform: translateY(-4px);
}

.header-area.header-sanatory .header-inner p {
    color: #04072E;
    font-size: 16px;
    line-height: 28px;
    max-width: 600px;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: var(--body-font);
}

.header-area.header-sanatory .header-inner p.style-01 {
    max-width: inherit;
    text-align: center;
    line-height: 30px;
    font-weight: 500;
    color: #202020;
    margin-bottom: 55px;
}

.header-area.header-sanatory .header-inner.political .title {
    color: #fff;
    max-width: 750px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.header-area.header-sanatory .header-inner.political p {
    max-width: 670px;
    color: #fff;
    margin-bottom: 60px;
}

.header-area.header-sanatory .header-inner.political .form-group {
    position: relative;
    margin-bottom: 25px;
}

.header-area.header-sanatory .header-inner.political .form-group .form-control {
    width: 568px;
    height: 75px;
    border-radius: 5px;
    padding-left: 65px;
    padding-right: 30px;
}

.header-area.header-sanatory .header-inner.political .form-group .form-control::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #CCCCCC;
    padding-left: 6px;
}

.header-area.header-sanatory .header-inner.political .form-group .form-control::-moz-placeholder {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #CCCCCC;
    padding-left: 6px;
}

.header-area.header-sanatory .header-inner.political .form-group .form-control:-ms-input-placeholder {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #CCCCCC;
    padding-left: 6px;
}

.header-area.header-sanatory .header-inner.political .form-group .form-control::-ms-input-placeholder {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #CCCCCC;
    padding-left: 6px;
}

.header-area.header-sanatory .header-inner.political .form-group .form-control::placeholder {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #CCCCCC;
    padding-left: 6px;
}

.header-area.header-sanatory .header-inner.political .form-group .icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
    font-size: 22px;
    color: #CCCCCC;
}

.header-area.header-sanatory .header-inner.political .form-group .form-btn {
    position: absolute;
    top: 0;
    right: 40%;
    border: 0;
    height: 75px;
    width: 100px;
    text-transform: uppercase;
    border-radius: 0px 5px 5px 0px;
    background-color: #fff;
    cursor: pointer;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.header-area.header-sanatory .header-inner.political .form-group .form-btn:hover {
    background: var(--main-color-one);
    color: #fff;
}

.header-area.header-sanatory .header-inner.political .form-group .form-btn:hover::after {
    border-color: #fff;
}

.header-area.header-sanatory .header-inner.political .form-group .form-btn::after {
    content: "";
    position: absolute;
    border: 1px solid var(--main-color-one);
    height: 39px;
    left: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-area.header-sanatory .header-inner.political .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-area.header-sanatory .header-inner.political .form-check .form-check-input {
    width: 25px;
    height: 20px;
    line-height: 25px;
    border: none;
    margin-right: 10px;
}

.header-area.header-sanatory .header-inner.political .form-check .form-check-label {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 28px;
    font-weight: 500;
    font-family: var(--body-font);
    color: #fff;
    margin-left: 15px;
    margin-top: 5px;
}

.header-area.header-sanatory .senatory-bg-img {
    height: 775px;
    width: 873px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 10%;
    top: 6%;
    z-index: -1;
}

.header-area.header-sanatory .senatory-bg-img-02 {
    height: 900px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 25%;
    bottom: 0%;
    z-index: -1;
}

.header-area.header-sanatory.style-02 {
    padding: 250px 0px 287px;
}

.header-area .subtitle {
    position: relative;
    z-index: 0;
    font-size: 24px;
    line-height: 85px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    padding-left: 70px;
    letter-spacing: 1px;
    padding-left: 170px;
}

.header-area .subtitle.style-01 {
    padding-left: 0px;
    text-align: center;
    color: var(--main-color-one);
}

.header-area .subtitle .line {
    content: "";
    position: absolute;
    left: 0;
    top: 36px;
    width: 153px;
    height: 2px;
    background-color: #fff;
}

.header-area .subtitle .line::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--main-color-one);
    border-radius: 50%;
    right: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-area .subtitle .line-02 {
    content: "";
    position: absolute;
    left: 0;
    top: 45px;
    width: 130px;
    height: 2px;
    background-color: #fff;
}

.header-area .subtitle .line-02::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--main-color-one);
    border-radius: 50%;
    right: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-area.header-bg {
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
}

.header-area.header-bg-02 {
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 300px 0px 217px;
}

.header-area.header-bg-02::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(260deg, rgba(0, 5, 101, 0) 0%, #000565 100%);
}

.header-area.header-bg-03 {
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 558px 0px 132px;
}

.header-area.header-bg-03::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(182deg, rgba(255, 255, 255, 0) 23%, white 100%);
}

.header-area .senatory-banner {
    position: absolute;
    z-index: -2;
    bottom: 90px;
    left: 5%;
    -webkit-animation: updown 3s both linear alternate infinite;
    animation: updown 3s both linear alternate infinite;
}

.header-area .lottie-shape {
    position: absolute;
    left: 11%;
    z-index: -1;
    max-width: 190px;
}

.header-area .lottie-shape .path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.header-area .top-single-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: -4%;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.header-area .top-single-items .top-single-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 42px;
}

.header-area .top-single-items .top-single-item .side-icon {
    margin-right: 15px;
    color: #fff;
}

.header-area .top-single-items .top-single-item .content {
    overflow: hidden;
}

.header-area .top-single-items .top-single-item .content .title {
    color: #fff;
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
    font-family: var(--body-font);
}

.header-area .dot {
    width: 3px;
    height: 33px;
    background: var(--main-color-one);
    position: absolute;
    top: 2%;
    left: 7%;
    -webkit-animation: updown-two 1.5s both linear alternate infinite;
    animation: updown-two 1.5s both linear alternate infinite;
}

.header-area .dot-02 {
    width: 3px;
    height: 33px;
    background: var(--main-color-one);
    position: absolute;
    top: 50%;
    left: 7%;
    -webkit-animation: updown-two 1.5s both linear alternate infinite;
    animation: updown-two 1.5s both linear alternate infinite;
}

.header-area .dot-03 {
    width: 3px;
    height: 33px;
    background: var(--main-color-one);
    position: absolute;
    top: 2%;
    right: 7%;
    -webkit-animation: updown-two 1.5s both linear alternate infinite;
    animation: updown-two 1.5s both linear alternate infinite;
}

.header-area .dot-04 {
    width: 3px;
    height: 33px;
    background: var(--main-color-one);
    position: absolute;
    top: 18%;
    right: 21%;
    -webkit-animation: updown-two 1.5s both linear alternate infinite;
    animation: updown-two 1.5s both linear alternate infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.header-area .dot-05 {
    width: 3px;
    height: 33px;
    background: var(--main-color-one);
    position: absolute;
    top: 50%;
    right: 21%;
    -webkit-animation: updown-two 1.5s both linear alternate infinite;
    animation: updown-two 1.5s both linear alternate infinite;
}

.header-area .dot-06 {
    width: 3px;
    height: 33px;
    background: var(--main-color-one);
    position: absolute;
    top: 80%;
    right: 7%;
    -webkit-animation: updown-two 1.5s both linear alternate infinite;
    animation: updown-two 1.5s both linear alternate infinite;
}

.header-area .dot-07 {
    width: 3px;
    height: 33px;
    background: var(--main-color-one);
    position: absolute;
    top: 80%;
    left: 24%;
    -webkit-animation: updown-two 1s both linear alternate infinite;
    animation: updown-two 1s both linear alternate infinite;
}

.header-area .dot-08 {
    width: 3px;
    height: 33px;
    background: var(--main-color-one);
    position: absolute;
    top: 20%;
    left: 24%;
    -webkit-animation: updown-two 1s both linear alternate infinite;
    animation: updown-two 1s both linear alternate infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.header-area .dot-09 {
    width: 3px;
    height: 33px;
    background: var(--main-color-one);
    position: absolute;
    top: 10%;
    left: 40%;
    -webkit-animation: updown-two 1s both linear alternate infinite;
    animation: updown-two 1s both linear alternate infinite;
}

.header-top.about marquee {
    color: #fff;
}

.header-top {
    margin-top: -7px;
}

.header-top.about {
    padding-top: 23px;
}

.header-top::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 54px;
    z-index: -1;
    background-color: var(--secondary-color);
}

.header-top .row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-top .top-social-share {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
}

.header-top .top-social-share i {
    width: 30px;
    height: 30px;
    background: var(--main-color-two);
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.header-top .top-social-share i:hover {
    background-color: #fff;
    color: var(--main-color-one);
}

.header-top .top-social-share li {
    margin-right: 10px;
}

.header-top .top-social-share li:last-child {
    margin-right: 0;
}

.header-top .top-single-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header-top .top-single-items .top-single-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-top .top-single-items .top-single-item:last-child {
    margin-right: 0;
}

.header-top .top-single-items .top-single-item .icon {
    margin-right: 10px;
}

.header-top .top-single-items .top-single-item .icon i {
    font-size: 17px;
    color: #fff;
}

.header-top .top-single-items .top-single-item .icon .icon-envelope {
    font-size: 13px;
}

.header-top .top-single-items .top-single-item .icon:last-child {
    margin-right: 0;
    margin-left: 10px;
    color: #fff;
}

.header-top .top-single-items .top-single-item .title {
    font-size: 14px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.header-top .top-single-items .top-single-item .form-select {
    background: transparent !important;
    color: #fff;
    border: none;
    --webkit-border: none;
    padding: 5px 8px;
    font-size: 14px;
    font-family: var(--body-font);
    font-weight: 500;
    line-height: 19px;
}

.header-top .top-single-items .top-single-item .form-select option {
    background: var(--heading-color);
}

.header-slider-one .owl-dots {
    position: absolute;
    top: 46%;
    right: 5%;
}

.header-slider-one .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 5px 7px;
    background: transparent;
    border: 1px solid var(--main-color-one);
    display: block;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    border-radius: 1px;
    position: relative;
}

.header-slider-one .owl-dots .owl-dot.active span,
.header-slider-one .owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
}

.header-slider-one .owl-dots .owl-dot.active span::after,
.header-slider-one .owl-theme .owl-dots .owl-dot:hover span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background: var(--main-color-one);
}

.header-slider-one .owl-item.active .side-icon {
    -webkit-animation: slideInLeft 2s 0s both;
    animation: slideInLeft 2s 0s both;
}

.header-slider-one .owl-item.active .btn-wrapper {
    -webkit-animation: slideInLeft 2s 0s both;
    animation: slideInLeft 2s 0s both;
}

.header-slider-one .owl-item.active .lottie-shape .path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    -webkit-animation: dash 4s ease-out forwards;
    animation: dash 4s ease-out forwards;
}

.header-slider-two .owl-item.active .title {
    -webkit-animation: slideInLeft 2s 0s both;
    animation: slideInLeft 2s 0s both;
}

.header-slider-two .owl-item.active .subtitle {
    -webkit-animation: slideInLeft 2s 0s both;
    animation: slideInLeft 2s 0s both;
}

.header-slider-two .owl-item.active p {
    -webkit-animation: slideInLeft 2s 0s both;
    animation: slideInLeft 2s 0s both;
}

.header-slider-two .owl-nav {
    position: absolute;
    right: 8%;
    top: 50%;
}

.header-slider-two .owl-nav .owl-prev {
    width: 45px;
    height: 45px;
    background: #00000029;
    line-height: 45px;
    text-align: center;
    color: #fff;
    font-size: 25px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.header-slider-two .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    background: #00000029;
    line-height: 45px;
    text-align: center;
    color: #fff;
    font-size: 25px;
    border-radius: 6px;
}

.check-box .container-box {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
}

.check-box .container-box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.check-box .container-box .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 4px;
}

.check-box .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    color: #000;
    left: 6px;
    top: 3px;
    width: 7px;
    height: 11px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check-box .container-box input:checked~.checkmark:after {
    display: block;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes updown {
    0% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        -webkit-transform: translate(0px);
        transform: translate(0px);
    }
}

@keyframes updown {
    0% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        -webkit-transform: translate(0px);
        transform: translate(0px);
    }
}

@-webkit-keyframes updown-two {
    0% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes updown-two {
    0% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}


/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/

.navbar.navbar-area.white .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar.navbar-area.nav-style-01 .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(221, 221, 221, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar.navbar-area .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.mobile-logo {
    display: none;
}

@media only screen and (max-width: 991px) {
    .mobile-logo {
        display: block;
    }
    .desktop-logo {
        display: none !important;
    }
}

.nav-container {
    max-width: 1480px;
    width: 100%;
}

.nav-container.home-three {
    max-width: 1170px;
}

.custom-container {
    max-width: 1245px;
    width: 100%;
}

.navbar-area.style-04 {
    display: none;
    background-color: var(--secondary-color) !important;
    border-bottom: none !important;
}

@media only screen and (max-width: 575px) {
    .navbar-area.style-04 .nav-container {
        margin: 0;
    }
}

@media only screen and (max-width: 1600px) {
    .navbar-area.style-04 {
        display: block;
    }
}

.navbar-area.style-01::after {
    content: "";
    position: absolute;
    top: 0;
    left: -2%;
    width: 25%;
    height: 100px;
    z-index: -1;
    background-color: #fff;
    -webkit-transform: skew(23deg);
    transform: skew(23deg);
}

.navbar-area.nav-style-01 .nav-container {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 15px;
}

.navbar-area.nav-style-01 .nav-container .nav-right-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 40px;
}

.navbar-area.nav-style-01 .nav-container .nav-right-content ul {
    margin: 0px;
}

.navbar-area.nav-style-01 .nav-container .nav-right-content ul li {
    color: var(--heading-color);
    margin-left: 0px;
}

.navbar-area.nav-style-01 .nav-container .nav-right-content ul li a {
    color: var(--heading-color);
    font-size: 20px;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav {
    text-align: right;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li {
    line-height: 110px;
    position: relative;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li .line {
    position: absolute;
    top: 20px;
    left: 0px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    z-index: -1;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li .line.style-01 {
    left: -2px;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li .line .dot {
    display: inline-block;
    height: 2px;
    width: 4px;
    background-color: var(--main-color-one);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li .line .dot.style-02 {
    width: 25px;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--main-color-one);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item.menu-item-has-children:before {
    color: var(--main-color-one);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    z-index: initial;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    color: var(--heading-color);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
    border-top: 1px solid #e2e2e2;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    background-color: #fff;
    color: var(--paragraph-color);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
    color: #fff;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li a {
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: var(--heading-color);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
    color: var(--main-color-one);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover a {
    color: var(--main-color-one);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover .line {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.navbar-area.nav-style-02 {
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100px;
    z-index: 2;
    border-bottom: 1px solid #fff;
}

.navbar-area.nav-style-02.b-none {
    border-bottom: 0px;
}

.navbar-area.nav-style-02 .nav-container {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 15px;
}

.navbar-area.nav-style-02 .nav-container .logo-wrapper {
    max-width: 150px;
}

.navbar-area.nav-style-02 .nav-container .nav-right-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 40px;
}

.navbar-area.nav-style-02 .nav-container .nav-right-content.style-01 {
    margin-left: 0px;
}

.navbar-area.nav-style-02 .nav-container .nav-right-content ul li {
    color: var(--heading-color);
}

.navbar-area.nav-style-02 .nav-container .nav-right-content ul li+li {
    margin-left: 5px;
}

.navbar-area.nav-style-02 .nav-container .nav-right-content ul li a {
    color: var(--heading-color);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav {
    text-align: right;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav.home-three {
    text-align: left;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav.political li a {
    color: #fff;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li {
    position: relative;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li .line {
    position: absolute;
    top: 20px;
    left: 0px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    z-index: -1;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li .line.style-01 {
    left: -2px;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li .line .dot {
    display: inline-block;
    height: 2px;
    width: 4px;
    background-color: var(--main-color-one);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li .line .dot.style-02 {
    width: 25px;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    z-index: initial;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children.style-01::before {
    color: #fff;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    color: #fff;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--main-color-one);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.current-menu-item:before {
    color: var(--main-color-one);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li a {
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: var(--heading-color);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
    color: var(--main-color-one);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li:hover a {
    color: var(--main-color-one);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li:hover .line {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.navbar-area .nav-container {
    background-color: #fff;
    -webkit-box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 0 30px;
}

.navbar-area .nav-container .nav-right-content .btn-wrapper {
    margin-left: 80px;
}

.navbar-area .nav-container .nav-right-content .donate-btn {
    font-size: 18px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content .donate-btn i {
    font-size: 16px;
    margin-left: 10px;
}

.navbar-area .nav-container .nav-right-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 15px;
}

.navbar-area .nav-container .nav-right-content ul li {
    display: inline-block;
    margin: 0 15px;
    color: #6a7795;
}

.navbar-area .nav-container .nav-right-content ul li:last-child {
    margin-right: 0;
}

.navbar-area .nav-container .nav-right-content ul li a {
    color: #6a7795;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .nav-right-content ul li a:hover {
    color: var(--secondary-color);
}

.navbar-area .nav-container .nav-right-content ul li.search {
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .nav-right-content ul li.search:hover {
    color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed {
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 5px;
    background-color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed:hover {
    background-color: var(--secondary-color);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    width: 100%;
    text-align: right;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: inline-block;
    font-size: 16px;
    font-family: var(--body-font);
    text-transform: capitalize;
    font-weight: 600;
    line-height: 70px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
    margin-left: 40px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--main-color-one);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    position: relative;
    z-index: 0;
    padding-right: 15px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    position: absolute;
    right: -3px;
    top: 50%;
    content: "\f078";
    font-weight: 700;
    font-family: "fontawesome";
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    font-size: 12px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: absolute;
    text-align: left;
    min-width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
    left: 0;
    top: 100%;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    z-index: 9;
    border-bottom: 4px solid var(--main-color-one);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    display: block;
    margin-left: 0;
    line-height: 24px;
    font-size: 14px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
    border-top: 1px solid #e2e2e2;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    display: block;
    padding: 12px 30px;
    background-color: #fff;
    white-space: nowrap;
    color: var(--paragraph-color);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
    position: relative;
    z-index: 0;
    padding-right: 0px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 0px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu .sub-menu .sub-menu {
    left: auto;
    right: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
    color: #fff;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
    color: var(--main-color-one);
}

@media only screen and (max-width: 991px) {
    .navbar-area.nav-style-02 .nav-container {
        padding: 37px 0px;
    }
    .navbar-area.nav-style-02 .nav-container .navbar-toggler {
        background-color: #000565;
    }
    .navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav {
        background-color: #000565;
        padding: 0 20px;
    }
    .navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
        background-color: transparent;
        color: rgba(255, 255, 255, 0.8);
    }
    .navbar-area.nav-style-02 .nav-container .btn-wrapper {
        display: none;
    }
    .navbar-area.nav-style-02 .nav-container .donate-btn {
        display: none;
    }
    .navbar-area.nav-style-01 .nav-container {
        padding: 20px 0px;
    }
    .navbar-area.nav-style-01 .nav-container .responsive-mobile-menu .navbar-toggler {
        background-color: #000565;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav {
        text-align: left;
        background-color: #000565;
        padding: 0 20px;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li {
        line-height: 30px;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
        color: var(--main-color-one);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item.menu-item-has-children:before {
        color: var(--main-color-one);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
        z-index: initial;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        color: rgba(255, 255, 255, 0.8);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
        border-top: 1px solid rgba(221, 19, 26, 0.5);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
        background-color: transparent;
        color: #d7d2d2e6;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
        background-color: var(--main-color-one);
        color: #fff;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
        color: #656565;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li a {
        -webkit-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        color: #fff;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
        color: var(--main-color-one);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover a {
        color: var(--main-color-one);
    }
    .navbar-area.nav-style-01 .nav-container .btn-wrapper {
        display: none;
    }
    .navbar-area .nav-container {
        position: relative;
        z-index: 0;
        min-height: 80px;
    }
    .navbar-area .nav-container .responsive-mobile-menu {
        display: block;
        position: relative;
        width: 100%;
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler {
        position: absolute;
        right: 20px;
        top: 50%;
        /* IE 9 */
        -webkit-transform: translateY(-50%);
        /* Chrome, Safari, Opera */
        transform: translateY(-50%);
    }
    .navbar-area .nav-container .navbar-brand {
        display: block;
    }
    .navbar-area .nav-container .navbar-brand .navbar-toggler {
        position: absolute;
        right: 10px;
        border: 1px solid #e2e2e2;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav {
        display: block;
        margin-top: 20px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        display: block;
        text-align: left;
        line-height: 30px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(221, 19, 26, 0.5);
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
        border-bottom: none;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
        margin-left: 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        top: 25px;
        right: 20px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
        padding-bottom: 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        visibility: visible;
        height: auto;
        opacity: 1;
        background-color: transparent;
        border-bottom: none;
        padding-top: 10px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
        position: initial;
        display: block;
        width: 100%;
        border-top: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        margin-left: 0;
        padding-bottom: 0;
        visibility: hidden;
        opacity: 0;
        height: 0;
        overflow: hidden;
        max-height: 250px;
        overflow-y: scroll;
        -webkit-transition: height 500ms;
        transition: height 500ms;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
        content: "";
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
        padding: 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
        color: #fff;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
        border-top: none;
    }
}

@media only screen and (max-width: 575px) {
    .navbar-area .container.nav-container .collapse.show {
        max-width: 100%;
    }
    .logo-wrapper {
        padding: 20px;
    }
}

.header-nav-wrapper {
    position: absolute;
    background-color: #fff;
    padding: 25px;
    border-radius: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    min-width: 360px;
    left: 70px;
    z-index: 9;
}

@media only screen and (max-width: 1600px) {
    .header-nav-wrapper {
        display: none;
    }
}

.header-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 40px;
}

.header-nav li {
    margin: 20px 0;
}

.header-nav li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
}

.header-nav li.header-menu-item-has-children a {
    position: relative;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.header-nav li.header-menu-item-has-children a::before {
    position: absolute;
    right: 0;
    top: 50%;
    content: "";
    font-weight: 700;
    font-family: "fontawesome";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    font-size: 12px;
    color: var(--main-color-one);
}

.header-nav li.header-menu-item-has-children a:hover {
    color: var(--main-color-one);
}

.header-nav li.header-menu-item-has-children.show a::before {
    content: "";
}

.header-nav li.header-menu-item-has-children .sub-menu {
    list-style: none;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.header-nav li.header-menu-item-has-children .sub-menu li a::before {
    display: none;
}

.habout {
    background-color: #FFF9FC;
    padding: 50px 0;
}

.our-party-section-area {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.our-party-section-area.style-02 {
    padding-top: 120px;
    mix-blend-mode: multiply;
    margin-top: 70px;
}

@media only screen and (max-width: 991px) {
    .our-party-section-area.style-02 {
        padding-bottom: 70px;
    }
}

.our-party-section-area.style-02::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.25);
}

.our-party-section-area.party-vision {
    background: #F9F9FF;
    overflow: hidden;
    margin-top: 145px;
}

.our-party-section-area .party-bg {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    min-height: 650px;
    width: 100%;
}

.our-party-section-area .party-bg.vision-bg {
    min-height: 755px;
    position: relative;
}

.our-party-section-area .party-bg.vision-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(112deg, #000792 0%, #a51038 70%, #dd131a 100%);
    mix-blend-mode: color-dodge;
}

.our-party-section-area .party-shape {
    position: absolute;
    top: 0;
    left: 27%;
}

.our-party-section-area .party-shape-01 {
    position: absolute;
    bottom: 0;
    left: 42%;
}

.our-party-section-area .party-shape-02 {
    width: 255px;
    height: 1px;
    background-color: var(--secondary-color);
    position: absolute;
    top: 45%;
    left: 29%;
    -webkit-transform: rotate(61deg);
    transform: rotate(61deg);
}

.our-party-section-area .party-shape-03 {
    width: 290px;
    height: 1px;
    background-color: var(--secondary-color);
    position: absolute;
    top: 145px;
    left: 28%;
    -webkit-transform: rotate(63deg);
    transform: rotate(63deg);
}

.our-party-section-area .party-vision-shape {
    position: absolute;
    left: 4%;
    top: -8%;
}

.party-single-item .btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (max-width: 599px) {
    .party-single-item .btn-wrapper a {
        margin-top: 0 !important;
    }
}

@media only screen and (max-width: 495px) {
    .party-single-item .btn-wrapper a {
        margin-top: 30px !important;
    }
}

.party-single-thumb {
    position: relative;
    z-index: 2;
}

.party-single-thumb::before {
    position: absolute;
    content: "";
    top: 25%;
    left: 0;
    width: 400px;
    height: 400px;
    background-color: #111111;
    border-radius: 50%;
    z-index: -1;
}

@media only screen and (max-width: 520px) {
    .party-single-thumb::before {
        top: 30%;
        width: 300px;
        height: 300px;
    }
}

@media only screen and (max-width: 400px) {
    .party-single-thumb::before {
        top: 35%;
        width: 250px;
        height: 250px;
    }
}

@media only screen and (max-width: 375px) {
    .party-single-thumb::before {
        top: 35%;
        width: 200px;
        height: 200px;
    }
}

.party-single-thumb .party-single-thumb-video {
    position: absolute;
    top: 50%;
    left: 10%;
}

@media only screen and (max-width: 375px) {
    .party-single-thumb .party-single-thumb-video {
        left: 8%;
    }
}

@media only screen and (max-width: 320px) {
    .party-single-thumb .party-single-thumb-video .video-play::after {
        left: -12%;
    }
}

.party-single-thumb .party-single-thumb-video .video-play i {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--main-color-one);
}

.donation-section-area {
    margin-top: 50px;
}

.donation-section-area.political {
    background-color: #F9F9FF;
    padding: 120px 0px;
    margin-top: 120px;
}

.donation-section-area .donate-bg {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    min-height: 375px;
}

.donation-section-area .donate-bg-02 {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    min-height: 350px;
}

.donation-section-area .btn-wrapper .price-btn {
    display: block;
    width: 100%;
    border: 1px solid var(--main-color-one);
    padding: 12px 22px;
    border-radius: 5px;
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: #505050;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.donation-section-area .btn-wrapper .price-btn:hover {
    border-color: var(--main-color-one);
    color: var(--main-color-one);
}

.vote-section-area {
    position: relative;
    overflow: hidden;
    padding: 140px 0 140px;
}

.vote-section-area.vote-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.vote-section-area .party-shape {
    position: absolute;
    top: 0;
    right: 13%;
}

.vote-section-area .party-shape-01 {
    position: absolute;
    bottom: -50px;
    right: -4%;
}

.vote-section-area .party-shape-02 {
    width: 255px;
    height: 1px;
    background-color: var(--main-color-one);
    position: absolute;
    top: 45%;
    right: 5%;
    -webkit-transform: rotate(61deg);
    transform: rotate(61deg);
}

.vote-section-area .party-shape-03 {
    width: 290px;
    height: 1px;
    background-color: var(--main-color-one);
    position: absolute;
    top: 145px;
    right: 3%;
    -webkit-transform: rotate(63deg);
    transform: rotate(63deg);
}

.vote-section-area .video-section {
    margin-top: 65px;
}

.vote-section-area .video-section span {
    font-size: 40px;
    line-height: 68px;
    font-weight: 400;
    font-family: var(--heading-font-02);
    color: #fff;
}

.campaign-section-area {
    position: relative;
    margin-top: 116px;
}

.campaign-section-area .campaign-single-item {
    -webkit-box-shadow: 0 7px 20px rgba(221, 19, 26, 0.13);
    box-shadow: 0 7px 20px rgba(221, 19, 26, 0.13);
    border-radius: 10px;
    margin-bottom: 50px;
}

.campaign-section-area .campaign-single-item.style-01 {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.campaign-section-area .campaign-single-item .campaign-bg {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 645px;
    border-radius: 10px 0px 0px 10px;
}

.campaign-section-area .campaign-single-item .campaign-bg-02 {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 599px;
    width: 100%;
    border-radius: 10px;
}

.campaign-section-area .campaign-single-items-02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--main-color-one);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 50px;
}

.campaign-section-area .campaign-single-items-02.style-02 {
    background: #fff;
    -webkit-box-shadow: 0 5px 30px rgba(221, 19, 26, 0.12);
    box-shadow: 0 5px 30px rgba(221, 19, 26, 0.12);
}

.campaign-section-area .campaign-single-items-02.style-02::after {
    display: none;
}

.campaign-section-area .campaign-single-items-02.style-02 .icon {
    background: var(--main-color-one);
    color: #fff;
}

.campaign-section-area .campaign-single-items-02.style-02 .content .title-wrapper .title h5 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 700;
}

.campaign-section-area .campaign-single-items-02.style-02 .content .title-wrapper .line .dot {
    background: var(--main-color-one);
}

.campaign-section-area .campaign-single-items-02.style-02 .content p {
    color: var(--heading-color);
}

.campaign-section-area .campaign-single-items-02.style-02 .shape {
    position: absolute;
    top: 0;
    right: 0;
}

.campaign-section-area .campaign-single-items-02::after {
    content: "";
    position: absolute;
    width: 95%;
    height: 30px;
    background: rgba(221, 19, 26, 0.16);
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 10px;
}

.campaign-section-area .campaign-single-items-02 .icon {
    width: 114px;
    height: 114px;
    line-height: 114px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    margin-right: 28px;
    font-size: 65px;
    color: var(--heading-color);
}

.campaign-section-area .campaign-single-items-02 .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.campaign-section-area .campaign-single-items-02 .content .title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.campaign-section-area .campaign-single-items-02 .content .title-wrapper .title {
    position: relative;
}

.campaign-section-area .campaign-single-items-02 .content .title-wrapper .title h5 {
    font-size: 24px;
    line-height: 35px;
    font-family: var(--body-font);
    color: #fff;
    margin-bottom: 15px;
}

.campaign-section-area .campaign-single-items-02 .content .title-wrapper .line {
    margin-left: 15px;
    padding-top: 5px;
}

.campaign-section-area .campaign-single-items-02 .content .title-wrapper .line .dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #fff;
}

.campaign-section-area .campaign-single-items-02 .content .title-wrapper .line .dot.style-02 {
    width: 45px;
}

.campaign-section-area .campaign-single-items-02 .content p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--body-font);
    color: #fff;
    margin-bottom: 0px;
}

.campaign-section-area .campaign-single-items-02 .shape {
    position: absolute;
    top: 0;
    right: 0;
}

.testimonial-section-area {
    position: relative;
}

.testimonial-section-area.people-say {
    overflow: hidden;
}

.testimonial-section-area.people-say::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 100%;
    background: #F9F9FF;
    content: "";
    top: 0;
    right: -102px;
    -webkit-transform: skew(12deg);
    transform: skew(12deg);
}

.testimonial-section-area.testimonial-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 564px;
    padding: 120px 0px 0px;
}

.testimonial-section-area.testimonial-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(4, 7, 46, 0.7);
}

.testimonial-section-area.testimonial-bg-02 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 564px;
    padding: 70px 0px;
}

.testimonial-section-area .shapes.political-shape .shape-01 {
    left: 92%;
    z-index: 1;
    opacity: 1;
}

.testimonial-section-area .shapes.political-shape .shape-02 {
    left: 77%;
    z-index: 1;
    opacity: 1;
}

.testimonial-section-area .shapes.political-shape .shape-03 {
    left: 82%;
    z-index: 1;
    opacity: 1;
}

.testimonial-section-area .shapes.political-shape .shape-04 {
    left: 80%;
    z-index: 1;
    opacity: 1;
}

.testimonial-section-area .shapes .shape-01 {
    position: absolute;
    top: 0;
    left: 19%;
    opacity: 0.5;
}

.testimonial-section-area .shapes .shape-02 {
    position: absolute;
    bottom: 0;
    left: 18px;
    opacity: 0.5;
}

.testimonial-section-area .shapes .shape-03 {
    width: 290px;
    height: 1px;
    background-color: var(--main-color-one);
    position: absolute;
    top: 260px;
    left: 9%;
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    opacity: 0.5;
    z-index: 0;
}

.testimonial-section-area .shapes .shape-04 {
    width: 315px;
    height: 1px;
    background-color: var(--main-color-one);
    position: absolute;
    top: 175px;
    left: 7%;
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    opacity: 0.5;
    z-index: 0;
}

.testimonial-section-area .shapes.style-01 .shape-01 {
    left: 92%;
}

.testimonial-section-area .shapes.style-01 .shape-02 {
    left: 75%;
}

.testimonial-section-area .shapes.style-01 .shape-03 {
    left: 81%;
}

.testimonial-section-area .shapes.style-01 .shape-04 {
    left: 80%;
}

.testimonial-section-area .shapes .people-img-shape {
    position: absolute;
    top: -125px;
    left: 100px;
}

.testimonial-section-area .testimonial-carousel-three .owl-dots {
    padding-left: 20px;
}

.testimonial-section-area .testimonial-carousel-three .owl-dots .owl-dot {
    display: inline-block;
}

.testimonial-section-area .testimonial-carousel-three .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 5px 7px;
    background: transparent;
    border: 1px solid #fff;
    display: block;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    border-radius: 1px;
    position: relative;
}

.testimonial-section-area .testimonial-carousel-three .owl-dots .owl-dot.active span,
.testimonial-section-area .testimonial-carousel-three .owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
}

.testimonial-section-area .testimonial-carousel-three .owl-dots .owl-dot.active span::after,
.testimonial-section-area .testimonial-carousel-three .owl-theme .owl-dots .owl-dot:hover span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background: red;
}

.testimonial-section-area .testimonial-carousel-four .owl-nav .owl-prev {
    position: absolute;
    left: 4%;
    font-size: 25px;
    color: var(--main-color-one);
}

.testimonial-section-area .testimonial-carousel-four .owl-nav .owl-next {
    position: absolute;
    left: 10%;
    font-size: 25px;
    color: var(--main-color-one);
}

.testimonial-section-area .owl-carousel .owl-item img {
    max-width: 60px;
}

.testimonial-section-area .owl-carousel .owl-item img.quotes-shape {
    max-width: 160px;
    position: absolute;
    right: 0;
    top: 28%;
}

.political-testimonial-section {
    margin-top: 85px;
    background: #FCFCFC;
    position: relative;
    z-index: 0;
    padding: 116px 0px 100px 0px;
}

.political-testimonial-section .section-title {
    margin-bottom: 40px;
}

.political-testimonial-section .pt-shape {
    position: absolute;
    left: 5%;
    top: 15%;
    opacity: 0.15;
    -webkit-animation: updown-three 3.5s both linear alternate infinite;
    animation: updown-three 3.5s both linear alternate infinite;
}

.political-testimonial-section .pt-shape-02 {
    position: absolute;
    right: 35%;
    top: 10%;
    opacity: 0.15;
    -webkit-animation: updown-three 3.5s both linear alternate infinite;
    animation: updown-three 3.5s both linear alternate infinite;
}

.political-testimonial-section .pt-shape-03 {
    position: absolute;
    right: 39%;
    bottom: 10%;
    opacity: 0.15;
    -webkit-animation: updown-three 3.5s both linear alternate infinite;
    animation: updown-three 3.5s both linear alternate infinite;
}

.political-testimonial-section .pt-shape-04 {
    position: absolute;
    bottom: 15%;
    left: 5%;
    opacity: 0.15;
    -webkit-animation: updown-three 3.5s both linear alternate infinite;
    animation: updown-three 3.5s both linear alternate infinite;
}

.political-testimonial-section .pt-shape-05 {
    position: absolute;
    bottom: 25%;
    left: 3%;
    opacity: 0.15;
    -webkit-animation: spin 3s both linear alternate infinite;
    animation: spin 3s both linear alternate infinite;
}

.political-testimonial-section .pt-shape-06 {
    position: absolute;
    top: 25%;
    left: 25%;
    opacity: 0.15;
    -webkit-animation: spin 3s both linear alternate infinite;
    animation: spin 3s both linear alternate infinite;
}

.political-testimonial-section .pt-shape-07 {
    position: absolute;
    top: 5%;
    left: 35%;
    opacity: 0.15;
    -webkit-animation: spin 3s both linear alternate infinite;
    animation: spin 3s both linear alternate infinite;
}

.political-testimonial-section .pt-shape-08 {
    position: absolute;
    top: 5%;
    right: 5%;
    opacity: 0.15;
    -webkit-animation: spin 3s both linear alternate infinite;
    animation: spin 3s both linear alternate infinite;
}

.political-testimonial-section .pt-shape-09 {
    position: absolute;
    top: 25%;
    right: 25%;
    opacity: 0.15;
    -webkit-animation: spin 3s both linear alternate infinite;
    animation: spin 3s both linear alternate infinite;
}

.political-testimonial-section .pt-shape-10 {
    position: absolute;
    bottom: 20%;
    right: 32%;
    opacity: 0.15;
    -webkit-animation: spin 3s both linear alternate infinite;
    animation: spin 3s both linear alternate infinite;
}

.political-testimonial-section .pt-single-item .icon {
    text-align: center;
    font-size: 60px;
    color: var(--main-color-one);
}

.political-testimonial-section .pt-single-item .author-name {
    text-align: center;
    font-size: 20px;
    line-height: 35px;
    font-family: var(--body-font);
    font-weight: 700;
    color: #505050;
    margin-bottom: 5px;
}

.political-testimonial-section .pt-single-item .description {
    text-align: center;
    font-size: 18px;
    line-height: 35px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
}

.political-testimonial-section .political-slider-two {
    max-width: 310px;
    margin: auto;
    position: relative;
}

.political-testimonial-section .political-slider-two::before {
    content: "";
    position: absolute;
    left: -80px;
    top: 85px;
    width: 80px;
    height: 1px;
    background: var(--main-color-one);
}

.political-testimonial-section .political-slider-two::after {
    content: "";
    position: absolute;
    right: -93px;
    top: 85px;
    width: 80px;
    height: 1px;
    background: var(--main-color-one);
}

.political-testimonial-section .political-slider-two .slick-slide.slick-center img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    border-color: var(--main-color-one);
}

.political-testimonial-section .political-slider-two .slick-slide img {
    width: auto !important;
    display: block;
    border: 4px solid #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    margin: 50px 0px 30px 20px;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.political-testimonial-section .political-slider-two .slick-slide img:hover {
    border-color: var(--main-color-one);
}

.political-testimonial-section .political-slider-two .slide-arrow.prev-arrow {
    position: absolute;
    left: -45%;
    top: 47%;
    background: transparent;
    border: 0px;
    font-size: 18px;
    color: var(--main-color-one);
    padding: 0;
}

.political-testimonial-section .political-slider-two .slide-arrow.prev-arrow:focus {
    outline: none;
}

.political-testimonial-section .political-slider-two .slide-arrow.next-arrow {
    position: absolute;
    right: -45%;
    top: 47%;
    background: transparent;
    border: 0px;
    font-size: 18px;
    color: var(--main-color-one);
    padding: 0;
}

.political-testimonial-section .political-slider-two .slide-arrow.next-arrow:focus {
    outline: none;
}

@-webkit-keyframes updown-three {
    0% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes updown-three {
    0% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: translateX(50px) rotate(0deg);
        transform: translateX(50px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateX(0px) rotate(360deg);
        transform: translateX(0px) rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: translateX(50px) rotate(0deg);
        transform: translateX(50px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateX(0px) rotate(360deg);
        transform: translateX(0px) rotate(360deg);
    }
}

@-webkit-keyframes pt {
    0% {
        width: 0px;
    }
    100% {
        width: 80px;
    }
}

@keyframes pt {
    0% {
        width: 0px;
    }
    100% {
        width: 80px;
    }
}


/*-------------------------
    Footer Area
-------------------------*/

.footer-area {
    background-color: var(--secondary-color);
}

.footer-area.line-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.footer-top {
    position: relative;
    z-index: 0;
    border-bottom: 1px solid rgba(114, 108, 148, 0.2);
    margin-top: 120px;
}

.footer-top.style-01 {
    margin-top: 190px;
}

.footer-top.style-02 {
    margin-top: 90px;
}

.footer-top.issue {
    margin-top: 130px;
}

.footer-top.volunteer {
    margin-top: 160px;
}

.footer-top.event-single {
    margin-top: 110px;
}

.footer-top.home-three {
    margin-top: 0px;
}

.footer-top .footer-top-border {
    border-bottom: 1px dashed #fff;
}

.footer-top .footer-top-border.home-three {
    padding-top: 120px;
}

.footer-top .footer-bottom-border {
    padding-top: 50px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #fff;
}

.footer-top .subscribe-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.copyright-area {
    text-align: center;
    color: #898ba7;
    font-size: 14px;
    padding: 25px 0px;
}

.copyright-area .copyright-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.copyright-area-inner {
    color: #fff;
    font-size: 14px;
    line-height: 28px;
    font-weight: 300;
    font-family: var(--body-font);
}

.copyright-area-inner a {
    text-decoration: underline;
}

.footer-event-item .content .designation {
    margin-bottom: 20px;
}

.footer-event-item .content .designation .event {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #fff;
    background: var(--main-color-one);
    padding: 5px 15px;
    border-radius: 5px;
    margin-right: 30px;
    cursor: pointer;
}

.footer-event-item .content .designation .date {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: #fff;
}

.footer-event-item .content .title {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    color: #fff;
    font-family: var(--body-font);
    margin-bottom: 15px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
    cursor: pointer;
}

.footer-event-item .content .title:hover {
    color: var(--main-color-one);
}

.footer-event-item .content p {
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
}

.footer-event-item .content p.style-01 {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
	## WIdgets
--------------------------------------------------------------*/

.widget {
    margin-bottom: 30px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
}

.widget.style-01 {
    padding: 0;
}

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

.widget ul li {
    margin: 8px 0;
    display: block;
    -ms-word-wrap: break-word;
    word-break: break-word;
}

.widget ul li+li {
    margin-top: 10px;
}

.widget ul li:before {
    display: none;
}

.widget ul li:last-child {
    margin-bottom: 0;
}

.widget ul li:first-child {
    margin-top: 0;
}

.widget ul li a {
    color: inherit;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.widget ul li a:hover {
    color: var(--main-color-one);
}

.widget ul li a.rsswidget {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.widget ul li .rss-date {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.widget ul li ul {
    margin-left: 20px;
    margin-top: 10px;
}

.widget ul li ul.sub-menu {
    position: initial;
    visibility: visible;
    opacity: 1;
    background-color: transparent;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 10px;
}

.widget ul li ul.sub-menu li a {
    padding: 0 0 0 10px;
}

.widget ul li ul.sub-menu li a:hover {
    background-color: transparent;
}

.widget h1,
.widget h2,
.widget h3,
.widget h4,
.widget h5,
.widget h6,
.widget .widget-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    text-transform: capitalize;
    position: relative;
    font-family: var(--body-font);
}

.widget h1.style-01,
.widget h2.style-01,
.widget h3.style-01,
.widget h4.style-01,
.widget h5.style-01,
.widget h6.style-01,
.widget .widget-title.style-01 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 30px;
    position: relative;
    font-weight: 700;
}

.widget h1.style-01:after,
.widget h2.style-01:after,
.widget h3.style-01:after,
.widget h4.style-01:after,
.widget h5.style-01:after,
.widget h6.style-01:after,
.widget .widget-title.style-01:after {
    position: absolute;
    content: "";
    top: 50%;
    left: -30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 60%;
    width: 100%;
    border-left: 5px solid var(--main-color-one);
}

.widget h1.style-02,
.widget h2.style-02,
.widget h3.style-02,
.widget h4.style-02,
.widget h5.style-02,
.widget h6.style-02,
.widget .widget-title.style-02 {
    font-size: 20px;
    margin-bottom: 0;
    line-height: 30px;
    position: relative;
    font-weight: 700;
}

.widget h1.style-02:after,
.widget h2.style-02:after,
.widget h3.style-02:after,
.widget h4.style-02:after,
.widget h5.style-02:after,
.widget h6.style-02:after,
.widget .widget-title.style-02:after {
    position: absolute;
    content: "";
    top: 50%;
    left: -34px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 60%;
    width: 100%;
    border-left: 5px solid var(--main-color-one);
}

.widget select {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    position: relative;
    z-index: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>");
    background-repeat: no-repeat;
    background-position-y: 55%;
    background-position-x: 92%;
    color: var(--paragraph-color);
}

.widget:last-child {
    margin-bottom: 0;
}

.widget .footer-widget {
    background-color: transparent !important;
    padding: 0;
    margin-bottom: 40px;
}

.widget.widget_nav_menu ul li.menu-item-has-children:after {
    display: none;
}

.widget ul li,
.comments-area .comment-list li,
.comments-area .comment-list li.comment {
    padding-left: 0;
}

.comments-area .comment-list li:before,
.comments-area .comment-list li.comment:before {
    display: none;
}

.widget-nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget-nav-menu ul li+li {
    border-top: 1px solid #2c3e88;
}

.widget_search .search-form {
    position: relative;
}

.widget_search .search-form .form-group {
    margin-bottom: 0;
}

.widget_search .search-form .form-group .form-control {
    height: 50px;
    border: 1px solid #D5E0EF;
    border-radius: 4px;
    padding: 0 70px 0 15px;
    background-color: #ffffff;
}

.widget_search .search-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    font-size: 20px;
    color: var(--main-color-one);
    background-color: transparent;
    border-radius: 0 30px 30px 0;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    border: none;
    cursor: pointer;
}

.widget_search .search-form .submit-btn:focus {
    outline: none;
}

.widget_search .search-form .submit-btn:hover {
    background-color: var(--hover-color);
    color: var(--heading-color);
}

.widget_author_meta {
    text-align: center;
}

.widget_author_meta .thumb {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.widget_author_meta .thumb img {
    border-radius: 50%;
}

.widget_author_meta .content .name {
    font-size: 21px;
    font-weight: 700;
}

.widget_author_meta .content .name p {
    font-size: 16px;
    line-height: 26px;
}

.widget_author_meta .content .name ul {
    margin-top: 25px;
}

.widget_author_meta .content .name ul li {
    display: inline-block;
    margin: 0 5px;
}

.widget_author_meta .content .name ul li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.widget_author_meta .content .name ul li a:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.widget_tag_cloud {
    padding: 0 30px 25px 35px;
}

.widget_tag_cloud .tagcloud a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 15px;
    text-transform: uppercase;
    border-radius: 2px;
    font-size: 14px !important;
    line-height: 20px;
    font-family: var(--body-font);
    font-weight: 400;
    background: #fff;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #7A7A7A;
    border: 1px solid #D5E0EF;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.widget_tag_cloud .tagcloud a:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

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

.widget_nav_menu ul li {
    margin: 10px 0;
}

.widget_nav_menu ul li:last-child {
    margin-bottom: 0;
}

.widget_nav_menu ul li:first-child {
    margin-top: 0;
}

.widget_nav_menu ul li a {
    border: none;
}

.widget_nav_menu ul li>ul {
    margin-left: 15px;
}

.widget.widget_archive {
    padding: 0 30px 30px 34px;
}

.widget.widget_archive ul li:first-child {
    padding-top: 0;
}

.widget.widget_archive ul li+li {
    margin-top: 15px;
}

.widget.widget_archive ul li:last-child {
    border-bottom: none;
}

.widget.widget_archive ul li a i {
    color: var(--main-color-two);
    margin-right: 5px;
}

.widget ul.widget_categories li+li {
    margin-top: 0;
}

.widget_archive ul li {
    padding: 0;
    border-bottom: 1px dashed #D5E0EF;
}

.widget_archive ul li a {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #7A7A7A;
}

.widget_archive ul li a:before {
    color: var(--hover-color);
    position: static;
    content: "";
    font-weight: 900;
    font-size: 15px;
    font-family: "fontawesome";
    padding-right: 8px;
    color: var(--main-color-one);
}

.widget_archive ul li span {
    float: right;
}

.widget.footer-widget.widget_calendar table {
    margin-bottom: 0;
}

.widget.footer-widget {
    background-color: transparent !important;
    padding: 0;
    margin-bottom: 30px;
}

.widget.footer-widget .social-links {
    margin-bottom: -22px;
    position: relative;
    z-index: 99;
}

.widget.footer-widget .social-links a {
    margin-right: 10px;
}

.widget.footer-widget .social-links a:last-child {
    margin-right: 0;
}

.widget.footer-widget .social-links a i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 15px;
    color: var(--main-color-one);
    border-radius: 5px;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    background-color: #fff;
}

.widget.footer-widget .social-links a i:hover {
    background: var(--main-color-one);
    color: #fff;
}

.widget.footer-widget .social-links a i:last-child {
    margin-right: 0;
}

.widget.footer-widget.style-01 {
    border: none;
    padding-top: 75px;
}

.widget.footer-widget.style-01 .widget-title {
    color: var(--heading-color);
}

.widget.footer-widget.style-01 ul li {
    color: var(--heading-color);
}

.widget.footer-widget.style-01 ul li a {
    color: var(--heading-color);
}

.widget.footer-widget.style-01 ul li:hover {
    color: var(--main-color-two);
}

.widget.footer-widget.style-01 ul li:hover a {
    color: var(--main-color-two);
}

.widget.footer-widget ul li a {
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    font-family: var(--body-font);
    position: relative;
}

.widget.footer-widget ul li a:hover {
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    color: var(--main-color-one);
    margin-left: 4px;
}

.widget.footer-widget .widget-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 25px;
    text-transform: capitalize;
    position: relative;
    font-family: var(--body-font);
    color: #fff;
}

.widget.footer-widget .widget-title .line {
    margin-top: -15px;
    display: block;
}

.widget.footer-widget .widget-title .line .dot {
    display: inline-block;
    height: 2px;
    width: 4px;
    background-color: #fff;
}

.widget.footer-widget .widget-title .line .dot.style-02 {
    width: 20px;
}

.widget.footer-widget .widget-title:before {
    display: none;
}

.widget.footer-widget .widget-title p {
    color: #fff;
    font-size: 14px;
}

.widget.footer-widget.widget_tag_cloud .tagcloud {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.widget.footer-widget.widget_tag_cloud .tagcloud a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.widget.footer-widget.widget_recent_comments ul li a:after {
    display: none;
}

.widget.footer-widget.widget_recent_comments ul li a:hover {
    padding-left: 0;
}

.widget.footer-widget.widget_calendar table th {
    border: 1px solid #ddd;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.widget.footer-widget.widget_calendar table th a {
    font-weight: 600;
    text-decoration: underline;
}

.widget.footer-widget.widget_calendar table td {
    border: 1px solid #ddd;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.widget.footer-widget.widget_calendar table td a {
    font-weight: 600;
    text-decoration: underline;
}

.widget.footer-widget .subscribe-form .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

.widget.footer-widget .subscribe-form .form-group .form-control {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    background-color: #fff;
}

.widget.footer-widget .subscribe-form .form-group .form-control::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--body-font);
    text-align: center;
}

.widget.footer-widget .subscribe-form .form-group .form-control::-moz-placeholder {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--body-font);
    text-align: center;
}

.widget.footer-widget .subscribe-form .form-group .form-control:-ms-input-placeholder {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--body-font);
    text-align: center;
}

.widget.footer-widget .subscribe-form .form-group .form-control::-ms-input-placeholder {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--body-font);
    text-align: center;
}

.widget.footer-widget .subscribe-form .form-group .form-control::placeholder {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--body-font);
    text-align: center;
}

.widget.footer-widget .subscribe-form .submit-btn {
    border: none;
    border-radius: 50px;
    background-color: var(--secondary-color);
    width: 85px;
    height: 55px;
    font-size: 25px;
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin-left: 15px;
    cursor: pointer;
}

.widget.footer-widget .subscribe-form .submit-btn:hover {
    background-color: #fff;
    color: var(--main-color-one);
}

.widget.footer-widget .subscribe-form .submit-btn.style-01 {
    background-color: #007bcf;
}

.widget.footer-widget .wp-calendar-nav {
    padding: 8px 0;
}

.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-prev {
    color: rgba(255, 255, 255, 0.7);
}

.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-next {
    color: rgba(255, 255, 255, 0.7);
}

.widget ul>li:last-child {
    padding-bottom: 0;
}

.widget img {
    height: auto;
}

.footer-widget.widget_nav_menu ul li a {
    position: relative;
}

.footer-widget.widget.widget_nav_menu ul li {
    margin: 0;
}

.adWidget span {
    visibility: hidden;
}

.footer-style .footer-area {
    background-color: var(--heading-color);
}

.footer-area .footer-top .footer-widget .menu li ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget_tag_cloud.footer-widget .tagcloud a {
    background-color: var(--main-color-one);
}

.wp-block-calendar caption {
    caption-side: top;
    text-align: center;
    padding: 8px;
    font-weight: 600;
    color: var(--heading-color);
    background-color: #ddd;
}

.widget_calendar caption {
    caption-side: top;
    text-align: center;
    padding: 8px;
    font-weight: 600;
    color: var(--heading-color);
    background-color: #ddd;
}

.wp-block-calendar table th {
    background-color: transparent;
}

.widget_recent_comments ul li {
    position: relative;
}

.widget_recent_comments ul li:before {
    position: static;
    font-family: "Font Awesome 5 Free";
    content: "";
    padding-right: 5px;
}

.widget .widget_calendar caption {
    color: var(--paragraph-color);
}

.widget_calendar table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.widget_calendar table th {
    border: 1px solid #ddd;
    padding: 8px;
}

#wp-calendar {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

#wp-calendar th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
}

.widget_recent_comments ul li a {
    text-decoration: underline;
}

.social_share {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.social_share li {
    margin: 0;
    display: block;
    padding-top: 15px;
    text-align: center;
    border-radius: 5px;
    color: var(--main-color-two);
}

.social_share li a:after {
    display: none;
}

.social_share li i {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}

.social_share li.facebook {
    background-color: #3b5999;
}

.social_share li.twitter {
    background-color: #55acee;
}

.social_share li.instagram {
    background-color: #e4405f;
}

.social_share li a:hover {
    color: var(--secondary-color);
}

.social_share li+li {
    margin-left: 10px;
}

.footer-widget .recent_post_item li.single-recent-post-item+li {
    border-top: initial;
    padding-top: 0;
}

.widget.widget_recent_posts {
    padding: 0 30px 20px 34px;
}

.recent_post_item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.recent_post_item li {
    display: block;
}

.recent_post_item li+li {
    margin-top: 20px;
}

.recent_post_item li.single-recent-post-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding-bottom: 0;
    margin: 0;
}

.recent_post_item li.single-recent-post-item+li {
    padding-top: 0;
    border-top: 1px dashed #D5E0EF;
}

.recent_post_item li.single-recent-post-item .thumb {
    width: 70px;
    border-radius: 50%;
    height: 70px;
    margin-right: 15px;
}

.recent_post_item li.single-recent-post-item .thumb a:before {
    display: none;
}

.recent_post_item li.single-recent-post-item .thumb a:hover {
    padding-left: 0;
}

.recent_post_item li.single-recent-post-item .thumb a:after {
    display: none;
}

.recent_post_item li.single-recent-post-item .thumb img {
    border-radius: 4px;
}

.recent_post_item li.single-recent-post-item .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.recent_post_item li.single-recent-post-item .content .title {
    font-size: 16px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
}

.recent_post_item li.single-recent-post-item .content .title a {
    padding-left: 0;
}

.recent_post_item li.single-recent-post-item .content .title a:hover {
    color: var(--main-color-one);
}

.recent_post_item li.single-recent-post-item .content .title a:before {
    display: none;
}

.recent_post_item li.single-recent-post-item .content .title a:after {
    display: none;
}

.recent_post_item li.single-recent-post-item .content .time {
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 500;
    color: #7A7A7A;
}

.recent_post_item li.single-recent-post-item .content .time i {
    color: var(--main-color-one);
    padding-right: 5px;
}

.contact_info_list {
    margin: 0;
    padding: 60px 0px 0px;
    list-style: none;
}

.contact_info_list li {
    display: block;
}

.contact_info_list li.single-info-item {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.contact_info_list li.single-info-item.style-01 .icon {
    color: var(--main-color-two);
}

.contact_info_list li.single-info-item.style-01 .details {
    padding-left: 40px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.contact_info_list li.single-info-item .icon {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 0;
}

.contact_info_list li.single-info-item .icon.style-01 {
    font-size: 20px;
    margin-left: 6px;
}

.contact_info_list li.single-info-item .details {
    margin-left: 12px;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
    color: white;
}

.contact_info_list li.single-info-item .details.style-01 {
    margin-left: 20px;
}

.contact_info_list li.single-info-item .details.style-02 {
    margin-left: 10px;
}

.about_us_widget {
    padding-right: 30px;
}

.about_us_widget .footer-logo {
    margin-bottom: 20px;
    display: block;
}

.about_us_widget p {
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: 40px;
}

.widget-testimonial .icon {
    font-size: 70px;
    line-height: 60px;
    color: var(--main-color-two);
    margin-bottom: 16px;
}

.widget-testimonial p {
    color: #fff;
    line-height: 1.6;
}

.widget-testimonial .author-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 24px;
}

.widget-testimonial .author-meta .thumb {
    margin-right: 20px;
}

.widget-testimonial .author-meta .thumb img {
    max-width: 80px;
    height: 80px;
    border-radius: 50%;
}

.widget-testimonial .author-meta .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 15px;
}

.widget-testimonial .author-meta .content .name {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.widget-testimonial .author-meta .content .designation {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.widget.widget_media_gallery .gallery {
    margin-bottom: 0;
}

.widget_edus_post_category ul li:hover a {
    background-color: var(--main-color-one);
}

.widget_edus_post_category ul li:hover a .title {
    color: #fff;
}

.widget_edus_post_category ul li .title {
    padding: 0 20px;
    background-color: var(--secondary-color);
    position: relative;
    line-height: 50px;
    font-family: var(--body-font);
    margin-bottom: 0;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.widget_edus_post_category ul li .title span {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--hover-color);
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.about_me_widget .content {
    text-align: center;
}

.about_me_widget .content .thumb {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: auto;
}

.about_me_widget .content .thumb img {
    border-radius: 50%;
}

.about_me_widget .content .title {
    font-size: 18px;
    margin-top: 30px;
    font-weight: 700;
}

.about_me_widget .content p {
    padding-top: 10px;
}

.edus-widget-about {
    border: 2px solid #f7f7f7;
}

.about_me_two_widget p {
    font-size: 16px;
    line-height: 26px;
}

.about_me_two_widget .content-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
}

.about_me_two_widget .thumb {
    width: 60px;
    margin-right: 20px;
}

.about_me_two_widget .title {
    font-size: 20px;
    font-weight: 600;
}

.about_me_two_widget .designation {
    color: var(--main-color-one);
}

.widget_edus_service_category.widget {
    padding: 0;
}

.widget_edus_service_category ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #f7f7f7;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 700;
}

.widget_edus_service_category ul li a.active,
.widget_edus_service_category ul li a:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.widget_edus_service_category ul li a.active span,
.widget_edus_service_category ul li a:hover span {
    opacity: 1;
}

.widget_edus_service_category ul li a span {
    opacity: 0;
}

.widget_edus_service_category ul li+li {
    margin-bottom: 10px;
}

.widget.widget_media_image {
    padding: 0;
}

.widget.widget_media_image img {
    width: 100%;
}

.edus-service-doct.widget {
    padding: 0;
}

.edus-service-doct .doc-link li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: transparent;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #f7f7f7;
}

.edus-service-doct .doc-link li a i {
    margin-right: 20px;
    color: #ff4815;
}

.edus-service-doct .doc-link li a.active,
.edus-service-doct .doc-link li a:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.edus-service-doct .doc-link li a.active i,
.edus-service-doct .doc-link li a:hover i {
    color: #fff;
}

.edus-service-doct .doc-link li+li {
    margin-bottom: 10px;
}

.widget.widget_subscribe {
    background-color: var(--main-color-one);
    padding: 58px 45px;
    border-radius: 0px 0px 10px 10px;
    margin-top: -115px;
    position: relative;
}

.widget.widget_subscribe.political {
    margin-top: 0px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 39px 54px;
    margin-bottom: 80px;
}

.widget.widget_subscribe.political::after {
    content: none;
}

.widget.widget_subscribe.political::before {
    content: none;
}

.widget.widget_subscribe::after {
    content: "";
    position: absolute;
    border-left: 44px solid transparent;
    border-bottom: 40px solid #03a8e3;
    border-top: 64px solid transparent;
    top: -64px;
    left: -44px;
    z-index: -1;
}

.widget.widget_subscribe::before {
    content: "";
    position: absolute;
    border-right: 44px solid transparent;
    border-bottom: 40px solid #03a8e3;
    border-top: 64px solid transparent;
    top: -64px;
    right: -43px;
    z-index: -2;
}

.widget.widget_subscribe .shape-01 {
    width: 80%;
    height: 35px;
    background: #03a8e3;
    border-radius: 0px 0px 10px 10px;
    position: absolute;
    bottom: -16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.19;
}

.widget.widget_subscribe .shape-02 {
    width: 90%;
    height: 35px;
    background: #03a8e3;
    border-radius: 0px 0px 10px 10px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.4;
}

.widget.widget_subscribe .shape-03 {
    width: 95%;
    height: 35px;
    background: var(--main-color-one);
    border-radius: 0px 0px 10px 10px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.19;
}

.widget.widget_subscribe .header-content.style-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.widget.widget_subscribe .header-content .title {
    font-size: 24px;
    list-style: 32px;
    font-family: var(--body-font);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.widget.widget_subscribe .header-content .title.style-01 {
    text-align: left;
    font-size: 40px;
    line-height: 50px;
    font-family: var(--heading-font);
    font-weight: 600;
    max-width: 500px;
    margin-bottom: 0px;
}

.custom-logo-link img,
.site-logo img,
.footer-logo img {
    max-width: 180px !important;
}

.header-bottom-area {
    position: relative;
}

.header-bottom-area.style-01 {
    margin-top: 120px;
}

.bottom-single-items {
    border: 1px dashed #FFCECE;
    background: #fff;
    border-radius: 10px;
    padding: 40px 20px 40px 20px;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    margin-bottom: 30px;
}

.bottom-single-items:hover {
    border: 1px dashed #fff;
    -webkit-box-shadow: 0px 12px 30px rgba(221, 19, 26, 0.08);
    box-shadow: 0px 12px 30px rgba(221, 19, 26, 0.08);
}

.bottom-single-items:hover .icon {
    background: #fff;
    border: 1px solid var(--main-color-one);
    color: var(--main-color-one);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.bottom-single-items .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: var(--main-color-one);
    border: 1px solid var(--main-color-one);
    border-radius: 8px;
    -webkit-box-shadow: 0px 5px 20px rgba(221, 19, 26, 0.4);
    box-shadow: 0px 5px 20px rgba(221, 19, 26, 0.4);
    font-size: 48px;
    margin: 0px auto 20px auto;
    color: #fff;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.bottom-single-items .content .title {
    text-align: center;
    font-size: 24px;
    line-height: 28px;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0px;
}

.political-gallery-items {
    position: relative;
}

.political-gallery-items::after {
    content: "";
    position: absolute;
    z-index: -1;
    height: 456px;
    width: 885px;
    background-color: #EFEFF7;
    border-radius: 4px;
    top: 12%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.political-gallery-items .gallery-single-items.style-01 {
    margin-bottom: 30px;
}

.political-gallery-items .gallery-single-items img {
    border-radius: 10px;
}

.about-us-section-area.about-bg {
    background-image: url(assets/img/about-bg.html);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0px 135px 0px;
    position: relative;
}
.about-us-section-area.about-bg.lifeBG {
    padding: 35px 0px 35px 0px;
}
.about-us-section-area.lifeBG .about-inner .title{
    font-size: 40px;
    line-height: 1;
    margin-bottom: 0;
}
.about-us-section-area.about-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 59, 135, 0.3);
}

.about-us-section-area .about-inner .title {
    font-size: 65px;
    line-height: 78px;
    font-family: var(--heading-font);
    font-weight: 700;
    -webkit-text-stroke: 1px #fff;
    color: rgba(4, 7, 46, 0);
    text-align: center;
    margin-bottom: 20px;
}

.about-us-section-area .breadcrumbs {
    text-align: center;
}

.about-us-section-area .breadcrumbs ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 4px;
    /* background: var(--main-color-one); */
}

.about-us-section-area .breadcrumbs ul li {
    display: inline;
}

.about-us-section-area .breadcrumbs ul li+li {
    margin-left: 5px;
    color: #fff;
}

.about-us-section-area .breadcrumbs ul li+li::before {
    content: "/";
    display: inline-block;
    color: #fff;
    font-size: 18px;
    margin-right: 5px;
}

.about-us-section-area .breadcrumbs ul li a {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--heading-font);
    font-weight: 400;
    color: aqua;
}
.lifeWrp{
    padding: 35px 0;
}
.administration-section {
    position: relative;
}
.lifeCat{
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}
.lifeCat.nav-pills .nav-link{
    border-radius: 30px;
    padding: 10px 20px;
    border: 1px solid #ccc;
    margin-right: 8px;
    margin-bottom: 8px;
    background-color: #f5f5f7;
}
.lifeCat.nav-pills .nav-link.active{
    background-color: #04A8E3;
    border-color: #04A8E3;
}
.lifeGal .gallery-item{
    padding: 5px;
}
.lifeGal .gallery-item img{
    width: 100%;
    height: 500px;
    border-radius: 24px;
    object-fit: cover;
    background-color: #f5f5f7;
}
.administration-section .admin-shape {
    position: absolute;
    top: -90px;
    right: 35px;
}

.administration-section .admin-shape-02 {
    position: absolute;
    left: 13%;
    top: -17%;
}

.administration-section .administration-single-items.style-01 {
    margin-left: 50px;
}

.administration-section .administration-single-items .administrative-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 617px;
    border-radius: 10px;
}

.administration-section .administration-single-items .content .title {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.administration-section .administration-single-items .content p {
    font-size: 18px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 500;
    color: #4E4E56;
    margin-bottom: 30px;
}

.administration-section .administration-single-items .administration-quotes {
    background: #F9F9FF;
    padding: 20px 35px;
    border-left: 5px solid var(--main-color-one);
    position: relative;
    margin-bottom: 25px;
}

.administration-section .administration-single-items .administration-quotes .title {
    font-size: 20px;
    line-height: 30px;
    font-family: var(--body-font);
    font-weight: 500;
    max-width: 445px;
    margin-bottom: 0;
}

.administration-section .administration-single-items .administration-quotes .icon {
    position: absolute;
    top: 40%;
    right: 9%;
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
}

.administration-section .administration-single-items .list-items ul {
    list-style: none;
    padding-left: 0;
}

.administration-section .administration-single-items .list-items ul li {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
    margin-bottom: 15px;
    padding-left: 40px;
    padding-top: 15px;
    position: relative;
}

.administration-section .administration-single-items .list-items ul li::after {
    content: "\f28d";
    font-family: "fontawesome";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 15px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    color: var(--secondary-color);
    margin-right: 20px;
    /* -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16); */
    background-color: #dcf1ef;
}

.administration-section .administration-single-items .list-items ul li ul li {
    position: relative;
}

.administration-section .administration-single-items .list-items ul li ul li::after {
    content: "\f068";
    font-family: "fontawesome";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 15px;
    width: 24px;
    height: 24px;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    color: var(--secondary-color);
    margin-right: 20px;
    margin-top: 5px;
    padding-top: 4px;
}

.administration-section .administration-single-items .list-items ul li+li {
    border-top: 1px solid #CCCCCC;
}

.administration-section .administration-single-items .list-items ul li i {
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    color: var(--main-color-one);
    margin-right: 20px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.administration-section .administration-single-items .feedback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 24px;
}

.administration-section .administration-single-items .feedback .feedback-single {
    margin-right: 42px;
    position: relative;
}

.administration-section .administration-single-items .feedback .feedback-single::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 70%;
    border-right: 1px dashed #CCCCCC;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.administration-section .administration-single-items .feedback .feedback-single:last-child {
    margin-right: 0;
}

.administration-section .administration-single-items .feedback .feedback-single:last-child::after {
    content: none;
}

.administration-section .administration-single-items .feedback .feedback-single span {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--main-color-one);
}

.administration-section .administration-single-items .feedback .feedback-single p {
    font-size: 16px;
    line-height: 23px;
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--heading-color);
    max-width: 170px;
}

.why-choose-us-section {
    margin-top: 120px;
    overflow: hidden;
}

.why-choose-us-section.style-01 {
    margin-top: 70px;
}

.why-choose-us-section.choose-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 90px 0px 100px 0px;
    position: relative;
}

.why-choose-us-section.choose-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--heading-color);
    opacity: 0.85;
}

.why-choose-us-section .choose-bg-02 {
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    height: 100%;
    width: 50%;
}

.why-choose-us-section .single-items-wrapper {
    margin-right: 50px;
}

.why-choose-us-section .single-items-wrapper .why-choose-single-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 25px;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.why-choose-us-section .single-items-wrapper .why-choose-single-items:hover {
    background: var(--main-color-one);
}

.why-choose-us-section .single-items-wrapper .why-choose-single-items:hover .icon {
    color: #fff;
}

.why-choose-us-section .single-items-wrapper .why-choose-single-items:hover .icon::after {
    border-color: #fff;
}

.why-choose-us-section .single-items-wrapper .why-choose-single-items:hover .content .title {
    color: #fff;
}

.why-choose-us-section .single-items-wrapper .why-choose-single-items:hover .content p {
    color: #fff;
}

.why-choose-us-section .single-items-wrapper .why-choose-single-items:hover .shape {
    visibility: visible;
    opacity: 1;
}

.why-choose-us-section .single-items-wrapper .why-choose-single-items:last-child {
    margin-bottom: 0;
}

.why-choose-us-section .single-items-wrapper .why-choose-single-items .icon {
    font-size: 42px;
    color: var(--heading-color);
    margin-right: 20px;
    position: relative;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
}

.why-choose-us-section .single-items-wrapper .why-choose-single-items .icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px dashed var(--heading-color);
    border-radius: 50%;
    top: -5px;
    left: 0;
    right: 0;
    bottom: 0;
}

.why-choose-us-section .single-items-wrapper .why-choose-single-items .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.why-choose-us-section .single-items-wrapper .why-choose-single-items .content .title {
    font-size: 20px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
}

.why-choose-us-section .single-items-wrapper .why-choose-single-items .content p {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #6B6B6B;
}

.why-choose-us-section .single-items-wrapper .why-choose-single-items .shape {
    position: absolute;
    top: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.see-our-video-section {
    margin-top: 76px;
}

.see-our-video-section .video-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    min-height: 730px;
    border-radius: 10px;
}

.testimonial-carousel-five .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 4%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: rgba(249, 249, 255, 0.2);
    font-size: 28px;
    color: #fff;
    border-radius: 6px;
    border: 1px solid #F9F9FF;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.testimonial-carousel-five .owl-nav .owl-prev:hover {
    background: #fff;
    border-color: #fff;
    color: var(--main-color-one);
}

.testimonial-carousel-five .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 4%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: rgba(249, 249, 255, 0.2);
    font-size: 28px;
    color: #fff;
    border-radius: 6px;
    border: 1px solid #F9F9FF;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.testimonial-carousel-five .owl-nav .owl-next:hover {
    background: #fff;
    border-color: #fff;
    color: var(--main-color-one);
}

.testimonial-carousel-five .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.testimonial-carousel-five .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.testimonial-carousel-five .owl-dots .owl-dot::after {
    content: "2005";
    position: absolute;
    top: -65px;
    left: 0;
    color: #fff;
}

.testimonial-carousel-five .owl-dots .owl-dot::before {
    content: "";
    position: absolute;
    font-family: "icomoon";
    font-weight: 900;
    left: 0;
    top: 0;
}

.contact_map {
    height: 100%;
    min-height: 500px;
    position: relative;
}

.contact_map::after {
    content: "";
    font-family: "icomoon";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: var(--main-color-one);
}

.map-section {
    padding-top: 300px;
    margin-top: 108px;
}

.event-facilities-section.facility-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding: 108px 0px 120px;
}

.event-facilities-section.facility-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 7, 46, 0.8);
    z-index: -2;
}

.event-facilities-section .facility-single-item .content .title {
    font-size: 40px;
    line-height: 55px;
    font-family: var(--heading-font);
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.event-facilities-section .facility-single-item .content .title.style-01 {
    font-size: 24px;
    line-height: 38px;
}

.event-facilities-section .facility-single-item .content p {
    font-size: 18px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 500;
    color: #CCCCCC;
    margin-bottom: 30px;
}

.event-facilities-section .facility-single-item .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    font-size: 50px;
    color: var(--main-color-one);
    position: relative;
}

.event-facilities-section .facility-single-item .icon i::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='100' ry='100' stroke='%23CCCCCCFF' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='7' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 100px;
    top: -10px;
    left: 10px;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.office-address-section {
    position: relative;
    overflow: hidden;
    padding: 108px 0px 70px 0px;
}

.office-address-section .contact-shape {
    position: absolute;
    right: 2%;
    top: 6%;
}

.office-address-section .contact-shape-02 {
    position: absolute;
    left: -10%;
    top: 22%;
}

.trafic-section-area {
    padding-top: 109px;
    padding-bottom: 120px;
    position: relative;
    z-index: 0;
}

.trafic-section-area.trafic-bg {
    background-size: cover;
    background-position: 0% 82%;
    background-repeat: no-repeat;
}

.trafic-section-area .trafic-bg-02 {
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    height: 100%;
    width: 38%;
}

.trafic-section-area .inner-section-title .title {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.trafic-section-area .inner-section-title p {
    font-size: 18px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 500;
    color: #4F4F6B;
    margin-bottom: 20px;
}

.trafic-section-area .content .description {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
    margin-bottom: 48px;
}

.trafic-section-area .protection-list-items .title {
    font-size: 20px;
    line-height: 35px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.trafic-section-area .protection-list-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.trafic-section-area .protection-list-items ul li {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #505050;
    margin-bottom: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    display: inline-block;
    width: calc(100%/2);
    position: relative;
}

.trafic-section-area .protection-list-items ul li::before {
    content: "";
    font-family: "fontawesome";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    color: var(--main-color-one);
    margin-right: 20px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.trafic-section-area .protection-list-items ul li::after {
    content: "";
    position: absolute;
    width: 85%;
    left: 0;
    bottom: 0;
    border-bottom: 1px solid rgba(204, 204, 204, 0.4);
}

.trafic-section-area .percentage-of-trafic {
    margin-top: 48px;
}

.trafic-section-area .percentage-of-trafic .content {
    margin-bottom: 25px;
}

.trafic-section-area .percentage-of-trafic .content .title {
    font-size: 20px;
    line-height: 35px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.history-timeline-section {
    margin-top: 70px;
    background: #FFF9FC;
    padding: 108px 0px 45px 0px;
    position: relative;
    z-index: 0;
}

.history-timeline-section .history-shape-02 {
    position: absolute;
    bottom: 36%;
    left: 12%;
}

.history-timeline-section .history-shape-03 {
    position: absolute;
    bottom: 12%;
    right: -3%;
}

.history-timeline-section .history-shape-04 {
    position: absolute;
    bottom: 24%;
    left: 14%;
}

.history-timeline-section .history-shape-05 {
    position: absolute;
    left: 42%;
    bottom: 65%;
}

.our-journey-section .journey-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    min-height: 730px;
    border-radius: 10px;
    position: relative;
    z-index: -1;
    -webkit-box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.22);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.22);
}

.our-journey-section .journey-bg::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, from(rgba(4, 7, 46, 0)), to(#04072e));
    background: linear-gradient(270deg, rgba(4, 7, 46, 0) 0%, #04072e 100%);
    z-index: -1;
    border-radius: 10px;
}

.our-journey-section .journey-bg .content {
    padding: 50px;
}

.our-journey-section .journey-bg .content .title {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: #FFF9FC;
}

.our-journey-section .journey-bg .content .title span {
    font-size: 32px;
    line-height: 43px;
    font-family: var(--body-font);
    font-weight: 300;
    color: #FFF9FC;
}

.our-journey-section .journey-bg .content p {
    font-size: 18px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 500;
    color: #FFF9FC;
    max-width: 520px;
}

.history-slider {
    overflow: hidden;
}

.history-slider .history-shape {
    position: absolute;
    left: -45%;
    top: 20%;
}

.history-slider .slick-slider-controls .slick-prev {
    position: absolute;
    top: 50%;
    left: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #F9F9FF;
    color: #fff;
    border-radius: 6px;
    font-size: 28px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.history-slider .slick-slider-controls .slick-prev:hover {
    background: #fff;
    color: var(--main-color-one);
}

.history-slider .slick-slider-controls .slick-next {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #F9F9FF;
    color: #fff;
    border-radius: 6px;
    font-size: 28px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.history-slider .slick-slider-controls .slick-next:hover {
    background: #fff;
    color: var(--main-color-one);
}

.history-slider .history-number {
    position: relative;
    left: 20px;
    bottom: 50px;
}

.history-slider .history-number .history-year {
    position: relative;
}

.history-slider .history-number .history-year::after {
    content: "";
    position: absolute;
    left: -14px;
    top: 10px;
    width: 100%;
    height: 40px;
    border-right: 3px solid rgba(255, 255, 255, 0.8);
}

.history-slider .history-number .history-year h3 {
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: #FFF9FC;
    margin-left: 10px;
}

.history-year.slick-slide.slick-current.slick-active h3 {
    color: var(--main-color-one);
}

.career-section {
    padding-top: 115px;
    padding-bottom: 120px;
}

.career-area {
    background-color: var(--main-color-one);
    border-radius: 6px;
    padding: 53px 40px 14px;
    position: relative;
    z-index: 2;
}

.career-area .career-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    mix-blend-mode: multiply;
}

.career-area .career-shape img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.career-item {
    text-align: center;
    margin-bottom: 30px;
}

.career-item .career-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    display: inline-block;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-bottom: 20px;
    color: #fff;
    font-size: 40px;
}

@media only screen and (max-width: 991px) {
    .career-item .career-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 24px;
    }
}

.career-item .career-content .title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

@media only screen and (max-width: 991px) {
    .career-item .career-content .title {
        font-size: 20px;
    }
}

.career-item .career-content .sub-title {
    font-size: 18px;
    color: #fff;
}

@media only screen and (max-width: 991px) {
    .career-item .career-content .sub-title {
        font-size: 16px;
    }
}

.media-section {
    position: relative;
    padding-top: 120px;
    margin-top: 145px;
}

@media only screen and (max-width: 767px) {
    .media-section {
        margin-top: 100px;
    }
}

.media-section::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: 0.75;
}

.media-section .section-title .subtitle p {
    color: #fff;
}

.media-section .section-title .title {
    color: #fff;
}

@media only screen and (max-width: 320px) {
    .media-section .video-play.style-01::after {
        left: -12%;
    }
}

.media-wrapper {
    position: relative;
    z-index: 9;
    margin-bottom: -160px;
}

.media-item {
    background-color: #FBFBFD;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.media-thumb {
    position: relative;
}

.media-thumb img {
    width: 100%;
}

.media-thumb .media-thumb-video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.media-thumb .media-thumb-video .video-play i {
    background: transparent;
    border: 1px solid #fff;
}

.media-thumb .media-thumb-video .video-play::after {
    display: none;
}

.media-content {
    padding-top: 20px;
}

.media-content .category {
    font-size: 12px;
    background-color: var(--main-color-one);
    text-transform: uppercase;
    color: #fff;
    border-radius: 2px;
    padding: 5px 10px;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
}

.media-content .title {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 15px;
}

.media-content .title a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.media-content .title a:hover {
    color: var(--main-color-one);
}

.media-content .date {
    font-size: 14px;
    font-weight: 500;
}

.media-content .date i {
    margin-right: 8px;
}

.meet-member-section {
    margin-top: 90px;
    position: relative;
    z-index: 0;
    background: #FCFCFC;
    padding: 120px 0px 120px 0px;
    overflow: hidden;
}

.meet-member-section .section-star {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    -webkit-animation: updown 3s both linear alternate infinite;
    animation: updown 3s both linear alternate infinite;
}

.meet-member-section .dot-shape-02 {
    position: absolute;
    z-index: -1;
    bottom: 5%;
    left: 17%;
    -webkit-animation: zoomIn 2.5s linear infinite;
    animation: zoomIn 2.5s linear infinite;
}

.meet-member-section .dot-shape-03 {
    position: absolute;
    z-index: -1;
    top: 5%;
    right: 17%;
    -webkit-animation: zoomIn 2.5s linear infinite;
    animation: zoomIn 2.5s linear infinite;
}

.meet-member-wrapper {
    border: 5px solid #04072E;
    border-radius: 10px;
    padding: 50px 50px 50px 50px;
    position: relative;
}

.meet-member-wrapper .meet-member-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 570px;
    position: relative;
    z-index: 3;
}

.meet-member-wrapper .meet-member-img .member-quotes {
    background: #fff;
    padding: 20px 35px;
    border-left: 5px solid var(--main-color-one);
    position: absolute;
    top: 40%;
    left: -38%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.meet-member-wrapper .meet-member-img .member-quotes .title {
    font-size: 22px;
    line-height: 35px;
    font-family: var(--body-font);
    font-weight: 700;
    max-width: 445px;
    margin-bottom: 0;
}

.meet-member-wrapper .meet-member-img .member-quotes .icon {
    position: absolute;
    top: 40%;
    right: 9%;
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
}

.meet-single-items {
    padding-left: 20px;
}

.meet-single-items .content .subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.meet-single-items .content .subtitle p {
    font-size: 20px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    margin-right: 10px;
}

.meet-single-items .content .subtitle .icon {
    margin-top: 5px;
}

.meet-single-items .content .subtitle .icon i {
    font-size: 10px;
    color: var(--main-color-one);
    margin-right: 5px;
}

.meet-single-items .content .title {
    font-size: 40px;
    line-height: 48px;
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 25px;
}

.meet-single-items .content .description {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 37px;
    max-width: 510px;
}

.meet-single-items .link-wrap {
    margin-top: 15px;
}

.meet-single-items .link-wrap .read-more-link {
    font-size: 18px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--main-color-one);
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.meet-single-items .link-wrap .read-more-link:hover i {
    padding-left: 10px;
}

.meet-single-items .link-wrap .read-more-link i {
    margin-left: 5px;
    font-size: 16px;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.inner-single-items {
    margin-bottom: 30px;
}

.inner-single-items .icon {
    font-size: 60px;
    color: var(--main-color-one);
}

.inner-single-items .content h6 {
    font-size: 20px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0px;
}

.strenth-section-area {
    margin-top: 115px;
    position: relative;
}

.strenth-section-area .senatory-logo {
    background-repeat: no-repeat;
    background-position: center;
    min-height: 320px;
}

.strenth-section-area .senatory-logo .strenth-img {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    min-height: 527px;
}

.strenth-single-items.style-01 {
    margin-top: 80px;
}

.strenth-single-items+.strenth-single-items {
    margin-top: 100px;
}

.strenth-single-items .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.strenth-single-items .content .title {
    font-size: 24px;
    line-height: 28px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.strenth-single-items .content .icon span {
    font-size: 10px;
    color: var(--main-color-one);
    margin-right: 5px;
}

.strenth-single-items .content .icon .number {
    font-size: 20px;
    line-height: 27px;
    font-family: var(--heading-font);
    font-weight: 400;
    color: var(--main-color-one);
    margin-right: 5px;
    margin-left: 15px;
}

.strenth-single-items .description {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 0px;
}

.youth-leader-section {
    margin-top: 120px;
    position: relative;
    z-index: 0;
}

.youth-leader-section.youth-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 115px 0px 120px 0px;
}

.youth-leader-section.youth-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 7, 46, 0.85);
}

.youth-leader-section .youth-shape {
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 390px;
    width: 100%;
    position: absolute;
    left: 125px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.youth-leader-section .section-title .subtitle p {
    color: #fff;
}

.youth-leader-section .section-title .title {
    color: #fff;
}

.youth-leader-section .btn-wrapper {
    text-align: center;
}

.youth-leader-section .btn-wrapper .btn-sanatory {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.youth-leader-section .btn-wrapper .btn-sanatory i {
    margin-left: 8px;
}

.youth-leader-section .btn-wrapper .btn-sanatory:hover {
    background: #fff;
    color: var(--main-color-one);
}

.political-event-section {
    margin-top: 120px;
    position: relative;
    z-index: 0;
    background: #F8F8FF;
    padding: 116px 0px 120px 0px;
}

.political-event-section .btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

.political-event-section .btn-wrapper .btn-sanatory {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.political-event-section .btn-wrapper .btn-sanatory i {
    margin-left: 8px;
}

.political-event-section .btn-wrapper .btn-sanatory:hover {
    background: var(--heading-color);
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.political-event-single-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 34px 34px 34px 34px;
    margin-bottom: 30px;
}

.political-event-single-items .thumb img {
    border-radius: 10px;
}

.political-event-single-items .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 40px;
}

.political-event-single-items .content .designation {
    margin-bottom: 20px;
}

.political-event-single-items .content .designation .event {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #fff;
    background: var(--main-color-one);
    padding: 5px 15px;
    border-radius: 5px;
    margin-right: 30px;
}

.political-event-single-items .content .designation .date {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #828282;
}

.political-event-single-items .content .title {
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--body-font);
    margin-bottom: 15px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.political-event-single-items .content .title:hover {
    color: var(--main-color-one);
}

.political-event-single-items .content p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 0px;
    max-width: 555px;
    color: #505050;
}

.political-event-single-items .read-more-link {
    font-size: 16px;
    line-height: 21px;
    font-family: var(--body-font);
    font-weight: 500;
    color: var(--main-color-one);
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    text-transform: uppercase;
}

.political-event-single-items .read-more-link i {
    margin-left: 10px;
}

.political-event-single-items .read-more-link:hover {
    margin-right: 10px;
}

.faq-section-area {
    margin-top: 116px;
    position: relative;
}


/*navbar-default*/

.navbar.navbar-area {
    padding-bottom: 0;
}

.navbar.active1 {
    position: fixed;
    top: -100%;
    left: 0;
    background-color: #fff;
    z-index: 999;
    width: 100%;
    transition: all .3s;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)!important;
    padding-top: 0;
    /* opacity: 0;
    visibility: hidden; */
}

.navbar.active1.active {
    top: 0;
    /* opacity: 1;
    visibility: visible; */
}

.logo-wrapper .site-title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    color: #111;
}

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

.navbar-nav ul li {
    color: #fff;
    font-size: 14px;
    line-height: 70px;
    display: inline-block;
}

.navbar-nav ul li+li {
    margin-left: 20px;
}

.navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default {
    background-color: var(--secondary-color);
}

.navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default .nav-container {
    max-width: 1200px;
    background-color: var(--secondary-color);
}

.navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default .nav-container .navbar-collapse .navbar-nav {
    text-align: right;
}

.navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default .nav-container .navbar-collapse .navbar-nav li:before {
    color: #fff;
}

.navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default .nav-container .navbar-collapse .navbar-nav li a {
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: #ffffff;
}

.navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    color: #fff;
    background-color: var(--secondary-color);
}

.navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    color: #fff;
    background-color: var(--main-color-one);
}

.navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover:before {
    color: #fff;
}

.navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover>.sub-menu li a {
    color: #fff;
    background-color: var(--secondary-color);
}

.navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover>.sub-menu li:hover a {
    background-color: var(--main-color-one);
    color: #fff;
}

.navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:before {
    color: #fff;
    right: 20px;
}

.navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--secondary-color);
}

.navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default .nav-container .logo-wrapper .site-title {
    color: #fff;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li a {
    padding-left: 45px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:before {
    right: 15px;
}

@media only screen and (max-width: 991px) {
    .navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default .nav-container .responsive-mobile-menu .navbar-toggler {
        background-image: none;
    }
    .navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default .nav-container .navbar-collapse .navbar-nav li {
        border-top: 1px solid #e2e2e2;
    }
    .navbar.navbar-area.navbar-expand-lg.nav-style-01.navbar-default .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
        border-top: 1px solid #e2e2e2;
    }
}

.wp-block-image .alignleft {
    float: left;
    margin: 0.5em 1em 0.5em 0;
}

.wp-block-image .alignright {
    float: right;
    margin: 0.5em 0 0.5em 1em;
}

.wp-block-gallery.alignleft {
    margin-right: 20px !important;
    margin-top: 0 !important;
}

.wp-block-button__link {
    margin-bottom: 20px;
}

.wp-block-cover {
    margin-bottom: 20px;
    color: #fff;
}

.wp-block-cover.alignleft {
    margin-top: 0;
}

.wp-block-archives-list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 30px;
}

.wp-block-archives-list li+li {
    margin-top: 10px;
}

.blog-details-item .wp-block-archives-list li:before {
    display: none;
}

.blog-details-item .wp-block-archives-list li {
    padding-left: 20px;
}

.wp-block-archives-list li:after {
    color: var(--main-color-one);
    position: absolute;
    content: "";
    font-size: 10px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    padding-right: 8px;
    left: 0;
}

.widget select,
.wp-block-archives-dropdown select,
.wp-block-categories-dropdown select {
    width: 100%;
    height: 50px;
    background-position-x: 97%;
    border: 1px solid #e2e2e2;
    background-color: transparent;
    margin-bottom: 30px;
    color: var(--paragraph-color);
}

.wp-block-latest-comments {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 30px;
}

.wp-block-latest-comments li:before {
    display: none;
}

.wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
}

.wp-block-latest-posts.wp-block-latest-posts__list {
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}

.wp-block-latest-posts.wp-block-latest-posts__list li {
    padding-left: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li:before {
    display: none;
}

.wp-block-button.is-style-squared .wp-block-button__link,
.wp-block-button__link.wp-block-button.is-style-squared .wp-block-button__link {
    border-radius: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li+li {
    margin-top: 15px;
}

.wp-block-latest-posts.wp-block-latest-posts__list li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 20px;
}

.wp-block-search {
    margin-bottom: 30px;
}

.wp-block-search .wp-block-search__input {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 30px 0 0 30px;
    height: 50px;
    padding: 0 20px;
}

.wp-block-search button[type=submit] {
    margin-left: 0;
    border: none;
    background-color: var(--main-color-one);
    color: #fff;
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all 300ms;
    transition: all 300ms;
    cursor: pointer;
}

.wp-block-search button[type=submit]:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.wp-block-search button[type=submit]:hover {
    background-color: var(--hover-color);
}

.wp-block-tag-cloud a {
    font-size: 14px !important;
    padding: 5px 10px;
    margin-bottom: 5px;
    display: inline-block;
    background-color: #f4f7fc;
    text-transform: capitalize;
    -webkit-transition: all 300ms;
    transition: all 300ms;
}

.wp-block-tag-cloud a:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.wp-block-rss {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 30px;
}

.wp-block-rss li+li {
    margin-top: 10px;
}

.wp-block-tag-cloud {
    margin-bottom: 30px;
}

.wp-block-rss li a:hover {
    color: var(--main-color-one);
}

.wp-block-rss li a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: var(--heading-color);
    -webkit-transition: all 200ms;
    transition: all 200ms;
}

.wp-block-group.has-background {
    padding: 30px;
    padding-bottom: 1px;
}

.wp-block-calendar {
    margin-bottom: 30px;
}

ul.wp-block-latest-posts__list li,
.blog-details-item .wp-block-rss li {
    padding-left: 0;
}

ul.wp-block-latest-posts__list li:before,
.blog-details-item .wp-block-rss li:before {
    display: none;
}

.wp-block-quote.is-style-large {
    padding: 30px;
    padding-left: 90px;
    position: relative;
}

.wp-block-quote.is-style-large:after {
    position: absolute;
    left: 0;
    top: 10px;
    content: "";
    font-family: "Font Awesome 5 Free";
    font-size: 80px;
    color: var(--main-color-one);
    font-weight: 700;
}

.wp-block-quote.has-text-align-right:after {
    left: auto;
    right: 30px;
    -webkit-transform: translate(0);
    transform: translate(0);
}

.wp-block-quote.has-text-align-right {
    padding-left: 30px;
    padding-right: 90px;
}

.wp-block-calendar .wp-calendar-nav {
    text-align: left;
}

.wp-block-calendar tbody td,
.wp-block-calendar th {
    text-align: center;
}

.wp-block-image {
    margin-bottom: 1em;
}

.wp-block-video video {
    max-width: 636px;
}

.wp-block-image img {
    display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
    width: 100%;
}

.wp-block-image.alignfull img {
    width: 100vw;
}

.wp-block-cover-text p {
    padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
    padding: 0 14px;
}

.wp-block-table {
    display: block;
    overflow-x: auto;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table td,
.wp-block-table th {
    padding: 0.5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wp-block-quote.is-large {
    margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
    margin-top: 0;
}

.wp-block-separator {
    margin: 3em auto;
    padding: 0;
}

.wp-block-video video {
    max-width: 636px;
}

.wp-block-image img {
    display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
    width: 100%;
}

.wp-block-image.alignfull img {
    width: 100vw;
}

.wp-block-cover-text p {
    padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
    padding: 0 14px;
}

.wp-block-table {
    display: block;
    overflow-x: auto;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table td,
.wp-block-table th {
    padding: 0.5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wp-block-quote.is-large {
    margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
    margin-top: 0;
}

.wp-block-separator {
    margin: 3em auto;
    padding: 0;
}

.wp-block-pullquote {
    border-top: 4px solid #555d66;
    border-bottom: 4px solid #555d66;
    color: #40464d;
    margin: 30px 0;
}

.wp-block-archives-dropdown select,
.wp-block-categories-dropdown select {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    position: relative;
    z-index: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>");
    background-repeat: no-repeat;
    background-position-y: 55%;
    background-position-x: 92%;
    color: var(--paragraph-color);
}

.wp-block-archives-dropdown select,
.wp-block-categories-dropdown select {
    width: 100%;
    height: 50px;
    background-position-x: 97%;
    border: 1px solid #e2e2e2;
    background-color: transparent;
    margin-bottom: 30px;
    color: var(--paragraph-color);
}

@media screen and (min-width: 768px) {
    .wp-block-cover-text p {
        padding: 1.5em 0;
    }
}


/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    clear: both;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
    opacity: 0.7;
    font-weight: 600;
}

.wp-caption .wp-caption-text a {
    color: var(--secondary-color);
}

.wp-caption img[class*=wp-image-] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption-text {
    text-align: center;
}

figcaption {
    opacity: 0.7;
    font-weight: 600;
}

figcaption a {
    color: var(--secondary-color);
}

.wp-block-button.is-style-outline .wp-block-button__link {
    color: var(--paragraph-color) !important;
    border-color: var(--main-color-one);
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link {
    color: #fff !important;
    background-color: var(--main-color-one);
}


/* --------------------------
    Post Navigation
---------------------------- */

.post-navigation-area {
    margin: 40px 0 0px 0;
}

.post-navigation-area .post-navigation-inner .content-area.style-01.no-line .content {
    text-align: left;
}

.post-navigation-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
    border-radius: 3px;
}

.post-navigation-inner .content-area {
    width: calc(100% / 2);
}

.post-navigation-inner div .title {
    font-size: 18px;
    line-height: 25px;
    -webkit-transition: all 300ms;
    transition: all 300ms;
    margin-bottom: 0px;
}

.post-navigation-inner div .title a {
    -webkit-transition: all 300ms;
    transition: all 300ms;
}

.post-navigation-inner div .title:hover>a {
    color: var(--main-color-one);
}

.post-navigation-inner div:first-child {
    text-align: left;
}

.post-navigation-inner .content-area.no-line {
    width: 100%;
}

.post-navigation-inner .prev-post {
    -webkit-transition: all 300ms;
    transition: all 300ms;
    font-size: 14px;
    display: block;
    font-family: var(--body-font);
    font-weight: 500;
    color: var(--main-color-one);
    margin-bottom: 10px;
}

.post-navigation-inner .next-post {
    -webkit-transition: all 300ms;
    transition: all 300ms;
    font-size: 14px;
    display: block;
    font-family: var(--body-font);
    font-weight: 500;
    color: var(--main-color-one);
    margin-bottom: 10px;
}

.blog-comment-navigation .comment-navigation {
    min-height: 50px;
    margin-bottom: 30px;
}


/*--------------------------------------------------------------
## Block Color Palette Colors
--------------------------------------------------------------*/

.has-strong-blue-color {
    color: #0073aa;
}

.has-strong-blue-background-color {
    background-color: #0073aa;
}

.has-lighter-blue-color {
    color: #229fd8;
}

.has-lighter-blue-background-color {
    background-color: #229fd8;
}

.has-very-light-gray-color {
    color: #eee;
}

.has-very-light-gray-background-color {
    background-color: #eee;
}

.has-very-dark-gray-color {
    color: #444;
}

.has-very-dark-gray-background-color {
    background-color: #444;
}

.has-large-font-size {
    font-size: 36px;
    line-height: 1.6;
}


/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
    padding-top: 5px;
}


/*--------------------------------------------------------------
# WP Table
--------------------------------------------------------------*/

.blog-details-item table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 15px;
}

.blog-details-item table td {
    border: 1px solid #e3e3e3;
    padding: 8px;
}

.blog-details-item table td a {
    text-decoration: underline;
    color: var(--main-color-one);
    font-weight: 400;
}

.blog-details-item table th {
    border: 1px solid #e3e3e3;
    padding: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
}

.blog-details-item table th a {
    text-decoration: underline;
    font-weight: 600;
}

.page-content table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 15px;
}

.page-content table td {
    border: 1px solid #e3e3e3;
    padding: 8px;
}

.page-content table td a {
    text-decoration: underline;
    color: var(--main-color-one);
    font-weight: 400;
}

.page-content table th {
    border: 1px solid #e3e3e3;
    padding: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
}

.page-content table th a {
    text-decoration: underline;
    font-weight: 600;
}

.single-comment-wrap table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 15px;
}

.single-comment-wrap table td {
    border: 1px solid #e3e3e3;
    padding: 8px;
}

.single-comment-wrap table td a {
    text-decoration: underline;
    color: var(--main-color-one);
    font-weight: 400;
}

.single-comment-wrap table th {
    border: 1px solid #e3e3e3;
    padding: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
}

.single-comment-wrap table th a {
    text-decoration: underline;
    font-weight: 600;
}

.content-area table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 15px;
}

.content-area table th {
    border: 1px solid #e3e3e3;
    padding: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
}

.content-area table th a {
    text-decoration: underline;
    color: var(--main-color-one);
    font-weight: 400;
}

.content-area table td {
    border: 1px solid #e3e3e3;
    padding: 8px;
}

.content-area table td a {
    text-decoration: underline;
    color: var(--main-color-one);
    font-weight: 400;
}

.calendar_wrap table td {
    text-align: center;
}

.widget_calendar table td a,
.widget_calendar table th a {
    font-weight: 600;
    color: var(--main-color-one);
    text-decoration: underline;
}

.footer-widget.widget_calendar table td a,
.footer-widget.widget_calendar table th a {
    font-weight: 600;
    color: var(--main-color-one);
    text-decoration: underline;
}


/*--------------------------------------------------------------
# WP List
--------------------------------------------------------------*/

.content-area ul {
    list-style: none;
}

.content-area ul li {
    position: relative;
    padding-left: 15px;
}

.content-area ul li+li {
    margin-top: 10px;
}

.content-area ul li:before {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--paragraph-color);
    content: "";
    display: inline-block;
    margin-right: 5px;
    left: 0;
    top: 8px;
    border-radius: 50%;
}

.content-area ul li>ul li:before {
    background-color: transparent;
    border: 1px solid;
}

.content-area ol li {
    padding-left: 0;
}

.content-area ol li:before {
    display: none;
}

.content-area ol li+li {
    margin-top: 10px;
}

.content-area .widget ul li {
    padding-left: 0;
}

.content-area .widget ul li:before {
    display: none;
}

.blog-details-item ol li+li {
    margin-top: 10px;
}

.blog-details-item ul {
    list-style: none;
}

.blog-details-item ul li {
    position: relative;
    padding-left: 15px;
}

.blog-details-item ul li+li {
    margin-top: 10px;
}

.blog-details-item ul li ol>li {
    padding-left: 0;
}

.blog-details-item ul li ol>li:before {
    display: none;
}

.blog-details-item ul li:before {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--paragraph-color);
    content: "";
    display: inline-block;
    margin-right: 5px;
    left: 0;
    top: 8px;
    border-radius: 50%;
}

.blog-details-item ul li>ul li:before {
    background-color: transparent;
    border: 1px solid;
}

.blog-details-item .post-meta li {
    padding-left: 0;
}

.blog-details-item .post-meta li:before {
    display: none;
}

.page-content ol li+li {
    margin-top: 10px;
}

.page-content ul li+li {
    margin-top: 10px;
}

.single-comment-wrap ol li+li {
    margin-top: 10px;
}

.single-comment-wrap ul li+li {
    margin-top: 10px;
}

.comments-area .comment-list li .single-comment-wrap ul {
    list-style: none;
}

.comments-area .comment-list li .single-comment-wrap ul li {
    position: relative;
    padding-left: 15px;
}

.comments-area .comment-list li .single-comment-wrap ul li:before {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--paragraph-color);
    content: "";
    display: inline-block;
    margin-right: 5px;
    left: 0;
    top: 8px;
    border-radius: 50%;
}

.comments-area .comment-list li .single-comment-wrap ul li>ul li:before {
    background-color: transparent;
    border: 1px solid;
}

.comments-area .comment-list .trackback {
    margin-bottom: 30px;
}

.comments-area .comment-list .pingback {
    margin-bottom: 30px;
}

.carousel-indicators li+li {
    margin-top: 0 !important;
}

.footer-widget.widget.widget_nav_menu ul li+li {
    margin-top: 15px;
}

ul.blocks-gallery-grid li {
    padding-left: 0;
}

ul.blocks-gallery-grid li:before {
    display: none;
}

.blog-details-footer .right .social-share li {
    padding-left: 0;
}

.blog-details-footer .right .social-share li:before {
    display: none;
}

.blog-details-footer .left .tags li {
    padding-left: 0;
}

.blog-details-footer .left .tags li:before {
    display: none;
}

.blog-pagination {
    display: block;
    width: 100%;
}

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

.blog-pagination ul li {
    display: inline-block;
    padding-left: 0;
}

.blog-pagination ul li+li {
    margin: 0 5px;
}

.blog-pagination ul li:before {
    display: none;
}

.blog-pagination ul li a {
    padding: 7px 0px;
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    color: #B5B5B5;
    font-size: 22px;
    line-height: 47px;
    font-family: var(--body-font);
    font-weight: 700;
}

.blog-pagination ul li a.current {
    background-color: var(--main-color-one);
    color: #fff;
    border-color: var(--main-color-one);
}

.blog-pagination ul li a:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.blog-pagination ul li span {
    display: block;
    padding: 3px 25px;
    border: none;
    line-height: 40px;
    border-radius: 30px;
    text-align: center;
    font-size: 16px;
    line-height: 47px;
    font-family: var(--body-font);
    font-weight: 700;
    color: #CBCBCB;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.blog-pagination ul li span:hover {
    color: var(--main-color-one);
}

.blog-pagination ul li span.next {
    border: none;
}

.blog-pagination ul li span.active {
    color: var(--main-color-one);
}


/* contact page */

.contact-info-list-02 .single-info-item.thIrd-CaRD {
    align-items: center;
}

.contact-info-list-02 .single-info-item .details span {
    color: #000;
}

.contact-info-list-02 .single-info-item .details a:hover {
    color: var(--main-color-one);
    transition-duration: .3s;
}


/* contact page */


/* about page */

.aBOuT-CarD {
    border-bottom: 2px solid var(--heading-color);
    padding: 20px;
    position: relative;
}

.aBOuT-CarD::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--heading-color);
    width: 2px;
    height: 120px;
}

.aBOuT-CarD::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    background-color: var(--main-color-one);
    width: 8px;
    height: 80px;
}

.aBo-Ele {
    position: relative;
}

.aBo-Ele::before {
    position: absolute;
    content: '';
    bottom: -25px;
    left: -23px;
    background-color: var(--main-color-one);
    height: 8px;
    width: 80px;
}

.aBOut-CarD1 {
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    padding: 15px;
}

.aBOut-CarD1 h2 {
    font-size: 24px;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0px;
    margin-top: 10px;
}

.aBOut-CarD2 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.aBOut-CarD2 p {
    text-align: justify;
}

.aB-conTaNt {
    font-size: 16px;
    line-height: 28px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: var(--heading-color);
}


/* about page */


/* link page */

.OtHEr-CarD {
    padding: 30px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.OtHEr-CarD::before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0;
    width: 100%;
    height: 110px;
    background-color: transparent;
    border-top: 2px solid var(--heading-color);
    border-left: 2px solid var(--heading-color);
    border-right: 2px solid var(--heading-color);
    z-index: -1;
}

.OtHEr-CarD::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 110px;
    background-color: transparent;
    border-left: 2px solid var(--heading-color);
    border-right: 2px solid var(--heading-color);
    border-bottom: 2px solid var(--heading-color);
    z-index: -1;
}

.CarD1::before,
.CarD1::after {
    height: 60px;
}

.OtHEr-CarD h3.title {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 30px 0px 20px 30px;
    margin: 0;
}

.OtHEr-CarD h3.title:first-child {
    padding: 0px 0px 20px 30px;
}

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

.OtHEr-CarD ul li {
    display: block;
    margin-left: 0;
    line-height: 24px;
    font-size: 14px;
    font-family: var(--body-font);
    text-transform: capitalize;
    font-weight: 600;
}

.OtHEr-CarD ul li a {
    display: block;
    padding: 12px 30px;
    transition: all 0.3s ease-in;
    border: 1px solid var(--main-color-one);
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}

.OtHEr-CarD ul li:last-child a {
    margin-bottom: 0;
}

.OtHEr-CarD ul li a:hover {
    color: var(--main-color-one);
}


/* link page */


/* gallary page */

.show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.4s, transform 0.35s;
}

.inner {
    padding: 10px;
    position: relative;
}

.inner a {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    transition: .4s;
}

.inner a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.336);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.4s;
}

.inner a:hover::before {
    opacity: 1;
}

.inner-Name {
    color: #000;
    font-weight: 500;
    padding-left: 10px;
    padding-right: 10px;
}

.inner a img {
    height: 250px;
    transition: .4s;
    object-fit: cover;
}

.inner a:hover img {
    transform: scale(1.1);
}


/* gallary page */


/* training page */

.Lebal-grp label input.form-control {
    width: 60%;
    display: flex;
    padding: 10px 12px 0 12px !important;
    cursor: pointer;
}

.Lebal-grp label span {
    width: 40%;
    background-color: #fff;
    color: #10837A;
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    font-weight: 600;
}


/* training page */


/* 404 error */

.btn404 {
    padding: 10px 18px;
    border-radius: 30px;
    /* background-color: #0073aa; */
    background: linear-gradient(123deg, #0073aa, #3DB7F0);
    color: #fff;
}

.btn404:hover {
    color: #fff;
    background: linear-gradient(123deg, #3DB7F0, #0073aa);
}


/* 404 error */


/* box */

.Box_Li {
    border: 1px solid #777;
    height: 100%;
    position: relative;
}

.Box_Li::before {
    position: absolute;
    content: "\f35a";
    font-weight: 900;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "fontawesome";
    color: #10837A;
    font-size: 24px;
    z-index: 2;
}

.R_Box div:last-child .Box_Li::before {
    display: none;
}

@media (max-width:576px) {
    .Box_Li::before {
        display: none;
    }
}


/* box */


/* view all btn  */

.View_CarD {
    border: 1px solid #10837A;
    padding: 10px;
    border-radius: 10px;
}

.View_CarD .content {
    margin-top: -40px;
    margin-left: 10px;
}

.View_CarD .content .title {
    display: inline-block;
    padding: 0 9px;
    background-color: #fff;
}

.View_aLL {
    /* float: right; */
    /* margin-left: auto; */
    color: #053b87 !important;
    text-align: right;
    /* font-weight: bold;
    font-size: 18px; */
    text-decoration: underline;
}

.View_aLL:hover {
    color: #10837A !important;
}

.donation-section-area .View_CarD .btn-wrapper a {
    background-color: rgb(255, 249, 252);
    border: none;
}

.donation-section-area .View_CarD .btn-wrapper .View_aLL {
    background-color: transparent;
}

.donation-section-area .View_CarD .btn-wrapper .price-btn {
    margin-right: 0;
}


/* view all btn  */


/* slider */

.SEconD-sliDer {
    border: 1px solid #000;
    padding: 10px;
    border-radius: 12px;
}

.Slide-Hght {
    height: 100px;
    overflow: hidden;
    /* position: relative; */
}


/* .bTTN {
    font-size: 24px;
    color: #000;
    z-index: 999999;
    padding: 10px;
    background-color: #007bcf;
    margin-top: -50px;
} */

.swiper-wrapper {
    -webkit-transition-timing-function: linear!important;
    transition-timing-function: linear!important;
    position: relative;
}

.swiper-container {
    width: 100%;
    height: 160px;
    position: relative;
}

.swiper-slide {
    text-align: center;
    font-size: 33px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    overflow: hidden;
    height: 45px !important;
}

@keyframes line-slide {
    0% {
        background-position: -5% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.swiper-button-next,
.swiper-button-prev {
    right: 0px !important;
    left: auto !important;
    transform: rotate(-90deg);
}

.swiper-button-next {
    top: 10% !important;
}

.swiper-button-prev {
    top: 90% !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px !important;
}

.crmLogin_btn {
    position: fixed;
    z-index: 998;
    top: 48%;
    right: 0;
    background-color: #04a9e5;
    border: 2px solid #04a9e5;
    color: #fff;
    font-size: 16px;
    border-radius: 0 0 4px 4px;
    padding: 10px 30px;
    cursor: pointer;
    transition: all .4s;
    transform: rotate(-90deg);
    margin-right: -42px;
}

.crmLogin_btn:hover {
    color: #fff;
    background-color: #053B87;
    border-color: #053B87;
}