/* reset css start */
:root {
    --heading-font: "Barlow Condensed", sans-serif;
    --para-font: "Karla", sans-serif;

    --heading-color: #052f5c;
    --logo-color: #ff8c00;
    --para-color: rgb(37, 63, 92);
    --main-color: #00b965;
    --title-color: rgb(255, 255, 255);
    --hover-color: rgb(255, 86, 110);
    --title-bg-color: #40e0d0;
    --bg-main-color: #f2f9ff;
}

body {
    font-size: 15px;
    font-family: var(--para-font);
    padding: 0;
    margin: 0;
    font-weight: 400;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

h1,
h1 > a,
h2,
h2 > a,
h3,
h3 > a,
h4,
h4 > a,
h5,
h5 > a,
h6,
h6 > a {
    font-family: var(--heading-font);
    color: var(--heading-color);
    line-height: 1.25;
    font-weight: 500;
    text-transform: initial;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

h1 > a:hover,
h2 > a:hover,
h3 > a:hover,
h4 > a:hover,
h5 > a:hover,
h6 > a:hover {
    color: var(--logo-color);
}

h2,
h2 > a {
    font-size: 40px;
}

h3,
h3 > a {
    font-size: 22px;
}

h4,
h4 > a {
    font-size: 20px;
}

h5,
h5 > a {
    font-size: 18px;
}

a {
    display: inline-block;
    font-family: var(--para-font);
    font-weight: 400;
}

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

p,
span,
li {
    margin: 0;
    font-family: var(--para-font);
    color: var(--para-color);
    line-height: 1.7;
    font-size: 15px;
}

p {
    font-family: var(--para-font);
}

img {
    max-width: 100%;
    height: auto;
}

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

button:focus,
input:focus,
textarea:focus {
    outline: none;
}

button {
    border: none;
    cursor: pointer;
}

input,
textarea {
    padding: 10px 25px;
    border: 1px solid #e5e5e5;
    width: 100%;
    font-family: var(--heading-font);
}

select {
    padding: 10px 20px;
    border: 1px solid #e5e5e5;
    cursor: pointer;
}

textarea {
    min-height: 150px;
    resize: none;
}

span {
    display: inline-block;
}

.bg_img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.title span {
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.bg_img {
    background-position: center;
    background-size: cover;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mr-60 {
    margin-right: 60px;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.button-group {
    display: inline-flex;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
}

.b-none {
    border: none !important;
}

.section-header {
    position: relative;
    margin-bottom: 23px;
}

.sub-title {
    color: var(--title-color);
    background-color: var(--title-bg-color);
    font-family: var(--para-font);
    padding: 4px 16px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 15px;
}

.section-title {
    color: var(--heading-color);
    font-family: var(--heading-font);
    display: block;
    font-size: 54px;
    margin: 14px 0 15px 0;
}

.section-para {
    color: var(--para-color);
    font-family: var(--para-font);
    display: block;
    font-size: 18px;
    margin-bottom: 32px;
}

.section-title .highlight {
    color: var(--logo-color);
}

.area-title {
    font-size: 25px;
    color: var(--heading-color);
    padding-bottom: 10px;
}
.area-title a {
    font-size: 25px;
    color: var(--heading-color);
}

.area-title a:hover {
    color: var(--logo-color);
}
iframe {
    /* frameborder:0; */
    border: 0;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .sub-title {
        font-size: 12px;
    }

    .section-para {
        font-size: 18px;
    }
}

.section-title span {
    color: var(--primary-color);
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.shadow-none {
    -webkit-box-shadow: none;
    box-shadow: none;
}

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

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

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

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

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

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

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

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

.tx {
    text-align: right;
}

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

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

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

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

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

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

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

@media (max-width: 991px) {
    .pt-150 {
        padding-top: 80px;
    }
}

@media (max-width: 575px) {
    .pt-150 {
        padding-top: 70px;
    }
}

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

@media (max-width: 991px) {
    .pb-150 {
        padding-bottom: 80px;
    }
}

@media (max-width: 575px) {
    .pb-150 {
        padding-bottom: 70px;
    }
}

.px-40 {
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 575px) {
    .px-40 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar-thumb {
    background: var(--heading-color);
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--heading-color);
}

@media (max-width: 991px) {
    .header-section .header-top {
        display: block;
    }
}

@media (max-width: 767px) {
    .navbar-collapse {
        max-height: 320px;
        overflow: auto;
    }

    .header-section .order-div {
        order: 2;
    }

    .header-section .order-div .header-left {
        margin-top: 15px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse .main-menu {
        padding: 15px 0;
        text-align: end;
    }

    .menu_has_children .sub-menu {
        display: none !important;
    }

    .menu_has_children .sub-menu li {
        width: 100%;
    }

    .navbar-collapse .main-menu .menu_has_children.show .sub-menu,
    .navbar-collapse .main-menu .menu_has_children.show .sub-menu {
        display: inline-flex !important;
        flex-wrap: wrap;
    }
}

.navbar-collapse .main-menu li:last-child .sub-menu {
    left: auto;
    right: 0;
}

.navbar-collapse .main-menu li {
    position: relative;
}

.navbar-collapse .main-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.navbar-collapse .main-menu li.menu_has_children {
    position: relative;
}

.navbar-collapse .main-menu li.menu_has_children i {
    font-size: 18px;
    margin-left: 5px;
}

@media (max-width: 991px) {
    .navbar-collapse .main-menu li.menu_has_children::before {
        top: 12px;
        right: 15px;
    }
}

.navbar-collapse .main-menu li a {
    padding: 15px 20px;
    color: var(--heading-color);
    font-weight: 700;
    align-items: center;
    font-size: 16px;
    text-transform: capitalize;
    border-bottom: 2px solid transparent;
    font-family: var(--pera-font);
}

@media (max-width: 1199px) {
    .navbar-collapse .main-menu li a {
        padding: 12px 10px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse .main-menu li a {
        padding: 12px 15px;
        display: block;
        text-align: center;
    }
}

.navbar-collapse .main-menu li .sub-menu {
    position: absolute;
    top: 105%;
    left: 0;
    width: 220px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 5px 10px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px 2px rgba(0, 0, 0, 0.1);
    padding: 4px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 9;
}

.navbar-collapse .main-menu li .sub-menu li a {
    color: var(--main-color);
    padding: 8px 20px;
    display: block;
    border: none;
}

.navbar-collapse .main-menu li .sub-menu li a:hover {
    color: var(--main-color);
    background-color: rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .navbar-collapse .main-menu li .sub-menu {
        position: initial;
        opacity: 1;
        visibility: visible;
        display: none;
        -webkit-transition: none;
        transition: none;
    }
}

.menu-toggle {
    margin: 15px 0;
    position: relative;
    display: block;
    width: 35px;
    height: 20px;
    cursor: pointer;
    background: transparent;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    font-size: 0;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.menu-toggle.is-active {
    border-color: transparent;
}

.menu-toggle::before,
.menu-toggle::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ffffff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: -webkit-transform 0.25s ease-in-out;
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

.menu-toggle.is-active::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.is-active::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.navbar-toggler {
    padding-right: 0;
    display: none;
}

.toggle-btn {
    padding: 8px 12px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 4px;
}

.navbar.navbar-expand-lg {
    display: contents;
}

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

@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }
}

.scrollToTop {
    position: fixed;
    bottom: 0;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--main-color);
    border-radius: 5px;
    color: #fff;
    line-height: 45px;
    font-size: 20px;
    text-align: center;
    z-index: 9;
    cursor: pointer;
    transition: all 1s;
    transform: translateY(100%);
}

.scrollToTop.active {
    bottom: 30px;
    transform: translateY(0%);
    color: #fff;
}

.scrollToTop:hover {
    color: #fff;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    top: 0;
    left: 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
}

.preloader-thumb {
    width: 150px;
    height: 100px;
    position: relative;
}

.preloader-thumb img {
    width: 100%;
    animation: rotate 3s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
}

/* .sticky {
  position: fixed;
  width: 100%;
  z-index: 9999;
  background: #e2edfe;
  box-shadow: 0px 1px 5px 0px rgba(59, 55, 188, 0.5);
} */

@keyframes rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -ms-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-moz-keyframes rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -ms-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -ms-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* zoom in out animation */

@keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-filter: alpha(opacity=50);
    }

    80% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }

    100% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
    }
}

@-webkit-keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    80% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
    }

    100% {
        transform: scale(3.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(3.5);
        -moz-transform: scale(3.5);
        -ms-transform: scale(3.5);
        -o-transform: scale(3.5);
    }
}

@-moz-keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    80% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
    }

    100% {
        transform: scale(3.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(3.5);
        -moz-transform: scale(3.5);
        -ms-transform: scale(3.5);
        -o-transform: scale(3.5);
    }
}

/* inner ripple */
@keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

@-webkit-keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

@-moz-keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

/* menu animated css */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.cmn-btn {
    position: relative;
    padding: 0 30px;
    background-color: var(--main-color);
    color: var(--bg-main-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 50px;
    overflow: hidden;
    text-transform: uppercase;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
}

.cmn-btn:focus {
    outline: none;
    box-shadow: none;
}

.cmn-btn::before,
.cmn-btn::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    content: "";
    background-color: var(--main-color);
    z-index: -1;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.cmn-btn::before {
    right: 50%;
}

.cmn-btn::after {
    left: 50%;
}

.cmn-btn:hover::after {
    left: 100%;
}

.cmn-btn:hover::before {
    right: 100%;
}

.cmn-btn:hover {
    border: 1px solid var(--main-color);
    background: transparent;
    color: var(--main-color);
}

.cmn-btn-active {
    position: relative;
    padding: 0 30px;
    background-color: transparent;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 50px;
    overflow: hidden;
    text-transform: uppercase;
    border: 1px solid var(--main-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
}

.cmn-btn-active::before,
.cmn-btn-active::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    content: "";
    background-color: transparent;
    z-index: -1;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.cmn-btn-active::before {
    right: 50%;
}

.cmn-btn-active::after {
    left: 50%;
}

.cmn-btn-active:hover::after {
    left: 100%;
}

.cmn-btn-active:hover::before {
    right: 100%;
}

.cmn-btn-active:hover {
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: var(--title-color);
}

/* global btn second */
.global-btn-area {
    transform: translate(120px, 30px);
}

.global-btn-area .frame {
    border-radius: 2px;
    overflow: hidden;
    background: var(--title-color);
    color: var(--main-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.global-btn-area .center {
    position: absolute;
    transform: translate(-50%, -50%);
}

.global-btn-area .global-btn {
    position: relative;
    left: 0;
    top: 0;
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--title-color);
    border: 0;
    border-radius: 0;
    cursor: pointer;
    outline: 0;
    padding: 12px 65px;
    font-size: 22px;
    text-transform: uppercase;
}

.global-btn-area .global-btn:before {
    position: absolute;
    left: 12px;
    top: 10px;
    background: var(--bg-main-color);
    border: 0;
    border-radius: 0;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2);
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.global-btn-area .global-btn:hover {
    left: 12px;
    top: 10px;
    background: var(--bg-main-color);
    color: var(--main-color);
}

.global-btn-area .global-btn:hover:before {
    left: -12px;
    top: -10px;
    background: var(--main-color);
}

.global-btn-area .global-btn,
.global-btn-area .global-btn:before {
    transition: all 0.3s linear;
}

/* Header Section */
.header-section.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: var(--main-color);
}

.header-section.header-fixed .header-top,
.header-section.header-fixed .header-middle {
    display: none !important;
}

.header-section.header-fixed .header-bottom {
    background-color: #fff;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

.header-section .header-top {
    background-color: var(--main-color);
    padding: 5px 0;
}

.header-section .header-top .header-left-list span {
    color: var(--title-color);
}

.header-section .header-top .header-left .border {
    width: 1px;
    height: 15px;
    background-color: var(--main-color);
    margin: 4px 12px;
}

.header-section .header-top .header-right-area select {
    position: relative;
    font-weight: 400;
    background: transparent;
    outline: none;
    border: none;
    padding: 0 16px;
    color: var(--title-color);
    margin: 0 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.header-section .header-top .header-right-area select option {
    color: #111;
    font-size: 16px;
}
.language-select .select-bar {
    position: relative;
    z-index: 11;
}
.language-thumb {
    transform: translateX(16px);
    display: flex;
    align-items: center;
}
.language-thumb img {
    width: 16px;
    height: 16px;
    object-fit: cover;
    border-radius: 50%;
}
.header-section .header-top .header-right-area .language-select::after {
    position: absolute;
    font-family: "IcoFont";
    content: "\ea67";
    z-index: 2;
    color: var(--title-color);
    margin-left: -22px;
    top: -5px;
    font-size: 18px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-top-style: solid;
}

.header-section .header-top .header-right .border {
    width: 1px;
    height: 15px;
    background-color: var(--main-color);
    margin: 4px 12px;
}

.header-section .header-top .header-right .header-action {
    color: var(--title-color);
}

.header-section .header-bottom {
    color: var(--header-color);
    background-color: var(--title-color);
}

.header-section .modal {
    top: 15%;
}

.header-section .modal-content .modal-body .container {
    padding-left: 0;
}

.header-section .modal-content .modal-body .container .col-lg-6 {
    padding-left: 0;
}

.header-section .modal-content .modal-body .content {
    position: relative;
}

.header-section .modal-content .modal-body .content .content-overlay {
    background-color: rgb(0, 0, 0);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0.5;
}

.header-section .modal-content .modal-body .content-details {
    position: absolute;
    top: 15%;
    left: 20%;
    text-align: center;
}

.header-section .modal-content .modal-body .content-details .text-area {
    margin: 70px 0 -35px 0;
}

.header-section .modal-content .modal-body .content-details p {
    color: var(--title-color);
    width: 60%;
    margin: 0 auto;
}

.header-section
    .modal-content
    .modal-body
    .content-details
    .sign-btn
    .single-btn {
    background-color: rgb(86, 139, 199);
    padding: 8px 0 8px 0;
    margin-bottom: 23px;
    width: 75%;

    align-items: center;
    display: inline-flex;
    justify-content: center;
}

.header-section
    .modal-content
    .modal-body
    .content-details
    .sign-btn
    .single-btn.google {
    background-color: var(--hover-color);
    margin-bottom: 23px;
}

.header-section .modal-content .modal-body .content-details .sign-btn i {
    color: var(--title-color);
    margin-right: 5px;
    font-size: 22px;
}

.header-section .modal-content .modal-body .content-details .sign-btn span {
    color: var(--title-color);
    font-weight: 600;
}

.header-section .modal.fade .modal-dialog {
    max-width: 60%;
}

.header-section .modal-header {
    padding: 0;
    border: none;
    display: block;
}

.header-section .modal-body {
    padding: 0;
}

.header-section .modal-header .close {
    padding: 2rem 1rem;
}

.header-section .modal-header .close i {
    color: var(--hover-color);
}

.header-section .modal-content .modal-body .login-content {
    width: 100%;
}

.header-section .modal-content .modal-body .login-content .login-form {
    margin: 12px 0 110px 0;
}

.header-section .modal-content .modal-body .login-content .password-show {
    display: flex;
    border-bottom: 2px solid #e8e3e0;
    margin-top: 15px;
}

.header-section .modal-content .modal-body .login-content .password-show input {
    border: none;
    padding: 18px 0 15px 0;
}

.header-section
    .modal-content
    .modal-body
    .login-content
    .password-show
    .form-control:focus {
    outline: 0;
    box-shadow: none;
}

.header-section
    .modal-content
    .modal-body
    .login-content
    .password-show
    .btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

.header-section .modal-content .modal-body .login-content .registration p {
    color: rgb(204, 204, 204);
}

.header-section .modal-content .modal-body .login-content .registration a {
    color: rgb(37, 68, 106);
    margin-left: 7px;
}

.header-section .modal-content .modal-body .login-form .input-bottom {
    margin: 22px 0 -15px 0;
}

.header-section .modal-content .modal-body .login-form .box-area {
    color: rgb(204, 204, 204);
    font-size: 15px;
}

.header-section .modal-content .modal-body .login-form input {
    background-color: var(--title-color);
    border: none;
    border-bottom: 2px solid #e8e3e0;
    padding: 20px 0 5px 0;
    font-size: 15px;
    color: rgb(204, 204, 204);
}

.header-section .modal-content .modal-body .login-form .cmn-btn {
    margin-top: 40px;
}

.header-section .input-bottom .forgot-pwd {
    color: rgb(204, 204, 204);
}

.header-section .box-area {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.header-section .box-area input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.header-section .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

.header-section .box-area:hover input ~ .checkmark {
    background-color: #ccc;
}

.header-section .box-area input:checked ~ .checkmark {
    background-color: var(--main-color);
}

.header-section .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.header-section .box-area input:checked ~ .checkmark:after {
    display: block;
}

.header-section .box-area .checkmark:after {
    left: 7px;
    top: 4px;
    width: 7px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header-section .box-area .checkmark {
    width: 20px;
    height: 20px;
}

/* Banner Section */
.banner-section {
    position: relative;
    z-index: 0;
}
.banner-section .img-content {
    padding: 140px 0 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
@media (max-width: 767px) {
    .banner-section .img-content {
        padding: 130px 0;
    }
}
.img-content-content {
    margin-bottom: 60px;
}
.img-content-content .section-title {
    font-size: 80px;
    line-height: 85px;
    font-weight: 600;
}
.img-content-content .global-btn-area {
    margin: 0 auto;
    margin-top: 55px;
    transform: translate(0);
    text-align: center;
    display: inline-block;
    white-space: nowrap;
}
@media (min-width: 992px) {
    .img-content-content .section-title {
        font-size: 80px;
        line-height: 85px;
        font-weight: 600;
    }
    .img-content-content .global-btn-area {
        margin: 0 auto;
        margin-top: 55px;
        transform: translate(0);
        text-align: center;
        display: inline-block;
        white-space: nowrap;
    }
}
@media (min-width: 1200px) {
    .img-content-content {
        margin-bottom: 60px;
    }
}
@media (min-width: 1400px) {
    .banner-section .img-content {
        padding: 160px 0 200px;
    }
}

.banner-section .banner-content img {
    position: relative;
}

/* .banner-section .banner-content .img-content {
    position: absolute;
    opacity: 0;
    transition: 0.9s ease all;
    transform: translate(0%, -300%);
    text-align: center;
} */

.banner-section .banner-content .section-title {
    color: var(--title-color);
}

.banner-section .slick-initialized .slick-next {
    right: 0%;
}

.banner-section .slick-initialized .slick-prev {
    left: 0%;
    z-index: 1;
}

.banner-section .slick-initialized button {
    top: 50%;
    position: absolute;
    bottom: -10px;
    background-color: var(--main-color);
    color: var(--title-color);
    box-shadow: 0 11px 22px 0 rgb(35 35 35 / 8%);
    border: none;
    height: 80px;
    width: 40px;
    padding: 0;
    line-height: 95px;
    outline: none;
}

.banner-section .slick-initialized button i {
    font-size: 35px;
}
/*
.banner-section
    .slick-initialized
    .slick-slide.slick-current.slick-active
    .img-content {
    opacity: 1;
    transition: 0.9s ease all;
    transform: translate(0%, 6%);
} */

.banner-section.inner-banner-section::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    opacity: 0.5;
}

/* .banner-section.inner-banner-section {
    position: relative;
    background-image: url(../../assets/images/about-inner-bg.png);
    z-index: 2;
    background-size: cover;
    background-position: center;
} */
.banner-section.inner-banner-section .banner-content {
    margin: -37px 0;
}

.banner-section.inner-banner-section .breadcrumb {
    background-color: transparent;
}

.banner-section.inner-banner-section .breadcrumb li a {
    color: var(--title-color);
    font-weight: 600;
    font-size: 25px;
}

.banner-section.inner-banner-section
    .breadcrumb-item
    + .breadcrumb-item::before {
    color: var(--title-color);
}

.banner-section.inner-banner-section
    .breadcrumb-item
    + .breadcrumb-item.active {
    color: var(--main-color);
    font-weight: 600;
    font-size: 25px;
}

/* .banner-section.inner-banner-section.causes-details {
    background-image: url(../../assets/images/about-inner-bg-2.png);
} */
/* .banner-section.inner-banner-section.events-details {
    background-image: url(../../assets/images/events-banner.png);
} */
.banner-section.inner-banner-section.faq {
    background-image: url(../../assets/images/faq-banner.png);
}

.banner-section.inner-banner-section.vendor {
    background-image: url(../../assets/images/vendor-banner.png);
}

/* .banner-section.inner-banner-section.about {
    background-image: url(../../assets/images/banner-about.png);
} */
.causes-details.timer-area .content-details {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.causes-details.timer-area .content-details .title {
    margin-left: 5%;
    width: 100%;
}

.causes-details.timer-area #periodic-timer_change-options .syotimer__head {
    display: none;
}

.causes-details.timer-area #periodic-timer_change-options {
    background-color: var(--title-bg-color);
    padding: 20px 15px;
}

.causes-details.timer-area #periodic-timer_change-options .syotimer-cell {
    display: inline-block;
    margin: 0 5px;
    padding: 6px 0 12px 0;
    width: 100px;
    text-align: center;
    background: var(--title-color);
}

.causes-details.timer-area
    #periodic-timer_change-options
    .syotimer-cell
    .syotimer-cell__value {
    font-size: 40px;
    color: var(--heading-color);
    font-weight: 600;
    height: 63px;
    line-height: 81px;
    margin: 0 0 5px;
}

.causes-details.timer-area
    #periodic-timer_change-options
    .syotimer-cell
    .syotimer-cell__unit {
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 600;
}

.causes-details.timer-area .left-area .title {
    margin: 25px 0 10px 0;
}

.causes-details.timer-area .left-area .area-title {
    font-weight: 400;
    text-align: justify;
}

.causes-details.timer-area .left-area ul {
    padding: 0 27px;
    margin-top: 10px;
}

.causes-details.timer-area .left-area ul li {
    font-weight: 400;
    font-size: 25px;
    color: var(--heading-color);
    padding-bottom: 10px;
}

.causes-details.timer-area .left-area ul li::before {
    content: "\2022";
    color: #ff566e;

    display: inline-block;
    width: 25px;
    margin-left: -25px;
}

.causes-details.timer-area .right-area .details-area {
    background-color: var(--bg-main-color);
    padding: 83px 68px 68px 70px;
}

.causes-details.timer-area .right-area .details-area .area-title {
    font-weight: 600;
    font-size: 25px;
    background-color: var(--title-color);
    box-shadow: 0px 0px 16px 0px rgb(0 0 0 / 8%);
    text-align: center;
    padding: 25px 0;
}

.causes-details.timer-area .right-area .event-details .single-event {
    display: flex;
    margin-top: 30px;
}

.causes-details.timer-area .right-area .event-details .single-event p {
    font-size: 20px;
    width: 70%;
}

.causes-details.timer-area
    .right-area
    .event-details
    .single-event
    p:first-child {
    width: 50%;
}

.causes-details.timer-area .right-area .maps-area iframe {
    width: 100%;
    margin-top: 30px;
}

/* inner about section */
.about-inner .about-right {
    position: relative;
}

.about-inner .about-right img {
    position: absolute;
    border: 20px solid;
    border-color: var(--logo-color);
    box-shadow: 0px 0px 15.36px 0.64px rgba(230, 230, 230, 100%);
}

.about-inner .about-right .image-1 {
    right: -18%;
    top: 105px;
    border-color: var(--title-color);
}

.about-inner .about-bottom-content {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border: 1px solid transparent;
    transition: 0.5s;
}

.about-inner .about-bottom-content:hover {
    box-shadow: none;
    background-color: var(--bg-main-color);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}

.about-inner .about-bottom-content .icon-area img {
    margin-bottom: 20px;
    width: initial;
}

/* watch section */
/* .watch-section {
    background-color: var(--bg-main-color);
    background-image: url(../../assets/images/watch-video-left.png);
    background-size: 45% 100%;
    background-position: left;
    background-repeat: no-repeat;
} */
.watch-section .video-area .content {
    position: relative;
}

.watch-section .video-area .content .content-overlay {
    background-color: var(--main-color);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0.3;
}

.watch-section .video-area .content-details {
    position: absolute;
    text-align: center;
}

.watch-section .video-area .content-details i {
    font-size: 55px;
    color: var(--title-color);
}

.watch-section .cmn-btn:hover {
    color: var(--main-color);
}

/* time laps section */
.time-laps-section .nav-tabs {
    width: 100%;
    border: none;
    margin: 54px 0 40px 0;
}

.time-laps-section .nav-tabs .nav-item {
    position: relative;
}

.time-laps-section .nav-tabs .nav-item:before {
    position: absolute;
    content: "";
    background-color: #cccccc;
    width: 93%;
    top: 50%;
    padding: 1px 0;
    left: 100%;
    overflow: hidden;
    z-index: -1;
}

.time-laps-section .nav-tabs .nav-item:last-child:before {
    display: none;
}

.time-laps-section .nav-tabs .nav-item .nav-link {
    border: 2px solid #cccccc;
    padding: 14px 55px;
    z-index: 1;
    background: var(--title-color);
    color: #cccccc;
    font-size: 25px;
    font-weight: 600;
}

.time-laps-section .nav-tabs .nav-item .nav-link.active {
    background-color: var(--main-color);
    border: 2px solid transparent;
    color: var(--title-color);
}

.time-laps-section .img-area img {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 15.36px 0.64px rgba(230, 230, 230);
    padding: 30px;
}

.time-laps-section .right-content .area-title {
    color: var(--title-bg-color);
    font-weight: 500;
    margin: 0 0 18px 0;
}

.time-laps-section .cmn-btn:hover {
    color: var(--main-color);
}

/* event section */
.event-section .event-item {
    background-color: var(--title-color);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
}

.event-section .event-item .content-area {
    padding: 25px 38px 0 0;
}

.event-section .event-item .content-area .title {
    font-size: 40px;
}

.event-section .event-item .content-area .area-title {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 31px;
}

.event-section .event-item .content-area .cmn-btn:hover {
    color: var(--main-color);
}

.event-section .event-item .content-area .post .single a span {
    color: var(--title-bg-color);
    font-size: 20px;
}

.event-section .event-item .content-area .post .single {
    margin-right: 25px;
}

.event-section .event-item .content-area .post {
    margin: 15px 0 24px 0;
}

.event-section .event-item .content-area .post .single a i {
    color: var(--title-bg-color);
    font-size: 20px;
    margin-right: 5px;
}

.event-section .event-item .content-area .post .single.map a i {
    color: var(--hover-color);
}

.event-section .event-item .content-area .post .single.map a span {
    color: var(--hover-color);
}

.event-section .pagination {
    margin-top: 68px;
}

.event-section .pagination li a {
    font-size: 25px;
    color: var(--para-color);
    font-weight: 600;
    border-radius: 50%;
    background-color: rgb(239, 241, 251);
    width: 80px;
    height: 80px;
    margin: 0 20px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -ms-flex-align: center !important;
    align-items: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.event-section .pagination li a svg {
    border-radius: 50%;
    background-color: var(--para-color);
    margin: 0 5px;
}

.event-section .pagination li a:hover svg {
    background-color: var(--title-color);
}

.event-section .pagination li a:hover {
    color: var(--title-color);
    background-color: var(--title-bg-color);
}

.event-section .pagination li a.active {
    color: var(--title-color);
    background-color: var(--title-bg-color);
}

.event-section .pagination li a i {
    font-size: 40px;
}

/* causes details */
.causes-details .content {
    position: relative;
}

.causes-details .content .content-overlay {
    background-color: rgb(0, 0, 0);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0.5;
}

.causes-details .content-details {
    position: absolute;
    bottom: 10%;
}

.causes-details .content-details .title {
    left: 10%;
    color: var(--title-color);
}

.causes-details .content-area .title-area .area-title {
    color: var(--main-color);
    text-transform: uppercase;
    padding: 20px 0 21px 0;
}

.causes-details .content-area .title-area p {
    color: var(--title-bg-color);
    font-size: 25px;
    font-weight: 600;
}

.causes-details .content-area .title-area p a {
    text-decoration: underline;
    font-style: italic;
}

.causes-details .content-area .progress-area {
    background-color: var(--bg-main-color);
    padding: 54px 30px;
    margin: 33px 0 26px 0;
}

.causes-details .content-area .progress-area .top-side .left-area {
    margin-bottom: 20px;
}

.causes-details .content-area .progress-area .top-side .right-area h3 span {
    font-size: 25px;

    font-family: var(--heading-font);
}

.causes-details .content-area .progress-area .progress-bar {
    width: 50%;
    background-color: var(--main-color);
    border-radius: 10px;
}

.causes-details .content-area .progress {
    background-color: #b2ffdd;
    border-radius: 10px;
}

.causes-details .content-area .mission-area {
    margin-top: 65px;
}

.causes-details .content-area .mission-area h3.area-title {
    padding: 25px 0 46px 0;
    font-size: 48px;
}

.causes-details .content-area .content-para {
    font-weight: 400;
    padding: 26px 0;
}

.causes-details .content-area .quote-area {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 24px 0px rgb(204 204 204 / 16%);
    border-left: 10px solid #ff566e;
    padding: 47px 10%;
    margin: 0 0 71px 0;
}

.causes-details .content-area .quote-area .quote-bottom h3 {
    color: var(--title-bg-color);
    font-style: italic;
    font-family: var(--heading-font);
    font-weight: 500;
}

.causes-details .content-area .video-area .area-title {
    padding: 25px 0 0 0;
    font-weight: 400;
}

.causes-details .content-area .video-area h3.area-title {
    font-size: 48px;
}

.causes-details .video-play-area {
    position: relative;
}

.causes-details .video-play-area .icon-box {
    position: absolute;
    left: 45%;
}

.causes-details .video-play-area .icon-box a::before {
    content: "";
    border-radius: 50%;
    background-color: rgba(255, 255, 255);
    position: absolute;
    width: 95px;
    height: 95px;
    top: -28px;
    left: -10px;
    -webkit-animation: inner-ripple 2000ms linear infinite;
    -moz-animation: inner-ripple 2000ms linear infinite;
    animation: inner-ripple 2000ms linear infinite;
}

.causes-details .video-play-area .icon-box a i {
    border-radius: 50%;
    color: var(--hover-color);
    background-color: var(--title-color);
    font-size: 35px;
    padding: 30px;
    margin-left: -10px;
}

.causes-details .blog-item .area-title.causes {
    font-size: 48px;
    margin-bottom: -15px;
}

.causes-details .blog-item .border-area {
    width: 62px;
    height: 4px;
    background-color: var(--hover-color);
    margin: 7px 0;
}

.causes-details .blog-item .img-area {
    margin: 25px 0 15px 0;
}

.causes-details .blog-item.causes-item {
    border: 1px solid #cccccc;
    padding: 63px 39px 0 38px;
}

.causes-details .blog-item.causes-item .content-area .post .single {
    margin-right: 25px;
}

.causes-details .blog-item.causes-item .content-area .blog-content-style h2 {
    margin-bottom: 7px;
}

.causes-details .blog-item.causes-item .content-area .post .single span {
    font-weight: 600;
    margin-left: 5px;
}

.causes-details .blog-item.causes-item .single-item {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 38px;
    margin-bottom: 38px;
}

.causes-details .blog-item.causes-item .single-item:last-child {
    border-bottom: 1px solid transparent;
}

.causes-details .causes-right .content .content-overlay {
    background-color: #052f5c;
    opacity: 0.4;
}

.causes-details .causes-right .content .content-details {
    text-align: center;
    top: 15%;
    width: 100%;
}

.causes-details .causes-right .content .content-details .title {
    left: 10%;
    color: var(--title-color);
    margin: 26px 0 39px 0;
}

.causes-details .single-item.showcase {
    border: 1px solid #cccccc;
    padding: 63px 39px 0 38px;
}

.causes-details .single-item.showcase .img-area img {
    margin-bottom: 6px;
}

.causes-details .single-item.showcase .area-title.causes {
    font-size: 48px;
    margin-bottom: -15px;
}

.causes-details .single-item.showcase .border-area {
    width: 62px;
    height: 4px;
    background-color: var(--hover-color);
    margin: 7px 0;
}

.causes-details .single-item.showcase {
    border: 1px solid #cccccc;
    padding: 63px 15px 66px 15px;
}

.causes-details .single-item.showcase .inner-content {
    margin-top: 20px;
}

.causes-details .content-area .cmn-btn:hover {
    color: var(--main-color);
}

/* contact blocks */
.contact-blocks {
    background-color: var(--bg-main-color);
}

.contact-blocks .single-item {
    background-color: var(--title-color);
    padding: 39px 35px 30px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.contact-blocks .single-item:hover {
    box-shadow: 0px 0px 25.28px 6.72px rgba(5, 47, 92, 0.08);
    transform: translate(0%, -5%);
}

.contact-blocks .single-item .area-title {
    padding: 14px 0 9px 0;
}

/* contact form section */
.contact-form .section-header .contact-title {
    font-size: 40px;
    color: var(--title-bg-color);
    font-weight: 600;
}

.contact-form .form-group label {
    font-weight: 600;
    font-size: 18px;
    color: rgb(5, 47, 92);
}

.contact-form .form-group label sup {
    font-size: 10px;
    left: -5px;
    color: #ff566e;
    top: -10px;
}

.contact-form .form-group label .info {
    font-size: 15px;
    margin-left: -5px;
    color: #cccccc;
}

.contact-form .form-group textarea,
.contact-form .form-group input {
    background-color: var(--title-color);
    box-shadow: 0px 0px 5px 0px #052f5c1a;
    padding: 0 28px;
    font-weight: 400;
    font-size: 18px;
    color: #111;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
}
.contact-form .form-group textarea {
    height: 120px;
    padding-top: 30px;
}

.contact-form .form-group input {
    height: 70px;
}

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

.contact-form .cmn-btn:hover {
    color: var(--main-color);
}

/* maps section */
.map-area iframe {
    width: 100%;
}

/* payment details */
.payment-details .section-header .payment-title {
    font-size: 40px;

    font-family: var(--para-font);
}

.payment-details .section-header {
    margin: 73px 0 68px 0;
}

.payment-details .section-header .payment-title img {
    margin-right: 10px;
}

.payment-details .section-header .area-title {
    font-size: 25px;
    color: var(--title-bg-color);
    font-weight: 600;
    font-weight: var(--para-font);
    border: none;
}

.payment-details .table {
    margin-bottom: 0;
}

.payment-details .table thead th {
    border: none;
}

.payment-details table thead .area-title {
    background-color: rgb(242, 242, 242);
    font-weight: 400;
    font-family: var(--heading-color);
}

.payment-details table tbody tr {
    border: 2px solid #cccccc;
}

.payment-details table tbody tr td {
    width: 50%;
    font-weight: 400;
    font-size: 25px;
    font-family: var(--heading-color);
    border: 2px solid #cccccc;
    padding-left: 5%;
}

.payment-details table {
    width: 100%;
}

/* donation details */
.donation-details .input-payment-value {
    margin: 49px 0 79px 0;
}

.donation-details .donation-title {
    font-size: 48px;
    font-weight: 600;
}

.donation-details .input-area {
    width: 35%;
    margin: 27px 0 43px 0;
}

.donation-details .input-area i {
    background-color: var(--title-bg-color);
    color: var(--title-color);
    padding: 15px 15px;
    font-size: 30px;
    font-style: initial;
}
.form-check-label {
    background: #f1f8fe;
}
.donation-details .input-area input {
    padding: 0 15px;
    height: initial;
    border: 1px solid #cccccc;
    font-size: 25px;
    font-weight: 600;
}

.donation-details .button-area button {
    font-size: 25px;
    font-weight: 600;
    background-color: var(--title-bg-color);
    border: none;
    padding: 11px 34px;
    color: var(--title-color);
    margin-right: 27px;
}

.payment-area .form-check {
    margin-bottom: 30px;
    padding: 0;
}

.payment-area .form-check input:checked ~ label {
    opacity: 1;
}

.payment-area .form-check input:checked ~ label .overlay {
    opacity: 1;
}

.payment-area .form-check input {
    display: none;
}

.payment-area .form-check label {
    position: relative;
    cursor: pointer;
}

.payment-area .form-check .overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    z-index: 1;
    position: absolute;
    opacity: 0;
    top: 0;
}

.payment-area .form-check .overlay::before {
    position: absolute;
    content: "";
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: -1;
    opacity: 0.3;
}

.donation-details .total-donation {
    margin-top: 46px;
}

.donation-details .total-donation .total-donation-title {
    background-color: rgb(242, 242, 242);
    padding: 24px;
}

.donation-details .total-donation .area-title {
    font-weight: 400;
}

.donation-details .total-donation .area-title.amount {
    font-weight: 400;
    padding: 24px;
    border: 1px solid #cccccc;
}

.donation-details .total-donation .btn-donation {
    background-color: var(--main-color);
    color: var(--title-color);
    width: 100%;
    font-size: 25px;
    padding: 20px 0;
    margin-top: 30px;
    border: 1px solid transparent;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.donation-details .total-donation .btn-donation:hover {
    color: var(--main-color);
    background-color: var(--title-color);
    border-color: var(--main-color);
}

.donation-details .personal-info .form-group label {
    font-weight: 600;
    font-size: 20px;
    color: rgb(5, 47, 92);
}

.donation-details .personal-info .form-group label sup {
    font-size: 10px;
    left: -5px;
    color: #ff566e;
    top: -10px;
}

.donation-details .personal-info .form-group label .info {
    font-size: 15px;
    margin-left: -5px;
    color: #cccccc;
}

.donation-details .personal-info .form-group textarea,
.donation-details .personal-info .form-group input {
    background-color: var(--title-color);
    box-shadow: 0px 0px 24px 0px rgb(0 0 0 / 8%);
    border: none;
    padding: 30px 15px;
    font-weight: 400;
    font-size: 18px;
    color: rgb(204, 204, 204);
}

.donation-details .personal-info .form-group textarea {
    margin-bottom: 20px;
}
.input-group-prepend.country-list {
    background-color: var(--title-color);
    box-shadow: 0px 0px 24px 0px rgb(0 0 0 / 8%);
    border: none;
    padding: 11px 0px;
    font-weight: 400;
    color: rgb(204, 204, 204);
}
.input-group-prepend.country-list select {
    border: none;
}

.input-group-prepend.country-list select.form-control:focus {
    box-shadow: none;
}

.donation-details .personal-info .form-group input::-webkit-input-placeholder {
    /* Edge */
    font-size: 1rem;
}

.donation-details .personal-info .form-group input::-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-size: 1rem;
}

.donation-details .personal-info .form-group input::placeholder {
    font-size: 1rem;
}
.w-35 {
    width: 35% !important;
}

/* blog section */
.blog-section .video-play-area {
    position: relative;
}

.blog-section .video-play-area .icon-box {
    position: absolute;
}

.blog-section .video-play-area .icon-box a::before {
    content: "";
    border-radius: 50%;
    background-color: rgba(255, 255, 255);
    position: absolute;
    width: 95px;
    height: 95px;
    top: -28px;
    left: -10px;
    -webkit-animation: inner-ripple 2000ms linear infinite;
    -moz-animation: inner-ripple 2000ms linear infinite;
    animation: inner-ripple 2000ms linear infinite;
}

.blog-section .video-play-area .icon-box a i {
    border-radius: 50%;
    color: var(--hover-color);
    background-color: var(--title-color);
    font-size: 35px;
    padding: 30px;
    margin-left: -10px;
}

.blog-section .blog-item .post a {
    display: flex;
    align-items: center;
}

.blog-section .blog-item .post {
    margin: 31px 0;
}

.blog-section .blog-item .blog-content-style .title {
    margin: -14px 0 15px 0;
}

.blog-section .blog-item .blog-content-style .img-area {
    margin: 15px 0 25px 0;
}

.blog-section .blog-item .post .single {
    margin-right: 35px;
}

.blog-section .blog-item .post a span {
    font-size: 18px;
    line-height: 1.3;
    color: var(--heading-color);

    margin-left: 10px;
}

.blog-section .blog-content-style .area-title {
    line-height: 1.5;
    font-size: 20px;
    font-weight: normal;
}

.blog-section .quote-area {
    background-color: var(--hover-color);
    margin-top: 20px;
}

.blog-section .quote-area p {
    color: var(--title-color);
    padding: 0 70px;
    text-align: center;
}

.blog-section .quote-area .icon img {
    padding: 10px;
}

.blog-section .comments-section .title {
    margin-bottom: 43px;
}

.blog-section .comments-section ul li .comment-item {
    display: -webkit-inline-box;
    margin-bottom: 5px;
}

.blog-section .comments-section ul li .comment-item.mid {
    margin-left: 15%;
}

.blog-section .comments-section ul li .comment-item .comment-thumb {
    width: 80px;
    height: 80px;
    margin-top: 5px;
}

.blog-section .comments-section ul li .comment-item .comment-thumb img {
    border-radius: 50%;
}

.blog-section .comments-section ul li .comment-item .comment-content {
    position: relative;
    width: calc(100% - 70px);
    padding-left: 20px;
    transition: all 0.3s;
    padding-bottom: 20px;
}

.blog-section
    .comments-section
    ul
    li
    .comment-item
    .comment-content
    .area-title {
    padding-bottom: 0;
}

.blog-section .comments-section ul li .comment-item .comment-content h2 a {
    font-size: 25px;
}

.blog-section .comments-section ul li .comment-item .comment-content .date {
    color: var(--hover-color);
}

.blog-section
    .comments-section
    ul
    li
    .comment-item
    .comment-content
    .button-area {
    margin-top: 5px;
}

.blog-section
    .comments-section
    ul
    li
    .comment-item
    .comment-content
    .button-area
    button {
    color: var(--hover-color);

    margin-right: 23px;
    background: transparent;
    padding: 0;
}

.blog-section
    .comments-section
    ul
    li
    .comment-item
    .comment-content
    .button-area
    .reply-form {
    display: none;
}

.blog-section
    .comments-section
    ul
    li
    .comment-item
    .comment-content
    .button-area
    .reply-form.active {
    display: block;
}

.blog-section
    .comments-section
    ul
    li
    .comment-item
    .comment-content
    .button-area
    textarea {
    border-radius: 5px;
}

.blog-section
    .comments-section
    ul
    li
    .comment-item
    .comment-content
    .button-area
    input {
    width: 150px;
    background-color: var(--hover-color);
    border: transparent;
}

.blog-section .leave-comment .title {
    margin: 32px 0 30px 0;
}

.blog-section .leave-comment .comment-form .form-group textarea,
.blog-section .leave-comment .comment-form .form-group input {
    box-shadow: 0px 0px 24px 0px rgb(0 0 0 / 8%);
    background-color: var(--title-color);
    border: none;
    padding: 20px 24px;
}

.blog-section .leave-comment .comment-form .form-group button[type="submit"] {
    width: auto;
    padding: 0 50px;
}

.blog-section
    .leave-comment
    .comment-form
    .form-group
    button[type="submit"]:hover {
    color: var(--main-color);
}

.blog-section .sidebar .widget-box {
    border: 1px solid #cccccc;
    padding: 30px 39px 38px 38px;
}

.blog-section .sidebar .widget-box .search-area {
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08);
    background-color: var(--title-color);
}

.blog-section .sidebar .widget-box .search-area button {
    background-color: var(--title-bg-color);
    padding: 16px 16px;
}

.blog-section .sidebar .widget-box .search-area button i {
    color: var(--title-color);
    font-size: 27px;
}
.blog-section .sidebar .widget-box .area-title {
    font-size: 20px;
}

.blog-section .sidebar .widget-box .area-title {
    padding-bottom: 0;
}

.blog-section .sidebar .widget-box .border-area {
    width: 62px;
    height: 2px;
    background-color: var(--hover-color);
    margin: 7px 0;
}

.blog-section .sidebar .widget-box .category-content {
    margin-bottom: -15px;
}

.blog-section .sidebar .widget-box .category-content li a {
    font-weight: 600;
    margin-bottom: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-section .sidebar .widget-box .category-content li:hover a {
    margin-left: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-section .sidebar .widget-box .category-content li:hover a span {
    color: var(--hover-color);
}

.blog-section .sidebar .widget-box .category-content li a i {
    color: var(--hover-color);
    margin-right: 5px;
}

.blog-section .sidebar .widget-box .blog-right-area {
    background-color: transparent;
    padding: 0;
}

.blog-section .sidebar .widget-box .blog-right-area a .right-side span {
    color: var(--hover-color);
}

.blog-section .sidebar .widget-box .blog-right-area a .right-side h3:hover {
    color: var(--title-bg-color);
}

.blog-section .sidebar .widget-box .tag-item-wrapper a {
    font-weight: 600;
    margin-right: 15px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.blog-section .sidebar .widget-box .tag-item-wrapper a:hover {
    color: var(--title-bg-color);
}

.blog-section .sidebar .widget-box .social-wrapper li {
    display: inline-block;
    float: left;
}

.blog-section .sidebar .widget-box .social-wrapper {
    margin-top: 31px;
    margin-bottom: 63px;
}

.blog-section .sidebar .widget-box .social-wrapper li a i {
    font-size: 20px;
    background: var(--title-bg-color);
    color: var(--title-color);
    padding: 10px 10px;
    border: 2px solid transparent;
    margin-right: 15px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.blog-section .sidebar .widget-box .social-wrapper li a:hover i {
    background: var(--title-color);
    color: var(--title-bg-color);
    border: 2px solid var(--title-bg-color);
}

/* single blog */
.blog-section.blog .blog-item {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
}

.blog-section.blog .blog-item .blog-content-style .title {
    margin: -14px 0 22px 0;
    font-size: 30px;
}

.blog-section.blog .blog-item .post {
    margin: 21px 0 0 0;
    border-top: 1px solid #cccccc;
    padding-top: 31px;
}

.blog-section.blog .blog-item .content-area {
    padding: 40px;
}

.blog-section.blog .blog-item .post a span {
    margin-left: 8px;
    font-weight: 600;
}

.blog-section.blog .blog-item .post .single {
    margin: 0;
}

.blog-section.blog .blog-item .blog-carousel.slick-initialized button {
    top: 40%;
    border-radius: 50%;
    position: absolute;
    bottom: -10px;
    background-color: var(--title-bg-color);
    color: var(--title-color);
    border: none;
    height: 80px;
    width: 80px;
    padding: 0;
    line-height: 100px;
    outline: none;
}

.blog-section.blog .blog-item .blog-carousel.slick-initialized button {
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-section.blog .blog-item .blog-carousel.slick-initialized:hover button {
    opacity: 1;
}

.blog-section.blog .blog-item .blog-carousel.slick-initialized button i {
    font-size: 40px;
}

.blog-section.blog .blog-item .blog-carousel.slick-initialized .slick-prev {
    left: 3%;
    z-index: 1;
}

.blog-section.blog .blog-item .blog-carousel.slick-initialized .slick-next {
    right: 3%;
}

.blog-section.blog .pagination {
    margin-top: -20px;
}

.blog-section.blog .pagination li a {
    font-size: 25px;
    color: var(--para-color);
    font-weight: 600;
    border-radius: 50%;
    background-color: rgb(239, 241, 251);
    width: 80px;
    height: 80px;
    margin: 0 20px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -ms-flex-align: center !important;
    align-items: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.blog-section.blog .pagination li a svg {
    border-radius: 50%;
    background-color: var(--para-color);
    margin: 0 5px;
}

.blog-section.blog .pagination li a:hover svg {
    background-color: var(--title-color);
}

.blog-section.blog .pagination li a:hover {
    color: var(--title-color);
    background-color: var(--title-bg-color);
}

.blog-section.blog .pagination li a.active {
    color: var(--title-color);
    background-color: var(--title-bg-color);
}

.blog-section.blog .pagination li a i {
    font-size: 40px;
}

/* about section */
.about-section .about-left-content {
    margin-top: -170px;
    z-index: 1;
}

.about-section .about-bottom-content {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border: 1px solid transparent;
    transition: 0.5s;
}

.about-section .about-bottom-content:hover {
    box-shadow: none;
    border: 1px solid #ff8c00;
    transition: 0.5s;
}

.about-section .about-bottom-content .icon-area img {
    margin-bottom: 20px;
    width: initial;
    height: 45px;
    object-fit: contain;
}
.about-bottom-content {
    text-align: center;
}
.about-bottom-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* causes section */
.causes-section {
    background-color: var(--bg-main-color);
}

.causes-section .text-area .sub-title {
    color: var(--main-color);
    background-color: transparent;
    padding: 0;
}

.causes-section .text-area .area-title:hover {
    color: var(--logo-color);
}

.causes-section .text-area p {
    color: var(--para-color);
}

.causes-section .text-area p a {
    text-decoration: underline;
}

.causes-section .content {
    position: relative;
    margin: auto;
    overflow: hidden;
}

.causes-section .content .content-overlay {
    background-color: rgb(0, 0, 0);
    position: absolute;
    height: 99%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.causes-section .content:hover .content-overlay {
    opacity: 0.502;
}

.causes-section .content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.causes-section .content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.causes-section .fadeIn-bottom {
    top: 80%;
}

.causes-section .causes-mid {
    padding: 32px 40px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.08);
    background-color: var(--title-color);
}

.causes-section .causes-bottom p {
    background-color: #ff7f50;
    text-align: center;
    padding: 10px 0;
}

.causes-section .causes-bottom p.second {
    background-color: #ff6347;
}

.causes-section .causes-bottom p.third {
    background-color: #ff4500;
}

.causes-section .causes-bottom p span {
    color: var(--title-color);
}

.causes-section .progress {
    background-color: #b2ffdd;
    border-radius: 10px;
    overflow: initial;
    height: 8px;
    margin: 37px 0 12px 0;
}

.causes-section .progress .progress-bar {
    width: 50%;
    background-color: var(--main-color);
    border-radius: 10px;
}

.causes-section .progress .progress-bar {
    position: relative;
}

.causes-section .progress .progress-bar::before {
    content: "";
    position: absolute;
    padding: 0 3px;
    right: 0;
    color: var(--heading-color);
    font-size: 10px;
    line-height: 15px;
    z-index: 2;
    border-width: 2px;
    border-color: rgb(0, 185, 101);
    border-style: solid;
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
}

/* gallery section */
.gallery-section .content {
    position: relative;
    margin: auto;
    overflow: hidden;
}

.gallery-section .content .content-overlay {
    background-color: rgb(0, 0, 0);
    position: absolute;
    height: 99%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.gallery-section .content:hover .content-overlay {
    opacity: 0.502;
}

.gallery-section .content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.gallery-section .content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.gallery-section .content-details a {
    color: var(--title-color);
    padding: 10px 14px;
    text-transform: uppercase;
    border-radius: 50%;
    background: #403635;
}

.gallery-section .fadeIn-bottom {
    top: 80%;
}

.mfp-bottom-bar {
    display: none;
}

/* blog section */
.blog-section .blog-left img {
    position: relative;
}

.blog-section .blog-left .date span {
    position: absolute;
    top: 0;
    left: 15px;
    padding: 16px 45px;
    color: var(--title-color);
    background: var(--title-bg-color);
}

.blog-section .blog-left-area .left-bottom a h2 {
    font-size: 32px;
}

.blog-section .blog-left-area .left-bottom a h2:hover {
    color: var(--logo-color);
}

.blog-section .blog-left-area .left-bottom h3 span {
    color: var(--main-color);
    font-size: 25px;
}

.blog-section .blog-left-area .left-bottom h3 .border {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--main-color);
    margin: 3px 10px;
}

.blog-section .blog-left-area .left-bottom .cmn-btn:hover {
    color: var(--main-color);
}

.blog-section .blog-right-area {
    background-color: var(--bg-main-color);
    padding: 85px 40px;
}

.blog-section .blog-right-area a .right-side {
    margin: -6px 0 0 17px;
    width: 50%;
}

.blog-section .blog-right-area a .right-side span {
    color: var(--main-color);
}

.blog-section .blog-right-area a .right-side h3:hover {
    color: var(--logo-color);
}

/* volunteer section */
.volunteer-section {
    background-image: url(../../assets/images/volunteer-bg-img.png);
}

.volunteer-section .volunteer-left-content .section-title {
    color: var(--title-color);
}

.volunteer-section .section-header {
    margin-bottom: 70px;
}

.volunteer-section .volunteer-left-content p {
    color: var(--title-color);
}

/* team section */
.team-section .team-area .img-area {
    position: relative;
}

.team-section .team-area .icon-area {
    position: absolute;
    background-color: #f86048;
    width: 100%;
    text-align: center;
    padding: 15px;
    opacity: 0;
    transform: translate(0%, -100%);
    transition: 0.7s ease all;
}

.team-section .team-area .icon-area.second {
    background-color: #f2752e;
}

.team-section .team-area .icon-area.third {
    background-color: #de9967;
}

.team-section .team-area .icon-area.fourth {
    background-color: #9238a4;
}

.team-section .team-area .icon-area i {
    color: var(--title-color);
    font-size: 16px;
    margin: 0 10px;
}

.team-section .team-area:hover .icon-area {
    opacity: 1;
    transition: 0.7s ease all;
}

.team-section .team-area .img-bottom {
    clip-path: polygon(0 0, 100% 0%, 80% 100%, 0 100%);
    background-color: #f86048;
    text-align: center;
    transition: 0.5s ease all;
    padding: 10px 0;
}

.team-section .team-area .img-bottom.second {
    background-color: #f2752e;
}

.team-section .team-area .img-bottom.third {
    background-color: #de9967;
}

.team-section .team-area .img-bottom.fourth {
    background-color: #9238a4;
}

.team-section .team-area .img-bottom h3 {
    margin-bottom: -5px;
}

.team-section .team-area .img-bottom h3 {
    color: var(--title-color);
}

.team-section .team-area .img-bottom p {
    color: var(--title-color);
}

.team-section .team-area:hover .img-bottom {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
}

/* event section */
.event-section {
    background-color: var(--bg-main-color);
}

.event-section .event-area .content {
    position: relative;
    margin: auto;
    overflow: hidden;
}

.event-section .event-area .content .content-overlay {
    background-color: rgb(0, 0, 0);
    position: absolute;
    height: 99%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.event-section .event-area .content img {
    width: 100%;
}

.event-section .event-area .content:hover .content-overlay {
    opacity: 0.502;
}

.event-section .event-area .content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.event-section .event-area .content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.event-section .event-area .img-bottom .border {
    width: 2px;
    height: 70px;
    background-color: #e6e6e6;
    margin: 30px 25px;
}

.event-section .event-area .img-bottom .left span {
    color: var(--title-bg-color);
    display: block;
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
}

.event-section .event-area .img-bottom .left {
    align-self: center;
}
.event-section .event-area .img-bottom .left .date {
    font-size: 40px;
    line-height: 1;
}

.event-section .event-area .img-bottom .right {
    display: inline-block;
    margin: 30px 0 0 2px;
}

.event-section .event-area .img-bottom .right .area-title:hover {
    color: var(--logo-color);
}

.event-section .event-area .img-bottom p span {
    color: rgb(5, 47, 92);

    margin-right: 20px;
}

.event-section .event-area .img-bottom p span i {
    margin-right: 5px;
}

.event-section .slick-initialized .event-section-dots {
    text-align: center;
}

.event-section .slick-initialized .event-section-dots li {
    margin: 22px 0 0 8px;
    display: inline-block;
    list-style: none;
}

.event-section .slick-initialized .event-section-dots .dot {
    display: block;
    width: 12px;
    height: 12px;
    text-decoration: none;
    border: 2px solid var(--logo-color);
    background-color: var(--title-color);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.event-section .slick-initialized .event-section-dots .dot .string {
    position: absolute;
    line-height: 0;
    opacity: 0;
}

.event-section .slick-initialized .event-section-dots .slick-active a {
    background: var(--logo-color);
    padding: 3px 10px;
    border-radius: 8px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

/* testimonial section */
.testimonial-section .content {
    position: relative;
    margin: auto;
    overflow: hidden;
}

.testimonial-section .content-details {
    position: absolute;
    text-align: center;
    bottom: 30px;
    left: 0%;
    opacity: 1;
    background-color: var(--logo-color);
    margin: 0 35px;
    border-radius: 24px;
    opacity: 0;
    transition: 0.5s ease all;
    transform: translate(0, 50px);
}

.testimonial-section .content-details .text-area {
    padding: 53px 40px 52px 40px;
}

.testimonial-section .content-details i {
    color: var(--title-color);
    font-size: 65px;
    position: absolute;
    top: -25px;
    left: 44%;
}

.testimonial-section .content-details h3 {
    color: var(--title-color);
    padding-bottom: 12px;
}

.testimonial-section .content-details p {
    color: var(--title-color);
}

.testimonial-section .slick-initialized .testimonial-section-dots {
    text-align: center;
}

.testimonial-section .slick-initialized .testimonial-section-dots li {
    margin: 22px 0 0 8px;
    display: inline-block;
    list-style: none;
}

.testimonial-section .slick-initialized .testimonial-section-dots .dot {
    display: block;
    width: 12px;
    height: 12px;
    text-decoration: none;
    border: 2px solid var(--logo-color);
    background-color: var(--title-color);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.testimonial-section .slick-initialized .testimonial-section-dots .dot .string {
    position: absolute;
    line-height: 0;
    opacity: 0;
}

.testimonial-section
    .slick-initialized
    .testimonial-section-dots
    .slick-active
    a {
    background: var(--logo-color);
    padding: 3px 10px;
    border-radius: 8px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.testimonial-section .slick-slide.slick-current .content-details {
    opacity: 1;
    transition: 0.5s ease all;
    transform: translate(0%, 0%);
}

.testimonial-section .col {
    padding: 0;
}

/* description section */
/* .description-section{
    background-image: url(../../assets/images/description-bg.png);
    overflow: hidden;
} */
.description-section .section-header {
    margin-bottom: 70px;
}

.description-section .circle-area .circle {
    display: inline-block;
}

.description-section .circle-area .circle .inner-content {
    position: relative;
}

.description-section .circle-area .circle.circle-left .inner-content {
    transform: translate(6px, 150px);
}

.description-section .circle-area .circle.circle-top .inner-content {
    transform: translate(-67px, -12px);
}

.description-section .circle-area .circle.circle-right .inner-content {
    transform: translate(102px, -94px);
}

.description-section .circle-area .circle.circle-bottom .inner-content {
    transform: translate(167px, 63px);
}

.description-section .circle-area .text-area {
    position: absolute;
    top: 22%;
    left: 30%;
    text-align: center;
}

.description-section .circle-area .text-area .number-area .counter-number,
.description-section .circle-area .text-area .number-area .counter-number span {
    color: var(--title-bg-color);
    font-size: 40px;
    font-family: var(--heading-font);
}

.description-section .circle-area .text-area .area-title {
    color: var(--logo-color);
}

/* faq section */
.faq-section .accordion .card {
    margin-bottom: 30px;
    border: 0;
}

.faq-section .accordion .card .card-header {
    border: 0;
    border-radius: 2px;
    padding: 0;
}

.faq-section .accordion .card .card-header .btn-header-link {
    color: #fff;
    display: block;
    text-align: left;
    background-color: rgb(247, 242, 233);
    color: var(--para-color);
    padding: 5px 35px 10px;
    font-size: 30px;
    font-family: var(--heading-font);
}

.faq-section .accordion .card .card-header .btn-header-link:after {
    content: "\ef9a";
    font-family: "IcoFont";
    float: right;
    font-size: 30px;
    margin-top: 5px;
    color: var(--logo-color);
}

.faq-section .accordion .card .card-header .btn-header-link.collapsed {
    background-color: rgb(247, 242, 233);
}

.faq-section .accordion .card .collapse.area-title {
    color: var(--para-color);
}

.faq-section .accordion .card .card-header .btn-header-link.collapsed:after {
    content: "\efc2";
    color: var(--para-color);
}

.faq-section .accordion .card .collapsing {
    background: var(--title-color);
    line-height: 30px;
}

.faq-section .accordion .card .collapse {
    border: 0;
}

.faq-section .accordion .card .card-body {
    padding: 32px 40px 5px;
}

.faq-section .accordion .card .collapse.show {
    background: var(--title-color);
    line-height: 30px;
    color: #222;
}

/* faq section */
.faq-section.faq {
    margin-bottom: -35px;
}

.faq-section.faq .faq-content {
    margin-bottom: 30px;
}

.faq-section.faq .faq-content .title {
    font-size: 48px;
    margin: -14px 0 24px 0;
}

.faq-section.faq .faq-content .area-title {
    font-weight: 400;
    text-align: justify;
}

.faq-section.faq .nav-tabs .nav-item .nav-link {
    font-size: 25px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: -7px;
}

.faq-section.faq .nav-tabs .nav-item .nav-link:hover {
    color: var(--title-bg-color);
}

.faq-section.faq .nav-tabs .nav-item .nav-link:hover .border-area {
    width: 40px;
    height: 2px;
    background-color: var(--title-bg-color);
    margin: 0 0 6px 0;
}

.faq-section.faq .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
    color: #495057;
    background-color: transparent;
    border: transparent;
}

.faq-section.faq .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border: 4px red;
}

.faq-section.faq .nav-tabs {
    border: none;
    display: block;
}

.faq-section.faq .button-outline-dark {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: padding 0.5s;
}

.faq-section.faq .button-outline-dark {
    padding: 0;
    background-color: transparent;
}

.faq-section.faq .button-outline-dark::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    left: -100%;
    background-color: var(--title-bg-color);
    transition: left 0.6s;
}

.faq-section.faq .button-outline-dark:hover,
.button-outline-dark:focus {
    padding: 0 60px;
}

.faq-section.faq .button-outline-dark:hover::before,
.button-outline-dark:focus::before {
    left: 0;
}

.faq-section.faq #myTabContent .accordion .card .card-header .btn-header-link {
    font-size: 25px;
    padding: 20px 40px;
}

.faq-section.faq
    #myTabContent
    .accordion
    .card
    .card-header
    .btn-header-link:after {
    font-size: 30px;
    margin-right: -8px;
    margin-top: 0;
}

.faq-section.faq #myTabContent .accordion .card .collapse .area-title {
    font-weight: 400;
    font-size: 15px;
    font-family: var(--para-font);
    padding: 35px 40px 25px 40px;
    text-align: justify;
    line-height: 1.2;
}

.faq-section.faq #myTabContent .accordion .card .collapsing .area-title {
    font-weight: 400;
    font-size: 15px;
    font-family: var(--para-font);
    padding: 35px 40px 25px 40px;
    text-align: justify;
    line-height: 1.2;
}

/* Vendor Profile section */
.vendor-section .vendor-left .maps-area {
    margin-bottom: 32px;
}

.vendor-section .vendor-left .maps-area iframe {
    width: 100%;
}

.vendor-section .vendor-left .maps-area .title {
    margin-bottom: 29px;
}

.vendor-section .vendor-left .vendor-contact .area-title {
    font-weight: 600;
    line-height: 1.2;
    padding: 22px 0 31px 0;
}

.vendor-section .vendor-left .vendor-contact form .title {
    margin: -12px 0 24px 0;
}

.vendor-section .vendor-left .vendor-contact form .cmn-btn {
    margin-top: 24px;
    display: flex;
    width: 100%;
    justify-content: center;
}

.vendor-section .vendor-left .vendor-contact form .cmn-btn:hover {
    color: var(--main-color);
}

.vendor-section .vendor-left .vendor-contact .form-group {
    margin-bottom: 40px;
}

.vendor-section .vendor-left .vendor-contact .form-group input {
    background-color: var(--title-color);
    box-shadow: 0px 0px 24px 0px rgb(0 0 0 / 8%);
    border: none;
    padding: 30px 28px;
    font-weight: 400;
    font-size: 15px;
    color: rgb(204, 204, 204);
}

.vendor-section .vendor-contact {
    border: 1px solid #cccccc;
    padding: 65px 38px 72px 38px;
}

.vendor-section .box-area {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    color: rgb(204, 204, 204);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.vendor-section .box-area input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.vendor-section .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

.vendor-section .box-area:hover input ~ .checkmark {
    background-color: #ccc;
}

.vendor-section .box-area input:checked ~ .checkmark {
    background-color: var(--main-color);
}

.vendor-section .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.vendor-section .box-area input:checked ~ .checkmark:after {
    display: block;
}

.vendor-section .box-area .checkmark:after {
    left: 7px;
    top: 4px;
    width: 7px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.vendor-section .box-area .checkmark {
    width: 20px;
    height: 20px;
}

.vendor-section .vendor-right .title {
    border-bottom: 1px solid #e8e3e0;
    margin-bottom: 38px;
    padding-bottom: 12px;
}

.vendor-section .vendor-right .company-right .single-area {
    margin-bottom: 8px;
}

.vendor-section .vendor-right .company-right .single-area i {
    color: var(--title-bg-color);
    line-height: 1.3;
    margin-right: 10px;
    font-size: 20px;
}

.vendor-section .vendor-right .company-right .single-area p {
    color: var(--heading-color);
}

.vendor-section .vendor-right .company-right .social li {
    display: inline-block;
    float: left;
}

.vendor-section .vendor-right .company-right .social {
    margin-top: 27px;
}

.vendor-section .vendor-right .company-right .social li a i {
    font-size: 20px;
    background: var(--title-bg-color);
    color: var(--title-color);
    padding: 10px 10px;
    border: 2px solid transparent;
    margin-right: 15px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.vendor-section .vendor-right .company-right .social li a:hover i {
    background: var(--title-color);
    color: var(--title-bg-color);
    border: 2px solid var(--title-bg-color);
}

.vendor-section .vendor-right .paragraph-area {
    margin: 34px 0 0 0;
}

.vendor-section .vendor-right .paragraph-area p {
    line-height: 1.333;
    text-align: justify;
}

.vendor-section .vendor-right .single-count {
    background-color: var(--title-bg-color);
    text-align: center;
    padding: 10px;
    margin-bottom: 30px;
}

.vendor-section .vendor-right .single-count .inner {
    border: 1px dashed var(--title-color);
    padding: 28px 0;
}

.vendor-section .vendor-right .single-count .title,
.vendor-section .vendor-right .single-count .title span {
    font-size: 40px;
    color: var(--title-color);

    border: none;
    margin-bottom: 3px;
    padding-bottom: 0;
    font-family: var(--para-font);
}

.vendor-section .vendor-right .single-count .area-title {
    font-size: 25px;
    color: var(--title-color);

    border: none;
    font-family: var(--para-font);
}

.vendor-section .vendor-right .count-right .title {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.vendor-section .vendor-right .count-right p {
    text-align: justify;
}

.vendor-section .video-area {
    margin: -27px 0 70px 0;
}

.vendor-section .video-area .content {
    position: relative;
}

.vendor-section .video-area .content .content-overlay {
    background-color: rgb(0, 0, 0);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0.3;
}

.vendor-section .video-area .content-details {
    position: absolute;
    text-align: center;
}

.vendor-section .video-area .content-details i {
    font-size: 55px;
    color: var(--title-color);
}

.vendor-section .video-area .content-details .area-title {
    font-size: 25px;
    color: var(--title-color);
    margin-top: 3px;
    padding-bottom: 0;
}

.vendor-section .review-area .single-review {
    border-width: 2px;
    border-color: rgb(240, 240, 240);
    border-style: solid;
    background-color: rgb(245, 245, 245);
    padding: 18px 20px;
    margin-bottom: 20px;
}

.vendor-section .review-area .single-review .profile-img {
    float: left;
    margin-top: 8px;
}

.vendor-section .review-area .single-review .info-area {
    display: table;
    padding-left: 15px;
}

.vendor-section .review-area .single-review .info-top .star {
    line-height: 2.5;
    font-size: 20px;
    color: var(--logo-color);
}

.vendor-section .review-area .single-review .info-top .area-title {
    font-weight: 600;
}

.vendor-section .review-area .single-review .date-area p {
    font-weight: 300;
    margin: -11px 0 -2px 0;
}

.vendor-section .review-area .single-review .info-area .para p {
    text-align: justify;
}

.vendor-section .review-area button {
    width: 100%;
    justify-content: center;
}

.vendor-section .review-area button:hover {
    color: var(--main-color);
}

/* footer section */
.footer-section {
    background-color: var(--heading-color);
}

.footer-section .left-side {
    color: var(--title-color);
}

.footer-section .left-side a {
    margin-bottom: 22px;
}

.footer-section .left-side p,
.footer-section .left-side h4 {
    color: var(--title-color);
    font-family: var(--para-font);
}

.footer-section .left-side h4 {
    margin: 54px 0 17px 0;
    text-transform: capitalize;
}

.footer-section .footer-widget .widget-title {
    color: var(--title-color);
    margin-bottom: 6px;
    font-family: var(--para-font);
}

.footer-section .footer-widget li {
    color: var(--title-color);
    margin-bottom: 5px;
}

.footer-section .footer-widget .footer-form button {
    background: var(--main-color);
    color: var(--title-color);
    font-size: 30px;
    padding: 2px 20px;
}

.footer-section .footer-widget .footer-form input {
    padding: 0 15px;
    height: initial;
    border-radius: unset;
}

.footer-section .footer-widget .footer-social li {
    display: inline-block;
    float: left;
}

.footer-section .footer-widget .footer-social {
    margin-top: 30px;
}

.footer-section .footer-widget .footer-social li a i {
    font-size: 18px;
    background: var(--logo-color);
    border: 2px solid transparent;
    margin-right: 15px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    width: 35px;
    height: 35px;
    line-height: 31px;
    border-radius: 3px;
    text-align: center;
}

.footer-section .footer-widget .footer-social li a:hover i {
    background: var(--heading-color);
    border: 2px solid var(--title-color);
}

.footer-section .footer-top {
    padding-bottom: 74px;
    border-bottom: 2px solid #999999;
}

.footer-section .privacy-area {
    margin-top: 33px;
}

.footer-section .privacy-area p {
    color: var(--title-color);
}

/* responsive area */

@media (max-width: 1700px) {
    .header-section .modal-content .modal-body .content-details .text-area {
        margin: 30px 0 -90px 0;
    }
}

@media (max-width: 1400px) {
    .header-section .modal-content .modal-body .content-details .text-area {
        margin: 30px 0 -90px 0;
    }
}

@media (max-width: 1199px) {
    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 20px;
    }

    p,
    span,
    li {
        font-size: 14px;
    }

    input,
    textarea {
        font-size: 14px;
    }

    .area-title {
        font-size: 20px;
    }

    .mdiv-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .about-section .about-left-content {
        margin-top: -17px;
        margin-bottom: 40px;
    }

    .header-section .header-top .header-left .border {
        margin: 4px 6px;
    }

    .global-btn-area {
        transform: translate(72px, 30px);
    }

    .global-btn-area .global-btn {
        padding: 10px 30px;
        font-size: 18px;
    }

    .vendor-section .vendor-right .company-right .social li a i {
        margin-right: 5px;
    }

    .header-section .modal-content .modal-body .login-content {
        padding: 15px 0;
    }

    .header-section .modal-content .modal-body .login-content .login-form {
        margin: 12px 0 15px 0;
    }

    .header-section .modal-content .modal-body .content-details {
        left: initial;
    }

    .banner-section .slick-initialized button {
        top: 40%;
    }

    .about-inner .top-area {
        margin-top: 400px;
    }

    .about-section .about-bottom-content {
        margin-bottom: 20px;
    }

    .about-inner .about-bottom-content {
        margin-bottom: 20px;
    }

    .watch-section {
        background-image: none;
    }

    .watch-section .watch-right-content {
        margin-top: 60px;
    }

    .faq-section.faq #faq .card .card-header .btn-header-link:after {
        font-size: 23px;
        margin-right: -25px;
        margin-top: 2px;
    }

    .donation-details .button-area button {
        font-size: 25px;
        padding: 11px 25px;
        margin-right: 12px;
    }

    .faq-section.faq .nav-tabs {
        margin-bottom: 20px;
    }

    .about-section .about-bottom-content {
        margin-bottom: 20px;
        padding: 25px 20px;
    }

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

    .gallery-section .content {
        margin-bottom: 20px;
    }

    .blog-section .blog-left .date span {
        padding: 10px 25px;
    }

    .blog-section .left-bottom .area-title {
        font-size: 12px;
    }

    .blog-section .blog-right-area {
        padding: 30px 10px;
    }

    .team-section .team-area {
        padding-bottom: 20px;
    }

    .testimonial-section .content-details {
        margin: 0 80px;
    }

    .testimonial-section .content-details .text-area {
        padding: 40px 12px 12px 12px;
    }

    .description-section .circle-area .circle.circle-right .inner-content {
        transform: translate(35px, -90px);
    }

    .description-section .circle-area .circle.circle-left .inner-content {
        transform: translate(6px, 140px);
    }

    .description-section .circle-area .circle.circle-bottom .inner-content {
        transform: translate(140px, 63px);
    }

    .description-section .circle-area .circle.circle-top .inner-content {
        transform: translate(-90px, -12px);
    }

    .faq-section #faq .card .card-header .btn-header-link {
        padding: 12px 40px 12px 14px;
        font-size: 24px;
    }

    .faq-section #faq .card .card-header .btn-header-link:after {
        font-size: 20px;
        margin-top: 2px;
        margin-right: -30px;
    }

    .faq-section #faq .card .card-body {
        padding: 20px 20px 10px 20px;
        font-size: 18px;
    }

    .footer-section .footer-top .footer-widget {
        margin-bottom: 20px;
    }

    .footer-section .footer-top .left-side {
        margin-bottom: 20px;
    }

    .footer-section .footer-widget .footer-social {
        margin-top: 60px;
        display: flex;
        justify-content: center;
    }

    .about-inner .top-area {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 20px;
    }

    p,
    span,
    li {
        font-size: 14px;
    }

    input,
    textarea {
        font-size: 14px;
    }

    .area-title {
        font-size: 20px;
    }

    .mdiv-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .about-section .about-left-content {
        margin-top: -17px;
        margin-bottom: 40px;
    }

    .header-section .header-top .header-left .border {
        margin: 4px 6px;
    }

    .global-btn-area {
        transform: translate(72px, 30px);
    }

    .global-btn-area .global-btn {
        padding: 10px 30px;
        font-size: 18px;
    }

    .header-section .header-bottom .site-logo {
        margin-left: 2%;
    }

    .header-section .header-bottom .navbar-toggler span {
        font-size: 24px;
        margin-right: 5px;
    }

    .header-section .row.cus-width {
        display: inline-flex;
    }

    .header-section .modal-content .modal-body .container .col-lg-6 {
        padding-left: 25px;
    }

    .header-section .modal.fade .modal-dialog {
        max-width: max-content;
    }

    .header-section .modal-content .modal-body .content-details p {
        width: 90%;
        margin: 10px auto;
    }

    .header-section .modal-content .modal-body .login-form .input-bottom {
        display: block !important;
    }

    .p-0 {
        display: none;
    }

    .header-section .modal-content .modal-body .login-content {
        padding: 0 0 20px 0;
    }

    .causes-details .content-details .title {
        margin-left: 20px;
    }

    .about-inner .top-area {
        margin-top: 400px;
    }

    .about-section .about-bottom-content {
        margin-bottom: 20px;
    }

    .about-inner .about-bottom-content {
        margin-bottom: 20px;
    }

    .watch-section {
        background-image: none;
    }

    .watch-section .watch-right-content {
        margin-top: 60px;
    }

    .event-section .event-item {
        padding: 20px 20px;
    }

    .team-section .team-area .img-area img {
        width: 100%;
    }

    .vendor-section .vendor-right .company-right {
        margin-top: 15px;
    }

    .donation-details .button-area button {
        font-size: 25px;
        padding: 11px 25px;
        margin-right: 12px;
    }

    .causes-details.timer-area .content-details {
        display: block !important;
        text-align: center;
    }

    .causes-details.timer-area .content-details .title {
        margin-left: 0;
        margin-bottom: 5%;
    }

    .causes-details.timer-area #periodic-timer_change-options .syotimer-cell {
        width: 80px;
    }

    .causes-details.timer-area
        #periodic-timer_change-options
        .syotimer-cell
        .syotimer-cell__value {
        font-size: 30px;
        height: 50px;
        line-height: 80px;
    }

    .causes-details.timer-area
        #periodic-timer_change-options
        .syotimer-cell
        .syotimer-cell__unit {
        font-size: 20px;
    }

    .about-section .about-bottom-content {
        margin-bottom: 20px;
    }

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

    .gallery-section .content {
        margin-bottom: 20px;
    }

    .blog-section .blog-left .date span {
        padding: 10px 25px;
    }

    .blog-section .left-bottom .area-title {
        font-size: 12px;
    }

    .blog-section .blog-right-area {
        padding: 30px 10px;
        margin-top: 20px;
    }

    .team-section .team-area {
        padding-bottom: 20px;
    }

    .testimonial-section .content-details {
        margin: 0 80px;
    }

    .testimonial-section .content-details .text-area {
        padding: 40px 12px 12px 12px;
    }

    .description-section .section-header {
        margin-top: 80px;
    }

    .faq-section #faq .card .card-header .btn-header-link {
        padding: 12px 40px 12px 14px;
        font-size: 24px;
    }

    .faq-section #faq .card .card-header .btn-header-link:after {
        font-size: 20px;
        margin-top: 2px;
        margin-right: -30px;
    }

    .faq-section #faq .card .card-body {
        padding: 20px 20px 10px 20px;
        font-size: 18px;
    }

    .footer-section .footer-top .footer-widget {
        margin-bottom: 20px;
    }

    .footer-section .footer-top .left-side {
        margin-bottom: 20px;
    }

    .footer-section .footer-widget .footer-social {
        margin-top: 60px;
        display: flex;
        justify-content: center;
    }

    .about-inner .top-area {
        margin-top: 550px;
    }
    .time-laps-section .nav-tabs .nav-item .nav-link {
        padding: 14px 35px;
    }
}

@media (max-width: 767px) {
    .area-title {
        font-size: 20px;
    }

    .mdiv-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .about-section .about-left-content {
        margin-top: -17px;
        margin-bottom: 40px;
    }

    .header-section .header-top .header-left .border {
        margin: 4px 6px;
    }

    .global-btn-area {
        transform: translate(72px, 30px);
    }

    .global-btn-area .global-btn {
        padding: 10px 30px;
        font-size: 18px;
    }

    .banner-section .banner-content .section-title {
        font-size: 45px !important;
        line-height: 55px !important;
    }

    .banner-section .slick-initialized .cmn-btn {
        padding: 0 10px;
        font-size: 12px;
        line-height: 35px;
    }

    .banner-section .slick-initialized button {
        top: 35%;
        bottom: -10px;
        height: 40px;
        width: 20px;
        line-height: 45px;
    }

    .banner-section .slick-initialized button i {
        font-size: 20px;
    }

    .header-section .header-bottom .site-logo {
        max-width: 170px;
    }
    .header-section .header-bottom .site-logo img {
        width: 100%;
        height: 45px;
        object-fit: contain;
        object-position: left center;
    }

    .header-section
        .modal-content
        .modal-body
        .content-details
        .sign-btn
        .single-btn {
        width: 85%;
    }

    .about-inner .top-area {
        margin-top: 400px;
    }

    .about-section .about-bottom-content {
        margin-bottom: 20px;
    }

    .about-inner .about-bottom-content {
        margin-bottom: 20px;
    }

    .watch-section {
        background-image: none;
    }

    .watch-section .watch-right-content {
        margin-top: 60px;
    }

    .time-laps-section .nav-tabs .nav-item:before {
        display: none;
    }

    .time-laps-section .nav-tabs .nav-item .nav-link {
        margin-bottom: 10px;
    }

    .time-laps-section .right-content.section-header {
        padding: 0 15px;
    }

    .blog-section .video-play-area .icon-box a i {
        font-size: 25px;
        padding: 25px;
    }

    .blog-section .video-play-area .icon-box a::before {
        width: 65px;
        height: 65px;
        top: -23px;
        left: -5px;
    }

    .donation-details .button-area button {
        font-size: 25px;
        padding: 11px 25px;
        margin-right: 12px;
    }

    .causes-section .content img {
        width: 100%;
    }

    .gallery-section .content img {
        width: 100%;
    }

    .causes-details .single-item.showcase .inner-content .img-area {
        display: initial !important;
        justify-content: initial !important;
    }

    .causes-details .single-item.showcase .inner-content .img-area img {
        width: 100%;
    }

    .p-0 {
        display: none;
    }

    .causes-details .content-details .title {
        text-align: center;
    }

    .causes-details .area-title.causes {
        font-size: 30px !important;
    }

    .causes-details .causes-right .content .content-details img {
        width: 65px;
    }

    .blog-section.blog .pagination li a {
        font-size: 20px;
        width: 45px;
        height: 45px;
        margin: 0 5px;
    }

    .blog-section.blog .pagination li a i {
        font-size: 25px;
    }

    .blog-section.blog .pagination li a svg {
        margin: 0 4px;
    }

    .payment-area .form-check {
        text-align: center;
    }

    .about-section .about-bottom-content {
        margin-bottom: 20px;
    }

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

    .gallery-section .content {
        margin-bottom: 20px;
    }

    .blog-section .blog-left .date span {
        padding: 10px 25px;
    }

    .blog-section .left-bottom .area-title {
        font-size: 12px;
    }

    .blog-section .blog-right-area {
        padding: 30px 10px;
    }

    .team-section .team-area {
        padding-bottom: 20px;
    }

    .testimonial-section .content-details {
        margin: 0 50px;
    }

    .testimonial-section .content-details .text-area {
        padding: 40px 12px 12px 12px;
    }

    .description-section .section-header {
        margin-top: 80px;
    }

    .faq-section #faq .card .card-header .btn-header-link {
        padding: 12px 40px 12px 14px;
        font-size: 24px;
    }

    .faq-section #faq .card .card-header .btn-header-link:after {
        font-size: 20px;
        margin-top: 2px;
        margin-right: -30px;
    }

    .faq-section #faq .card .card-body {
        padding: 20px 20px 10px 20px;
        font-size: 18px;
    }

    .footer-section .footer-top .footer-widget {
        margin-bottom: 20px;
    }

    .footer-section .footer-top .left-side {
        margin-bottom: 20px;
    }

    .footer-section .footer-widget .footer-social {
        margin-top: 60px;
        display: flex;
        justify-content: center;
    }

    .time-laps-section .nav-tabs .nav-item .nav-link {
        padding: 14px 19px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 24px;
    }

    h3,
    h3 > a {
        font-size: 18px;
    }

    h5,
    h5 > a {
        font-size: 16px !important;
    }

    p,
    span,
    li {
        font-size: 14px;
    }

    input,
    textarea {
        font-size: 14px;
    }

    .inner-banner-content .title {
        font-size: 30px;
    }

    .area-title {
        font-size: 20px;
    }

    .mdiv-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .header-section .modal-content .modal-body .content {
        display: flex;
        justify-content: center;
    }

    .header-section .row.cus-width {
        display: flex;
        margin: auto 7%;
    }

    .blog-section .sidebar .widget-box .social-wrapper li a i {
        margin-right: 8px;
    }

    .causes-details.timer-area .right-area .details-area {
        padding: 5px 5px;
    }

    .event-section .event-item .content-area .post {
        display: block !important;
    }

    .event-section .event-item .content-area .post .single a span {
        font-size: 16px;
    }

    .blog-section.blog .pagination li a {
        font-size: 16px;
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }

    .blog-section.blog .pagination li a i {
        font-size: 25px;
    }

    .blog-section.blog .pagination li a svg {
        margin: 0 1px;
    }

    .banner-section .breadcrumb li a,
    .banner-section .breadcrumb li {
        font-size: 18px !important;
    }

    .donation-details .input-area {
        width: 65%;
    }

    .donation-details .button-area {
        text-align: center;
    }

    .donation-details .button-area button {
        margin-bottom: 10px;
    }

    .donation-details .donation-title {
        font-size: 30px;
    }

    .donation-details .personal-info .form-group label {
        font-size: 18px;
    }

    .donation-details .personal-info .form-group textarea,
    .donation-details .personal-info .form-group input {
        font-size: 18px;
    }

    .donation-details .total-donation .btn-donation {
        padding: 15px 0;
        font-size: 20px;
    }

    .payment-area .form-check {
        text-align: center;
    }

    .vendor-section .vendor-right {
        margin-top: 25px;
    }

    .contact-blocks .single-item {
        margin-bottom: 20px;
    }

    .contact-form .form-group textarea,
    .contact-form .form-group input {
        font-size: 20px;
    }

    .payment-details .section-header .payment-title {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .contact-form .form-group label {
        font-size: 20px;
    }

    .payment-details table tbody tr td {
        font-size: 18px;
    }

    .header-section .modal-content .modal-body .content-details p {
        margin: 40px auto;
    }

    .header-section .modal-content .modal-body .login-content {
        padding: 20px 15px;
    }

    .header-section .modal {
        top: 5%;
    }

    .banner-section .banner-content .section-title {
        font-size: 25px;
    }

    .banner-section .slick-initialized .cmn-btn {
        padding: 0 10px;
        font-size: 12px;
        line-height: 35px;
    }

    .banner-section .slick-initialized button {
        top: 35%;
        bottom: -10px;
        height: 40px;
        width: 20px;
        line-height: 45px;
    }

    .banner-section .slick-initialized button i {
        font-size: 20px;
    }

    .about-section .about-left-content {
        margin-top: -17px;
        margin-bottom: 40px;
    }

    .header-section .header-top .header-left .border {
        margin: 4px 6px;
    }

    .global-btn-area {
        transform: translate(72px, 30px);
    }

    .global-btn-area .global-btn {
        padding: 10px 30px;
        font-size: 18px;
    }

    .about-section .about-bottom-content {
        margin-bottom: 20px;
    }

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

    .gallery-section .content {
        margin-bottom: 20px;
    }

    .blog-section .blog-left .date span {
        padding: 10px 25px;
    }

    .blog-section .left-bottom .area-title {
        font-size: 12px;
    }

    .blog-section .blog-right-area {
        padding: 30px 10px;
    }

    .team-section .team-area {
        padding-bottom: 20px;
    }

    .testimonial-section .content-details {
        margin: 0 120px;
    }

    .testimonial-section .content-details .text-area {
        padding: 40px 12px 12px 12px;
    }

    .description-section .section-header {
        margin-top: 80px;
    }

    .faq-section #faq .card .card-header .btn-header-link {
        padding: 12px 40px 12px 14px;
        font-size: 24px;
    }

    .faq-section #faq .card .card-header .btn-header-link:after {
        font-size: 20px;
        margin-top: 2px;
        margin-right: -30px;
    }

    .faq-section #faq .card .card-body {
        padding: 20px 20px 10px 20px;
        font-size: 18px;
    }

    .footer-section .footer-top .footer-widget {
        margin-bottom: 20px;
    }

    .footer-section .footer-top .left-side {
        margin-bottom: 20px;
    }

    .footer-section .footer-widget .footer-social {
        margin-top: 60px;
        display: flex;
        justify-content: center;
    }

    .about-inner .top-area {
        margin-top: 650px;
    }
}

@media (max-width: 480px) {
    .faq-section .accordion .card .card-header .btn-header-link {
        padding: 20px 20px;
        font-size: 25px;
    }
    .faq-section .accordion .card .card-header .btn-header-link:after {
        font-size: 20px;
    }
    .about-inner .top-area {
        margin-top: 430px;
    }
    .time-laps-section .nav-tabs .nav-item .nav-link {
        padding: 14px 19px;
        font-size: 20px;
    }
}

@media (max-width: 440px) {
    .area-title {
        font-size: 20px;
    }

    .mdiv-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .about-section .about-left-content {
        margin-top: -17px;
        margin-bottom: 40px;
    }

    .header-section .header-top .header-left .border {
        margin: 4px 6px;
    }

    .global-btn-area {
        transform: translate(72px, 30px);
    }

    .global-btn-area .global-btn {
        padding: 10px 30px;
        font-size: 18px;
    }

    .causes-details.timer-area .right-area .event-details .single-event p {
        font-size: 16px;
    }

    .header-section .row.cus-width {
        display: inline-flex;
        margin: initial;
    }

    .header-section .modal-content .modal-body .content-details .text-area {
        margin: -22px 0 -100px 0;
    }

    .causes-details.timer-area #periodic-timer_change-options .syotimer__body {
        display: inline-flex;
    }

    .causes-details.timer-area #periodic-timer_change-options .syotimer-cell {
        width: 57px;
    }

    .causes-details.timer-area
        #periodic-timer_change-options
        .syotimer-cell
        .syotimer-cell__value {
        font-size: 26px;
        height: 50px;
        line-height: 70px;
    }

    .causes-details.timer-area
        #periodic-timer_change-options
        .syotimer-cell
        .syotimer-cell__unit {
        font-size: 16px;
    }

    .causes-details .content img {
        height: 200px;
    }

    .causes-details.timer-area .left-area ul li {
        font-size: 20px;
    }

    .faq-section.faq #faq .card .card-header .btn-header-link {
        padding: 15px 15px;
        font-size: 20px;
    }

    .faq-section.faq #faq .card .card-header .btn-header-link:after {
        font-size: 20px;
        margin-right: -76px;
        margin-top: -15px;
    }
    .faq-section .accordion .card .card-body {
        padding: 32px 0 10px 10px;
    }

    .vendor-section .review-area .single-review .info-top .star {
        line-height: 1.8;
        font-size: 17px;
    }

    .vendor-section .review-area .single-review .info-area .info-top {
        margin-bottom: 8px;
    }

    .about-section .about-bottom-content {
        margin-bottom: 20px;
    }

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

    .gallery-section .content {
        margin-bottom: 20px;
    }

    .blog-section .blog-left .date span {
        padding: 10px 25px;
    }

    .blog-section .left-bottom .area-title {
        font-size: 12px;
    }

    .blog-section .blog-right-area {
        padding: 30px 10px;
    }

    .team-section .team-area {
        padding-bottom: 20px;
    }

    .testimonial-section .content-details {
        margin: 0 130px;
    }

    .testimonial-section .content-details .text-area {
        padding: 40px 12px 12px 12px;
    }

    .description-section .circle-area .circle .inner-content img {
        width: 60%;
    }

    .description-section .circle-area .text-area .number-area .counter-number {
        font-size: 30px;
    }

    .description-section .circle-area {
        margin-bottom: -140px;
    }

    .description-section .circle-area .text-area .area-title {
        font-size: 20px;
    }

    .description-section .circle-area .circle.circle-left .inner-content {
        transform: translate(-10px, 100px);
    }

    .description-section .circle-area .circle.circle-top .inner-content {
        transform: translate(75px, -125px);
    }

    .description-section .circle-area .circle.circle-right .inner-content {
        transform: translate(150px, -300px);
    }

    .description-section .circle-area .circle.circle-bottom .inner-content {
        transform: translate(75px, -80px);
    }

    .description-section .circle-area .text-area {
        top: 15%;
        left: 14%;
    }

    .faq-section #faq .card .card-header .btn-header-link {
        padding: 12px 40px 12px 14px;
        font-size: 24px;
    }

    .faq-section #faq .card .card-header .btn-header-link:after {
        font-size: 20px;
        margin-top: 2px;
        margin-right: -30px;
    }

    .faq-section #faq .card .card-body {
        padding: 20px 20px 10px 20px;
        font-size: 18px;
    }

    .footer-section .footer-top .footer-widget {
        margin-bottom: 20px;
    }

    .footer-section .footer-top .left-side {
        margin-bottom: 20px;
    }

    .footer-section .footer-widget .footer-social {
        margin-top: 60px;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 375px) {
    .faq-section .accordion .card .card-header .btn-header-link {
        padding: 15px 15px;
        font-size: 20px;
    }
    .faq-section .accordion .card .card-header .btn-header-link:after {
        font-size: 18px;
    }
    .about-inner .top-area {
        margin-top: 350px;
    }
    .contact-form .section-header .contact-title {
        font-size: 30px;
    }
    .section-title {
        font-size: 35px;
    }
}
@media (max-width: 320px) {
    .area-title {
        font-size: 20px;
    }

    .mdiv-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .about-section .about-left-content {
        margin-top: -17px;
        margin-bottom: 40px;
    }

    .header-section .header-top .header-left .border {
        margin: 4px 6px;
    }

    .global-btn-area {
        transform: translate(72px, 30px);
    }

    .global-btn-area .global-btn {
        padding: 10px 30px;
        font-size: 18px;
    }

    .about-section .about-bottom-content {
        margin-bottom: 20px;
    }

    .about-inner .top-area {
        margin-top: 280px;
    }

    .about-inner .about-bottom-content {
        margin-bottom: 20px;
    }

    .watch-section {
        background-image: none;
    }

    .watch-section .watch-right-content {
        margin-top: 60px;
    }

    .time-laps-section .nav-tabs .nav-item:before {
        display: none;
    }

    .time-laps-section .nav-tabs .nav-item .nav-link {
        margin-bottom: 10px;
    }

    .time-laps-section .right-content.section-header {
        padding: 0 15px;
    }

    .description-section .circle-area .text-area .number-area .counter-number,
    .description-section
        .circle-area
        .text-area
        .number-area
        .counter-number
        span {
        font-size: 30px;
    }

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

    .gallery-section .content {
        margin-bottom: 20px;
    }

    .blog-section .blog-left .date span {
        padding: 10px 25px;
    }

    .blog-section .left-bottom .area-title {
        font-size: 12px;
    }

    .blog-section .blog-right-area {
        padding: 30px 10px;
    }

    .team-section .team-area {
        padding-bottom: 20px;
    }

    .testimonial-section .content-details {
        margin: 0 180px;
    }

    .testimonial-section .content-details .text-area {
        padding: 40px 12px 12px 12px;
    }

    .description-section .circle-area .circle .inner-content img {
        width: 60%;
    }

    .description-section .circle-area .text-area .number-area .counter-number {
        font-size: 30px;
    }

    .description-section .circle-area {
        margin-bottom: -140px;
    }

    .description-section .circle-area .text-area .area-title {
        font-size: 20px;
    }

    .description-section .circle-area .circle.circle-left .inner-content {
        transform: translate(-10px, 100px);
    }

    .description-section .circle-area .circle.circle-top .inner-content {
        transform: translate(75px, -125px);
    }

    .description-section .circle-area .circle.circle-right .inner-content {
        transform: translate(150px, -300px);
    }

    .description-section .circle-area .circle.circle-bottom .inner-content {
        transform: translate(75px, -80px);
    }

    .description-section .circle-area .text-area {
        top: 15%;
        left: 14%;
    }

    .faq-section #faq .card .card-header .btn-header-link {
        padding: 12px 45px 12px 14px;
        font-size: 24px;
    }

    .faq-section #faq .card .card-header .btn-header-link:after {
        font-size: 20px;
        margin-top: -15px;
        margin-right: -30px;
    }

    .faq-section #faq .card .card-body {
        padding: 20px 20px 10px 20px;
        font-size: 18px;
    }

    .footer-section .footer-top .footer-widget {
        margin-bottom: 20px;
    }

    .footer-section .footer-top .left-side {
        margin-bottom: 20px;
    }

    .footer-section .footer-widget .footer-social {
        margin-top: 60px;
        display: flex;
        justify-content: center;
    }
}

.max-30px {
    max-width: 18px;
}

.blog-image {
    width: 555px;
    height: 360px;
}

.blog-details-image {
    height: 100px;
    width: 100px;
    object-fit: cover;
}
.donation-details .button-area button span.inputValue.text-white {
    font-size: inherit !important;
}

/**Global for this css **/

#Notiflix-Icon-Success,
#Notiflix-Icon-Failure,
#Notiflix-Icon-Warning {
    fill: #fff !important;
}
.the-message {
    color: #fff !important;
}
[v-cloak] {
    display: none;
}
.cursor-text {
    cursor: text !important;
}
.contact-blocks .single-item img {
    height: 55px;
    object-fit: contain;
}
.banner-section.inner-banner-section.hero-section .section-title {
    margin: 0;
}
.banner-section.inner-banner-section.hero-section .breadcrumb-item {
    font-size: 20px;
}
.banner-section.inner-banner-section.hero-section {
    padding: 75px 0 43px;
}
