@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&amp;display=swap");

html {
    font-size: 16px;
}

body {
    font-family: "Jost", sans-serif;
    background-color: #fff;
    font-size: 16px;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

p {
    color: #1c1c1c;
    line-height: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #020202;
}

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

a {
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/*--------------------------------------------------------------
#0.2    Global Elements
--------------------------------------------------------------*/
.page-wrapper {
    position: relative;
    overflow: hidden;
}

.wow {
    visibility: hidden;
}

.fi:before {
    margin: 0;
}

.section-padding {
    padding: 120px 0;
}

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

@media (max-width: 767px) {
    .section-padding {
        padding: 80px 0;
    }
}

.p-t-0 {
    padding-top: 0;
}

.p-b-0 {
    padding-bottom: 0;
}

/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
    width: 100% !important;
    margin-top: 15px !important;
}

.contact-validation-active label.error {
    color: red;
    font-size: 0.875rem;
    font-weight: normal;
    margin: 5px 0 0 0;
    text-align: left;
    display: block;
}

.contact-validation-active #loader {
    display: none;
    margin-top: 10px;
}

.contact-validation-active #loader i {
    font-size: 30px;
    font-size: 1.875rem;
    color: #cd211d;
    display: inline-block;
    -webkit-animation: rotating linear 2s infinite;
    animation: rotating linear 2s infinite;
}

.contact-validation-active #success,
.contact-validation-active #error {
    width: 100%;
    color: #fff;
    padding: 5px 10px;
    font-size: 16px;
    text-align: center;
    display: none;
}

@media (max-width: 767px) {
    .contact-validation-active #success,
    .contact-validation-active #error {
        font-size: 15px;
    }
}

.contact-validation-active #success {
    background-color: #009a00;
    border-left: 5px solid green;
    margin-bottom: 5px;
}

.contact-validation-active #error {
    background-color: #ff1a1a;
    border-left: 5px solid red;
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.rotating {
    -webkit-animation: rotating 5s alternate infinite;
    animation: rotating 5s alternate infinite;
}

/*** back to top **/
.back-to-top {
    background-color: rgba(205, 33, 29, 0.7);
    width: 45px;
    height: 45px;
    line-height: 45px;
    border: 2px solid #cd211d;
    border-radius: 0;
    text-align: center;
    position: fixed;
    z-index: 999;
    right: 15px;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .back-to-top {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

.back-to-top:hover {
    background-color: #cd211d;
}

.animate-b-t-t {
    bottom: 15px;
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    font-size: 22px;
    font-size: 1.375rem;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/** for popup image ***/
.mfp-wrap {
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

/*** for fancybox video ***/
.fancybox-overlay {
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999 !important;
}

.fancybox-wrap {
    z-index: 99999 !important;
}

.section-title, .section-title-s2, .section-title-s3 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 35px;
}

@media (max-width: 767px) {
    .section-title, .section-title-s2, .section-title-s3 {
        margin-bottom: 40px;
    }
}

.section-title > span, .section-title-s2 > span, .section-title-s3 > span {
    font-weight: 700;
    color: #cd211d;
    text-transform: uppercase;
    letter-spacing: 5px;
    display: block;
    margin-top: -0.3em;
}

.section-title h2, .section-title-s2 h2, .section-title-s3 h2 {
    font-size: 45px;
    line-height: 1em;
    margin: 0.2em 0 0;
}

.section-title h2 span, .section-title-s2 h2 span, .section-title-s3 h2 span {
    -webkit-text-fill-color: #fff;
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #020202;
}

@media (max-width: 991px) {
    .section-title h2, .section-title-s2 h2, .section-title-s3 h2 {
        font-size: 40px;
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .section-title h2, .section-title-s2 h2, .section-title-s3 h2 {
        font-size: 35px;
        font-size: 2.1875rem;
    }
}

.mar-b-40 {
    margin-bottom: 40px !important;
}

.section-title-s2, .section-title-s3 {
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .section-title-s2, .section-title-s3 {
        margin-bottom: 40px;
    }
}

.section-title:before {
    content: "";
    background-color: #cd211d;
    width: 90px;
    height: 6px;
    border-radius: 5px;
    position: absolute;
    left: calc(9% - 55px);
    bottom: 0;
}

@media (max-width: 767px) {
    .section-title:before {
        height: 4px;
    }
}

.section-title:after {
    content: "";
    background-color: #cd211d;
    width: 22px;
    height: 6px;
    border-radius: 5px;
    position: absolute;
    left: calc(9% + 45px);
    bottom: 0;
}

@media (max-width: 767px) {
    .section-title:after {
        height: 4px;
    }
}

.section-title-s3 {
    text-align: right;
    margin-bottom: 40px;
}

.section-title-s3:before {
    content: "";
    background-color: #cd211d;
    width: 22px;
    height: 6px;
    border-radius: 5px;
    position: absolute;
    right: calc(22% + 45px);
    bottom: 0;
}


.section-title-s3:after {
    content: "";
    background-color: #cd211d;
    width: 90px;
    height: 6px;
    border-radius: 5px;
    position: absolute;
    right: calc(22% - 55px);
    bottom: 0;
}

@media (max-width: 767px) {
    .section-title-s3:before {
        height: 4px;
        right: calc(25% - 45px);
    }
}

@media (max-width: 767px) {
    .section-title-s3:after {
        height: 4px;
        right: calc(25% - 55px);
    }
}

.section-title-s3 h2 {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .section-title-s3 {
        margin-bottom: 40px;
    }
}

.theme-btn {
    background-color: #cd211d;
    line-height: 0.66em;
    color: #fff;
    padding: 15px;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    text-transform: uppercase;
}

.theme-btn:hover, .theme-btn:focus, .theme-btn:active {
    background-color: #b71d1a;
    color: #fff;
}

@media (max-width: 767px) {
    .theme-btn {
        padding: 12px;
        font-size: 13px;
    }
}

.theme-btn-s1, .theme-btn-s3, .theme-btn-s6, .theme-btn-s7 {
    background-color: transparent;
    font-size: 17px;
    font-size: 1.0625rem;
    border: 2px solid #fff;
    position: relative;
    padding: 13px 20px 13px 45px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 767px) {
    .theme-btn-s1, .theme-btn-s3, .theme-btn-s6, .theme-btn-s7 {
        font-size: 14px;
        padding: 10px 14px 10px 45px;
        margin-right: 65px;
        margin-bottom: 10px;
    }
}

.theme-btn-s1 i, .theme-btn-s3 i, .theme-btn-s6 i, .theme-btn-s7 i {
    position: absolute;
    left: 20px;
    top: 13px;
}

.theme-btn-s1 .fi:before, .theme-btn-s3 .fi:before, .theme-btn-s6 .fi:before, .theme-btn-s7 .fi:before {
    font-size: 15px;
    font-size: 0.9375rem;
}

.theme-btn-s1:hover, .theme-btn-s3:hover, .theme-btn-s6:hover, .theme-btn-s7:hover {
    color: #ffffff;
    border-color: #cd211d;
    background-color: #1b2b57;
}

.theme-btn-s2, .theme-btn-s4, .theme-btn-s5 {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: bold;
    color: #fff;
    padding-left: 60px;
    position: relative;
}

@media (max-width: 767px) {
    .theme-btn-s2, .theme-btn-s4, .theme-btn-s5 {
        padding-left: 0;
    }
}

.theme-btn-s2:before, .theme-btn-s4:before, .theme-btn-s5:before {
    content: "";
    background-color: #fff;
    width: 44px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 52%;
}

@media (max-width: 767px) {
    .theme-btn-s2:before, .theme-btn-s4:before, .theme-btn-s5:before {
        display: none;
    }
}

.theme-btn-s2 i:before, .theme-btn-s4 i:before, .theme-btn-s5 i:before {
    font-size: 15px;
    font-size: 0.9375rem;
    position: relative;
    top: 1px;
    display: inline-block;
    padding-left: 4px;
}

.theme-btn-s2:hover, .theme-btn-s4:hover, .theme-btn-s5:hover {
    color: #cd211d;
}

.theme-btn-s3, .theme-btn-s6 {
    color: #cd211d;
    border-color: #cd211d;
}

.theme-btn-s3 .fi:before, .theme-btn-s6 .fi:before {
    color: #cd211d;
}

.theme-btn-s4 {
    color: #020202;
}

.theme-btn-s4:before {
    background-color: #020202;
}

.theme-btn-s5 {
    color: #cd211d;
    padding-left: 0;
}

.theme-btn-s5:before {
    display: none;
}

.theme-btn-s6 {
    background-color: #1b2b57;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.theme-btn-s6 .fi:before {
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.theme-btn-s6:hover .fi:before {
    color: #fff;
}

.theme-btn-s6:hover {
    background-color: #cd211d;
    color: #fff;
    border-color: #cd211d;
}

.theme-btn-s7 {
    background-color: #cd211d;
    border-color: #cd211d;
    color: #fff;
    margin-right: 30px;
    margin-top: 30px;
}

.theme-btn-s7:hover {
    background-color: #b71d1a;
    color: #fff;
}

.theme-btn-s8, .theme-btn-s9, .theme-btn-s10 {
    font-family: "Jost", sans-serif;
    background-color: #cd211d;
    font-size: 16px;
    font-size: 1rem;
    position: relative;
    padding: 17px 30px;
    border-radius: 0;
    display: inline-block;
    font-weight: 600;
    color: #fff;
}

.theme-btn-s8:hover, .theme-btn-s9:hover, .theme-btn-s10:hover {
    background-color: #fff;
    color: #cd211d;
}

.theme-btn-s9 {
    background-color: #fff;
    color: #cd211d;
}

.theme-btn-s9:hover {
    background-color: #cd211d;
    color: #fff;
}

.theme-btn-s10 {
    border: 0;
    outline: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.theme-btn-s10:hover {
    background-color: #b71d1a;
    color: #fff;
}

.view-cart-btn {
    background: #cd211d;
    width: 140px;
    padding: 10px;
    margin-top: 20px;
    color: white;
    font-weight: 500;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.view-cart-btn:hover {
    background-color: #a01a17;
    color: #fff;
}

.form input,
.form textarea,
.form select {
    border-color: #bfbfbf;
    border-radius: 0;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #595959;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    border-color: #cd211d;
    -webkit-box-shadow: 0 0 5px 0 #e33e3a;
    -moz-box-shadow: 0 0 5px 0 #e33e3a;
    -o-box-shadow: 0 0 5px 0 #e33e3a;
    -ms-box-shadow: 0 0 5px 0 #e33e3a;
    box-shadow: 0 0 5px 0 #e33e3a;
}

.form ::-webkit-input-placeholder {
    font-style: 14px;
    font-style: italic;
    color: #595959;
}

.form :-moz-placeholder {
    font-style: 14px;
    font-style: italic;
    color: #595959;
}

.form ::-moz-placeholder {
    font-style: 14px;
    font-style: italic;
    color: #595959;
}

.form :-ms-input-placeholder {
    font-style: 14px;
    font-style: italic;
    color: #595959;
}

.form select {
    font-style: italic;
    background: url(../images/select-icon.html) no-repeat right center;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form select::-ms-expand {
    /* for IE 11 */
    display: none;
}

/******************************
	#page title
******************************/
.page-title {
    background: url("../images/page-title.jpg") center center/cover no-repeat local;
    width: 100%;
    height: 600px;
    text-align: center;
    position: relative;
    word-break: break-all;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.page-title:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.68;
    /*
  background: -webkit-linear-gradient(top, #1b2b57 65%, #cd211d);
  background: -moz-linear-gradient(top, #1b2b57 65%, #cd211d);
  background: -o-linear-gradient(top, #1b2b57 65%, #cd211d);
  background: -ms-linear-gradient(top, #1b2b57 65%, #cd211d);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, #1b2b57), to(#cd211d));*/
    background-color: rgb(0 0 0 / 82%);

}

@media (max-width: 991px) {
    .page-title {
        height: 300px;
    }
}

.page-title .page-title-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
}

.page-title .page-title-wrapper {
    text-align: center;
    padding-top: 70px;
}

@media screen and (min-width: 992px) {
    .page-title .container {
        padding-top: 103px;
    }
}

.page-title h2,
.page-title ol {
    color: #fff;
}

.page-title h2 {
    font-size: 60px;
    font-size: 3.75rem;
    font-weight: bold;
    margin: 0 0 0.2em;
}

@media (max-width: 991px) {
    .page-title h2 {
        font-size: 48px;
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .page-title h2 {
        font-size: 35px;
        font-size: 2.1875rem;
    }
}

.page-title .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .page-title .breadcrumb {
        text-align: center;
    }
}

.page-title .breadcrumb li {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: bold;
    color: #fff;
    margin-right: 5px;
    position: relative;
}

@media (max-width: 991px) {
    .page-title .breadcrumb li {
        font-size: 16px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .page-title .breadcrumb li {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.page-title .breadcrumb li a {
    color: #fff;
}

.page-title .breadcrumb li a:hover {
    color: #cd211d;
}

.page-title .breadcrumb > li + li {
    margin-left: 20px;
    padding-left: 15px;
}

.page-title .breadcrumb > li + li:before {
    font-family: themify;
    content: "\e649";
    font-size: 12px;
    font-size: 0.75rem;
    padding: 0;
    position: absolute;
    left: -12px;
    top: 3px;
    border-radius: 50%;
}

.preloader {
    background-color: #1c1c1c;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
}

.preloader .preloader-inner {
    width: 80px;
    height: 80px;
    position: absolute;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
}

.preloader .double-bounce1,
.preloader .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #cd211d;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.preloader .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

/*------------------------------------
	blog sidebar
------------------------------------*/
.blog-sidebar {
    /*** search-widget ***/
    /*** category-widget ***/
    /*** recent-post-widget ***/
    /*** tag-widget ***/
}

@media screen and (min-width: 1200px) {
    .blog-sidebar {
        padding-left: 45px;
    }
}

@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 80px;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .blog-sidebar {
        margin-top: 60px;
        max-width: 400px;
    }
}

.blog-sidebar .widget {
    border: 2px solid #f4f4f4;
    padding: 32px 25px;
}

.blog-sidebar .widget h3 {
    position: relative;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0 0 30px;
    position: relative;
    text-transform: capitalize;
}

.blog-sidebar .widget h3:before {
    content: "";
    background-color: #cd211d;
    width: 45px;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.blog-sidebar > .widget + .widget {
    margin-top: 65px;
}

.blog-sidebar .search-widget form div {
    position: relative;
}

.blog-sidebar .search-widget input {
    background-color: #f8f8f8;
    height: 50px;
    font-size: 16px;
    font-size: 1rem;
    padding: 6px 50px 6px 20px;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.blog-sidebar .search-widget input:focus {
    background-color: rgba(205, 33, 29, 0.1);
}

.blog-sidebar .search-widget form button {
    background: #cd211d;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    font-size: 1.25rem;
    color: #fff;
    border: 0;
    outline: 0;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0;
}

.blog-sidebar .search-widget form button i {
    font-size: 14px;
}

.blog-sidebar .category-widget ul {
    list-style: none;
}

.blog-sidebar .category-widget ul li {
    font-size: 15px;
    position: relative;
    padding: 10px;
    background: #f8f8f8;
}

@media (max-width: 767px) {
    .blog-sidebar .category-widget ul li {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.blog-sidebar .category-widget ul li span {
    position: absolute;
    right: 0;
}

.blog-sidebar .category-widget ul > li + li {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f3f2f2;
}

.blog-sidebar .category-widget ul a {
    display: block;
    color: #717171;
    padding-left: 25px;
    position: relative;
}

.blog-sidebar .category-widget ul a:before {
    font-family: "Themify";
    content: "\e628";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 11px;
}

.blog-sidebar .category-widget ul a:hover,
.blog-sidebar .category-widget ul li:hover:before {
    color: #cd211d;
}

.blog-sidebar .recent-post-widget .post {
    overflow: hidden;
}

.blog-sidebar .recent-post-widget .posts > .post + .post {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f3f2f2;
}

.blog-sidebar .recent-post-widget .post .img-holder {
    width: 68px;
    float: left;
}

.blog-sidebar .recent-post-widget .post .img-holder img {
    border-radius: 5px;
}

.blog-sidebar .recent-post-widget .post .details {
    width: calc(100% - 68px);
    float: left;
    padding-left: 20px;
}

.blog-sidebar .recent-post-widget .post h4 {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3em;
    margin: 0 0 0.3em;
}

@media (max-width: 1199px) {
    .blog-sidebar .recent-post-widget .post h4 {
        margin: 0;
    }
}

.blog-sidebar .recent-post-widget .post h4 a {
    font-weight: 600;
    display: inline-block;
    color: #020202;
}

.blog-sidebar .recent-post-widget .post h4 a:hover {
    color: #cd211d;
}

.blog-sidebar .recent-post-widget .post .details .date {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #687693;
}

.blog-sidebar .recent-post-widget .post .details .date i {
    display: inline-block;
    padding-right: 7px;
}

.blog-sidebar .tag-widget ul {
    overflow: hidden;
    list-style: none;
}

.blog-sidebar .tag-widget ul li {
    float: left;
    margin: 0 8px 8px 0;
}

.blog-sidebar .tag-widget ul li a {
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-block;
    padding: 7px 14px;
    color: #717171;
    border: 1px solid #efefef;
    border-radius: 50px;
}

.blog-sidebar .tag-widget ul li a:hover {
    background: #cd211d;
    color: #fff;
    border-color: #cd211d;
}

/**** pagination ****/
.pagination-wrapper {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .pagination-wrapper {
        text-align: left;
        margin-top: 40px;
    }
}

.pagination-wrapper .pg-pagination {
    display: inline-block;
    overflow: hidden;
    list-style-type: none;
    text-align: center;
}

.pagination-wrapper .pg-pagination li {
    float: left;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .pagination-wrapper .pg-pagination li {
        margin-right: 5px;
    }
}

.pagination-wrapper .pg-pagination li:last-child {
    margin-right: 0;
}

.pagination-wrapper .pg-pagination li a {
    background-color: transparent;
    width: 50px;
    height: 50px;
    line-height: 47px;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #788390;
    border: 2px solid #e8e8e8;
    display: block;
    border-radius: 0;
}

@media (max-width: 991px) {
    .pagination-wrapper .pg-pagination li a {
        width: 40px;
        height: 40px;
        line-height: 38px;
        font-size: 15px;
        font-size: 0.9375rem;
    }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
    background: #cd211d;
    border-color: #cd211d;
    color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
    font-size: 15px;
    font-size: 0.9375rem;
}

.pagination-wrapper-left {
    text-align: left;
}

.pagination-wrapper-right {
    text-align: right;
}

@media screen and (min-width: 1200px) {
    .pagination-wrapper-right {
        padding-right: 50px;
    }
}

@media (max-width: 991px) {
    .pagination-wrapper-right {
        margin-top: 45px;
        text-align: left;
    }
}

.theme-accordion-s1 {
    margin-bottom: 0;
}

.theme-accordion-s1 .panel-default {
    background: transparent;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.theme-accordion-s1 .panel-heading {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.theme-accordion-s1 .panel + .panel {
    margin-top: 15px;
}

.theme-accordion-s1 .panel-heading a {
    background: #cd211d;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    display: block;
    padding: 18px 25px;
    position: relative;
}

@media (max-width: 991px) {
    .theme-accordion-s1 .panel-heading a {
        font-size: 15px;
        font-size: 0.9375rem;
        padding: 15px 25px;
    }
}

@media (max-width: 767px) {
    .theme-accordion-s1 .panel-heading a {
        padding: 12px 15px;
    }
}

.theme-accordion-s1 .panel-heading a:before {
    font-family: "themify";
    content: "\e64b";
    font-size: 15px;
    font-size: 0.9375rem;
    position: absolute;
    right: 25px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 991px) {
    .theme-accordion-s1 .panel-heading a:before {
        font-size: 18px;
        font-size: 1.125rem;
        right: 20px;
    }
}

.theme-accordion-s1 .panel-heading a:focus {
    text-decoration: none;
}

.theme-accordion-s1 .panel-heading .collapsed {
    background-color: #fff;
    color: #020202;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

.theme-accordion-s1 .panel-heading .collapsed:before {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body {
    background-color: #fff;
    border: 0;
    padding: 40px 25px 15px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

@media (max-width: 991px) {
    .theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body {
        padding: 20px 25px 10px;
        font-size: 15px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 767px) {
    .theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body {
        padding: 15px 15px 8px;
    }
}

.theme-accordion-s1 .panel-heading + .panel-collapse > .panel-body p {
    margin-bottom: 1.3em;
}

/*--------------------------------------------------------------
#0.3	header
--------------------------------------------------------------*/
.site-header {
    /* navigation open and close btn hide for width screen */
    /* style for navigation less than 992px */
    /*navbar collaps less then 992px*/
}

.site-header .navigation {
    background-color: #fff;
    margin-bottom: 0;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
}

.site-header .navigation > .container {
    position: relative;
}

.site-header #navbar {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    /*** mega-menu style ***/
}

.site-header #navbar > ul li a:hover,
.site-header #navbar > ul li a:focus,
.site-header #navbar > ul li.current-menu-item a {
    text-decoration: none;
    color: #cd211d !important;
}

@media screen and (min-width: 992px) {
    .site-header #navbar {
        /*** hover effect ***/
    }

    .site-header #navbar li {
        position: relative;
    }

    .site-header #navbar > ul > li > a {
        font-size: 14px;
        font-size: 0.875rem;
        font-weight: 500;
        text-transform: uppercase;
    }

    .site-header #navbar > ul .sub-menu {
        background-color: #fff;
        width: 280px;
        text-align: left;
        padding: 25px 0;
        position: absolute;
        left: 0;
        top: 100%;
        z-index: 10;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        text-transform: capitalize;
    }

    .site-header #navbar > ul > li > ul.sub-menu:before {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 9px 10px 9px;
        border-color: transparent transparent #fff transparent;
        margin: 0 0 0 20px;
        padding-top: 1px;
        position: absolute;
        top: -11px;
    }

    .site-header #navbar > ul > li .sub-menu li:last-child {
        border-bottom: 0;
    }

    .site-header #navbar > ul > li .sub-menu a {
        display: block;
        padding: 10px 30px;
        color: #1c1c1c;
        font-size: 13px;
        font-size: 0.8125rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    .site-header #navbar > ul > li .sub-menu a:hover {
        padding-left: 35px;
    }

    .site-header #navbar > ul > li > .sub-menu .sub-menu {
        left: 95%;
        top: 0;
    }

    .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
        position: relative;
    }

    .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a:before {
        font-family: "themify";
        content: "\e649";
        font-size: 11px;
        font-size: 0.6875rem;
        position: absolute;
        right: 25px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .site-header #navbar > ul > li:hover > .sub-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }

    .site-header #navbar .sub-menu > li:hover > .sub-menu {
        left: 100%;
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .site-header #navbar > ul > li a {
        display: block;
        font-size: 14px;
        font-size: 0.875rem;
    }

    .site-header #navbar > ul > li .sub-menu li {
        border-bottom: 1px solid #e6e6e6;
    }

    .site-header #navbar > ul .sub-menu > li:last-child {
        border-bottom: 0;
    }

    .site-header #navbar > ul > li > .sub-menu a {
        padding: 8px 15px 8px 45px;
    }

    .site-header #navbar > ul > li > .sub-menu .sub-menu a {
        padding: 8px 15px 8px 65px;
    }

    .site-header #navbar > ul .menu-item-has-children > a {
        position: relative;
    }

    .site-header #navbar > ul .menu-item-has-children > a:before {
        font-family: "themify";
        content: "\e61a";
        font-size: 11px;
        font-size: 0.6875rem;
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media screen and (min-width: 992px) {
    .site-header #navbar {
        /*** hover effect ***/
        /*border-left: 1px solid rgba(255, 255, 255, 0.2);*/
    }

    .site-header #navbar .has-mega-menu {
        position: static;
    }

    .site-header #navbar .mega-menu,
    .site-header #navbar .half-mega-menu {
        background-color: #fff;
        padding: 20px;
        border-top: 2px solid #cd211d;
        position: absolute;
        right: 0;
        top: 100%;
        z-index: 10;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
    }

    .site-header #navbar .mega-menu {
        width: 1140px;
        right: 15px;
    }

    .site-header #navbar .half-mega-menu {
        width: 585px;
    }

    .site-header #navbar .mega-menu-box-title {
        font-size: 14px;
        font-size: 0.875rem;
        text-transform: uppercase;
        font-weight: bold;
        display: block;
        padding-bottom: 7px;
        margin-bottom: 7px;
        border-bottom: 1px solid #e6e6e6;
    }

    .site-header #navbar .mega-menu-list-holder li a {
        font-size: 14px;
        font-size: 0.875rem;
        display: block;
        padding: 7px 8px;
        margin-left: -8px;
    }

    .site-header #navbar .has-mega-menu:hover > ul {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 1199px) {
    .site-header #navbar > ul .mega-menu {
        width: 950px;
        right: 15px;
    }

    .site-header #navbar > ul .half-mega-menu {
        width: 485px;
    }
}

@media (max-width: 991px) {
    .site-header #navbar > ul .mega-menu,
    .site-header #navbar > ul .half-mega-menu {
        width: auto;
    }

    .site-header #navbar > ul .mega-menu .row,
    .site-header #navbar > ul .half-mega-menu .row {
        margin: 0;
    }

    .site-header #navbar .mega-menu-content > .row > .col {
        margin-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .site-header #navbar .mega-menu .mega-menu-list-holder a {
        padding: 5px 15px 5px 40px;
    }

    .site-header #navbar .mega-menu .mega-menu-box-title {
        font-size: 14px;
        font-size: 0.875rem;
        text-transform: uppercase;
        display: block;
        border-bottom: 1px dotted #b3b3b3;
        padding: 0 0 4px 5px;
        margin: 0 25px 8px 25px;
    }
}

@media screen and (min-width: 992px) {
    .site-header .navbar-header .open-btn {
        display: none;
    }

    .site-header #navbar .close-navbar {
        display: none;
    }
}

@media (max-width: 991px) {
    .site-header {
        /* class for show hide navigation */
    }

    .site-header .container {
        width: 100%;
    }

    .site-header .navbar-header button {
        background-color: #cd211d;
        width: 40px;
        height: 35px;
        border: 0;
        padding: 5px 10px;
        outline: 0;
        position: absolute;
        right: 15px;
        top: 6px;
        z-index: 20;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        border-radius: 3px;
    }

    .site-header .navbar-header button span {
        background-color: #fff;
        display: block;
        height: 2px;
        margin-bottom: 5px;
    }

    .site-header .navbar-header button span:last-child {
        margin: 0;
    }

    .site-header #navbar {
        background: #fff;
        display: block !important;
        width: 280px;
        height: 100% !important;
        margin: 0;
        padding: 0;
        border-left: 1px solid #cccccc;
        border-right: 1px solid #cccccc;
        position: fixed;
        right: -330px;
        top: 0;
        z-index: 100;
    }

    .site-header #navbar ul a {
        color: #000;
    }

    .site-header #navbar ul a:hover,
    .site-header #navbar ul li.current a {
        color: #cd211d;
    }

    .site-header #navbar .navbar-nav {
        height: 100%;
        overflow: auto;
    }

    .site-header #navbar .close-navbar {
        background-color: #fff;
        width: 40px;
        height: 40px;
        color: #000;
        border: 0;
        outline: none;
        position: absolute;
        left: -41px;
        top: 90px;
        z-index: 20;
    }

    .site-header #navbar .close-navbar .ti-close {
        position: relative;
        top: 1px;
    }

    .site-header #navbar > ul > li {
        border-bottom: 1px solid #f2f2f2;
    }

    .site-header #navbar > ul > li > a {
        padding: 10px 15px 10px 35px;
    }

    .site-header .slideInn {
        right: 0 !important;
    }
}

@media (max-width: 767px) {
    .site-header .navbar-header .navbar-brand {
        font-size: 24px;
    }

    .site-header #navbar .navbar-nav {
        margin: 0;
    }
}

@media (max-width: 991px) {
    .site-header .navbar-collapse.collapse {
        display: none;
    }

    .site-header .navbar-collapse.collapse.in {
        display: block;
    }

    .site-header .navbar-header .collapse,
    .site-header .navbar-toggle {
        display: block;
    }

    .site-header .navbar-header {
        float: none;
    }

    .site-header .navbar-right {
        float: none;
    }

    .site-header .navbar-nav {
        float: none;
    }

    .site-header .navbar-nav > li {
        float: none;
    }
}

@media (max-width: 991px) {
    .page-wrapper {
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
    }

    .body-overlay:before {
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 10;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
    }
}

/*---------------------------------------
	#header-style-1
----------------------------------------*/
.header-style-1, .header-style-2, .header-style-3 {
    /*** cart-search-contact ***/
}

@media screen and (min-width: 992px) {
    .header-style-1, .header-style-2, .header-style-3 {
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 10;
    }
}

.header-style-1 .navbar-brand img, .header-style-2 .navbar-brand img, .header-style-3 .navbar-brand img {
    max-width: 151px;
}

.header-style-1 .navigation, .header-style-2 .navigation, .header-style-3 .navigation {
    background: transparent;
}

@media screen and (min-width: 992px) {
    .header-style-1 .navigation, .header-style-2 .navigation, .header-style-3 .navigation {
        padding: 0 60px 0 45px;
        /*border-bottom: 1px solid rgba(255, 255, 255, 0.2);*/
    }

    .header-style-1 .navbar-brand, .header-style-2 .navbar-brand, .header-style-3 .navbar-brand {
        padding-top: 0;
        padding-bottom: 0;
        height: auto;
        margin-top: 35px;
        margin-left: -22px !important;
    }

    .header-style-1 #navbar > ul > li > a, .header-style-2 #navbar > ul > li > a, .header-style-3 #navbar > ul > li > a {
        color: #fff;
        padding: 46px 15px;
        position: relative;
    }

    .header-style-1 #navbar > ul > li > a:before, .header-style-2 #navbar > ul > li > a:before, .header-style-3 #navbar > ul > li > a:before {
        content: "";
        background: transparent;
        width: 80%;
        height: 35px;
        border: 2px solid #cd211d;
        border-radius: 6px;
        position: absolute;
        left: 10%;
        bottom: calc(50% - 17px);
        opacity: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
        z-index: -1;
    }

    .header-style-1 #navbar > ul > li.current-menu-parent > a, .header-style-2 #navbar > ul > li.current-menu-parent > a, .header-style-3 #navbar > ul > li.current-menu-parent > a {
        font-weight: 600;
        color: #cd211d;
    }

    .header-style-1 #navbar > ul > li.current-menu-parent > a:before, .header-style-2 #navbar > ul > li.current-menu-parent > a:before, .header-style-3 #navbar > ul > li.current-menu-parent > a:before,
    .header-style-1 #navbar > ul > li.current-menu-item > a:before,
    .header-style-2 #navbar > ul > li.current-menu-item > a:before,
    .header-style-3 #navbar > ul > li.current-menu-item > a:before {
        opacity: 1;
    }

    .header-style-1 #navbar ul.sub-menu li.current-menu-parent > a, .header-style-2 #navbar ul.sub-menu li.current-menu-parent > a, .header-style-3 #navbar ul.sub-menu li.current-menu-parent > a {
        color: #cd211d;
    }
}

@media screen and (min-width: 1200px) {
    .header-style-1 #navbar > ul > li > a, .header-style-2 #navbar > ul > li > a, .header-style-3 #navbar > ul > li > a {
        padding: 46px 20px;
    }
}

@media screen and (min-width: 1365px) {
    .header-style-1 #navbar > ul > li > a, .header-style-2 #navbar > ul > li > a, .header-style-3 #navbar > ul > li > a {
        padding: 46px 25px;
    }
}

@media (max-width: 991px) {
    .header-style-1 .navigation, .header-style-2 .navigation, .header-style-3 .navigation {
        background: #111;
        padding: 25px 0;
        /*border-bottom: 1px solid rgba(255, 255, 255, 0.2);*/
    }

    .header-style-1 .navbar-brand, .header-style-2 .navbar-brand, .header-style-3 .navbar-brand {
        height: auto;
        padding: 0 15px;
    }
}

@media (max-width: 1199px) {
    .header-style-1 .register-btn, .header-style-2 .register-btn, .header-style-3 .register-btn {
        display: none;
    }
}

.header-style-1 .cart-search-contact, .header-style-2 .cart-search-contact, .header-style-3 .cart-search-contact {
    position: absolute;
    right: 60px;
    top: 0;
    height: 113px;
    padding-top: 29px;
    padding-left: 15px;
}

@media (max-width: 991px) {
    .header-style-1 .cart-search-contact, .header-style-2 .cart-search-contact, .header-style-3 .cart-search-contact {
        right: 90px;
        top: 0;
        padding-top: 22px;
    }
}

@media (max-width: 450px) {
    .header-style-1 .cart-search-contact, .header-style-2 .cart-search-contact, .header-style-3 .cart-search-contact {
        display: none;
    }
}

.header-style-1 .cart-search-contact button, .header-style-2 .cart-search-contact button, .header-style-3 .cart-search-contact button {
    background: transparent;
    padding: 0;
    border: 0;
    outline: 0;
    position: relative;
}

.header-style-1 .cart-search-contact > div, .header-style-2 .cart-search-contact > div, .header-style-3 .cart-search-contact > div {
    float: left;
    position: relative;
}

.header-style-1 .cart-search-contact button > i, .header-style-2 .cart-search-contact button > i, .header-style-3 .cart-search-contact button > i {
    font-size: 20px;
    color: #fff;
}

.header-style-1 .cart-search-contact .header-search-form, .header-style-2 .cart-search-contact .header-search-form, .header-style-3 .cart-search-contact .header-search-form {
    position: absolute;
    width: 250px;
    right: 0;
    top: 84px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-shadow: -2px 18px 40px -9px #999999;
    box-shadow: -2px 18px 40px -9px #999999;
    z-index: 10;
}

@media (max-width: 991px) {
    .header-style-1 .cart-search-contact .header-search-form, .header-style-2 .cart-search-contact .header-search-form, .header-style-3 .cart-search-contact .header-search-form {
        top: 70px;
    }
}

@media (max-width: 767px) {
    .header-style-1 .cart-search-contact .header-search-form, .header-style-2 .cart-search-contact .header-search-form, .header-style-3 .cart-search-contact .header-search-form {
        top: 70px;
        right: 15px;
    }
}

.header-style-1 .cart-search-contact .header-search-form button i, .header-style-2 .cart-search-contact .header-search-form button i, .header-style-3 .cart-search-contact .header-search-form button i {
    color: #020202;
}

.header-style-1 .cart-search-contact .header-search-form-wrapper .fi:before, .header-style-2 .cart-search-contact .header-search-form-wrapper .fi:before, .header-style-3 .cart-search-contact .header-search-form-wrapper .fi:before {
    font-size: 22px;
    font-size: 1.375rem;
}

.header-style-1 .cart-search-contact .header-search-form-wrapper, .header-style-2 .cart-search-contact .header-search-form-wrapper, .header-style-3 .cart-search-contact .header-search-form-wrapper,
.header-style-1 .cart-search-contact .mini-cart,
.header-style-2 .cart-search-contact .mini-cart,
.header-style-3 .cart-search-contact .mini-cart {
    padding-top: 8px;
}

.header-style-1 .cart-search-contact form div, .header-style-2 .cart-search-contact form div, .header-style-3 .cart-search-contact form div {
    position: relative;
}

.header-style-1 .cart-search-contact form div button, .header-style-2 .cart-search-contact form div button, .header-style-3 .cart-search-contact form div button {
    position: absolute;
    right: 15px;
    top: 56%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-style-1 .cart-search-contact input, .header-style-2 .cart-search-contact input, .header-style-3 .cart-search-contact input {
    width: 100%;
    height: 50px;
    padding: 6px 20px;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}


.header-style-1 .cart-search-contact .mini-cart,
.header-style-2 .cart-search-contact .mini-cart,
.header-style-3 .cart-search-contact .mini-cart {
    margin-right: 25px;
}

@media (max-width: 767px) {

    .header-style-1 .cart-search-contact .mini-cart,
    .header-style-2 .cart-search-contact .mini-cart,
    .header-style-3 .cart-search-contact .mini-cart {
        margin-right: 0;
    }
}

@media (max-width: 450px) {

    .header-style-1 .cart-search-contact .mini-cart,
    .header-style-2 .cart-search-contact .mini-cart,
    .header-style-3 .cart-search-contact .mini-cart {
        display: none;
    }
}

.header-style-1 .cart-search-contact .mini-cart .fi:before, .header-style-2 .cart-search-contact .mini-cart .fi:before, .header-style-3 .cart-search-contact .mini-cart .fi:before {
    font-size: 25px;
    font-size: 1.5625rem;
}

.header-style-1 .cart-search-contact .mini-cart .cart-count, .header-style-2 .cart-search-contact .mini-cart .cart-count, .header-style-3 .cart-search-contact .mini-cart .cart-count {
    background: #cd211d;
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 10px;
    font-size: 0.625rem;
    color: white;
    position: absolute;
    top: 0;
    right: -5px;
    border-radius: 50%;
}

.header-style-1 .cart-search-contact .mini-cart-content, .header-style-2 .cart-search-contact .mini-cart-content, .header-style-3 .cart-search-contact .mini-cart-content {
    background: #fff;
    width: 300px;
    z-index: 10;
    position: absolute;
    right: 0;
    top: 84px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-shadow: -2px 18px 40px -9px #999999;
    box-shadow: -2px 18px 40px -9px #999999;
}

@media (max-width: 991px) {
    .header-style-1 .cart-search-contact .mini-cart-content, .header-style-2 .cart-search-contact .mini-cart-content, .header-style-3 .cart-search-contact .mini-cart-content {
        top: 70px;
    }
}

@media (max-width: 767px) {
    .header-style-1 .cart-search-contact .mini-cart-content, .header-style-2 .cart-search-contact .mini-cart-content, .header-style-3 .cart-search-contact .mini-cart-content {
        top: 70px;
    }
}

@media (max-width: 450px) {
    .header-style-1 .cart-search-contact .mini-cart-content, .header-style-2 .cart-search-contact .mini-cart-content, .header-style-3 .cart-search-contact .mini-cart-content {
        right: auto;
        left: -185px;
    }
}

.header-style-1 .cart-search-contact .mini-cart-content p, .header-style-2 .cart-search-contact .mini-cart-content p, .header-style-3 .cart-search-contact .mini-cart-content p {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #020202;
    margin: 0;
    text-transform: uppercase;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-items, .header-style-2 .cart-search-contact .mini-cart-content .mini-cart-items, .header-style-3 .cart-search-contact .mini-cart-content .mini-cart-items {
    padding: 25px 20px;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item, .header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item, .header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item {
    padding-top: 15px;
    margin-top: 15px;
    /*border-top: 1px solid #efefef;*/
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item:first-child, .header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item:first-child, .header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item:first-child {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-image, .header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-image, .header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-image {
    width: 50px;
    height: 50px;
    border: 2px solid #f3f3f3;
    float: left;
    margin-right: 15px;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-image a, .header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-image a, .header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-image a,
.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-image img,
.header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-image img,
.header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-image img {
    display: block;
    width: 46px;
    height: 46px;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-des, .header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-des, .header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-des {
    position: relative;
    overflow: hidden;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-des a, .header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-des a, .header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-des a {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: left;
    color: #020202;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-des a:hover, .header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-des a:hover, .header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-des a:hover {
    color: #cd211d;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-des .mini-cart-item-price, .header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-des .mini-cart-item-price, .header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-des .mini-cart-item-price {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #888;
    display: block;
    margin-top: 3px;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-item-des .mini-cart-item-quantity, .header-style-2 .cart-search-contact .mini-cart-content .mini-cart-item-des .mini-cart-item-quantity, .header-style-3 .cart-search-contact .mini-cart-content .mini-cart-item-des .mini-cart-item-quantity {
    font-size: 12px;
    font-size: 0.75rem;
    color: #444;
    display: block;
    position: absolute;
    right: 0;
    top: 2px;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-action, .header-style-2 .cart-search-contact .mini-cart-content .mini-cart-action, .header-style-3 .cart-search-contact .mini-cart-content .mini-cart-action {
    padding: 20px 0 30px;
    /*border-top: 1px solid #efefef;*/
    text-align: center;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-action .theme-btn-s2, .header-style-2 .cart-search-contact .mini-cart-content .mini-cart-action .theme-btn-s2, .header-style-3 .cart-search-contact .mini-cart-content .mini-cart-action .theme-btn-s2, .header-style-1 .cart-search-contact .mini-cart-content .mini-cart-action .theme-btn-s4, .header-style-2 .cart-search-contact .mini-cart-content .mini-cart-action .theme-btn-s4, .header-style-3 .cart-search-contact .mini-cart-content .mini-cart-action .theme-btn-s4, .header-style-1 .cart-search-contact .mini-cart-content .mini-cart-action .theme-btn-s5, .header-style-2 .cart-search-contact .mini-cart-content .mini-cart-action .theme-btn-s5, .header-style-3 .cart-search-contact .mini-cart-content .mini-cart-action .theme-btn-s5 {
    float: right;
}

.header-style-1 .cart-search-contact .mini-cart-content .mini-cart-action .mini-checkout-price, .header-style-2 .cart-search-contact .mini-cart-content .mini-cart-action .mini-checkout-price, .header-style-3 .cart-search-contact .mini-cart-content .mini-cart-action .mini-checkout-price {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #020202;
    display: inline-block;
}

.header-style-1 .cart-search-contact .mini-cart-content-toggle, .header-style-2 .cart-search-contact .mini-cart-content-toggle, .header-style-3 .cart-search-contact .mini-cart-content-toggle,
.header-style-1 .cart-search-contact .header-search-content-toggle,
.header-style-2 .cart-search-contact .header-search-content-toggle,
.header-style-3 .cart-search-contact .header-search-content-toggle {
    opacity: 1;
    visibility: visible;
    right: 0;
}

.header-style-1 .cart-search-contact .cart-toggle-btn, .header-style-2 .cart-search-contact .cart-toggle-btn, .header-style-3 .cart-search-contact .cart-toggle-btn,
.header-style-1 .cart-search-contact .search-toggle-btn,
.header-style-2 .cart-search-contact .search-toggle-btn,
.header-style-3 .cart-search-contact .search-toggle-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

/** header-style-1 .topbar ***/

.header-style-1 .topbar {
    background-color: #fff;
    padding: 18px 0px 5px 0px;
}

@media (max-width: 991px) {
    .header-style-1 .topbar {
        text-align: center;
        padding: 15px 0 25px;
    }
}

.header-style-1 .social p {
    line-height: 16px;
}

.header-style-1 .social p a {
    font-weight: bold;
    /*border-bottom: 1px solid #cd211d;*/
}

.header-style-1 .social span {
    padding-right: 20px;
    position: relative;
    top: -6px;
    display: inline-block;
}

@media (max-width: 1199px) {
    .header-style-1 .social span {
        display: none;
    }
}

.header-style-1 .social ul {
    display: inline-block;
}

@media (max-width: 1199px) {
    .header-style-1 .social ul {
        margin-left: 75px;
    }
}

@media (max-width: 991px) {
    .header-style-1 .social ul {
        margin-left: 0;
    }
}

.header-style-1 .social a {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #020202;
    display: inline-block;
}

.header-style-1 .social ul li {
    float: left;
}

.header-style-1 .social ul > li + li {
    margin-left: 15px;
}

.header-style-1 .social a:hover {
    color: #cd211d;
}

.header-style-1 .link-donate {
    text-align: right;
}

@media (max-width: 991px) {
    .header-style-1 .link-donate {
        text-align: center;
    }
}

.header-style-1 .link-donate ul {
    display: inline-block;
}

@media (max-width: 991px) {
    .header-style-1 .link-donate ul {
        padding: 15px 0;
    }
}

.header-style-1 .link-donate ul li {
    float: left;
}

@media (max-width: 991px) {
    .header-style-1 .link-donate ul li {
        float: none;
    }
}

.header-style-1 .link-donate ul > li + li {
    position: relative;
    margin-left: 15px;
    padding-left: 15px;
}

@media (max-width: 991px) {
    .header-style-1 .link-donate ul > li + li {
        margin: 3px 0 0;
        padding: 0;
    }
}

.header-style-1 .link-donate ul > li + li:before {
    content: "";
    background-color: #020202;
    width: 2px;
    height: 13px;
    position: absolute;
    left: 0;
    top: 5px;
}

@media (max-width: 991px) {
    .header-style-1 .link-donate ul > li + li:before {
        display: none;
    }
}

.header-style-1 .link-donate ul a {
    font-size: 14px;
    font-size: 0.875rem;
    color: #020202;
    font-weight: 600;
}

.header-style-1 .link-donate ul a:hover {
    color: #cd211d;
}

.header-style-1 .register-btn-wrap {
    float: right;
}

@media (max-width: 991px) {
    .header-style-1 .register-btn-wrap {
        float: none;
    }
}

.header-style-1 .register-btn-2 {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #cd211d;
    /*border-bottom: 1px solid #cd211d;*/
    text-transform: uppercase;
}


/*---------------------------------------
	#header-style-2
----------------------------------------*/
@media screen and (min-width: 992px) {
    .header-style-2 {
        position: relative;
    }

    .header-style-2 #navbar > ul > li > a {
        font-weight: 600;
        color: #020202;
        position: relative;
    }

    .header-style-2 #navbar > ul > li > a:before {
        content: "";
        background-color: #e2e2e2;
        border: 0;
        width: 80%;
        height: 28%;
        position: absolute;
        left: 10%;
        top: 36%;
        border-radius: 6px;
        z-index: -1;
        opacity: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
    }

    .header-style-2 #navbar > ul > li > a:hover:before {
        opacity: 1;
    }

    .header-style-2 #navbar > ul > li.current-menu-parent > a:before,
    .header-style-2 #navbar > ul > li.current-menu-item > a:before {
        opacity: 1;
    }

    .header-style-2 #navbar > ul .sub-menu li.current-menu-item a {
        color: #cd211d;
    }

    .header-style-2 .cart-search-contact button > i {
        color: #1c1c1c;
    }

    .header-style-2 .cart-search-contact {
        border-color: #e2e2e2;
    }

    .header-style-2 #navbar > ul .sub-menu {
        background-color: #1b2b57;
        /*border-left: 1px solid rgba(255, 255, 255, 0.2);*/
        /*border-bottom: 1px solid rgba(255, 255, 255, 0.2);*/
        /*border-right: 1px solid rgba(255, 255, 255, 0.2);*/
    }

    .header-style-2 #navbar > ul > li:hover > .sub-menu {
        top: 101%;
    }

    .header-style-2 #navbar > ul > li .sub-menu a {
        color: #fff;
    }

    .header-style-2 #navbar > ul > li > ul.sub-menu:before {
        border-color: transparent transparent #1c1c1c transparent;
    }
}

@media (max-width: 991px) {
    .header-style-2 .navigation {
        background-color: #fff;
    }

    .header-style-2 .cart-search-contact button > i {
        color: #1c1c1c;
    }

    .header-style-2 .cart-search-contact {
        border-color: #e2e2e2;
    }
}

/**.header-style-2 .upper-topbar**/
.header-style-2 .upper-topbar {
    background-color: #1b2b57;
    padding: 10px 0;
    /*border-bottom: 1px solid rgb(255 255 255 / 13%);*/
}

@media (max-width: 767px) {
    .header-style-2 .upper-topbar {
        text-align: center;
        padding: 15px 0 10px;
    }
}


.header-style-2 .upper-topbar p {
    color: #bbbdc8;
    font-size: 15px;
    margin: 0;
    font-weight: 700;
}

@media (max-width: 767px) {
    .header-style-2 .upper-topbar p {
        font-size: 13px;
        font-size: 0.86667rem;
    }
}

.header-style-2 .upper-topbar .social {
    float: right;
}

.header-style-2 .upper-topbar .social ul {
    display: inline-block;
}

.header-style-2 .upper-topbar .social a {
    background: rgba(255, 255, 255, 0.2);
    font-size: 13px;
    font-size: 0.8125rem;
    color: #fff;
    padding: 5px 6px 1px;
    display: inline-block;
    border-radius: 5px;
}

.header-style-2 .upper-topbar .social ul li {
    float: left;
}

.header-style-2 .upper-topbar .social ul > li + li {
    margin-left: 15px;
}

.header-style-2 .upper-topbar .social a:hover {
    color: #cd211d;
}

@media (max-width: 767px) {
    .header-style-2 .upper-topbar .social {
        float: none;
        display: inline-block;
        margin-top: 5px;
    }
}

.header-style-2 .upper-topbar .social li {
    margin-right: 15px;
    float: left;
}

.header-style-2 .upper-topbar .social ul > li + li {
    margin-left: 15px;
}

@media (max-width: 767px) {
    .header-style-2 .upper-topbar .social li {
        margin-right: 8px;
    }
}

.header-style-2 .upper-topbar .social li:last-child {
    margin-right: 0;
}


.header-style-2 .upper-topbar .social a:hover {
    color: #fff;
    background-color: #2c3b91;
}

.header-style-2 .lower-topbar {
    background-color: rgb(246 249 255);
    padding: 10px 0;
    position: relative;
    /*border-bottom: 1px solid #e2e2e2;*/
}

.header-style-2 .lower-topbar .container {
    position: relative;
    z-index: 10;
}

.header-style-2 .lower-topbar:before {
    content: "";
    background: rgb(27 43 87);
    width: 124%;
    height: 100%;
    position: absolute;
    left: -70%;
    right: auto;
    top: 0;
    -webkit-transform: skewX(-30deg);
    -moz-transform: skewX(-30deg);
    -o-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    transform: skewX(-30deg);
}

@media (max-width: 991px) {
    .header-style-2 .lower-topbar {
        padding: 20px 0 10px;
    }
}

.header-style-2 .lower-topbar .info-bar {
    float: right;
    overflow: hidden;
}

@media (max-width: 991px) {
    .header-style-2 .lower-topbar .info-bar {
        display: inline-block;
        float: none;
    }
}

@media (max-width: 991px) {
    .header-style-2 .lower-topbar .info-bar-wrapper {
        text-align: center;
        margin-top: 20px;
        padding-top: 15px;
        /*border-top: 1px solid #e8e8e8;*/
    }
}


.header-style-2 .lower-topbar .info-bar {
    float: right;
    overflow: hidden;
    padding-top: 20px;
}

@media (max-width: 991px) {
    .header-style-2 .lower-topbar .info-bar {
        display: inline-block;
        float: none;
    }
}

@media (max-width: 991px) {
    .header-style-2 .lower-topbar .info-bar-wrapper {
        text-align: center;
        margin-top: 20px;
        padding-top: 15px;
        /*border-top: 1px solid #e8e8e8;*/
    }
}

.header-style-2 .info-bar .info-box {
    float: left;
    margin-right: 60px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .header-style-2 .info-bar .info-box {
        margin-right: 45px;
    }
}

@media (max-width: 991px) {
    .header-style-2 .info-bar .info-box {
        margin-right: 25px;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .header-style-2 .info-bar .info-box {
        float: none;
        margin: 0 0 10px;
    }
}

.header-style-2 .info-bar .info-box:last-child {
    margin: 0;
}

.header-style-2 .info-bar .icon {
    float: left;
    margin-right: 20px;
    margin-top: 8px;
}

@media (max-width: 1199px) {
    .header-style-2 .info-bar .icon {
        margin-right: 12px;
    }
}

@media (max-width: 991px) {
    .header-style-2 .info-bar .icon {
        margin-right: 8px;
    }
}

.header-style-2 .info-bar .icon .fi:before {
    font-size: 30px;
}

@media (max-width: 1199px) {
    .header-style-2 .info-bar .icon .fi:before {
        font-size: 35px;
    }
}

@media (max-width: 991px) {
    .header-style-2 .info-bar .icon .fi:before {
        font-size: 30px;
        font-size: 2rem;
    }
}

.header-style-2 .info-bar .details {
    float: left;
}

.header-style-2 .info-bar .details p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin: 5px 0 0;
}

@media (max-width: 1199px) {
    .header-style-2 .info-bar .details p {
        font-size: 14px;
        font-size: 0.93333rem;
    }
}

@media (max-width: 991px) {
    .header-style-2 .info-bar .details p {
        margin: 2px 0 0;
    }
}

.header-style-2 .info-bar .details span {
    font-size: 14px;
    font-size: 0.93333rem;
    color: #868484;
    font-style: italic;
}

@media (max-width: 1199px) {
    .header-style-2 .info-bar .details span {
        font-size: 12px;
        font-size: 0.8rem;
        position: relative;
        top: -5px;
    }
}

/*---------------------------------------
	#header-style-3
----------------------------------------*/
.header-style-3 .topbar {
    background-color: #fff;
    padding: 11px 0;
}

@media (max-width: 991px) {
    .header-style-3 .topbar {
        text-align: center;
        padding: 15px 0 25px;
    }
}

.header-style-3 .social span {
    padding-right: 20px;
    position: relative;
    top: -6px;
    display: inline-block;
}

@media (max-width: 1199px) {
    .header-style-3 .social span {
        display: none;
    }
}

.header-style-3 .social ul {
    display: inline-block;
}

@media (max-width: 1199px) {
    .header-style-3 .social ul {
        margin-left: 75px;
    }
}

@media (max-width: 991px) {
    .header-style-3 .social ul {
        margin-left: 0;
    }
}

.header-style-3 .social a {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #020202;
    display: inline-block;
}

.header-style-3 .social ul li {
    float: left;
}

.header-style-3 .social ul > li + li {
    margin-left: 15px;
}

.header-style-3 .social a:hover {
    color: #cd211d;
}

.header-style-3 .link-donate ul {
    display: inline-block;
}

@media (max-width: 991px) {
    .header-style-3 .link-donate ul {
        padding: 15px 0;
    }
}

.header-style-3 .link-donate ul li {
    float: left;
}

@media (max-width: 991px) {
    .header-style-3 .link-donate ul li {
        float: none;
    }
}

.header-style-3 .link-donate ul > li + li {
    position: relative;
    margin-left: 15px;
    padding-left: 15px;
}

@media (max-width: 991px) {
    .header-style-3 .link-donate ul > li + li {
        margin: 3px 0 0;
        padding: 0;
    }
}

.header-style-3 .link-donate ul > li + li:before {
    content: "";
    background-color: #020202;
    width: 2px;
    height: 13px;
    position: absolute;
    left: 0;
    top: 5px;
}

@media (max-width: 991px) {
    .header-style-3 .link-donate ul > li + li:before {
        display: none;
    }
}

.header-style-3 .link-donate ul a {
    font-size: 14px;
    font-size: 0.875rem;
    color: #020202;
    font-weight: 600;
}

.header-style-3 .link-donate ul a:hover {
    color: #cd211d;
}

.header-style-3 .register-btn-wrap {
    float: right;
}

@media (max-width: 991px) {
    .header-style-3 .register-btn-wrap {
        float: none;
    }
}

.header-style-3 .register-btn-2 {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #cd211d;
    border-bottom: 1px solid #cd211d;
    text-transform: uppercase;
}

@media screen and (min-width: 992px) {
    .header-style-3 .navbar-brand {
        position: absolute;
        top: -86px;
        left: 0;
    }

    .header-style-3 #navbar {
        margin-left: 150px;
    }

    .header-style-3 #navbar > ul > li > a {
        padding: 35px 20px;
    }

    .header-style-3 .cart-search-contact {
        height: 91px;
        right: 0;
        padding-top: 20px;
    }

    .header-style-3 .cart-search-contact .mini-cart {
        margin-right: 0;
    }

    .header-style-3 .cart-search-contact .mini-cart-content,
    .header-style-3 .cart-search-contact .header-search-form {
        top: 71px;
    }
}

@media (max-width: 991px) {
    .header-style-3 .navbar-brand img {
        max-width: 100px;
    }

    .header-style-3 .navigation {
        padding: 0;
    }
}

/**.header-style-1 .upper-topbarr**/
/*.header-style-1 .upper-topbarr {*/
/*    background-color: #1b2b57;*/
/*    padding: 6px 0;*/
/*    border-bottom: 1px solid rgb(255 255 255 / 13%);*/
/*}*/

@media (max-width: 767px) {
    .header-style-1 .upper-topbarr {
        text-align: center;
        padding: 15px 0 10px;
    }
}


.header-style-1 .upper-topbarr p {
    color: #bbbdc8;
    font-size: 15px;
    margin: 0;
    font-style: italic;
}

@media (max-width: 767px) {
    .header-style-1 .upper-topbarr p {
        font-size: 13px;
        font-size: 0.86667rem;
    }
}

.header-style-1 .upper-topbarr .social {
    float: right;
}

.header-style-1 .upper-topbarr .social ul {
    display: inline-block;
}

.header-style-1 .upper-topbarr .social a {
    background: rgba(255, 255, 255, 0.2);
    font-size: 13px;
    font-size: 0.8125rem;
    color: #fff;
    padding: 5px 6px 1px;
    display: inline-block;
    border-radius: 5px;
}

.header-style-1 .upper-topbarr .social ul li {
    float: left;
}

.header-style-1 .upper-topbarr .social ul > li + li {
    margin-left: 15px;
}

.header-style-1 .upper-topbarr .social a:hover {
    color: #cd211d;
}

@media (max-width: 767px) {
    .header-style-1 .upper-topbarr .social {
        float: none;
        display: inline-block;
        margin-top: 5px;
    }
}

.header-style-1 .upper-topbarr .social li {
    margin-right: 15px;
    float: left;
}

.header-style-1 .upper-topbarr .social ul > li + li {
    margin-left: 15px;
}

@media (max-width: 767px) {
    .header-style-1 .upper-topbarr .social li {
        margin-right: 8px;
    }
}

.header-style-1 .upper-topbarr .social li:last-child {
    margin-right: 0;
}


.header-style-1 .upper-topbarr .social a:hover {
    color: #fff;
    background-color: #2c3b91;
}

/*--------------------------------------------------------------
#0.4	hero slider
--------------------------------------------------------------*/
.hero-slider {
    width: 100%;
    height: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
}

@media (max-width: 991px) {
    .hero-slider {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 500px;
    }
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: transparent;
    margin-top: -100px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    line-height: 50px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-border-radius: 0%;
    -moz-border-radius: 0%;
    -o-border-radius: 0%;
    -ms-border-radius: 0%;
    border-radius: 0%;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

@media (max-width: 767px) {
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-button-prev {
    right: 90px;
    left: auto;
}

.hero-slider .swiper-button-prev:before {
    font-family: "Flaticon";
    content: "\f101";
    font-size: 20px;
    color: #fff;
}

.hero-slider .swiper-button-next {
    right: 40px;
}

.hero-slider .swiper-button-next:before {
    font-family: "Flaticon";
    content: "\f102";
    font-size: 20px;
    color: #fff;
}

.hero-slider .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    text-align: center;
    line-height: 15px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.hero-slider .swiper-pagination-bullet-active {
    color: #fff;
    background: #007aff;
}

/*----------------------------------
	#hero-style-1
-----------------------------------*/
.hero-style-1 {
    height: 100vh;
    min-height: 700px;
    position: relative;
}

.hero-style-1:before {
    content: "";
    background: rgba(255, 255, 255, 0.2);
    width: 1px;
    height: calc(100% - 40px);
    position: absolute;
    left: 100px;
    bottom: 0;
    z-index: 10;
}

@media (max-width: 991px) {
    .hero-style-1:before {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-style-1 {
        height: 500px;
        min-height: auto;
    }
}

.hero-style-1 .slide-title {
    max-width: 815px;
}

.hero-style-1 .slide-title h2 {
    font-size: 75px;
    font-size: 4.6875rem;
    color: #fff;
    margin: 0 0 0.33em;
    line-height: 1em;
}

@media (max-width: 991px) {
    .hero-style-1 .slide-title h2 {
        font-size: 55px;
        font-size: 3.4375rem;
    }
}

@media (max-width: 767px) {
    .hero-style-1 .slide-title h2 {
        font-size: 45px;
        font-size: 2.8125rem;
    }
}

.hero-style-1 .slide-title h2 span {
    -webkit-text-fill-color: rgba(0, 0, 0, 0.01);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}

.hero-style-1 .slide-text {
    max-width: 615px;
}

.hero-style-1 .slide-text p {
    font-size: 18px;
    font-size: 1.125rem;
    color: #fff;
    margin: 0 0 2em;
}

@media (max-width: 767px) {
    .hero-style-1 .slide-text p {
        font-size: 16px;
        font-size: 1rem;
    }
}

.hero-style-1 .container {
    position: relative;
}

.hero-style-1 .video-btns {
    position: absolute;
    right: 15px;
    top: calc(50% - 33px);
}

@media (max-width: 991px) {
    .hero-style-1 .video-btns {
        display: none;
    }
}

.hero-style-1 .video-btns a {
    background-color: #cd211d;
    width: 75px;
    height: 75px;
    border-radius: 75px;
    text-align: center;
    line-height: 75px;
    display: inline-block;
    position: absolute;
    left: 25%;
    top: 33%;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
}

@media (max-width: 767px) {
    .hero-style-1 .video-btns a {
        width: 55px;
        height: 55px;
        border-radius: 55px;
    }
}

.hero-style-1 .video-btns a .fi:before {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
}

.hero-style-1 .video-btns a:after {
    content: "";
    width: 75px;
    height: 75px;
    border-radius: 75px;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: spineer 2s 1.5s infinite;
    animation: spineer 2s 1.5s infinite;
}

@media (max-width: 767px) {
    .hero-style-1 .video-btns a:after {
        width: 55px;
        height: 55px;
        border-radius: 55px;
    }
}

@-webkit-keyframes spineer {
    from {
        -webkit-box-shadow: 0 0 0 0 rgba(205, 33, 29, 0.99);
        box-shadow: 0 0 0 0 rgba(205, 33, 29, 0.99);
    }
    to {
        -webkit-box-shadow: 0 0 0 45px rgba(205, 33, 29, 0.01);
        box-shadow: 0 0 0 45px rgba(205, 33, 29, 0.01);
    }
}

@keyframes spineer {
    from {
        -webkit-box-shadow: 0 0 0 0 rgba(205, 33, 29, 0.99);
        box-shadow: 0 0 0 0 rgba(205, 33, 29, 0.99);
    }
    to {
        -webkit-box-shadow: 0 0 0 45px rgba(205, 33, 29, 0.01);
        box-shadow: 0 0 0 45px rgba(205, 33, 29, 0.01);
    }
}

.hero-style-1 .swiper-pagination .inner {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
    position: absolute;
    bottom: 20px;
    left: -46%;
    color: #929292;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 600px) {
    .hero-style-1 .swiper-pagination .inner {
        display: none;
    }
}

.hero-style-1 .swiper-pagination .swiper-pagination-current {
    color: #fff;
}

.hero-style-1 .social {
    position: absolute;
    left: 43px;
    top: 50%;
    z-index: 1;
}

@media (max-width: 991px) {
    .hero-style-1 .social {
        right: 32px !important;
        top: 31%;
    }
}

@media (max-width: 767px) {
    .hero-style-1 .social {
        display: none;
    }
}

.hero-style-1 .social:before {
    content: "";
    background-color: rgba(255, 255, 255, 0.2);
    width: 1px;
    height: 50px;
    position: absolute;
    top: -80px;
    left: 6px;
}

.hero-style-1 .social:after {
    content: "";
    background-color: rgba(255, 255, 255, 0.2);
    width: 1px;
    height: 50px;
    position: absolute;
    bottom: -80px;
    left: 6px;
}

.hero-style-1 .social a {
    font-size: 14px;
    font-size: 0.875rem;
    color: #fff;
}

.hero-style-1 .social ul > li + li {
    margin-top: 15px;
}

.hero-style-1 .social a:hover {
    color: #cd211d;
}

@media (max-width: 767px) {
    .hero-style-1 .swiper-button-prev,
    .hero-style-1 .swiper-button-next {
        display: block;
        margin-top: -95px;
    }
}

.hero-style-1 .scroll {
    position: absolute;
    bottom: 52px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 100;
}

@media (max-width: 991px) {
    .hero-style-1 .scroll {
        bottom: 5px;
    }

    .hero-style-1 .scroll a {
        height: 65px;
        line-height: 63px;
    }
}

@media (max-width: 767px) {
    .hero-style-1 .scroll {
        display: none;
    }
}

.hero-style-1 .scroll a {
    width: 30px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 3px solid #ffffff;
    color: #fff;
    border-radius: 50px;
    display: inline-block;
}

@media (max-width: 991px) {
    .hero-style-1 .scroll a {
        height: 65px;
        line-height: 63px;
    }
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0px;
    left: 29%;
    width: 100%;
    padding: 10px;
    height: 50px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/*----------------------------------
	#hero-style-2
-----------------------------------*/
.hero-style-2, .hero-style-3 {
    height: calc(100vh - 113px);
}

@media (max-width: 991px) {
    .hero-style-2, .hero-style-3 {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-style-2, .hero-style-3 {
        height: 500px;
    }
}

@media screen and (min-width: 992px) {
    .hero-style-2, .hero-style-3 {
        min-height: 600px;
    }

    .hero-style-2 .slide-inner > .container, .hero-style-3 .slide-inner > .container {
        margin-top: -110px;
    }
}

.hero-style-2 .slide-title, .hero-style-3 .slide-title {
    max-width: 615px;
}

.hero-style-2 .slide-title h2, .hero-style-3 .slide-title h2 {
    font-size: 75px;
    font-size: 4.6875rem;
    color: #fff;
    margin: 0 0 0.33em;
    line-height: 1em;
}

@media (max-width: 1199px) {
    .hero-style-2 .slide-title h2, .hero-style-3 .slide-title h2 {
        font-size: 55px;
        font-size: 3.4375rem;
    }
}

@media (max-width: 767px) {
    .hero-style-2 .slide-title h2, .hero-style-3 .slide-title h2 {
        font-size: 45px;
        font-size: 2.8125rem;
    }
}

.hero-style-2 .slide-text, .hero-style-3 .slide-text {
    max-width: 615px;
}

.hero-style-2 .slide-text p, .hero-style-3 .slide-text p {
    font-size: 18px;
    font-size: 1.125rem;
    color: #fff;
    margin: 0 0 2em;
}

@media (max-width: 767px) {
    .hero-style-2 .slide-text p, .hero-style-3 .slide-text p {
        font-size: 16px;
        font-size: 1rem;
    }
}

.hero-style-2 .container, .hero-style-3 .container {
    position: relative;
}

.hero-style-2 .social-container, .hero-style-3 .social-container {
    margin-top: -160px;
    z-index: 1;
    position: relative;
}

@media (max-width: 991px) {
    .hero-style-2 .social-container, .hero-style-3 .social-container {
        margin-top: -100px;
    }
}

.hero-style-2 .social-container span, .hero-style-3 .social-container span {
    color: white;
    padding-right: 20px;
    position: relative;
    top: -8px;
    display: inline-block;
}

.hero-style-2 .social, .hero-style-3 .social {
    z-index: 1;
}

@media (max-width: 767px) {
    .hero-style-2 .social, .hero-style-3 .social {
        display: none;
    }
}

.hero-style-2 .social ul, .hero-style-3 .social ul {
    display: inline-block;
}

.hero-style-2 .social a, .hero-style-3 .social a {
    background: rgba(255, 255, 255, 0.2);
    font-size: 13px;
    font-size: 0.8125rem;
    color: #fff;
    padding: 5px 6px 1px;
    display: inline-block;
    border-radius: 5px;
}

.hero-style-2 .social ul li, .hero-style-3 .social ul li {
    float: left;
}

.hero-style-2 .social ul > li + li, .hero-style-3 .social ul > li + li {
    margin-left: 15px;
}

.hero-style-2 .social a:hover, .hero-style-3 .social a:hover {
    color: #cd211d;
}

.hero-style-2 .swiper-button-next, .hero-style-3 .swiper-button-next,
.hero-style-2 .swiper-button-prev,
.hero-style-3 .swiper-button-prev {
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2) !important;
    display: inline-block;
    padding: 7px 15px;
    margin-top: -152px;
}

@media (max-width: 991px) {
    .hero-style-2 .swiper-button-next, .hero-style-3 .swiper-button-next,
    .hero-style-2 .swiper-button-prev,
    .hero-style-3 .swiper-button-prev {
        margin-top: -100px;
    }
}

@media (max-width: 767px) {
    .hero-style-2 .swiper-button-next, .hero-style-3 .swiper-button-next,
    .hero-style-2 .swiper-button-prev,
    .hero-style-3 .swiper-button-prev {
        margin-top: -95px;
    }
}


.hero-style-2 .swiper-button-prev,
.hero-style-3 .swiper-button-prev {
    right: 75px;
    border-radius: 5px 0 0 5px;
}

.hero-style-2 .swiper-button-next, .hero-style-3 .swiper-button-next {
    border-radius: 0 5px 05px 0;
}

/*----------------------------------
	#hero-style-3
-----------------------------------*/
.hero-style-3, .hero-style-2 {
    height: 920px;
}

@media (max-width: 991px) {
    .hero-style-3 {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-style-3 {
        height: 500px;
    }
}

@media screen and (min-width: 992px) {
    .hero-style-3 {
        min-height: 600px;
    }

    .hero-style-3 .slide-inner > .container {
        margin-top: 0;
    }
}

.hero-style-3 .slide-inner {
    text-align: center;
}

.hero-style-3 .slide-title,
.hero-style-3 .slide-text,
.hero-style-3 .slide-btns {
    display: inline-block;
    margin: 0 auto;
}

.hero-style-3 .pagi-arrow {
    z-index: 1;
    margin-top: -150px;
    position: relative;
    text-align: center;
}

@media (max-width: 991px) {
    .hero-style-3 .pagi-arrow {
        margin-top: -50px;
    }
}

.hero-style-3 .pagi-arrow .swiper-button-prev,
.hero-style-3 .pagi-arrow .swiper-button-next {
    margin-top: 0;
    right: auto;
    position: static;
}

@media (max-width: 991px) {
    .hero-style-3 .pagi-arrow .swiper-button-prev,
    .hero-style-3 .pagi-arrow .swiper-button-next {
        padding: 2px 8px;
    }
}

/*** main-slider-review **/
.main-slider-review {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 60px;
}

.main-slider-review ul {
    position: relative;
    display: block;
}

.main-slider-review ul li {
    position: relative;
    display: block;
    float: left;
}

.main-slider-review ul li + li {
    margin-left: -20px;
}

.main-slider-review ul li .img-box {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
}

.main-slider-review ul li .img-box img {
    width: 100%;
}

.main-slider-review .text-box {
    position: relative;
    display: block;
    margin-left: 10px;
    flex: 1;
}

.main-slider-review .text-box h2 {
    color: #ffffff;
    font-size: 22px;
    line-height: 30px;
    text-transform: capitalize;
}

.main-slider-review .text-box p {
    color: #ffffff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

/*** blur ****/

.blur-1,
.blur-2,
.blur-3 {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #cd211d;
    width: 285px;
    height: 285px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    z-index: 1;
}

@media only screen and (max-width: 1199px) {
    .blur1,
    .blur2 {
        display: none;
    }
}

.blur-2 {
    top: 25%;
    left: 0;
    bottom: auto;
    right: auto;
    opacity: 0.4;
    background-color: #cd211d;
}

.blur-3 {
    top: 45%;
    left: 42%;
    bottom: auto;
    right: auto;
    opacity: 0.4;
    background-color: #0aed8c;
}

/*--------------------------------------------------------------
#0.5	footer
--------------------------------------------------------------*/
.site-footer {
    background: url("../images/add/footer-bg.jpg") center center/cover no-repeat local;
    position: relative;
    font-size: 15px;
    overflow: hidden;
    /*** about-widget ***/
    /*** link-widget ***/
    /*** contact-widget ***/
    /*** newsletter-widget ***/
    /*** lower-footer ***/
}

.site-footer:before {
    content: "";
    background-color: rgb(27 43 87 / 93%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}


.site-footer .newsletter-area {
    padding-left: 0;
    padding-bottom: 5pc;
    padding-right: 0;
    padding-top: 5pc;
    top: 0.1875pc;
}

.site-footer,
.site-footer .newsletter-area {
    position: relative;
}

.site-footer ul {
    list-style: none;
}

.site-footer {
    background-color: #333b45;
    background-size: cover;
    font-size: 11.25pt;
    overflow: hidden;
}

.site-footer p,
.site-footer li {
    color: #c5c5c5;
}

@media (max-width: 767px) {
    .site-footer .newsletter-area {
        text-align: center;
        padding-left: 0;
        padding-bottom: 4.375pc;
        padding-right: 0;
        padding-top: 60px;
    }
}

.site-footer .newsletter-area .separator {
    background: rgba(255, 255, 255, 0.08);
    width: 11.875in;
    height: 0.0625pc;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.site-footer .newsletter-area .text {
    width: 3.020833333in;
    float: left;
}

@media (max-width: 767px) {
    .site-footer .newsletter-area .text {
        width: 100%;
        float: none;
    }
}

.site-footer .newsletter-area .text h3 {
    font-size: 2.25rem;
    color: #fff;
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 0;
    margin-top: -0.05em;
}

@media (max-width: 767px) {
    .site-footer .newsletter-area .text h3 {
        font-size: 30px;
    }
}

.site-footer .newsletter-area .text p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 0;
    margin-top: 0;
}

@media (max-width: 767px) {
    .site-footer .newsletter-area .text p {
        font-size: 17px;
    }
}

.site-footer .newsletter-area form {
    width: calc(100% - 290px);
    float: right;
    position: relative;
}

@media (max-width: 767px) {
    .site-footer .newsletter-area form {
        width: 100%;
        float: none;
        margin-top: 25px;
    }
}

.site-footer .newsletter-area form input {
    background-color: #fff;
    color: #687693;
    padding-bottom: 0.0625in;
    border-bottom-width: 0;
    padding-top: 0.0625in;
    border-style: none;
    border-image: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.site-footer .newsletter-area form input,
.site-footer .newsletter-area form button {
    height: 50px;
    margin-top: 0px;
    padding-left: 1.25pc;
    padding-right: 1.25pc;
    border-radius: 5px;
}

.site-footer .newsletter-area form button {
    background-color: #cd211d;
    padding-bottom: 0;
    padding-top: 0;
    font-size: 10.5pt;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    right: 0;
    top: 0;
    border-style: none;
    border-image: none;
    outline: 0;
    color: #fff;
}

.site-footer ul {
    list-style: none;
}

.site-footer p,
.site-footer li {
    color: #fff;
}

.site-footer .upper-footer {
    padding: 90px 0;
}

@media (max-width: 991px) {
    .site-footer .upper-footer {
        padding: 90px 0 20px;
    }
}

@media (max-width: 767px) {
    .site-footer .upper-footer {
        padding: 80px 0 10px;
    }
}

@media (max-width: 991px) {
    .site-footer .upper-footer .col {
        min-height: 235px;
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .site-footer .upper-footer .col {
        min-height: auto;
        margin-bottom: 25px;
    }
}

.site-footer .widget-title {
    margin-bottom: 30px;
    float: none;
}

@media (max-width: 767px) {
    .site-footer .widget-title {
        margin-bottom: 20px;
        margin-right: 170px;
    }
}

.site-footer .widget-title h3 {
    font-size: 20px;
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
    padding-bottom: 0.4em;
    text-transform: capitalize;
    position: relative;
}

@media (max-width: 991px) {
    .site-footer .widget-title h3 {
        padding-bottom: 0;
    }
}

.site-footer .about-widget .logo {
    max-width: 180px;
}

.site-footer .about-widget p {
    margin-bottom: 2em;
    line-height: 1.9em;
}

.site-footer .about-widget p:last-child {
    margin-bottom: 0;
}

.site-footer .about-widget .social-icons {
    overflow: hidden;
}

@media (max-width: 991px) {
    .site-footer .about-widget .social-icons {
        float: left;
        display: block;
        text-align: center;
    }
}

.site-footer .about-widget .social-icons ul {
    overflow: hidden;
    list-style: none;
}

@media (max-width: 991px) {
    .site-footer .about-widget .social-icons ul {
        display: inline-block;
    }
}

.site-footer .about-widget .social-icons ul li {
    float: left;
}

.site-footer .about-widget .social-icons ul > li + li {
    margin-left: 15px;
}

.site-footer .about-widget .social-icons ul a {
    background-color: #2c3b91;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
}

.site-footer .about-widget .social-icons ul a:hover {
    color: #cd211d;
}

.site-footer .link-widget {
    overflow: hidden;
}

@media screen and (min-width: 1200px) {
    .site-footer .link-widget {
        padding-left: 20px;
    }
}

@media (max-width: 1199px) {
    .site-footer .link-widget {
        padding-left: 20px;
    }
}

@media (max-width: 991px) {
    .site-footer .link-widget {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .site-footer .link-widget {
        max-width: 350px;
    }
}

.site-footer .link-widget ul {
    width: 50%;
    float: left;
}

.site-footer .link-widget ul li {
    position: relative;
}

.site-footer .link-widget ul a {
    color: #fff;
    font-weight: 500;
}

.site-footer .link-widget ul a:hover,
.site-footer .link-widget ul li:hover:before {
    text-decoration: underline;
}

.site-footer .link-widget ul > li + li {
    margin-top: 15px;
}

@media screen and (min-width: 1200px) {
    .site-footer .contact-widget {
        padding-left: 25px;
    }
}

.site-footer .contact-widget ul {
    margin-top: 25px;
}

.site-footer .contact-widget ul li {
    position: relative;
}

.site-footer .contact-widget ul > li + li {
    margin-top: 15px;
}

.site-footer .contact-widget li span {
    color: #fff;
    font-weight: 500;
}

.site-footer .newsletter-widget form {
    margin-top: 25px;
    position: relative;
}

.site-footer .newsletter-widget form input {
    background-color: #303030;
    height: 60px;
    color: #fff;
    padding: 6px 20px;
    border-radius: 5px;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.site-footer .newsletter-widget form .submit {
    position: absolute;
    right: 8px;
    top: 7px;
}

.site-footer .newsletter-widget form .submit button {
    background: #cd211d;
    width: 48px;
    height: 45px;
    border: 0;
    outline: 0;
    position: relative;
    border-radius: 5px;
    font-size: 20px;
    color: #fff;
}


.newsletter-area .contact-info {
    overflow: hidden;
    float: left;
}

@media (max-width: 991px) {
    .newsletter-area .contact-info {
        float: none;
    }
}

.newsletter-area .contact-info > div {
    float: left;
    position: relative;
    padding-left: 60px;
    padding-bottom: 5px;
    padding-top: 5px;
}

@media (max-width: 991px) {
    .newsletter-area .contact-info > div {
        padding-left: 45px;
    }
}

@media (max-width: 400px) {
    .newsletter-area .contact-info > div {
        float: none;
    }
}

.newsletter-area .contact-info > div + div {
    margin-left: 55px;
}

@media (max-width: 400px) {
    .newsletter-area .contact-info > div + div {
        margin-left: 0;
    }
}

.newsletter-area .contact-info i {
    position: absolute;
    left: 0;
}

.newsletter-area .contact-info .fi:before {
    font-size: 45px;
    font-size: 2.8125rem;
    color: #cd211d;
}

@media (max-width: 991px) {
    .newsletter-area .contact-info .fi:before {
        font-size: 35px;
        font-size: 2.1875rem;
    }
}

.newsletter-area .contact-info h4 {
    color: #ffffff;
    font-size: 24px;
    font-size: 1.5rem;
    margin: 0 0 0.3em;
}

@media (max-width: 991px) {
    .newsletter-area .contact-info h4 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.site-footer .instagram-widget > ul {
    overflow: hidden;
}

.site-footer .instagram-widget > ul > li img {
    max-width: 100%;
}

.site-footer .instagram-widget > ul > li {
    position: relative;
    width: 33.33%;
    float: left;
    border: 3px solid transparent;
    margin: -1px 0 0 -1px;
}

@media (max-width: 991px) {
    .site-footer .instagram-widget > ul > li {
        width: 25%;
    }

}

@media (max-width: 767px) {
    .site-footer .instagram-widget > ul > li {
        width: 14%;
    }
}

.site-footer .instagram-widget > ul > li a:before {
    content: "";
    background-color: rgba(205, 33, 29, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
}

.site-footer .instagram-widget > ul > li a:after {
    font-family: "Themify";
    content: "\e73d";
    font-size: 20px;
    font-size: 1.25rem;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
}

.site-footer .instagram-widget > ul > li a:hover:before {
    opacity: 1;
}

.site-footer .instagram-widget > ul > li a:hover:after {
    opacity: 1;
}


.site-footer .lower-footer {
    text-align: center;
    position: relative;
}

.site-footer .lower-footer .row {
    padding: 20px 0;
    position: relative;
}

.site-footer .lower-footer .row .separator {
    background: rgba(255, 255, 255, 0.1);
    width: calc(100% - 30px);
    height: 1px;
    position: absolute;
    left: 15px;
    top: 0;
}

.site-footer .lower-footer .copyright {
    display: inline-block;
    float: left;
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 991px) {
    .site-footer .lower-footer .copyright {
        float: none;
        display: block;
        margin: 0 0 20px;
    }
}

.site-footer .lower-footer .copyright a {
    color: #fff;
    text-decoration: underline;
}

.site-footer .lower-footer .extra-link {
    display: inline-block;
    float: right;
    overflow: hidden;
}

@media (max-width: 991px) {
    .site-footer .lower-footer .extra-link {
        float: none;
        display: block;
        text-align: center;
    }
}

.site-footer .lower-footer .extra-link ul {
    overflow: hidden;
    list-style: none;
}

@media (max-width: 991px) {
    .site-footer .lower-footer .extra-link ul {
        display: inline-block;
    }
}

.site-footer .lower-footer .extra-link ul li {
    float: left;
}

.site-footer .lower-footer .extra-link ul > li + li {
    margin-left: 35px;
    position: relative;
}

@media (max-width: 767px) {
    .site-footer .lower-footer .extra-link ul > li + li {
        margin-left: 15px;
    }
}

.site-footer .lower-footer .extra-link ul > li + li:before {
    content: "";
    background: #ede9e9;
    width: 15px;
    height: 1px;
    position: absolute;
    left: -25px;
    top: 11px;
}

@media (max-width: 767px) {
    .site-footer .lower-footer .extra-link ul > li + li:before {
        display: none;
    }
}

.site-footer .lower-footer .extra-link ul a {
    font-size: 14px;
    font-size: 0.875rem;
    color: #fff;
}

.site-footer .lower-footer .extra-link ul a:hover {
    text-decoration: underline;
}

.sticky-header {
    width: 100%;
    position: fixed;
    left: 0;
    top: -200px;
    z-index: 9999;
    opacity: 0;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
    -ms-transition: all 0.7s;
    transition: all 0.7s;
}

.sticky-on {
    opacity: 1;
    top: 0;
}

.header-style-1 .sticky-header, .header-style-2 .sticky-header, .header-style-3 .sticky-header {
    background-color: #1b2b57;
}

.header-style-2 .sticky-header {
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 30px 1px rgba(23, 46, 73, 0.09);
    box-shadow: 0px 0px 30px 1px rgba(23, 46, 73, 0.09);
}

@media screen and (min-width: 992px) {
    .header-style-3 .sticky-header .navbar-brand {
        top: 0;
        margin-top: 0;
    }

    .header-style-3 .sticky-header .navbar-brand img {
        max-width: 92px;
    }
}

/**.header-style-2 .upper-topbar**/
.header-style-1 .upper-topbar {
    /*background-color: #1a1a1a;*/
    padding: 12px 0;
    background-color: black;
    border-bottom: 1px solid #fff4;
}

@media (max-width: 767px) {
    .header-style-1 .upper-topbar {
        text-align: center;
        padding: 15px 0 10px;
    }
}


.header-style-1 .upper-topbar p {
    color: #9b9b9b;
    margin: 0;
    font-style: italic;
}

@media (max-width: 767px) {
    .header-style-1 .upper-topbar p {
        font-size: 13px;
        font-size: 0.86667rem;
    }
}

.header-style-1 .upper-topbar .social {
    float: right;
}

@media (max-width: 767px) {
    .header-style-1 .upper-topbar .social {
        float: none;
        display: inline-block;
        margin-top: 5px;
    }
}

.header-style-1 .upper-topbar .social li {
    margin-right: 15px;
    float: left;
}

.header-style-1 .upper-topbar .social ul > li + li {
    margin-left: 15px;
}

@media (max-width: 767px) {
    .header-style-1 .upper-topbar .social li {
        margin-right: 8px;
    }
}

.header-style-1 .upper-topbar .social li:last-child {
    margin-right: 0;
}

.header-style-1 .upper-topbar .social a {
    font-size: 18px;
    font-size: 1.2rem;
    color: #fff;
}

.header-style-1 .upper-topbar .social a:hover {
    color: #f6ba18;
}

.header-style-1 .lower-topbar {
    background-color: #fff;
    padding: 10px 0;
    position: relative;
}

.header-style-1 .lower-topbar .container {
    position: relative;
    z-index: 10;
}

.header-style-1 .lower-topbar:before {
    content: "";
    background: rgb(27 43 87 / 10%);
    width: 124%;
    height: 100%;
    position: absolute;
    left: -70%;
    right: auto;
    top: 0;
    -webkit-transform: skewX(-30deg);
    -moz-transform: skewX(-30deg);
    -o-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    transform: skewX(-30deg);
}

@media (max-width: 991px) {
    .header-style-1 .lower-topbar {
        padding: 20px 0 10px;
    }
}

.header-style-1 .lower-topbar .info-bar {
    float: right;
    overflow: hidden;
}

@media (max-width: 991px) {
    .header-style-1 .lower-topbar .info-bar {
        display: inline-block;
        float: none;
    }
}

@media (max-width: 991px) {
    .header-style-1 .lower-topbar .info-bar-wrapper {
        text-align: center;
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #e8e8e8;
    }
}


.header-style-1 .lower-topbar .info-bar {
    float: right;
    overflow: hidden;
    padding-top: 20px;
}

@media (max-width: 991px) {
    .header-style-1 .lower-topbar .info-bar {
        display: inline-block;
        float: none;
    }
}

@media (max-width: 991px) {
    .header-style-1 .lower-topbar .info-bar-wrapper {
        text-align: center;
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #e8e8e8;
    }
}

.header-style-1 .info-bar .info-box {
    float: left;
    margin-right: 60px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .header-style-1 .info-bar .info-box {
        margin-right: 45px;
    }
}

@media (max-width: 991px) {
    .header-style-1 .info-bar .info-box {
        margin-right: 25px;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .header-style-1 .info-bar .info-box {
        float: none;
        margin: 0 0 10px;
    }
}

.header-style-1 .info-bar .info-box:last-child {
    margin: 0;
}

.header-style-1 .info-bar .icon {
    float: left;
    margin-right: 20px;
    margin-top: 8px;
}

@media (max-width: 1199px) {
    .header-style-1 .info-bar .icon {
        margin-right: 12px;
    }
}

@media (max-width: 991px) {
    .header-style-1 .info-bar .icon {
        margin-right: 8px;
    }
}

.header-style-1 .info-bar .icon .fi:before {
    font-size: 30px;
    color: #1b2b57;
}

@media (max-width: 1199px) {
    .header-style-1 .info-bar .icon .fi:before {
        font-size: 35px;
    }
}

@media (max-width: 991px) {
    .header-style-1 .info-bar .icon .fi:before {
        font-size: 30px;
        font-size: 2rem;
    }
}

.header-style-1 .info-bar .details {
    float: left;
}

.header-style-1 .info-bar .details p {
    font-size: 16px;
    font-size: 1.06667rem;
    font-weight: 500;
    color: #000;
    margin: 5px 0 0;
}

@media (max-width: 1199px) {
    .header-style-1 .info-bar .details p {
        font-size: 14px;
        font-size: 0.93333rem;
    }
}

@media (max-width: 991px) {
    .header-style-1 .info-bar .details p {
        margin: 2px 0 0;
    }
}

.header-style-1 .info-bar .details span {
    font-size: 14px;
    font-size: 0.93333rem;
    color: #868484;
    font-style: italic;
}

@media (max-width: 1199px) {
    .header-style-1 .info-bar .details span {
        font-size: 12px;
        font-size: 0.8rem;
        position: relative;
        top: -5px;
    }
}

#newsletter {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    position: relative;
}

#newsletter2 {
    padding-top: 30px;
}

#newsletter h5 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 7px;
    color: #1b2b57;
}

#newsletter p.error {
    font-size: 12px;
    display: inline-block;
    position: absolute;
    padding: 3px 10px;
    background: #fff;
    bottom: -25px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

#newsletter p.error:before {
    content: '';
    display: block;
    position: absolute;
    top: -5px;
    left: 50%;
    margin-left: -5px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #fff;
}

#newsletter p.success {
    color: #fff;
    margin: 10px 0;
}

.newsletter-form {
    display: table;
}

.newsletter-form > * {
    display: table-cell;
    overflow: hidden;
    vertical-align: top;
    height: 35px;
}

#newsletter2 .newsletter-form > *,
#newsletter2 .newsletter-form input[type="text"] {
    height: 40px;
}

.newsletter-form .newsletter-email {
    width: 63%;
}

.newsletter-form .newsletter-zip {
    width: 37%;
    padding: 0 5px;
}

#newsletter2 .newsletter-form .newsletter-title {
    width: 25%;
    text-align: left;
}

#newsletter2 .newsletter-form .newsletter-email {
    width: 45%;
}

#newsletter2 .newsletter-form .newsletter-zip {
    width: 20%;
    padding: 0 5px;
}

#newsletter2 .newsletter-form .newsletter-title h5 {
    margin: 0;
    color: #fff;
    font-weight: normal;
}

.newsletter-form input[type="text"] {
    padding: 7px 10px;
    border: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    height: 35px;
    background: #f3f4f6;
    width: 100%;
    color: #3e474c;
    font-size: 13px;
    margin-bottom: 0;
}

.newsletter-form input[type="submit"] {
    z-index: 100;
    position: relative;
    width: 40px;
    height: 35px;
    border: none;
    padding: 0;
    display: block;
    margin: 0;
    background: #cd211d;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    z-index: 100;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

#newsletter2 .newsletter-form input[type="submit"] {
    width: auto;
    height: auto;
    text-align: center;
    padding: 8px 15px;
    background: #e2eaf2;
    text-transform: uppercase;
    color: #274472;
    opacity: 1;
    border-top: 1px solid #f3f7fa;
    border-bottom: 1px solid #5496d4;
}

#newsletter2 .newsletter-form input[type="submit"]:hover {
    background: #4174c5;
    border-top-color: #5191d4;
    border-bottom-color: #213b63;
    color: #fff;
}


.newsletter-form .newsletter-submit {
    position: relative !important;
}

.newsletter-form .newsletter-submit .fi {
    display: block;
    position: relative;
    top: -35px;
    margin-bottom: -35px;
    padding-top: 5px;
    padding-left: 8px;
    font-size: 16px;
    width: 40px;
    height: 35px;
    background: #cd211d;
    color: #FFF;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-bottom: 1px solid #7cc5f8;
    border-bottom: 1px solid #213b63;
    transition: background 0.3s;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
}

.newsletter-form .newsletter-submit:hover .fi,
.newsletter-form .newsletter-submit:hover input {
    background: #2c3b91;
    border-top-color: #5191d4;
}

.pad-0 {
    padding: 0px !important;
}

.mar-0 {
    margin: 0 !important;
}

/*--------------------------------------------------------------
#0.6	target-area
--------------------------------------------------------------*/
@media screen and (min-width: 1200px) {
    .target-area .target-content {
        padding-left: 70px;
        padding-top: 37px;
    }
}

@media (max-width: 991px) {
    .target-area .target-content {
        margin-top: 60px;
    }
}

.target-area .goal-raised {
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .target-area .goal-raised {
        margin-top: 30px;
        margin-bottom: 45px;
    }
}

.target-area .goal-raised > div {
    float: left;
}

.target-area .goal-raised > div + div {
    margin-left: 35px;
    padding-left: 35px;
    padding-bottom: 35px;
    border-left: 1px solid #d1d6de;
}

.target-area .goal-raised span {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .target-area .goal-raised span {
        font-size: 13px;
        font-size: 0.8125rem;
    }
}

.target-area .goal-raised h3 {
    font-size: 36px;
    font-size: 2.25rem;
    margin: 0.4em 0 0;
}

@media (max-width: 991px) {
    .target-area .goal-raised h3 {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

@media (max-width: 767px) {
    .target-area .goal-raised h3 {
        font-size: 27px;
        font-size: 1.6875rem;
    }
}

.target-area .target-content .quote {
    border-left: 5px solid red;
    padding-left: 20px;
    margin-top: 20px;
}

.target-area .target-content .quote h4 {
    font-size: 21px;
    font-weight: normal;
    color: #cd211d;
    line-height: 1.4em;
    margin: 0.5em 0 0.8em;
    text-transform: capitalize;
}

.target-area .goal-raised .signature {
    padding-top: 10px;
    padding-bottom: 20px;
}

/*--------------------------------------------------------------
#0.7	causes-section
--------------------------------------------------------------*/
.causes-section {
    padding-top: 0;
}

.causes-section .container-fluid {
    padding: 0;
}

.causes-section .inner {
    position: relative;
}

.causes-section .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.causes-section .overlay:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: -webkit-linear-gradient(top, transparent 30%, rgba(205, 33, 29, 0.4) 50%, #1b2b57 70%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), color-stop(50%, rgba(205, 33, 29, 0.4)), color-stop(70%, #1b2b57));
    background-image: -o-linear-gradient(top, transparent 30%, rgba(205, 33, 29, 0.4) 50%, #1b2b57 70%);
    background-image: linear-gradient(top, transparent 30%, rgba(205, 33, 29, 0.4) 50%, #1b2b57 70%);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    /*
  background-image: -webkit-linear-gradient(top, transparent 40%, #1b2b57 60%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(60%, #1b2b57));
  background-image: -o-linear-gradient(top, transparent 40%, #1b2b57 60%);
  background-image: linear-gradient(top, transparent 40%, #1b2b57 60%);*/
}

.causes-section .overlay-content {
    padding: 50px;
    position: absolute;
    bottom: -20px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 1360px) {
    .causes-section .overlay-content {
        padding: 50px 30px;
    }
}

/*
.causes-section .img-holder img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
*/
.causes-section .progress {
    background-color: #e6e6e6;
    height: 8px;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: visible;
    box-shadow: none;
    position: relative;
    top: -50px;
    border-radius: 3px;
    margin-top: 40px;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.causes-section .progress-bar {
    background: #cd211d;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 3px;
}

.causes-section .progress span {
    background-color: #fff;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    color: #1c1c1c;
    padding: 2px 6px;
    text-align: center;
    position: absolute;
    right: -15px;
    top: -32px;
}

.causes-section .progress span:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #fff;
    position: absolute;
    bottom: -6px;
    left: 14px;
}

@media (max-width: 991px) {
    .causes-section .progress span {
        padding: 0 6px;
    }
}

.causes-section .inner h3 {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.3em;
    margin: 0 0 0.8em;
}

@media (max-width: 1199px) {
    .causes-section .inner h3 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.causes-section .inner h3 a {
    color: #fff;
}

.causes-section .goal-raised {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.causes-section .goal-raised span {
    color: #fff;
}

@media (max-width: 1199px) {
    .causes-section .goal-raised span {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.causes-section .goal-raised a {
    font-size: 13px;
    font-weight: 700;
    color: #cd211d;
    text-transform: uppercase;
    float: right;
}

.causes-section .goal-raised a .fi:before {
    font-size: 14px;
    font-size: 0.875rem;
}

.causes-section .goal-raised a i {
    position: relative;
    left: -6px;
    top: 2px;
}

.causes-section .overlay:hover:before {
    background-image: -webkit-linear-gradient(top, transparent 30%, rgba(205, 33, 29, 0.4) 50%, #000 70%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), color-stop(50%, rgba(205, 33, 29, 0.4)), color-stop(70%, #000));
    background-image: -o-linear-gradient(top, transparent 30%, rgba(205, 33, 29, 0.4) 50%, #000 70%);
    background-image: linear-gradient(top, transparent 30%, rgba(205, 33, 29, 0.4) 50%, #000 70%);
}

.causes-section .overlay:hover .goal-raised {
    opacity: 1;
    visibility: visible;
}

.causes-section .overlay:hover .overlay-content {
    bottom: 0;
}

.causes-section .overlay:hover .progress {
    top: 0;
    opacity: 1;
}

.causes-section-pg {
    padding: 120px 0;
}

@media (max-width: 991px) {
    .causes-section-pg {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .causes-section-pg {
        padding: 80px 0;
    }
}

/***/
.causes-section .cats {
    font-size: 18px;
    color: #e1e2e5;
    margin: 0px 0 15px;
    font-weight: bold;
    text-transform: uppercase;
    background: rgb(233 226 226 / 28%);
    width: 140px;
    padding: 2px 10px;
    border-radius: 5px;
}

.causes-section .inner p {
    color: #ffffff;
}

.causes-section .inner ul {
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.causes-section .inner ul li {
    font-size: 14px;
    font-size: 0.875rem;
    float: left;
}

.causes-section .inner li a {
    color: #818181;
    font-size: 15px;
}

.causes-section .inner li a:hover {
    color: #c83226;
}

.causes-section .inner ul > li + li {
    margin-left: 20px;
}

.causes-section .inner li i {
    display: inline-block;
    padding-right: 3px;
    color: #fff;
}

/*--------------------------------------------------------------
#0.8	about-section
--------------------------------------------------------------*/
.about-section {
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}

.about-section .left-col {
    width: calc(50% + 115px);
    float: left;
}

@media (max-width: 991px) {
    .about-section .left-col {
        width: auto;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        float: none;
        height: auto !important;
    }
}

.about-section .left-col .about-area {
    max-width: 700px;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 100px;
    padding-bottom: 70px;
}

@media (max-width: 991px) {
    .about-section .left-col .about-area {
        max-width: 100%;
        padding-right: 15px;
        padding-bottom: 0;
    }
}

.about-section .right-col {
    width: calc(50% - 115px);
    float: right;
}

@media (max-width: 991px) {
    .about-section .right-col {
        display: none;
    }
}

.about-section .btns {
    padding-top: 15px;
}

.about-section .btns > a:last-child {
    margin-left: 25px;
}

.about-section .about-features {
    overflow: hidden;
    margin-top: 45px;
}

.about-section .about-features > div {
    width: 50%;
    float: left;
    padding-left: 65px;
    padding-right: 15px;
    position: relative;
    margin-bottom: 35px;
}

@media (max-width: 991px) {
    .about-section .about-features > div {
        padding-left: 55px;
    }
}

@media (max-width: 550px) {
    .about-section .about-features > div {
        width: 100%;
        float: none;
        margin-bottom: 25px;
    }
}

.about-section .about-features .icon {
    position: absolute;
    left: 0;
    top: -7px;
}

.about-section .about-features .icon .fi:before {
    font-size: 50px;
    font-size: 3.125rem;
}

@media (max-width: 991px) {
    .about-section .about-features .icon .fi:before {
        font-size: 40px;
        font-size: 2.5rem;
    }
}

.about-section .about-features h3 {
    font-size: 22px;
    font-size: 1.375rem;
    margin: 0 0 0.4em;
}

@media (max-width: 991px) {
    .about-section .about-features h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.about-section .about-features p {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0;
}

/*--------------------------------------------------------------
#0.9	events-section
--------------------------------------------------------------*/
.events-section {
    padding-bottom: 0;
    position: relative;
    z-index: 2;
    /*** slider arrows ***/
}

@media (max-width: 991px) {
    .events-section {
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
    .events-section {
        padding-top: 50px;
    }
}

@media screen and (min-width: 767px) {
    .events-section .events-slider-holder {
        margin-right: -85%;
        margin-left: -15px;
    }
}

@media screen and (min-width: 767px) {
    .events-section .slick-slide {
        padding: 0 15px;
    }
}

.events-section .grid {
    position: relative;
}

.events-section .grid:before {
    content: "";
    width: 100%;
    height: 110%;
    position: absolute;
    left: 0;
    top: 10%;
    background-image: -webkit-linear-gradient(top, transparent 40%, #1b2b57 60%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(60%, #1b2b57));
    background-image: -o-linear-gradient(top, transparent 40%, #1b2b57 60%);
    background-image: linear-gradient(top, transparent 40%, #1b2b57 60%);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.events-section .grid .details {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.events-section .details .inner {
    width: 100%;
    padding: 40px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.events-section .inner h3 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 0 0.3em;
}

.events-section .inner h3 a {
    color: #fff;
}

.events-section .inner h3 a:hover {
    color: #cd211d;
}

.events-section .inner p {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #cd211d;
    margin: 0;
}

.events-section .events-slider-item:focus {
    outline: none;
}

.events-section .events-slider-nav {
    position: absolute;
    bottom: 120px;
    left: -100px;
}

@media (max-width: 991px) {
    .events-section .events-slider-nav {
        position: static;
        margin: 30px 0 0 8px;
    }
}

.events-section .events-slider-nav .slider-prev {
    margin-bottom: 8px;
}

.events-section .slick-arrow {
    background-color: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding: 0;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    -webkit-box-shadow: 5px 27px 29px rgba(0, 0, 0, 0.3);
    box-shadow: 5px 27px 29px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1199px) {
    .events-section .slick-arrow {
        margin: 5px;
    }
}

@media (max-width: 991px) {
    .events-section .slick-arrow {
        float: none;
        border-radius: 0;
        display: inline-block;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #cd211d;
    }
}

.events-section .slick-arrow .fi:before {
    font-size: 20px;
    font-size: 1.25rem;
    color: #cd211d;
}

.events-section .grid:hover:before {
    top: 0;
    opacity: 0.68;
    background: -webkit-linear-gradient(top, #1b2b57 40%, #cd211d);
    background: -moz-linear-gradient(top, #1b2b57 40%, #cd211d);
    background: -o-linear-gradient(top, #1b2b57 40%, #cd211d);
    background: -ms-linear-gradient(top, #1b2b57 40%, #cd211d);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #1b2b57), to(#cd211d));
}

.events-pg-section {
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .events-pg-section {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .events-pg-section {
        padding-bottom: 80px;
    }
}

/****/
.events-section .details .inner ul {
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.events-section .details .inner ul li {
    font-size: 14px;
    font-size: 0.875rem;
    float: left;
}

.events-section .details .inner li a {
    color: #818181;
    font-size: 15px;
}

.events-section .details .inner li a:hover {
    color: #c83226;
}

.events-section .details .inner ul > li + li {
    margin-left: 20px;
}

.events-section .details .inner li i {
    display: inline-block;
    padding-right: 3px;
    color: #fff;
}

.events-section .details .inner .post-btn {
    background-color: #efecec;
    color: #cd211d;
    padding: 5px 10px;

}

/*--------------------------------------------------------------
#1.0	partner-section
--------------------------------------------------------------*/
.partner-section {
    background: url("../images/partners/partners-bg.jpg") center center/cover no-repeat local;
    position: relative;
    padding: 80px 0;
    margin-top: 60px;
}

@media (max-width: 1199px) {
    .partner-section {
        margin-top: 90px;
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .partner-section {
        margin-top: 90px;
        padding: 70px 0;
    }
}

.partner-section:before {
    content: "";
    background-color: rgb(27 43 87 / 91%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.partner-section .owl-carousel .owl-item img {
    width: auto;
    max-width: 100%;
    display: inline-block;
}

.partner-section .partners-slider > div {
    text-align: center;
}

/*--------------------------------------------------------------
#1.1	cta-s1-section
--------------------------------------------------------------*/
.cta-s1-section {
    margin-top: -105px;
    padding-bottom: 120px;
}

@media (max-width: 1199px) {
    .cta-s1-section {
        margin-top: 0;
        padding: 120px 0;
    }
}

@media (max-width: 991px) {
    .cta-s1-section {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .cta-s1-section {
        padding: 80px 0;
    }
}

.cta-s1-section .info-col {
    padding-top: 220px;
}

@media (max-width: 1199px) {
    .cta-s1-section .info-col {
        padding-top: 50px;
    }
}

.cta-s1-section .details p {
    margin-bottom: 2.5em;
}

.cta-s1-section .img-holder {
    margin-right: -30px;
}

@media (max-width: 1199px) {
    .cta-s1-section .img-holder {
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .cta-s1-section .img-holder {
        max-height: 600px;
        overflow: hidden;
    }
}

/*--------------------------------------------------------------
#1.2	cta-s2-section
--------------------------------------------------------------*/
.cta-s2-section {
    background: url("../images/cta-s2-bg.jpg") center top/cover no-repeat local;
    padding: 220px 0;
}

@media (max-width: 991px) {
    .cta-s2-section {
        text-align: center;
        padding: 80px 0;
    }
}

.cta-s2-section h3 {
    font-size: 48px;
    font-size: 3rem;
    color: #fff;
    margin: 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .cta-s2-section h3 {
        font-size: 30px;
        font-size: 1.875rem;
        margin-bottom: 1em;
        line-height: 1.4em;
    }
}

.cta-s2-section .video-holder {
    float: right;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .cta-s2-section .video-holder {
        float: none;
    }
}

.cta-s2-section .video-holder a {
    background-color: #cd211d;
    width: 85px;
    height: 85px;
    border-radius: 85px;
    text-align: center;
    line-height: 85px;
    display: inline-block;
    position: absolute;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
}

@media (max-width: 991px) {
    .cta-s2-section .video-holder a {
        width: 65px;
        height: 65px;
        line-height: 65px;
        border-radius: 65px;
        position: static;
    }
}

@media (max-width: 767px) {
    .cta-s2-section .video-holder a {
        width: 55px;
        height: 55px;
        border-radius: 55px;
    }
}

.cta-s2-section .video-holder a .fi:before {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
}

.cta-s2-section .video-holder a:after {
    content: "";
    width: 75px;
    height: 75px;
    border-radius: 75px;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: spineer 2s 1.5s infinite;
    animation: spineer 2s 1.5s infinite;
}

@media (max-width: 767px) {
    .cta-s2-section .video-holder a:after {
        width: 55px;
        height: 55px;
        border-radius: 55px;
    }
}

@-webkit-keyframes spineer {
    from {
        -webkit-box-shadow: 0 0 0 0 rgba(205, 33, 29, 0.99);
        box-shadow: 0 0 0 0 rgba(205, 33, 29, 0.99);
    }
    to {
        -webkit-box-shadow: 0 0 0 45px rgba(205, 33, 29, 0.01);
        box-shadow: 0 0 0 45px rgba(205, 33, 29, 0.01);
    }
}

@keyframes spineer {
    from {
        -webkit-box-shadow: 0 0 0 0 rgba(205, 33, 29, 0.99);
        box-shadow: 0 0 0 0 rgba(205, 33, 29, 0.99);
    }
    to {
        -webkit-box-shadow: 0 0 0 45px rgba(205, 33, 29, 0.01);
        box-shadow: 0 0 0 45px rgba(205, 33, 29, 0.01);
    }
}

.cta-s2-section .video-holder .fi:before {
    font-size: 30px;
    font-size: 1.875rem;
    color: #fff;
}

@media (max-width: 991px) {
    .cta-s2-section .video-holder .fi:before {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

/*--------------------------------------------------------------
#1.2  cta-with-team-section
--------------------------------------------------------------*/
.cta-with-team-section {
    position: relative;
}

@media (max-width: 991px) {
    .cta-with-team-section {
        padding-bottom: 75px;
    }
}

@media (max-width: 767px) {
    .cta-with-team-section {
        padding-bottom: 65px;
    }
}

.cta-with-team-section .bg {
    background: url("../images/add/cta-team-bg.jpg") center top/cover no-repeat local;
    width: 100%;
    height: 70%;
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 767px) {
    .cta-with-team-section .bg {
        height: 50%;
    }
}

.cta-with-team-section .bg:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.68;
    background: -webkit-linear-gradient(top, #1b2b57 40%, #cd211d);
    background: -moz-linear-gradient(top, #1b2b57 40%, #cd211d);
    background: -o-linear-gradient(top, #1b2b57 40%, #cd211d);
    background: -ms-linear-gradient(top, #1b2b57 40%, #cd211d);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #1b2b57), to(#cd211d));
}

.cta-with-team-section .cta-content {
    text-align: center;
}

.cta-with-team-section .cta-content .fi:before {
    font-size: 85px;
    font-size: 5.3125rem;
    color: #fff;
}

@media (max-width: 991px) {
    .cta-with-team-section .cta-content .fi:before {
        font-size: 70px;
        font-size: 4.375rem;
    }
}

.cta-with-team-section .cta-content h3 {
    font-size: 38px;
    font-size: 2.375rem;
    color: #fff;
    margin: 60px 0px 60px;
}

@media (max-width: 991px) {
    .cta-with-team-section .cta-content h3 {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

@media (max-width: 767px) {
    .cta-with-team-section .cta-content h3 {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

.cta-with-team-section .video-holder {
    margin-top: -17px;
}

.cta-with-team-section .video-holder span {
    font-size: 18px;
    font-size: 1.125rem;
    color: #87d271;
    display: block;
}

/*.cta-with-team-section .video-holder {
  float: right;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .cta-with-team-section .video-holder {
    float: none;
  }
}
*/
.cta-with-team-section .video-holder a {
    background-color: #cd211d;
    width: 85px;
    height: 85px;
    border-radius: 85px;
    text-align: center;
    line-height: 85px;
    display: inline-block;
    position: relative;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
}

@media (max-width: 991px) {
    .cta-with-team-section .video-holder a {
        width: 65px;
        height: 65px;
        line-height: 65px;
        border-radius: 65px;
        position: static;
    }
}

@media (max-width: 767px) {
    .cta-with-team-section .video-holder a {
        width: 55px;
        height: 55px;
        border-radius: 55px;
    }
}

.cta-with-team-section .video-holder a .fi:before {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
}

.cta-with-team-section .video-holder a:after {
    content: "";
    width: 75px;
    height: 75px;
    border-radius: 75px;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: spineer 2s 1.5s infinite;
    animation: spineer 2s 1.5s infinite;
}

@media (max-width: 991px) {
    .cta-with-team-section .video-holder a:after {
        top: 18%;
    }
}

@media (max-width: 767px) {
    .cta-with-team-section .video-holder a:after {
        width: 50px;
        height: 50px;
        border-radius: 55px;
        top: 12.2%;
    }
}

@-webkit-keyframes spineer {
    from {
        -webkit-box-shadow: 0 0 0 0 rgba(205, 33, 29, 0.99);
        box-shadow: 0 0 0 0 rgba(205, 33, 29, 0.99);
    }
    to {
        -webkit-box-shadow: 0 0 0 45px rgba(205, 33, 29, 0.01);
        box-shadow: 0 0 0 45px rgba(205, 33, 29, 0.01);
    }
}

@keyframes spineer {
    from {
        -webkit-box-shadow: 0 0 0 0 rgba(205, 33, 29, 0.99);
        box-shadow: 0 0 0 0 rgba(205, 33, 29, 0.99);
    }
    to {
        -webkit-box-shadow: 0 0 0 45px rgba(205, 33, 29, 0.01);
        box-shadow: 0 0 0 45px rgba(205, 33, 29, 0.01);
    }
}

.cta-with-team-section .team-section {
    margin-top: 100px;
    padding-top: 100px;
    position: relative;
}

@media (max-width: 991px) {
    .cta-with-team-section .team-section {
        margin-top: 80px;
        padding-top: 80px;
    }
}

.cta-with-team-section .team-section:before {
    content: "";
    background: rgba(255, 255, 255, 0.1);
    width: calc(100% - 30px);
    height: 1px;
    position: absolute;
    left: 15px;
    top: 0;
}

.cta-with-team-section .title-text {
    text-align: right;
    margin-top: 25px;
}

@media (max-width: 991px) {
    .cta-with-team-section .title-text {
        text-align: left;
        margin: 25px 0 50px;
    }
}

.cta-with-team-section .title-text p {
    color: #fff;
    margin: 0;
}

.cta-with-team-section .team-grids .grid {
    width: 25%;
    float: left;
}

@media (max-width: 991px) {
    .cta-with-team-section .team-grids .grid {
        width: 50%;
        margin: 0 0 25px;
    }
}

@media (max-width: 500px) {
    .cta-with-team-section .team-grids .grid {
        width: 100%;
        float: none;
    }
}

.cta-with-team-section .team-grids .details {
    background: #ffffff;
    padding: 30px 25px;
    -webkit-box-shadow: 0px 6px 18.9px 2.1px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 6px 18.9px 2.1px rgba(0, 0, 0, 0.04);
}

@media (max-width: 767px) {
    .cta-with-team-section .team-grids .details {
        padding: 20px 15px;
    }
}

.cta-with-team-section .details h5 {
    font-size: 20px;
    margin: 0 0 0.3em;
}

.cta-with-team-section .details h5 + span {
    font-size: 16px;
}

/******/

.team-section .team-grids .img-holder {
    position: relative;
    clip-path: polygon(0% 0%, 88% 0, 100% 10%, 100% 100%, 0% 95%);
}

.team-section .team-grids .img-holder {
    position: relative;
    clip-path: polygon(0% 0%, 88% 0, 100% 10%, 100% 100%, 0% 95%);
}

.team-section .team-grids .social {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 22%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.team-section .team-grids .grid:hover .social {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

.team-section .team-grids ul {
    list-style: none;
    display: inline-block;
}

.team-section .team-grids ul li {
    float: left;
    text-align: center;
}

.team-section .team-grids ul > li + li {
    margin-left: 10px;
}

.team-section .team-grids ul li a {
    background-color: #2c3b91;
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    font-size: 13px;
    font-size: 0.8125rem;
    color: #fff;
    border-radius: 50%;
}

.team-section .team-grids ul li a:hover {
    background-color: #1b2b57;
}

/*--------------------------------------------------------------
#1.3	blog-section
--------------------------------------------------------------*/
.blog-section {
    padding-bottom: 90px;
}

@media (max-width: 991px) {
    .blog-section {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding-bottom: 65px;
    }
}

.blog-section .blog-grids {
    margin: 30px -15px 0;
}

@media (max-width: 767px) {
    .blog-section .blog-grids {
        margin: 0 -7px;
    }
}

.blog-section .blog-grids .grid {
    width: calc(33.33% - 30px);
    float: left;
    margin: 0 15px 30px;
    position: relative;
}

.blog-section .blog-grids .grid:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: -webkit-linear-gradient(top, transparent 50%, #000 70%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(70%, #000));
    background-image: -o-linear-gradient(top, transparent 50%, #000 70%);
    background-image: linear-gradient(top, transparent 50%, #000 70%);
}

@media (max-width: 991px) {
    .blog-section .blog-grids .grid {
        width: calc(50% - 30px);
    }
}

@media (max-width: 767px) {
    .blog-section .blog-grids .grid {
        width: calc(50% - 15px);
        margin: 0 7px 15px;
    }
}

@media (max-width: 600px) {
    .blog-section .blog-grids .grid {
        width: calc(100% - 15px);
        float: none;
    }
}

.blog-section .cat {
    position: absolute;
    left: 35px;
    top: 35px;
}

@media (max-width: 767px) {
    .blog-section .cat {
        left: 15px;
        top: 15px;
    }
}

.blog-section .cat a {
    background-color: #cd211d;
    padding: 5px 10px;
    font-size: 14px;
    font-size: 0.875rem;
    color: #fff;
    text-align: center;
    display: inline-block;
    border-radius: 5px;
}

.blog-section .entry-details {
    position: absolute;
    left: 35px;
    bottom: 35px;
    padding-right: 35px;
}

@media (max-width: 767px) {
    .blog-section .entry-details {
        left: 15px;
        bottom: 15px;
        padding-right: 15px;
    }
}

.blog-section .entry-details h3 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 0 0.5em;
    line-height: 1.3em;
}

@media (max-width: 767px) {
    .blog-section .entry-details h3 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.blog-section .entry-details h3 a {
    color: #fff;
}

.blog-section .entry-details h3 a:hover {
    color: #cd211d;
}

.blog-section .entry-details p {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #cd211d;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
}

@media (max-width: 767px) {
    .blog-section .entry-details p {
        font-size: 13px;
        font-size: 0.8125rem;
    }
}

/*--------------------------------------------------------------
#1.4  blog-section-s3
--------------------------------------------------------------*/
.blog-section-s3 .blog-single {
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .blog-section-s3 .blog-single {
        margin-bottom: 60px;
    }
}

.blog-section-s3 .blog-single .blog-thumb {
    position: relative;
}

.blog-section-s3 .blog-single .blog-thumb:after {
    bottom: 0;
    content: "";
    left: 25px;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 70px;
    transition: all 0.4s ease 0s;
}

.blog-section-s3 .blog-single:hover .blog-thumb:after {
    left: 0;
    top: 0;
    background: #051429;
    opacity: 0.7;
    background-image: -moz-linear-gradient(90deg, #051429 37%, #cd211d 80%, #cd211d 72%, #cd211d 55%);
    background-image: -webkit-linear-gradient(90deg, #051429 37%, #cd211d 80%, #cd211d 72%, #cd211d 55%);
    background-image: -ms-linear-gradient(90deg, #051429 37%, #cd211d 80%, #cd211d 72%, #cd211d 55%);
}

.blog-section-s3 .blog-single .meta-date {
    background-color: #ffffff;
    float: right;
    margin: -47px 16px 0 0;
    padding: 10px 16px;
    position: relative;
    text-align: center;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.blog-section-s3 .blog-single .meta-date h4 {
    border-bottom: 1px solid #ddd;
    font-size: 12px;
    line-height: 16px;
    padding-bottom: 3px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0;
}

.blog-section-s3 .blog-single .meta-date h4 span {
    font-size: 15px;
}

.blog-section-s3 .blog-single .meta-date h5 {
    color: #cd211d;
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0;
}

.blog-section-s3 .blog-single .meta-date i {
    display: inline-block;
    padding-right: 3px;
    position: relative;
    top: 2px;
}

.blog-section-s3 .blog-single .meta-date h5 .icon {
    color: #ddd;
    font-size: 14px;
    margin-right: 6px;
}

.blog-section-s3 .blog-single .blog-content {
    padding: 25px 25px 40px;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.blog-section-s3 .blog-single .blog-content h3 {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 14px;
}

.blog-section-s3 .blog-single .blog-content h5 {
    color: #cd211d;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;

}

.blog-section-s3 .blog-single .blog-content p {
    margin-bottom: 24px;
}

.blog-section-s3 .blog-single .blog-content .blog-socail {
    float: right;
}

.blog-section-s3 .blog-single .blog-content .blog-socail .social-links li {
    margin-right: 3px;
}

.blog-section-s3 .blog-single .blog-content .blog-socail .social-links li a {
    width: 30px;
    border-radius: 50%;
    text-align: center;
    color: #020202;
    display: block;
    font-size: 12px;
    height: 30px;
    line-height: 30px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
}

.blog-section-s3 .blog-single .blog-content .blog-socail .social-links li:hover a {
    color: #cd211d;
}

.blog-section-s3 .social-links li {
    float: left;
    width: 35px;
    height: 35px;
    margin-right: 1px;
}

.blog-section-s3 .read-more {
    font-size: 14px;
    font-size: 0.875rem;
    color: #131e4a;
    font-weight: 500;
}

/*--------------------------------------------------------------
	#home-style-2
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#2.1	feature-section
--------------------------------------------------------------*/
.feature-section {
    padding: 100px 0 0;
}

@media screen and (min-width: 992px) {
    .feature-section {
        /*
    margin-top: -50px;*/
    }
}

@media (max-width: 991px) {
    .feature-section {
        padding: 100px 0 70px;
    }
}

@media (max-width: 767px) {
    .feature-section {
        padding-top: 80px 0 65px;
    }
}

.feature-section .feature-grids {
    margin: 0 -15px;
}

@media (max-width: 767px) {
    .feature-section .feature-grids {
        margin: 0 -7px;
    }
}

.feature-section .feature-grids .grid {
    background-color: #fff;
    width: calc(16.66% - 30px);
    text-align: center;
    float: left;
    margin: 0 15px 30px;
    padding: 34px 20px 40px;
    position: relative;
    -webkit-box-shadow: 0px 0px 21.17px 7.83px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 21.17px 7.83px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

@media (max-width: 991px) {
    .feature-section .feature-grids .grid {
        width: calc(33.33% - 30px);
    }
}

@media (max-width: 767px) {
    .feature-section .feature-grids .grid {
        width: calc(33.33% - 15px);
        margin: 0 7px 15px;
    }
}

@media (max-width: 600px) {
    .feature-section .feature-grids .grid {
        width: calc(50% - 15px);
    }
}

.feature-section .feature-grids .fi:before {
    font-size: 50px;
    font-size: 3.125rem;
    color: #cd211d;
}

@media (max-width: 767px) {
    .feature-section .feature-grids .fi:before {
        font-size: 40px;
        font-size: 2.5rem;
    }
}

.feature-section .feature-grids h3 {
    font-size: 17px;
    margin: 0;
}

@media (max-width: 1199px) {
    .feature-section .feature-grids h3 {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .feature-section .feature-grids h3 {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .feature-section .feature-grids h3 {
        font-size: 19px;
        font-weight: 500;
    }
}

.causes-section-s2 .section-title-s2,
.causes-section-s2 .section-title-s3 {
    clear: both;
}

/*--------------------------------------------------------------
#2.2  cta-section
--------------------------------------------------------------*/
.cta-section {

}

.cta-section .donate-area-bottom {
    margin-top: 80px;
    background-color: #fff;
    text-align: center;
    margin: 0;
    padding: 40px 20px 35px;
    position: relative;
    -webkit-box-shadow: 0px 0px 21.17px 7.83px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 21.17px 7.83px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.cta-section .donate-area-wrapper h3 {
    font-size: 24px;
    margin-top: 7px;
}

.cta-section .donate-area-wrapper h3 + p {
    font-size: 14px;
    font-size: 0.875rem;
    text-transform: uppercase;
    position: relative;
    padding-left: 30px;
    margin: 0 0 2em;
}

.cta-section .donate-area-wrapper h3 + p span {
    background-color: #cd211d;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.cta-section .donate-area-wrapper form[id*=give-form] .give-donation-amount {
    margin: 0;
    clear: both;
}

.cta-section .donate-area-wrapper .give-form-type-multi .give-currency-symbol {
    background-color: #f2f2f2;
    height: 40px;
    border: 1px solid #eee;
    border-left: none !important;
    line-height: 40px;
    color: #242f6c;
    padding: 0px 13px;
    font-size: 18px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
}

.cta-section .donate-area-wrapper #give-recurring-form .give-hidden,
.cta-section .donate-area-wrapper form.give-form .give-hidden,
.cta-section .donate-area-wrapper form[id*=give-form] .give-hidden,
.cta-section .donate-area-wrapper .give-hidden {
    display: none;
}

.cta-section .donate-area-wrapper form[id*=give-form] .give-donation-amount #give-amount,
.cta-section .donate-area-wrapper form[id*=give-form] .give-donation-amount #give-amount-text {
    height: 40px;
    border: 1px solid #eee;
    padding: 0px 0px 1px 12px;
    max-width: 100px !important;
}

@media (max-width: 767px) {
    .cta-section .donate-area-wrapper form[id*=give-form] .give-donation-amount #give-amount,
    .cta-section .donate-area-wrapper form[id*=give-form] .give-donation-amount #give-amount-text {
        height: 36px;
    }

    .cta-section .donate-area-wrapper .give-form-type-multi .give-currency-symbol {
        height: 36px;
    }
}

.cta-section .donate-area-wrapper .give-btn {
    background: #eeeeee;
    border: 0;
    padding: 10px 14px;
    color: #636363;

}

/*
.cta-section .donate-area-wrapper .give-btn {
  background: transparent;
  border: 1px solid #e9e9e9 !important;
  border: 0;
  padding: 10px 20px;
  color: #636363;
}*/
.cta-section .donate-area-wrapper .give-btn:hover,
.cta-section .donate-area-wrapper .give-btn:focus {
    background: #1b2b57;
    color: #fff;
}

.cta-section .donate-area-wrapper #give-recurring-form h3.give-section-break,
.cta-section .donate-area-wrapper #give-recurring-form h4.give-section-break,
.cta-section .donate-area-wrapper #give-recurring-form legend,
.cta-section .donate-area-wrapper form.give-form h3.give-section-break,
.cta-section .donate-area-wrapper form.give-form h4.give-section-break,
.cta-section .donate-area-wrapper form.give-form legend,
.cta-section .donate-area-wrapper form[id*=give-form] h3.give-section-break,
.cta-section .donate-area-wrapper form[id*=give-form] h4.give-section-break,
.cta-section .donate-area-wrapper form[id*=give-form] legend {
    font-size: 15px;
    margin-bottom: 2em;
}

.cta-section .donate-area-wrapper #give-recurring-form .form-row label,
.cta-section .donate-area-wrapper form.give-form .form-row label,
.cta-section .donate-area-wrapper form[id*=give-form] .form-row label {
    font-weight: 600;
    font-size: 14px;
}

.cta-section .donate-area-wrapper .give-input {
    font-size: 14px !important;
}

.cta-section .donate-area-wrapper .give-submit {
    background: #020202;
    font-size: 16px;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
}

.cta-section #give-recurring-form, form.give-form, form[id*=give-form] {
    margin: 0;
    padding: 0;
}

.bg-red {
    background-color: #cd211d !important;
    color: #ffffff !important;
}

.bg-blue {
    background-color: #1b2b57 !important;
    color: #ffffff !important;
}

.cta-section #give-donation-level-button-wrap {
    margin: 0;
}

/*--------------------------------------------------------------
#1.0  featured-project-section
--------------------------------------------------------------*/
.featured-project-section {
    padding-bottom: 0;
}

.featured-project-section .title-text {
    text-align: right;
    padding-top: 20px;
}

@media (max-width: 991px) {
    .featured-project-section .title-text {
        text-align: left;
        margin-bottom: 50px;
        padding-top: 0;
    }
}

.featured-project-section .project-grids {
    margin: 50px -15px 0;
    background: url("../images/add/featured-project-bg.jpg") center center/cover no-repeat local;
}

.featured-project-section .project-grids .grid {
    width: 25%;
    float: left;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .featured-project-section .project-grids .grid {
        width: 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 991px) {
    .featured-project-section .project-grids .grid {
        background-color: rgba(19, 30, 74, 0.9);
    }
}

@media (max-width: 600px) {
    .featured-project-section .project-grids .grid {
        width: 100%;
        float: none;
    }
}

.featured-project-section .project-grids .overlay {
    padding: 60px 60px 60px;
    position: relative;
    top: 60px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .featured-project-section .project-grids .overlay {
        padding: 80px 30px 50px;
        top: 0;
    }
}

.featured-project-section .project-grids .grid:hover .overlay {
    background-color: rgba(19, 30, 74, 0.9);
    top: 0;
    background: #051429;
    background-image: -moz-linear-gradient(90deg, #051429 62%, #cd211d 96%, #cd211d 97%, #cd211d 100%);
    background-image: -webkit-linear-gradient(90deg, #051429 62%, #cd211d 96%, #cd211d 97%, #cd211d 100%);
    background-image: -ms-linear-gradient(90deg, #051429 62%, #cd211d 96%, #cd211d 97%, #cd211d 100%);
    opacity: 0.7;
}

.featured-project-section .project-grids .count {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
}

@media (max-width: 991px) {
    .featured-project-section .project-grids .count {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

.featured-project-section .project-grids .img-holder {
    margin-top: 20px;

}

.featured-project-section .project-grids h3 {
    font-size: 22px;
    font-size: 1.375rem;
    color: #fff;
    margin-bottom: 1em;
}

@media (max-width: 991px) {
    .featured-project-section .project-grids h3 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.featured-project-section .project-grids p {
    color: #cecccc;
    margin-bottom: 0;
    padding-bottom: 2em;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 991px) {
    .featured-project-section .project-grids p {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.featured-project-section .project-grids .overlay > a {
    position: relative;
    top: 100px;
}

@media (max-width: 991px) {
    .featured-project-section .project-grids .overlay > a {
        top: 0;
    }
}

.featured-project-section .project-grids .grid:hover .overlay > a {
    top: 0;
}


/*--------------------------------------------------------------
####   about-section-9
--------------------------------------------------------------*/

@media (max-width: 991px) {
    .about-section-9 .about-text {
        margin-top: 30px;
    }
}

.about-section-9 .about-text > span {
    font-size: 18px;
    color: #cd211d;
    font-weight: 700;
    position: relative;
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .about-section-9 .about-text > span {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.about-section-9 .about-text > span:before {
    content: "";
    background-color: #cd211d;
    width: 30px;
    height: 3px;
    border-radius: 5px;
    position: absolute;
    left: calc(193% - 55px);
    bottom: 8px;
}

.about-section-9 .about-text > span:after {
    content: "";
    background-color: #cd211d;
    width: 11px;
    height: 3px;
    border-radius: 5px;
    position: absolute;
    left: calc(108% + 45px);
    bottom: 8px;
}

.about-section-9 .about-text > h3 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.4em;
    margin: 0 0 0.8em;
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .about-section-9 .about-text > h3 {
        font-size: 24px;
        font-size: 1.5rem;
    }
}

.about-section-9 .about-text > h4 {
    font-size: 21px;
    font-weight: normal;
    color: #cd211d;
    line-height: 1.4em;
    margin: 0.5em 0 0.8em;
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .about-section-9 .about-text > h4 {
        font-size: 18px;
    }
}

.about-section-9 .about-text > p {
    margin-bottom: 2em;
}

.about-section-9 .info h4 {
    margin: 0 0 0.3em;
}

.about-section-9 .info > span {
    font-size: 14px;
    font-size: 0.875rem;
}

.about-section-9 .video-area {
    position: relative;
}

.about-section-9 .video-area .successfull-case {
    width: 180px;
    height: 180px;
    background: rgb(245 245 245 / 98%);
    text-align: center;
    padding: 20px;
    position: absolute;
    left: -75px;
    bottom: -25px;
    border-radius: 50%;
    border: 10px solid #ffffff;
    -webkit-box-shadow: 0px 0px 21.17px 7.83px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 21.17px 7.83px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1199px) {
    .about-section-9 .video-area .successfull-case {
        left: 15px;
    }
}

@media (max-width: 991px) {
    .about-section-9 .video-area .successfull-case {
        display: none;
    }
}

.about-section-9 .video-area .successfull-case:before {
    content: "";
    width: 0;
    height: 0;
    border-bottom: 46px solid rgb(245 245 245 / 95%);
    border-left: 50px solid transparent;
    position: absolute;
    right: 25px;
    top: -25px;
    z-index: 0;
}

.about-section-9 .video-area .successfull-case span {
    font-size: 40px;
    font-weight: 700;
    display: block;
    color: #cd211d;
    margin-bottom: 0.5em;
}

.about-section-9 .video-area .successfull-case p {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.2em;
    color: #696565;
    margin: 20px 0 0;
}

@media (max-width: 991px) {
    .about-section-9 .video-holder {
        margin-top: 70px;
    }
}

.about-section-9 .video-holder a {
    background-color: #fff;
    width: 75px;
    height: 75px;
    border-radius: 75px;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
}

@media (max-width: 767px) {
    .about-section-9 .video-holder a {
        width: 55px;
        height: 55px;
        border-radius: 55px;
    }
}

.about-section-9 .video-holder a:before {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #cd211d;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.about-section-9 .video-holder a:after {
    content: "";
    width: 75px;
    height: 75px;
    border-radius: 75px;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: spineer 2s 1.5s infinite;
    animation: spineer 2s 1.5s infinite;
}

@media (max-width: 767px) {
    .about-section-9 .video-holder a:after {
        width: 55px;
        height: 55px;
        border-radius: 55px;
    }
}

@media screen and (min-width: 1200px) {
    .about-section-9 .about-text {
        padding-left: 35px;
    }
}

/***about-section-9***/
.about-section-9 {
    margin-bottom: 0;
}

.about-section-9 .panel-default {
    background: transparent;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.about-section-9 .panel-heading {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.about-section-9 .panel {
    border: 1px solid #e6e5e5;
    padding: 20px;
}

.about-section-9 .panel + .panel {
    margin-top: 15px;
    margin-bottom: 30px;
}

.about-section-9 .panel-heading a.collapsed:before {
    content: "\e61a";
}

.about-section-9 .panel-heading a {
    font-size: 20px;
    font-size: 1.25rem;
    color: #cd211d;
    display: block;
    padding: 0 0 0 25px;
    position: relative;
}

@media (max-width: 991px) {
    .about-section-9 .panel-heading a {
        font-size: 16px;
        font-size: 1rem;
        padding: 15px 25px;
    }
}

@media (max-width: 767px) {
    .about-section-9 .panel-heading a {
        padding: 12px 15px;
    }
}

.about-section-9 .panel-heading a:before {
    font-family: "themify";
    content: "\e622";
    font-size: 15px;
    font-size: 0.9375rem;
    position: absolute;
    left: 0;
}

@media (max-width: 991px) {
    .about-section-9 .panel-heading a:before {
        font-size: 18px;
        font-size: 1.125rem;
        left: 0;
    }
}

@media (max-width: 767px) {
    .about-section-9 .panel-heading a:before {
        left: -10px;
        top: 10px;
    }
}

.about-section-9 .panel-heading a:focus {
    text-decoration: none;
}

.about-section-9 .panel-heading .collapsed {
    background-color: transparent;
    color: #274054;
}

.about-section-9 .panel-heading .collapsed:before {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.about-section-9 .panel-heading + .panel-collapse > .panel-body {
    background-color: transparent;
    font-size: 18px;
    font-size: 1.125rem;
    border: 0;
    padding: 20px 0 0 25px;
}

@media (max-width: 991px) {
    .about-section-9 .panel-heading + .panel-collapse > .panel-body {
        font-size: 16px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .about-section-9 .panel-heading + .panel-collapse > .panel-body {
        padding: 5px 0 0 15px;
    }
}

.about-section-9 .panel-heading + .panel-collapse > .panel-body p {
    font-size: 16px;
    margin-bottom: 1.3em;
}

.about-section-9 .panel-heading + .panel-collapse > .panel-body p:last-child {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
####   cta-section-5
--------------------------------------------------------------*/
.cta-section-5 {
}

.cta-section-5 .content-area .right-col,
.cta-section-5 .content-area .left-col {
    width: 50%;
    float: left;
    position: relative;
}

@media (max-width: 767px) {
    .cta-section-5 .content-area .left-col,
    .cta-section-5 .content-area .right-col {
        width: 100%;
        float: none;
    }
}

.cta-section-5 .content-area .left-col {
    background: #1b2b57;
    padding-left: 110px;
    position: relative;
}

/*
.cta-section-5 .content-area .left-col:before {
  position: absolute;
  content: "";
    background: #1b2b57;
    width: 112%;
    height: 100%;
    left: -70%;
    right: auto;
    top: 0;
    -webkit-transform: skewX(-30deg);
    -moz-transform: skewX(-30deg);
    -o-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    transform: skewX(-30deg);
    z-index: 1;
}*/
.cta-section-5 .content-area .right-col {
    background-color: #cd211d;
    padding-right: 120px;
}

@media (max-width: 767px) {
    .cta-section-5 .content-area .left-col {
        padding-left: 0;
    }
}

.cta-section-5 .content-area .right-col h1,
.cta-section-5 .content-area .left-col h1 {
    color: #ffffff;
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 30px;
}

@media (max-width: 991px) {
    .cta-section-5 .content-area .right-col h1,
    .cta-section-5 .content-area .left-col h1 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .cta-section-5 .content-area .right-col h1,
    .cta-section-5 .content-area .left-col h1 {
        text-align: left;
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .cta-section-5 .content-area .right-col h1 {
        margin: 0;
    }
}

/*--------------------------------------------------------------
#2.3	about-section-s2
--------------------------------------------------------------*/
.about-section-s2 {
    position: relative;
    z-index: 1;
}

.about-section-s2 .section-title h2,
.about-section-s2 .section-title-s2 h2,
.about-section-s2 .section-title-s3 h2 {
    margin-bottom: 1em;
}


.about-section-s2 .about-area img {
    display: inline-block;
    margin-top: 45px;
}

.about-section-s2 .fun-fact-grids > .grid + .grid {
    margin-top: 0px;
}


.about-section-s2 .fun-fact-grids .grid {
    width: 25%;
    float: left;
}

@media (max-width: 767px) {
    .about-section-s2 .fun-fact-grids .grid {
        width: 50%;
        margin-bottom: 50px;
    }
}

.about-section-s2 .fun-fact-area {
    margin-top: 100px;
}

@media (max-width: 991px) {
    .about-section-s2 .fun-fact-area {
        margin-top: 80px;
    }
}

.about-section-s2 .fun-fact-area .info {
    overflow: hidden;
}

@media (max-width: 991px) {
    .about-section-s2 .fun-fact-area .info {
        max-width: 70%;
        margin: 0 auto;
    }
}

@media (max-width: 550px) {
    .about-section-s2 .fun-fact-area .info {
        max-width: 100%;
    }
}

.about-section-s2 .fun-fact-area .info > div {
    width: 45%;
    float: left;
}

.about-section-s2 .fun-fact-area .info > div:last-child {
    padding-left: 15px;
}

@media (max-width: 550px) {
    .about-section-s2 .fun-fact-area .info > div:last-child {
        padding-left: 0;
    }
}

.about-section-s2 .fun-fact-area h3 {
    font-size: 55px;
    margin: 0;
    width: 200px;
    text-align: left;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #020202;
}

@media (max-width: 767px) {
    .about-section-s2 .fun-fact-area h3 {
        font-size: 45px;
        font-size: 2.8125rem;
    }
}

@media (max-width: 550px) {
    .about-section-s2 .fun-fact-area h3 {
        font-size: 40px;
        font-size: 2.5rem;
        text-align: left;
    }
}

.about-section-s2 .fun-fact-area p {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0 0 0;
    border-bottom: 2px solid #1c1c1c;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .about-section-s2 .fun-fact-area p {
        font-size: 14px;
        font-size: 0.875rem;
        margin: 15px 0 0;
    }
}

.about-section-s2 .odometer-value {
    font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
####   about-section-17
--------------------------------------------------------------*/

.about-section-17 {
    overflow: hidden;
    padding: 100px 0;
    border-bottom: 1px solid #ccc;
}

.about-section-17 .tablist {
    overflow: hidden;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .about-section-17 .tablist {
        margin-bottom: 25px;
    }
}

.about-section-17 .tablist li {
    float: left;
    border-right: 1px solid #fff;
}

@media (max-width: 767px) {
    .about-section-17 .tablist li {
        margin-bottom: 1px;
    }
}

.about-section-17 .tablist li a {
    background-color: #f1f1f1;
    display: block;
    font-weight: 500;
    color: #2d2c2c;
    padding: 15px 25px;
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .about-section-17 .tablist li a {
        font-size: 14px;
        font-size: 0.93333rem;
        padding: 10px 15px;
    }
}

@media (max-width: 767px) {
    .about-section-17 .tablist li a {
        font-size: 13px;
        font-size: 0.86667rem;
        padding: 10px 15px;
    }
}

.about-section-17 .tablist .active a {
    background-color: #1b2b57;
    color: #fff;
}

.about-section-17 .tab-content {
    margin-bottom: 35px;
}

.about-section-17 .tab-content h3 {
    font-size: 24px;
    font-weight: normal;
    line-height: 1.4em;
    color: #4d4d4d;
    margin: 0 0 1em;
}

@media screen and (min-width: 992px) {
    .about-section-17 .tab-content h3 {
        padding-right: 200px;
    }
}

@media (max-width: 991px) {
    .about-section-17 .tab-content h3 {
        font-size: 20px;
        font-size: 1.33333rem;
    }
}

.about-section-17 .tab-content h3 span {
    color: #1b2b57;
}

.about-section-17 .tab-content p {
    margin-bottom: 25px;
}

.about-section-17 .tab-pane p:last-child {
    margin-bottom: 0;
}

.about-section-17 .content {
    position: relative;
    margin-top: 30px;
}

.about-section-17 .content .img-holder {
    position: absolute;
    right: 0;
    top: 0px;
}

@media (max-width: 1199px) {
    .about-section-17 .right-col {
        display: none;
    }
}

.about-section-17 .title-text {
    text-align: right;
    padding-top: 30px;
}

/**about-section-17 progress-bar **/
.about-section-17 .skill-progress-bar .progress {
    background-color: #e6e6e6;
    height: 8px;
    margin-top: 16px;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: visible;
    box-shadow: none;
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.about-section-17 .skill-progress-bar {
    margin-top: 12px;
}

.about-section-17 .skill-progress-bar p {
    font-size: 18px;
    color: #787878;
    margin-bottom: 20px;
}

.about-section-17 .skill-progress-bar h6 {
    font-size: 16px;
    font-weight: 500;
}

.about-section-17 .skill-progress-bar .progress span {
    background-color: #cd211d;
    font-size: 14px;
    color: #fff;
    padding: 2px 6px;
    text-align: center;
    position: absolute;
    right: -15px;
    top: -32px;
}

.about-section-17 .skill-progress-bar .progress span:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #cd211d;
    position: absolute;
    bottom: -6px;
    left: 14px;
}

@media (max-width: 991px) {
    .about-section-17 .skill-progress-bar .progress span {
        padding: 0 6px;
    }
}

.about-section-17 .skill-progress-bar .progress-bar {
    background: #cd211d;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 10px;
}

/*--------------------------------------------------------------
#2.3	partner-section-s2
--------------------------------------------------------------*/
.partner-section-s2 {
    background: url("../images/partners/partners-bg.jpg") center center/cover no-repeat local;
    position: relative;
    padding: 215px 0 90px;
    margin-top: -120px;
}

@media (max-width: 991px) {
    .partner-section-s2 {
        margin-top: 90px;
        padding: 80px 0 55px;
    }
}

.partner-section-s2:before {
    content: "";
    background-color: rgba(29, 29, 29, 0.95);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.partner-section-s2 .section-title span,
.partner-section-s2 .section-title-s2 span,
.partner-section-s2 .section-title-s3 span,
.partner-section-s2 .section-title h2,
.partner-section-s2 .section-title-s2 h2,
.partner-section-s2 .section-title-s3 h2,
.partner-section-s2 .partner-details p {
    color: #fff;
}

@media (max-width: 991px) {
    .partner-section-s2 .partners-area {
        margin-top: 35px;
    }
}

.partner-section-s2 .partners-area div {
    width: 33.33%;
    float: left;
    text-align: center;
    margin-bottom: 25px;
}

.partner-section-s2 .partners-area div img {
    display: inline-block;
}

/*--------------------------------------------------------------
#2.4	team-section
--------------------------------------------------------------*/
.team-section .first-row .grid,
.team-section .sec-row .grid {
    width: 25%;
    min-height: 1px;
    float: left;
    position: relative;
}

@media (max-width: 991px) {
    .team-section .first-row .grid,
    .team-section .sec-row .grid {
        width: 50%;
    }
}

@media (max-width: 500px) {
    .team-section .first-row .grid,
    .team-section .sec-row .grid {
        width: 100%;
        float: none;
    }
}

@media (max-width: 1500px) {
    .team-section .first-row > .grid:first-child {
        display: none;
    }
}

.team-section .first-row > .grid:nth-child(2) {
    text-align: right;
    padding: 50px 55px 0 0;
}

@media (max-width: 1500px) {
    .team-section .first-row > .grid:nth-child(2) {
        width: 50%;
        padding: 50px 55px 0 0;
    }
}

@media (max-width: 1150px) {
    .team-section .first-row > .grid:nth-child(2) {
        width: 50%;
        padding: 0 55px 0 15px;
    }
}

@media (max-width: 991px) {
    .team-section .first-row > .grid:nth-child(2) {
        width: 100%;
        margin-bottom: 45px;
        text-align: center;
    }
}

/*
.team-section .first-row .grid img,
.team-section .sec-row .grid img {
  border-radius: 50%;
}*/
.team-section .team-details p {
    margin-bottom: 2em;
}

.team-section .member-info {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    padding: 20px 15px;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: -20px;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

/*
.team-section .member-info:before {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 210px;
    background-color: #cd211d;
    opacity: 0.1;
    margin: 0px auto;
    transform: skew(-24deg);
    z-index: 0;
    visibility: visible;
}*/
.team-section .member-info h4 {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 0 0.3em;
}

.team-section .member-info h4 a {
    color: #020202;
}

.team-section .member-info h4 a:hover {
    color: #cd211d;
}

.team-section .member-info p {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0;
    color: #949494;
}

.team-section .member-info ul {
    display: inline-block;
    overflow: hidden;
    margin-top: 10px;
}

.team-section .member-info ul li {
    float: left;
}

.team-section .member-info ul > li + li {
    margin-left: 8px;
}

.team-section .member-info ul a {
    background-color: #cd211d;
    width: 32px;
    height: 32px;
    line-height: 34px;
    color: #ffffff;
    display: inline-block;
    text-align: center;
    font-size: 11px;
    font-size: 0.6875rem;
    border-radius: 50%;
}

.team-section .member-info ul a:hover {
    background-color: #1b2b57;
    color: #fff;
}

.team-section .grid:hover .member-info {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.team-section .grid .img-holder {
    overflow: hidden;
}

.team-section .grid .img-holder img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-filter: grayscale(50%);
    -moz-filter: grayscale(50%);
    -o-filter: grayscale(50%);
    -ms-filter: grayscale(50%);
    filter: grayscale(50%);
}

.team-section .grid:hover img {
    -webkit-transform: scale(1.2) rotate(5deg);
    -ms-transform: scale(1.2) rotate(5deg);
    transform: scale(1.2) rotate(5deg);
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
    -ms-filter: grayscale(0);
    filter: grayscale(0);
}

/*--------------------------------------------------------------
	#home-style-3
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#3.1	feature-section-s2
--------------------------------------------------------------*/

.feature-section-s2 {
    padding-top: 0px;
    padding-bottom: 150px;
}

.feature-section-s2 .section-title-s2 {
    margin-bottom: 100px;
}

.feature-section-s2 .feature-grids {
    margin: 0 -15px;
}

@media screen and (min-width: 992px) {
    .feature-section-s2 .feature-grids {
        margin-top: -50px;
    }
}

@media (max-width: 767px) {
    .feature-section-s2 .feature-grids {
        margin: 0 -7px;
    }
}

.feature-section-s2 .feature-grids .grid {
    width: calc(33.33% - 30px);
    text-align: center;
    float: left;
    margin: 0 15px 30px;
    padding: 54px 25px 60px;
    border: 1px solid rgb(204 204 204 / 55%);
    background-color: #fff;
    -webkit-box-shadow: 0px 5px 41.61px 15.39px rgba(195, 195, 195, 0.21);
    box-shadow: 0px 5px 41.61px 15.39px rgba(195, 195, 195, 0.21);
}

@media screen and (min-width: 992px) {
    .feature-section-s2 .feature-grids .grid {
        position: relative;
        top: 70px;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
    }
}

@media (max-width: 991px) {
    .feature-section-s2 .feature-grids .grid {
        width: calc(33.33% - 30px);
        padding: 44px 20px 50px;
        -webkit-box-shadow: 0px 5px 41.61px 15.39px rgba(195, 195, 195, 0.21);
        box-shadow: 0px 5px 41.61px 15.39px rgba(195, 195, 195, 0.21);
    }
}

@media (max-width: 767px) {
    .feature-section-s2 .feature-grids .grid {
        width: calc(50% - 15px);
        margin: 0 7px 15px;
    }
}

@media (max-width: 600px) {
    .feature-section-s2 .feature-grids .grid {
        width: calc(100% - 15px);
    }
}

@media screen and (min-width: 992px) {
    .feature-section-s2 .feature-grids .grid div {
        position: relative;
        /*top: 30px;*/
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
        /*opacity: 0;*/
        /*visibility: hidden;*/
    }
}

.feature-section-s2 .feature-grids > .grid:nth-child(2),
.feature-section-s2 .feature-grids > .grid:nth-child(5) {
    background-color: #fff;
    -webkit-box-shadow: 0px 5px 41.61px 15.39px rgba(195, 195, 195, 0.21);
    box-shadow: 0px 5px 41.61px 15.39px rgba(195, 195, 195, 0.21);
    top: 0;
}

.feature-section-s2 .feature-grids > .grid:nth-child(2) p,
.feature-section-s2 .feature-grids > .grid:nth-child(5) p {
    height: auto;
}

.feature-section-s2 .feature-grids > .grid:nth-child(2) div,
.feature-section-s2 .feature-grids > .grid:nth-child(5) div {
    opacity: 1;
    visibility: visible;
    top: 0;
}

.feature-section-s2 .feature-grids .grid:hover {
    background-color: #fff;
    top: 0;
    -webkit-box-shadow: 0px 5px 41.61px 15.39px rgba(195, 195, 195, 0.21);
    box-shadow: 0px 5px 41.61px 15.39px rgba(195, 195, 195, 0.21);
}

.feature-section-s2 .feature-grids .grid:hover div {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.feature-section-s2 .feature-grids .fi:before {
    font-size: 70px;
    font-size: 4.375rem;
    color: #cd211d;
}

@media (max-width: 991px) {
    .feature-section-s2 .feature-grids .fi:before {
        font-size: 50px;
        font-size: 3.125rem;
    }
}

@media (max-width: 767px) {
    .feature-section-s2 .feature-grids .fi:before {
        font-size: 40px;
        font-size: 2.5rem;
    }
}

.feature-section-s2 .feature-grids h3 {
    font-size: 22px;
    font-size: 1.375rem;
    margin: 0 0 1em;
}

@media (max-width: 991px) {
    .feature-section-s2 .feature-grids h3 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.feature-section-s2 .feature-grids p {
    margin: 0;
}

@media (max-width: 991px) {
    .feature-section-s2 .feature-grids p {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

/*--------------------------------------------------------------
#3.2	about-s3-section
--------------------------------------------------------------*/
.about-s3-section {
    padding-top: 90px;
}

@media (max-width: 991px) {
    .about-s3-section {
        padding-top: 70px;
    }
}

@media (max-width: 767px) {
    .about-s3-section {
        padding-top: 65px;
    }
}

.about-s3-section .section-title, .about-s3-section .section-title-s2, .about-s3-section .section-title-s3 {
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .about-s3-section .section-title, .about-s3-section .section-title-s2, .about-s3-section .section-title-s3 {
        margin-bottom: 20px;
    }
}

.about-s3-section .about-text-area {
    padding-top: 45px;
}

@media (max-width: 1199px) {
    .about-s3-section .about-text-area {
        padding-top: 0;
    }
}

@media (max-width: 991px) {
    .about-s3-section .about-text-area {
        margin: 40px 0 0;
    }
}

.about-s3-section .about-text-area p {
    margin-bottom: 1.5em;
}

.about-s3-section .about-text-area h5 {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 0 0 0.5em;
}

.about-s3-section .about-text-area h5 + span {
    font-size: 13px;
    font-size: 0.8125rem;
}

@media (max-width: 991px) {
    .about-s3-section .img-holder {
        margin-top: 50px;
    }
}

/*** about-text***/


.about-s3-section .about-text > span {
    font-size: 16px;
    font-size: 1rem;
    color: #c83226;
    font-weight: 600;
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .about-s3-section .about-text > span {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.about-s3-section .about-text > h3 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.4em;
    margin: 0.5em 0 0.8em;
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .about-s3-section .about-text > h3 {
        font-size: 24px;
        font-size: 1.5rem;
    }
}

.about-s3-section .about-text > p {
    margin-bottom: 2em;
}


/***about-review**/

.about-review {
    position: relative;
    display: block;
}

@media (max-width: 767px) {
    .about-review {
        margin-top: 25px;
    }
}

.about-review-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-review-list li {
    position: relative;
    display: block;
}

.about-review-list li + li {
    margin-left: -15px;
}

.about-review-img {
    position: relative;
    display: block;
    height: 54px;
    width: 54px;
    border-radius: 50%;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 20%);
    background-color: #ffffff;
}

.about-review-img img {
    width: 100%;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.about-review-star {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.about-review-star span {
    font-size: 15px;
    color: #d90202;
    position: relative;
    display: inline-block;
}

.about-review-text {
    font-weight: 500;
    color: #585b6b;
}

/*--------------------------------------------------------------
#3.3	campain-section
--------------------------------------------------------------*/
.campain-section {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 120px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .campain-section {
        margin-bottom: 0px;
    }
}

@media (max-width: 767px) {
    .campain-section {
        margin-bottom: 0px;
    }
}

.campain-section .left-col {
    width: calc(50% + 75px);
    float: left;
    padding-bottom: 127px;
}

.campain-section .left-col .campain-area {
    max-width: 660px;
    margin-left: auto;
    padding-left: 15px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .campain-section .left-col .campain-area {
        max-width: 100%;
        padding-right: 15px;
    }
}

@media (max-width: 991px) {
}

.campain-section .right-col {
    width: calc(50% - 75px);
    float: right;
    position: relative;
}

@media (max-width: 1199px) {
    .campain-section .left-col {
        width: calc(50% - 45px);
    }

    .campain-section .right-col {
        width: calc(50% - 45px);
    }
}

.campain-section .right-col > div {
    width: calc(100% + 60px);
    height: 100%;
    position: absolute;
    left: -60px;
    top: 0;
}

@media (max-width: 991px) {
    .campain-section .right-col > div {
        height: 86%;
    }

    .campain-section .left-col {
        width: calc(100% - 45px);
    }

    .campain-section .right-col {
        width: calc(100% - 45px);
    }

    .campain-section .recent-post-widget .posts {
        padding-left: 60px;
    }

    .campain-section .recent-post-widget h2 {
        padding-left: 60px;
    }
}

@media (max-width: 412px) {
    .campain-section .right-col > div {
        height: 86%;
    }

    .campain-section .left-col {
        width: calc(100% - 45px);
    }

    .campain-section .right-col {
        width: calc(100% - 45px);
    }

    .campain-section .recent-post-widget .posts {
        padding-left: 0px;
    }

    .campain-section .recent-post-widget h2 {
        padding-left: 20px;
    }
}

.campain-section .campain-slider {
    padding-top: 30px;
    /* the parent */
}

@media (max-width: 667px) {
    .dis-nun-667 {
        display: none;
    }
}

@media (max-width: 991px) {
    .campain-section .campain-slider {
        padding-top: 0;
    }
}

.campain-section .campain-slider .slick-slide {
    margin: 20px 27px;
}

.campain-section .campain-slider .slick-list {
    margin: -20px -27px;
}

.campain-section .campain-slider .item {
    background-color: #fff;
    padding: 40px;
    -webkit-box-shadow: 0px 5px 15.61px 5.39px rgba(195, 195, 195, 0.21);
    box-shadow: 0px 5px 15.61px 5.39px rgba(195, 195, 195, 0.21);
}

@media (max-width: 767px) {
    .campain-section .campain-slider .item {
        padding: 30px 25px;
    }
}

.campain-section .campain-slider h3 {
    font-size: 24px;
    font-size: 1.5rem;
    margin: 0 0 18px;
}

@media (max-width: 767px) {
    .campain-section .campain-slider h3 {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

.campain-section .campain-slider h3 a {
    color: #020202;
}

.campain-section .campain-slider h3 a:hover {
    color: #cd211d;
}

.campain-section .campain-slider p {
    font-size: 17px;
    margin: 0 0 1em;
}

.campain-section .campain-slider .goal-raised {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #cd211d;
    text-transform: uppercase;
    overflow: hidden;
}

.campain-section .campain-slider .goal-raised > div {
    width: 50%;
    float: left;
    font-size: 18px;
}

.campain-section .campain-slider .goal-raised span {
    color: #020202;
}

.campain-section .campain-slider .progress {
    background-color: #e6e6e6;
    height: 8px;
    margin-top: 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: visible;
    box-shadow: none;
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.campain-section .campain-slider .progress span {
    background-color: #cd211d;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    color: #fff;
    padding: 2px 6px;
    text-align: center;
    position: absolute;
    right: -15px;
    top: -32px;
}

.campain-section .campain-slider .progress span:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #cd211d;
    position: absolute;
    bottom: -6px;
    left: 14px;
}

@media (max-width: 991px) {
    .campain-section .campain-slider .progress span {
        padding: 0 6px;
    }
}

.campain-section .campain-slider .progress-bar {
    background: #cd211d;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 10px;
}

.campain-section .campain-slider .slick-arrow {
    background-color: transparent;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -75px;
    z-index: 1;
    -webkit-box-shadow: 0 0 15px #88888866;
    box-shadow: 0 0 15px #88888866;

}

@media (max-width: 767px) {
    .campain-section .campain-slider .slick-arrow {
        width: 45px;
        height: 45px;
        line-height: 45px;
        border: 1px solid #cacaca;
    }
}

.campain-section .campain-slider .slick-arrow .fi:before {
    color: #1b2b57;
}

.campain-section .campain-slider .slick-arrow:hover {
    background-color: #cd211d;
    border-color: #cd211d;
}

.campain-section .campain-slider .slick-arrow:hover .fi:before {
    color: #fff;
}

.campain-section .campain-slider .slick-arrow:focus {
    outline: none;
}

.campain-section .campain-slider .slick-arrow:last-child {
    left: 60px;
}

@media (max-width: 767px) {
    .campain-section .campain-slider .slick-arrow:last-child {
        left: 50px;
    }
}

.campain-section .campain-slider .slick-arrow:last-child i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    display: inline-block;
    position: relative;
    top: -3px;
}

.campain-section .dontate-now {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    color: #cd211d;
}


.campain-section .cats {
    font-size: 18px;
    color: #cd211d;
    margin: 0px 0 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.campain-section .item .img-holder {
    margin-bottom: 30px;
}

.campain-section .item ul {
    overflow: hidden;
    margin-bottom: 30px;
}

.campain-section .item ul li {
    font-size: 14px;
    font-size: 0.875rem;
    float: left;
}

.campain-section .item li a {
    color: #818181;
    font-size: 15px;
}

.campain-section .item li a:hover {
    color: #c83226;
}

.campain-section .item ul > li + li {
    margin-left: 20px;
}

@media (max-width: 991px) {
    .campain-section .item ul > li + li {
        margin-left: 0px;
        margin-top: 12px;
    }
}

.campain-section .item li i {
    display: inline-block;
    padding-right: 3px;
    color: #c83226;
}

.campain-section .recent-post-widget h2 {
    color: #ffffff;
    margin-bottom: 30px;

}

.campain-section .recent-post-widget {
    padding-left: 110px;
    padding-top: 85px;
    width: calc(86% - 68px);
}

@media (max-width: 991px) {
    .campain-section .recent-post-widget {
        width: calc(100% - 0px);
        float: left;
    }
}

@media (max-width: 767px) {
    .campain-section .recent-post-widget {
        width: calc(100% - 0px);
        float: left;
        padding-left: 70px;
    }
}

.campain-section .recent-post-widget .post {
    position: relative;
    overflow: hidden;
    padding: 18px;
    margin: 15px 0;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 5px 15.61px 5.39px rgba(195, 195, 195, 0.21);
    box-shadow: 0px 5px 15.61px 5.39px rgba(195, 195, 195, 0.21);
}

@media (max-width: 1280px) {
    .campain-section .recent-post-widget .posts {
        width: 500px;
    }

    .campain-section .recent-post-widget {
        padding-left: 14px;
    }

    .campain-section .recent-post-widget .post h3 {
        font-size: 18px;
    }

    .campain-section .post ul > li + li {
        margin-left: 10px;
    }
}

@media (max-width: 991px) {
    .campain-section .recent-post-widget .post {
        padding: 25px 18px;
    }
}

@media (max-width: 991px) {
    .campain-section .recent-post-widget .post {
        width: 670px;
    }
}

@media (max-width: 412px) {
    .campain-section .recent-post-widget .post {
        width: 500px;
    }
}

@media (max-width: 360px) {
    .campain-section .recent-post-widget .post {
        width: 455px;
    }
}

.campain-section .recent-post-widget .posts > .post + .post {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f3f2f2;
}

.campain-section .post .cat {
    position: absolute;
    left: 25px;
    top: 25px;
}

.campain-section .post .cat span {
    font-size: 20px;
    display: block;
    color: #ffffff;
    padding-top: 6px;
    margin-bottom: 0;
}

.campain-section .post .cat a {
    background: #cd211d;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    padding: 6px 15px;
    margin-right: 8px;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
    line-height: 18px;
}

@media (max-width: 991px) {
    .campain-section .post .cat a {
        font-size: 13px;
        font-size: 0.8125rem;
    }
}

.campain-section .recent-post-widget .post .img-holder {
    width: 140px;
    float: left;
}

@media (max-width: 991px) {
    .campain-section .recent-post-widget .post .img-holder {
        width: 120px;
        height: 0px;
        float: left;
    }
}

.campain-section .recent-post-widget .post .img-holder img {
    border-radius: 5px;
}

.campain-section .recent-post-widget .post .details {
    width: calc(100% - 140px);
    float: left;
    padding-left: 20px;
}

@media (max-width: 991px) {
    .campain-section .recent-post-widget .post .details {
        width: calc(100% - 68px);
        padding-left: 140px;
    }
}

.campain-section .recent-post-widget .post h3 {
    margin-top: 8px;
}

@media (max-width: 991px) {
    .campain-section .recent-post-widget .post h3 {
        font-size: 20px;
        margin-top: 0;
    }
}

.campain-section .recent-post-widget .post p {
    font-size: 17px;
    line-height: 1.3em;
    margin: 0 0 1em;
}

@media (max-width: 1199px) {
    .campain-section .recent-post-widget .post p {
        margin: 0;
    }
}

.campain-section .recent-post-widget .post p a {
    display: inline-block;
    color: #1c1c1c;
}

.campain-section .recent-post-widget .post p a:hover {
    color: #cd211d;
}

.campain-section .recent-post-widget .post .details .date {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #687693;
}

.campain-section .recent-post-widget .post .details .date i {
    display: inline-block;
    padding-right: 7px;
}

.campain-section .post ul {
    overflow: hidden;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .campain-section .post ul {
        margin: 15px 0 15px;
    }
}

.campain-section .post ul li {
    font-size: 14px;
    font-size: 0.875rem;
    float: left;
}

.campain-section .post li a {
    color: #818181;
    font-size: 15px;
}

.campain-section .post li a:hover {
    color: #c83226;
}

.campain-section .post ul > li + li {
    margin-left: 20px;
}

@media (max-width: 1280px) {
    .campain-section .post ul > li + li {
        margin-left: 10px;
    }
}

@media (max-width: 412px) {
    .campain-section .post ul > li + li {
        margin-left: 0;
    }
}

@media (max-width: 412px) {
    .dis-nun-360 {
        display: none;
    }
}

.campain-section .post li i {
    display: inline-block;
    padding-right: 3px;
    color: #c83226;
}

.campain-section .post-btn {
    background-color: #efecec;
    color: #cd211d;
    padding: 5px 10px;

}

/*--------------------------------------------------------------
#3.4	cta-section-s3
--------------------------------------------------------------*/
.cta-section-s3 {
    background: url("../images/add/cta-s3-bg.jpg") center center/cover no-repeat local;
    padding: 127px 0;
    text-align: center;
}

@media (max-width: 991px) {
    .cta-section-s3 {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .cta-section-s3 {
        padding: 80px 0;
    }
}

.cta-section-s3 .content-area {
    max-width: 750px;
    margin: 0 auto;
}

.cta-section-s3 h3 {
    font-size: 48px;
    font-size: 3rem;
    color: #fff;
    margin: 0 0 1em;
}

@media (max-width: 991px) {
    .cta-section-s3 h3 {
        font-size: 38px;
        font-size: 2.375rem;
    }
}

@media (max-width: 767px) {
    .cta-section-s3 h3 {
        font-size: 28px;
        font-size: 1.75rem;
    }
}

.cta-section-s3 .btns > a:first-child {
    margin-right: 15px;
}

/*--------------------------------------------------------------
#3.5	testimoninals-funfact-section
--------------------------------------------------------------*/
.testimoninals-funfact-section {
    padding-bottom: 0;
    position: relative;
}

.testimoninals-funfact-section:after {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0;
    background: url(../images/add/cta-team-bg.jpg) center top / cover no-repeat local;
}

.testimoninals-funfact-section .author-img img {
    width: auto;
    max-width: 100%;
    border-radius: 50%;
    background: #fff;
    padding: 6PX;
    border-radius: 50%;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 18, 52, 0.15);
    box-shadow: 0px 2px 10px rgba(0, 18, 52, 0.15);
    margin-right: 18px;
}

.testimoninals-funfact-section .testimonials-slider-area .grid {
    background-color: #ffffff;
    padding: 130px 50px 50px;
    margin-top: 40px;
    position: relative;
}

@media (max-width: 767px) {
    .testimoninals-funfact-section .testimonials-slider-area .grid {
        padding: 130px 30px 40px;
    }
}

.testimoninals-funfact-section .author {
    position: absolute;
    top: -40px;
}

.testimoninals-funfact-section .author h5 {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 1.3em 0 0.3em;
}

.testimoninals-funfact-section .author span {
    font-size: 14px;
    font-size: 0.875rem;
    color: #797979;
}

.testimoninals-funfact-section .testimonials-slider-area p {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 0;
}

@media (max-width: 1199px) {
    .testimoninals-funfact-section .testimonials-slider-area p {
        font-size: 16px;
        font-size: 1rem;
    }
}

.testimoninals-funfact-section .owl-theme .owl-controls .owl-nav [class*=owl-] {
    background: #ffffff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -75px;
    z-index: 1;
    @inlcude transition-time(0.3s);
}

@media (max-width: 1199px) {
    .testimoninals-funfact-section .owl-theme .owl-controls .owl-nav [class*=owl-] {
        position: static;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .testimoninals-funfact-section .owl-theme .owl-controls .owl-nav [class*=owl-] {
        width: 45px;
        height: 45px;
        line-height: 45px;
        border: 1px solid #cacaca;
    }
}

.testimoninals-funfact-section .owl-theme .owl-controls .owl-nav [class*=owl-] .fi:before {
    color: #9c9999;
}

.testimoninals-funfact-section .owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
    background-color: #cd211d;
    border-color: #cd211d;
}

.testimoninals-funfact-section .owl-theme .owl-controls .owl-nav [class*=owl-]:hover .fi:before {
    color: #fff;
}

.testimoninals-funfact-section .owl-theme .owl-controls .owl-nav .owl-next {
    left: 60px;
}

@media (max-width: 767px) {
    .testimoninals-funfact-section .owl-theme .owl-controls .owl-nav .owl-next {
        left: 50px;
    }
}

@media (max-width: 1199px) {
    .testimoninals-funfact-section .owl-theme .owl-controls {
        text-align: left;
    }
}

.testimoninals-funfact-section .fun-fact-grids > .grid + .grid {
    margin-top: 25px;
}

.testimoninals-funfact-section .fun-fact-area {
    margin-top: 0px;
}

@media (max-width: 991px) {
    .testimoninals-funfact-section .fun-fact-area {
        margin-top: 80px;
    }
}

.testimoninals-funfact-section .fun-fact-area .info {
    overflow: hidden;
}

@media (max-width: 991px) {
    .testimoninals-funfact-section .fun-fact-area .info {
        max-width: 70%;
        margin: 0 auto;
    }
}

@media (max-width: 550px) {
    .testimoninals-funfact-section .fun-fact-area .info {
        max-width: 100%;
    }
}

.testimoninals-funfact-section .fun-fact-area .info > div {
    width: 50%;
    float: left;
}

.testimoninals-funfact-section .fun-fact-area .info > div:last-child {
    padding-left: 45px;
}

@media (max-width: 550px) {
    .testimoninals-funfact-section .fun-fact-area .info > div:last-child {
        padding-left: 0;
    }
}

.testimoninals-funfact-section .fun-fact-area h3 {
    font-size: 65px;
    font-size: 4.0625rem;
    margin: 0;
    width: 200px;
    text-align: right;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #020202;
}

@media (max-width: 767px) {
    .testimoninals-funfact-section .fun-fact-area h3 {
        font-size: 45px;
        font-size: 2.8125rem;
    }
}

@media (max-width: 550px) {
    .testimoninals-funfact-section .fun-fact-area h3 {
        font-size: 40px;
        font-size: 2.5rem;
        text-align: left;
    }
}

.testimoninals-funfact-section .fun-fact-area p {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    margin: 35px 0 0 0;
    border-bottom: 2px solid #1c1c1c;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .testimoninals-funfact-section .fun-fact-area p {
        font-size: 14px;
        font-size: 0.875rem;
        margin: 15px 0 0;
    }
}

.testimoninals-funfact-section .odometer-value {
    font-family: "Jost", sans-serif;
}

.testimonials-pg-section {
    padding-bottom: 120px;
}

.testimonials-pg-section .grid,
.testimonials-pg-section .owl-theme .owl-controls .owl-nav [class*=owl-],
.testimonials-pg-section .grid .author-img img {
    border-radius: 5px;
}

@media (max-width: 991px) {
    .testimonials-pg-section {
        padding-bottom: 100px;
    }
}

@media screen and (min-width: 768px) {
    .testimonials-pg-section .owl-theme .owl-controls {
        text-align: center;
    }

    .testimonials-pg-section .owl-theme .owl-controls .owl-nav [class*=owl-] {
        position: static;
        margin: 0 5px 0;
    }
}

@media screen and (min-width: 991px) {
    .testimonials-pg-section .owl-theme .owl-controls .owl-nav [class*=owl-] {
        position: static;
        margin: 15px 5px 0;
    }
}

/*****/

.testimoninals-funfact-section .content-area {
    background-color: #1b2b57;
    padding-bottom: 1.09375in;
    padding-left: 0;
    padding-right: 0;
    padding-top: 90px;
    position: relative;
}

@media (max-width: 991px) {
    .testimoninals-funfact-section .content-area {
        padding-right: 0;
        padding-top: 4.375pc;
        padding-bottom: 85px;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .testimoninals-funfact-section .content-area {
        padding-left: 0;
        padding-top: 0.625in;
        padding-right: 0;
        padding-bottom: 4.6875pc;
    }
}

.testimoninals-funfact-section .content-area .left-col,
.testimoninals-funfact-section .content-area .right-col {
    width: 50%;
}

.testimoninals-funfact-section .content-area .left-col,
.testimoninals-funfact-section .content-area .right-col {
    width: 50%;
    float: left;
}

.testimoninals-funfact-section .content-area:before {
    content: "";
    position: absolute;
    width: 39%;
    height: 100%;
    left: -39%;
    top: 0;
    background: url(../images/add/testimoninals-bg.jpg) center center / cover no-repeat local;
}

@media (max-width: 991px) {
    .testimoninals-funfact-section .content-area .left-col,
    .testimoninals-funfact-section .content-area .right-col {
        width: 100%;
        float: none;
    }
}

.testimoninals-funfact-section .content-area .right-col {
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 991px) {
    .testimoninals-funfact-section .content-area .right-col {
        display: none;
    }
}

.testimoninals-funfact-section .content-area .img-holder img {
    position: relative;
    top: -1.458333333in;
    right: -60pt;
}

@media (max-width: 1199px) {
    .testimoninals-funfact-section .content-area .img-holder img {
        top: -116px;
    }
}

/*--------------------------------------------------------------
	#about-page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#4.1	about-page-section
--------------------------------------------------------------*/
.about-page-section {
    padding-bottom: 0px;
    padding-top: 0px;
}

@media (max-width: 991px) {
    .about-page-section {
        padding-bottom: 65px;
    }
}

@media (max-width: 767px) {
    .about-page-section {
        padding-bottom: 55px;
    }
}

@media screen and (min-width: 992px) {
    .about-page-section .section-title-s3 h2 {
        padding: 0 35px;
    }
}

.about-page-section .about-features-grid {
    margin: 0 -15px;
}

.about-page-section .about-features-grid > div {
    width: calc(33.33% - 30px);
    float: left;
    position: relative;
    padding-left: 65px;
    padding-right: 5px;
    margin: 0 15px 35px;
}

@media (max-width: 991px) {
    .about-page-section .about-features-grid > div {
        padding-left: 55px;
        width: calc(50% - 30px);
    }
}

@media (max-width: 550px) {
    .about-page-section .about-features-grid > div {
        width: calc(100% - 30px);
        float: none;
        margin-bottom: 25px;
    }
}

.about-page-section .about-features-grid .icon {
    position: absolute;
    left: 0;
    top: -7px;
}

.about-page-section .about-features-grid .icon .fi:before {
    font-size: 50px;
    font-size: 3.125rem;
}

@media (max-width: 991px) {
    .about-page-section .about-features-grid .icon .fi:before {
        font-size: 40px;
        font-size: 2.5rem;
    }
}

.about-page-section .about-features-grid h3 {
    font-size: 22px;
    margin: 0 0 0.4em;
    font-weight: 500;
}

@media (max-width: 991px) {
    .about-page-section .about-features-grid h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .about-page-section .about-features-grid h3 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.about-page-section .about-features-grid p {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0;
}

/*--------------------------------------------------------------
#4.1  about-section-page
--------------------------------------------------------------*/
.about-section-page {
    padding-bottom: 0px;
    padding-top: 0px;
}

@media (max-width: 991px) {
    .about-section-page {
        padding-bottom: 65px;
    }
}

@media (max-width: 767px) {
    .about-section-page {
        padding-bottom: 55px;
    }
}

@media screen and (min-width: 992px) {
    .about-section-page .section-title-s3 h2 {
        padding: 0 35px;
    }
}

.about-section-page .about-features-grid {
    margin-top: -50px;
}

@media screen and (max-width: 1280px) {
    .about-section-page .about-features-grid {
        margin-top: 90px;
    }
}

.about-section-page .about-features-grid > div {
    width: calc(33.33% - 0px);
    float: left;
    position: relative;
    padding: 30px 40px 30px 85px;
    margin: 0 0 35px;
    background-color: #fff;
    -webkit-box-shadow: 0px 5px 41.61px 15.39px rgba(195, 195, 195, 0.21);
    box-shadow: 0px 5px 41.61px 15.39px rgba(195, 195, 195, 0.21);
    top: 0;
}

@media (max-width: 991px) {
    .about-section-page .about-features-grid > div {
        padding-left: 55px;
        width: calc(50% - 30px);
    }
}

@media (max-width: 550px) {
    .about-section-page .about-features-grid > div {
        width: calc(100% - 30px);
        float: none;
        margin-bottom: 25px;
    }
}

.about-section-page .about-features-grid > div:nth-child(2) {
    border-left: 1px solid rgb(204 204 204 / 58%);
    border-right: 1px solid rgb(204 204 204 / 58%);
}

.about-section-page .about-features-grid .icon {
    position: absolute;
    left: 15px;
    top: 36px;
}

.about-section-page .about-features-grid .icon i {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    animation: swing-x 1.5s ease-in-out 1.5s forwards infinite alternate;
}

.about-section-page .about-features-grid .icon .fi:before {
    font-size: 50px;
    font-size: 3.125rem;
}

@media (max-width: 991px) {
    .about-section-page .about-features-grid .icon .fi:before {
        font-size: 40px;
        font-size: 2.5rem;
    }
}

.about-section-page .about-features-grid h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 0.4em;
    color: #cd211d;
}

@media (max-width: 991px) {
    .about-section-page .about-features-grid h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .about-section-page .about-features-grid h3 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.about-section-page .about-features-grid p {
    margin: 0;
}

/*--------------------------------------------------------------
#4.2	mission-vision-section
--------------------------------------------------------------*/
.mission-vision-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.mission-vision-section .mission-vision-grids {
    margin: 0 -15px;
}

@media (max-width: 767px) {
    .mission-vision-section .mission-vision-grids {
        margin: 0 -7.5px;
    }
}

.mission-vision-section .mission-vision-grids .grid {
    width: calc(33.33% - 30px);
    float: left;
    margin: 0 15px 50px;
    padding: 60px 40px;
    -webkit-box-shadow: 0px 5px 41.61px 15.39px rgba(195, 195, 195, 0.21);
    box-shadow: 0px 5px 41.61px 15.39px rgba(195, 195, 195, 0.21);
    position: relative;
}

@media (max-width: 991px) {
    .mission-vision-section .mission-vision-grids .grid {
        width: calc(50% - 30px);
    }
}

@media (max-width: 767px) {
    .mission-vision-section .mission-vision-grids .grid {
        width: calc(50% - 15px);
        margin: 0 7.5px 50px;
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .mission-vision-section .mission-vision-grids .grid {
        width: calc(100% - 15px);
        float: none;
    }
}

.mission-vision-section .grid h3 {
    font-size: 22px;
    font-size: 1.375rem;
    margin: 0 0 0.8em;
}

@media (max-width: 991px) {
    .mission-vision-section .grid h3 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.mission-vision-section .grid p {
    margin-bottom: 0;
}

.mission-vision-section .overlay {
    background: url("../images/add/m-1.jpg") center center/cover no-repeat local;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.mission-vision-section .overlay:before {
    content: "";
    background: rgba(205, 33, 29, 0.85);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.mission-vision-section .grid:hover .overlay,
.mission-vision-section .mission-vision-grids > .grid:nth-child(2) .overlay {
    opacity: 1;
}

.mission-vision-section .grid:hover h3,
.mission-vision-section .grid:hover p,
.mission-vision-section .mission-vision-grids > .grid:nth-child(2) h3,
.mission-vision-section .mission-vision-grids > .grid:nth-child(2) p {
    color: #fff;
}

.about-pg-target-area {
    padding-top: 70px;
}

@media (max-width: 991px) {
    .about-pg-target-area {
        padding-top: 50px;
    }
}

@media (max-width: 767px) {
    .about-pg-target-area {
        padding-top: 30px;
    }
}

/*--------------------------------------------------------------
	#contact-page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#5.1	contact-section
--------------------------------------------------------------*/
.contact-section {
    padding-bottom: 40px;
}

@media (max-width: 991px) {
    .contact-section {
        padding-bottom: 20px;
    }
}

.contact-section .contact-info-grids {
    text-align: center;
    border: 12px solid #cd211d;
}

.contact-section .contact-info-grids > div {
    background-color: #1b2b57;
    width: 25%;
    float: left;
    padding: 60px 35px;
    position: relative;
}

@media (max-width: 991px) {
    .contact-section .contact-info-grids > div {
        width: 50%;
        padding: 60px 35px 40px;
    }
}

@media (max-width: 767px) {
    .contact-section .contact-info-grids > div {
        width: 100%;
        padding: 40px 25px;
        border-left: 0;
        float: none;
    }
}

.contact-section .contact-info-grids > div:nth-child(2),
.contact-section .contact-info-grids > div:nth-child(4) {
    background-color: #0e1f4d;
}

.contact-section .contact-info-grids .fi:before {
    font-size: 50px;
    font-size: 3.125rem;
    color: #cd211d;
}

@media (max-width: 991px) {
    .contact-section .contact-info-grids .fi:before {
        font-size: 40px;
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .contact-section .contact-info-grids .fi:before {
        font-size: 35px;
        font-size: 2.1875rem;
    }
}

.contact-section .contact-info-grids h4 {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 1em 0 0.8em;
}

.contact-section .contact-info-grids p {
    margin: 0;
}

.contact-section .contact-info-grids h4,
.contact-section .contact-info-grids p,
.contact-section .contact-info-grids .fi:before {
    color: #fff;
}

/*.contact-section .contact-form-area {*/
/*    margin-top: 110px;*/
/*}*/

/*@media (max-width: 991px) {*/
/*    .contact-section .contact-form-area {*/
/*        margin-top: 70px;*/
/*    }*/
/*}*/

@media (max-width: 991px) {
    .contact-section .contact-text {
        margin-bottom: 40px;
    }
}

.contact-section .contact-text h3 {
    font-size: 36px;
    font-size: 2.25rem;
    margin: -0.2em 0 0.4em;
}

@media (max-width: 991px) {
    .contact-section .contact-text h3 {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

@media (max-width: 767px) {
    .contact-section .contact-text h3 {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

.contact-section form input,
.contact-section form select,
.contact-section form textarea {
    background: #fff;
    width: 100%;
    height: 55px;
    border: 2px solid #d4d9e0;
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

@media (max-width: 991px) {
    .contact-section form input,
    .contact-section form select,
    .contact-section form textarea {
        height: 45px;
    }
}

.contact-section form input:focus,
.contact-section form select:focus,
.contact-section form textarea:focus {
    border-color: #cd211d;
}

.contact-section form textarea {
    height: 180px;
}

.contact-section form {
    margin: 0 -15px;
    overflow: hidden;
}

.contact-section form ::-webkit-input-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.contact-section form :-moz-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.contact-section form ::-moz-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.contact-section form :-ms-input-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.contact-section form select {
    display: inline-block;
    color: #a9a9a9;
    cursor: pointer;
    opacity: 1;
    padding: 6px 12px;
    font-size: 15px;
    font-size: 0.9375rem;
}

.contact-section form > div {
    width: calc(50% - 30px);
    float: left;
    margin: 0 15px 30px;
}

@media (max-width: 600px) {
    .contact-section form > div {
        width: calc(100% - 30px);
        float: none;
    }
}

.contact-section form .fullwidth {
    width: calc(100% - 30px);
    float: none;
    clear: both;
}

.contact-section form button {
    outline: none;
    border: 0;
}

.contact-map-section .contact-map {
    height: 450px;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
}

/*--------------------------------------------------------------
	#case-single-page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#6.1	case-single-section
--------------------------------------------------------------*/
.case-single-section {
    padding-bottom: 95px;
    /*----------------------------------------
		donate-area-wrapper
	------------------------------------------*/
    /*---------------------------------------
		case-single-sidebar
	----------------------------------------*/
    /*** urgent-case-widget ***/
}

@media (max-width: 991px) {
    .case-single-section .case-info-area {
        margin-top: 50px;
    }
}

.case-single-section .case-info-area h3 {
    font-size: 34px;
    font-size: 2.125rem;
    margin: 0 0 1em;
}

@media (max-width: 991px) {
    .case-single-section .case-info-area h3 {
        font-size: 28px;
        font-size: 1.75rem;
    }
}

.case-single-section .case-info-area .goal-raised {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #cd211d;
    text-transform: uppercase;
    overflow: hidden;
}

.case-single-section .case-info-area .goal-raised > div {
    width: 50%;
    float: left;
}

.case-single-section .case-info-area .goal-raised span {
    color: #020202;
}

.case-single-section .case-info-area .progress {
    background-color: #e6e6e6;
    height: 8px;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: visible;
    box-shadow: none;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.case-single-section .case-info-area .progress span {
    background-color: #cd211d;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    color: #fff;
    padding: 2px 6px;
    text-align: center;
    position: absolute;
    right: -15px;
    top: -32px;
}

.case-single-section .case-info-area .progress span:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #cd211d;
    position: absolute;
    bottom: -6px;
    left: 14px;
}

@media (max-width: 991px) {
    .case-single-section .case-info-area .progress span {
        padding: 0 6px;
    }
}

.case-single-section .case-info-area .progress-bar {
    background: #cd211d;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 10px;
}

.case-single-section .social-area {
    margin: 30px 0;
}

.case-single-section .social-area ul {
    overflow: hidden;
    list-style: none;
    display: inline-block;
}

@media (max-width: 991px) {
    .case-single-section .social-area ul {
        display: inline-block;
    }
}

.case-single-section .social-area ul li {
    float: left;
}

.case-single-section .social-area ul > li + li {
    margin-left: 10px;
}

.case-single-section .social-area ul a {
    background-color: #e2e2e2;
    width: 30px;
    height: 30px;
    line-height: 32px;
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem;
    color: #525252;
    display: inline-block;
    border-radius: 0;
}

.case-single-section .social-area ul a:hover {
    color: #cd211d;
}

.case-single-section .social-area span {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-size: 1.125rem;
    display: inline-block;
    float: right;
    position: relative;
}

@media (max-width: 767px) {
    .case-single-section .social-area span {
        font-size: 15px;
        font-size: 0.9375rem;
    }
}

.case-single-section .social-area span:before {
    content: "";
    background-color: #020202;
    width: 30px;
    height: 1px;
    position: absolute;
    left: -40px;
    top: 50%;
}

.case-single-section .social-area + p {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0;
}

.case-single-section .donate-area-bottom {
    margin-top: 80px;
}

.case-single-section .donate-area-wrapper h3 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 0 0.5em;
}

.case-single-section .donate-area-wrapper h3 + p {
    font-size: 14px;
    font-size: 0.875rem;
    text-transform: uppercase;
    position: relative;
    padding-left: 30px;
    margin: 0 0 2em;
}

.case-single-section .donate-area-wrapper h3 + p span {
    background-color: #cd211d;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.case-single-section .donate-area-wrapper form[id*=give-form] .give-donation-amount {
    margin: 0 0 15px;
    clear: both;
}

.case-single-section .donate-area-wrapper .give-form-type-multi .give-currency-symbol {
    background-color: #f2f2f2;
    height: 50px;
    border: 1px solid #eee;
    border-left: none !important;
    line-height: 50px;
    color: #242f6c;
    padding: 0px 18px;
    font-size: 18px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
}

.case-single-section .donate-area-wrapper #give-recurring-form .give-hidden,
.case-single-section .donate-area-wrapper form.give-form .give-hidden,
.case-single-section .donate-area-wrapper form[id*=give-form] .give-hidden,
.case-single-section .donate-area-wrapper .give-hidden {
    display: none;
}

.case-single-section .donate-area-wrapper form[id*=give-form] .give-donation-amount #give-amount,
.case-single-section .donate-area-wrapper form[id*=give-form] .give-donation-amount #give-amount-text {
    height: 50px;
    border: 1px solid #eee;
}

.case-single-section .donate-area-wrapper .give-btn {
    background: #eeeeee;
    border: 0;
    padding: 12px 20px;
    color: #636363;
    @inlcude transition-time(0.3s);
}

.case-single-section .donate-area-wrapper .give-btn:hover,
.case-single-section .donate-area-wrapper .give-btn:focus {
    background: #cd211d;
    color: #fff;
}

.case-single-section .donate-area-wrapper #give-recurring-form h3.give-section-break,
.case-single-section .donate-area-wrapper #give-recurring-form h4.give-section-break,
.case-single-section .donate-area-wrapper #give-recurring-form legend,
.case-single-section .donate-area-wrapper form.give-form h3.give-section-break,
.case-single-section .donate-area-wrapper form.give-form h4.give-section-break,
.case-single-section .donate-area-wrapper form.give-form legend,
.case-single-section .donate-area-wrapper form[id*=give-form] h3.give-section-break,
.case-single-section .donate-area-wrapper form[id*=give-form] h4.give-section-break,
.case-single-section .donate-area-wrapper form[id*=give-form] legend {
    font-size: 15px;
    margin-bottom: 2em;
}

.case-single-section .donate-area-wrapper #give-recurring-form .form-row label,
.case-single-section .donate-area-wrapper form.give-form .form-row label,
.case-single-section .donate-area-wrapper form[id*=give-form] .form-row label {
    font-weight: 600;
    font-size: 14px;
}

.case-single-section .donate-area-wrapper .give-input {
    font-size: 14px !important;
}

.case-single-section .donate-area-wrapper .give-submit {
    background: #020202;
    font-size: 16px;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
}

.case-single-section .case-single-sidebar > .widget + .widget {
    margin-top: 60px;
}

@media (max-width: 991px) {
    .case-single-section .case-single-sidebar {
        max-width: 400px;
        margin-top: 80px;
    }
}

@media (max-width: 767px) {
    .case-single-section .case-single-sidebar {
        margin-top: 60px;
        max-width: 400px;
    }
}

.case-single-section .contact-widget {
    background: url("../images/add/m-2.jpg") center center/cover no-repeat local;
    padding: 65px 40px;
    position: relative;
    text-align: center;
}

.case-single-section .contact-widget:before {
    content: "";
    background: #cd211d;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.9;
}

.case-single-section .contact-widget > div {
    position: relative;
    z-index: 1;
}

.case-single-section .contact-widget > div + div {
    margin-top: 30px;
}

.case-single-section .contact-widget h4 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4em;
    color: #fff;
    margin: 0;
    text-transform: capitalize;
}

.case-single-section .contact-widget p {
    font-size: 16px;
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

.case-single-section .urgent-case-widget .case {
    overflow: hidden;
}

.case-single-section .urgent-case-widget .cases > .case + .case {
    margin-top: 15px;
    padding-top: 15px;
}

.case-single-section .urgent-case-widget .case .img-holder {
    width: 70px;
    float: left;
}

.case-single-section .urgent-case-widget .case .details {
    width: calc(100% - 70px);
    float: left;
    padding-left: 20px;
}

.case-single-section .urgent-case-widget .case h4 {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.3em;
    margin: 0 0 0.3em;
}

@media (max-width: 1199px) {
    .case-single-section .urgent-case-widget .case h4 {
        margin: 0;
    }
}

.case-single-section .urgent-case-widget .case h4 a {
    display: inline-block;
    color: #020202;
}

.case-single-section .urgent-case-widget .case h4 a:hover {
    color: #cd211d;
}

.case-single-section .urgent-case-widget .case .details .g-r {
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #cd211d;
}

/*--------------------------------------------------------------
	#event-single-page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#7.1	event-single-section
--------------------------------------------------------------*/
@media screen and (min-width: 1200px) {
    .event-single-section .event-info {
        padding-left: 25px;
    }
}

@media (max-width: 991px) {
    .event-single-section .event-info {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .event-single-section .event-info {
        margin-top: 40px;
    }
}

.event-single-section .event-info h3 {
    font-size: 24px;
    font-size: 1.5rem;
    margin: 0 0 1.5em;
}

@media (max-width: 767px) {
    .event-single-section .event-info h3 {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

.event-single-section .event-info ul > li {
    position: relative;
    padding-left: 48px;
    position: relative;
}

.event-single-section .event-info i {
    position: absolute;
    left: 0;
}

.event-single-section .event-info .fi:before {
    font-size: 32px;
    font-size: 2rem;
    color: #cd211d;
}

.event-single-section .event-info h5 {
    font-family: "Jost", sans-serif;
    font-size: 17px;
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 0.3em;
}

@media (max-width: 767px) {
    .event-single-section .event-info h5 {
        font-size: 16px;
        font-size: 1rem;
    }
}

.event-single-section .event-info p {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0;
}

.event-single-section .event-info ul > li + li {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e7e7e7;
}

.event-single-section .event-text {
    margin-top: 60px;
}

.event-single-section .event-text h2 {
    font-size: 36px;
    font-size: 2.25rem;
    margin: 0 0 0.7em;
}

@media (max-width: 991px) {
    .event-single-section .event-text h2 {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

@media (max-width: 767px) {
    .event-single-section .event-text h2 {
        font-size: 26px;
        font-size: 1.625rem;
    }
}

.event-single-section .event-text p {
    margin-bottom: 1.8em;
}

.event-single-section .event-text .img-holder {
    margin-top: 55px;
}

/*--------------------------------------------------------------
	#blog-page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#8.1	blog-pg-section
--------------------------------------------------------------*/
.blog-pg-section {
    /*** format-standard ***/
    /*** format-gallery ***/
    /*** format-quote ***/
    /*** format-video ***/
}

.blog-pg-section .blog-content .post {
    margin-bottom: 100px;
}

@media (max-width: 991px) {
    .blog-pg-section .blog-content .post {
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .blog-pg-section .blog-content .post {
        margin-bottom: 60px;
    }
}

.blog-pg-section .entry-details {
    padding-top: 36px;
    position: relative;
    z-index: 1;
}

@media (max-width: 500px) {
    .blog-pg-section .entry-details {
        padding: 50px 20px 35px;
    }
}

.blog-pg-section .entry-details .date {
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 23px;
    color: #cd211d;
    position: absolute;
    left: 0;
    top: -38px;
    -webkit-box-shadow: 0px 9px 57px 0px rgba(0, 0, 0, 0.13);
    box-shadow: 0px 9px 57px 0px rgba(0, 0, 0, 0.13);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-pg-section .entry-details .read-more {
    font-weight: 700;
    color: #020202;
    position: relative;
    padding-left: 62px;
}

.blog-pg-section .entry-details .read-more:before {
    content: "";
    background-color: #020202;
    width: 48px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 11px;
}

.blog-pg-section .entry-details .read-more:hover {
    color: #cd211d;
}

.blog-pg-section .entry-details .read-more:hover:before {
    background-color: #cd211d;
}

.blog-pg-section .post h3 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.2em;
    margin: -0.27em 0 0.7em;
}

@media (max-width: 991px) {
    .blog-pg-section .post h3 {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

@media (max-width: 767px) {
    .blog-pg-section .post h3 {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

.blog-pg-section .post h3 a {
    color: #020202;
    padding-left: 15px;
    border-left: 5px solid #cd211d;
}

.blog-pg-section .post h3 a:hover {
    color: #cd211d;
}

.blog-pg-section .post p {
    margin-bottom: 1.8em;
}

@media (max-width: 991px) {
    .blog-pg-section .post p {
        font-size: 16px;
        font-size: 1rem;
    }
}

.blog-pg-section .format-standard .entry-details,
.blog-pg-section .format-quote .entry-details {
    border: 2px solid #f4f4f4;
    padding: 100px 35px 45px;
}

@media (max-width: 500px) {
    .blog-pg-section .format-standard .entry-details,
    .blog-pg-section .format-quote .entry-details {
        padding: 100px 20px 35px;
    }
}

.blog-pg-section .format-standard .entry-details .date,
.blog-pg-section .format-quote .entry-details .date {
    top: 35px;
    left: -2px;
}

.blog-pg-section .format-gallery {
    position: relative;
}

.blog-pg-section .format-gallery .owl-controls {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.blog-pg-section .format-gallery .owl-controls .owl-nav [class*=owl-]:hover {
    background: #cd211d;
}

.blog-pg-section .format-gallery .owl-controls .owl-nav [class*=owl-] {
    background: rgba(133, 133, 133, 0.5);
    width: 50px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.blog-pg-section .format-gallery .owl-controls .owl-nav .owl-prev,
.blog-pg-section .format-gallery .owl-controls .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.blog-pg-section .format-gallery .owl-controls .owl-nav .owl-prev {
    left: 15px;
}

.blog-pg-section .format-gallery .owl-controls .owl-nav .owl-next {
    right: 15px;
}

.blog-pg-section .format-quote {
    background-color: #fafafa;
    position: relative;
}

.blog-pg-section .format-quote:before {
    font-family: "Flaticon";
    content: "\f122";
    font-size: 60px;
    font-size: 3.75rem;
    color: #cd211d;
    position: absolute;
    right: 45px;
    top: 25px;
    opacity: 0.5;
}

.blog-pg-section .format-quote h3,
.blog-pg-section .format-quote p {
    position: relative;
}

.blog-pg-section .format-video .video-holder {
    position: relative;
    text-align: center;
}

.blog-pg-section .format-video .video-holder:before {
    content: "";
    background-color: #3e3e3e;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.5;
}

.blog-pg-section .format-video .video-holder:hover:before {
    opacity: 0.7;
}

.blog-pg-section .format-video .video-holder a {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.blog-pg-section .format-video .video-holder .fi:before {
    font-size: 70px;
    font-size: 4.375rem;
    color: #fff;
}

@media (max-width: 767px) {
    .blog-pg-section .format-video .video-holder .fi:before {
        font-size: 60px;
        font-size: 3.75rem;
    }
}

@media screen and (min-width: 1200px) {
    .blog-pg-left-sidebar .blog-sidebar {
        padding-right: 45px;
        padding-left: 0;
    }
}

@media screen and (min-width: 1200px) {
    .blog-pg-fullwidth .blog-content {
        padding: 0;
    }
}

/*--------------------------------------------------------------
	#blog-single-page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#9.1	blog-single-section
--------------------------------------------------------------*/
.blog-single-section {
    /*** tag-share ***/
    /*** author-box ***/
    /*** more-posts ***/
    /*** comments area ***/
    /*** comment-respond ***/
}

.blog-single-section .date-entry-meta {
    position: relative;
    padding-top: 30px;
    margin-bottom: 35px;
}

.blog-single-section .date-entry-meta .cat {
    background: #cd211d;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 15px;
    color: white;
    position: absolute;
    left: 0;
    top: -20px;
    border-radius: 0 50px 50px 0;
}

.blog-single-section .date-entry-meta .entry-meta {
    border-bottom: 2px solid #f4f4f4;
    padding: 15px 35px;
}

@media (max-width: 500px) {
    .blog-single-section .date-entry-meta .entry-meta {
        padding: 15px 20px;
    }
}

.blog-single-section .date-entry-meta .entry-meta span {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1c1c1c;
    display: inline-block;
}

@media (max-width: 767px) {
    .blog-single-section .date-entry-meta .entry-meta span {
        font-size: 13px;
        font-size: 0.8125rem;
    }
}

.blog-single-section .date-entry-meta .entry-meta > span + span {
    margin-left: 20px;
}

.blog-single-section .date-entry-meta .entry-meta span a {
    color: #1c1c1c;
}

.blog-single-section .date-entry-meta .entry-meta span a:hover {
    color: #cd211d;
}

.blog-single-section .post h2 {
    font-size: 30px;
    margin: -0.22em 0 0.7em;
    line-height: 1.3em;
    border-left: 6px solid #cd211d;
    padding-left: 20px;
}

@media (max-width: 991px) {
    .blog-single-section .post h2 {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

@media (max-width: 767px) {
    .blog-single-section .post h2 {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

.blog-single-section .post p {
    margin-bottom: 1.5em;
}

.blog-single-section .post h3 {
    font-size: 24px;
    line-height: 1.3em;
    margin: 1.8em 0 1em;
    padding-left: 20px;
    border-left: 5px solid #cd211d;
}

@media (max-width: 991px) {
    .blog-single-section .post h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .blog-single-section .post h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.blog-single-section .post blockquote {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #020202;
    line-height: 1.6em;
    padding: 0 0 0 85px;
    margin-top: 60px;
    border: 0;
    position: relative;
}

@media (max-width: 767px) {
    .blog-single-section .post blockquote {
        padding-left: 0;
    }
}

.blog-single-section .post blockquote:before {
    font-family: "Flaticon";
    content: "\f105";
    font-size: 45px;
    font-size: 2.8125rem;
    color: #cd211d;
    position: absolute;
    left: 0;
    top: 17px;
}

@media (max-width: 767px) {
    .blog-single-section .post blockquote:before {
        display: none;
    }
}

.blog-single-section .post blockquote .quoter {
    font-size: 14px;
    font-size: 0.875rem;
    display: block;
    margin-top: 15px;
    font-weight: normal;
}

.blog-single-section .tag-share {
    border-top: 1px solid #f4f4f4;
    border-bottom: 1px solid #f4f4f4;
    margin: 75px 0 0;
    padding: 30px 0;
    color: #020202;
}

.blog-single-section .tag-share ul {
    list-style: none;
    display: inline-block;
    overflow: hidden;
}

.blog-single-section .tag-share ul li {
    float: left;
}

@media (max-width: 767px) {
    .blog-single-section .tag-share ul li {
        margin: 2px;
    }
}

.blog-single-section .tag-share ul > li + li {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .blog-single-section .tag-share ul > li + li {
        margin: 2px;
    }
}

.blog-single-section .tag-share .tag {
    float: left;
}

@media (max-width: 600px) {
    .blog-single-section .tag-share .tag {
        float: none;
    }
}

.blog-single-section .tag-share .tag > span {
    color: #020202;
    font-weight: bold;
    display: inline-block;
    padding-right: 8px;
}

.blog-single-section .tag-share .tag ul {
    list-style: none;
    position: relative;
    top: 5px;
}

.blog-single-section .tag-share .tag li {
    position: relative;
}

.blog-single-section .tag-share .tag ul > li + li {
    margin-left: 10px;
}

.blog-single-section .tag-share .tag a {
    background-color: #f5f5f5;
    font-size: 13px;
    font-size: 0.8125rem;
    color: #1c1c1c;
    padding: 6px 15px;
    border-radius: 50px;
    display: inline-block;
}

@media (max-width: 767px) {
    .blog-single-section .tag-share .tag a {
        font-size: 13px;
        font-size: 0.8125rem;
    }
}

.blog-single-section .tag-share .tag a:hover {
    background-color: #cd211d;
    color: #fff;
}

.blog-single-section .tag-share .share {
    float: right;
    position: relative;
    top: -15px;
}

@media (max-width: 600px) {
    .blog-single-section .tag-share .share {
        float: none;
        margin-top: 15px;
    }
}

.blog-single-section .tag-share .share > span {
    color: #020202;
    font-weight: 600;
    display: inline-block;
    padding-right: 8px;
}

.blog-single-section .tag-share .share ul {
    position: relative;
    top: 15px;
}

.blog-single-section .tag-share .share ul > li + li {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .blog-single-section .tag-share .share ul > li + li {
        margin-left: 8px;
    }
}

@media (max-width: 767px) {
    .blog-single-section .tag-share .share ul > li {
        margin: 5px;
    }
}

.blog-single-section .tag-share .share a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #eae6e6;
    border-radius: 50%;
    display: inline-block;
    font-size: 14px;
    font-size: 0.875rem;
    color: #627381;
}

@media (max-width: 767px) {
    .blog-single-section .tag-share .share a {
        font-size: 13px;
        font-size: 0.8125rem;
    }
}

.blog-single-section .tag-share .share a:hover {
    background: #cd211d;
    border-color: #cd211d;
    color: #fff !important;
}

.blog-single-section .tag-share .share ul > li:first-child a {
    color: #3c5ba4;
}

.blog-single-section .tag-share .share ul > li:nth-child(2) a {
    color: #47a0d9;
}

.blog-single-section .tag-share .share ul > li:nth-child(3) a {
    color: #0073b1;
}

.blog-single-section .tag-share .share ul > li:nth-child(4) a {
    color: #933f94;
}

.blog-single-section .author-box {
    padding: 35px 40px 25px;
    margin: 70px 0;
    -webkit-box-shadow: 0px 9px 57px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 9px 57px 0px rgba(0, 0, 0, 0.11);
}

@media (max-width: 991px) {
    .blog-single-section .author-box {
        padding: 35px 40px;
    }
}

@media (max-width: 767px) {
    .blog-single-section .author-box {
        padding: 25px;
    }
}

.blog-single-section .author-box .author-avatar {
    float: left;
}

@media (max-width: 767px) {
    .blog-single-section .author-box .author-avatar {
        float: none;
    }
}

.blog-single-section .author-box .author-avatar img {
    border-radius: 5px;
}

.blog-single-section .author-box .author-content {
    display: block;
    overflow: hidden;
    padding-left: 25px;
}

@media (max-width: 767px) {
    .blog-single-section .author-box .author-content {
        padding: 0;
        margin: 15px 0 0 0;
    }
}

.blog-single-section .author-box .author-content p {
    margin-bottom: 20px;
}

.blog-single-section .author-box .author-name {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 10px;
    color: #020202;
}

.blog-single-section .author-box .social-link {
    display: inline-block;
    list-style: none;
}

.blog-single-section .author-box .social-link li {
    float: left;
    margin-right: 12px;
}

.blog-single-section .author-box .social-link a {
    display: block;
    font-size: 13px;
    font-size: 0.8125rem;
    color: #020202;
}

.blog-single-section .author-box .social-link a:hover {
    color: #cd211d;
}

.blog-single-section .more-posts {
    overflow: hidden;
    border: 2px solid #f4f4f4;
    padding: 0 25px;
}

.blog-single-section .more-posts > div {
    width: 50%;
    float: left;
}

@media (max-width: 767px) {
    .blog-single-section .more-posts > div {
        width: 100%;
        float: none;
    }
}

.blog-single-section .more-posts > div > a {
    display: inline-block;
}

.blog-single-section .more-posts .previous-post,
.blog-single-section .more-posts .next-post {
    padding: 40px 0;
}

@media (max-width: 767px) {
    .blog-single-section .more-posts .previous-post,
    .blog-single-section .more-posts .next-post {
        padding: 25px 15px !important;
    }
}

.blog-single-section .more-posts .next-post {
    text-align: right;
    border-left: 1px solid #f4f4f4;
    padding-left: 15px;
    padding-right: 5px;
}

@media (max-width: 767px) {
    .blog-single-section .more-posts .next-post {
        border-left: 0;
        text-align: left;
        border-top: 1px solid #dae9f9;
    }
}

.blog-single-section .more-posts .next-post .post-control-link {
    padding-right: 25px;
    position: relative;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .blog-single-section .more-posts .next-post .post-control-link {
        padding-right: 0;
    }
}

.blog-single-section .more-posts .next-post .post-control-link:before {
    font-family: "Flaticon";
    content: "\f102";
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 767px) {
    .blog-single-section .more-posts .next-post .post-control-link:before {
        display: none;
    }
}

.blog-single-section .more-posts .previous-post {
    padding-right: 15px;
    padding-left: 5px;
}

.blog-single-section .more-posts .previous-post .post-control-link {
    padding-left: 25px;
    position: relative;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .blog-single-section .more-posts .previous-post .post-control-link {
        padding-left: 0;
    }
}

.blog-single-section .more-posts .previous-post .post-control-link:before {
    font-family: "Flaticon";
    content: "\f101";
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 767px) {
    .blog-single-section .more-posts .previous-post .post-control-link:before {
        display: none;
    }
}

.blog-single-section .more-posts .previous-post > a > span,
.blog-single-section .more-posts .next-post > a > span {
    display: block;
}

.blog-single-section .more-posts .post-control-link {
    font-size: 14px;
    font-size: 0.875rem;
    color: #1c1c1c;
}

.blog-single-section .more-posts .post-name {
    font-size: 17px;
    font-size: 1.0625rem;
    color: #020202;
    margin: 0.7em 0 0;
    font-weight: 600;
}

@media (max-width: 991px) {
    .blog-single-section .more-posts .post-name {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.blog-single-section .more-posts a:hover .post-control-link {
    color: #cd211d;
}

.blog-single-section .comments-area {
    margin-top: 70px;
}

.blog-single-section .comments-area .comments {
    border: 2px solid #f4f4f4;
}

.blog-single-section .comments-area li > div {
    border-bottom: 1px solid #f4f4f4;
    padding: 35px;
}

@media (max-width: 991px) {
    .blog-single-section .comments-area li > div {
        padding: 35px 25px;
    }
}

.blog-single-section .comments-area ol {
    list-style-type: none;
    padding-left: 0;
}

.blog-single-section .comments-area ol ul {
    padding-left: 30px;
    list-style-type: none;
}

.blog-single-section .comments-area ol > li:last-child div {
    border-bottom: 0;
}

.blog-single-section .comments-area .comments-title {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 400;
    margin: 0 0 1.5em;
}

@media (max-width: 991px) {
    .blog-single-section .comments-area .comments-title {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.blog-single-section .comments-area li > div {
    position: relative;
}

.blog-single-section .comments-area .comment-theme {
    position: absolute;
    left: 35px;
}

@media (max-width: 767px) {
    .blog-single-section .comments-area .comment-theme {
        position: static;
    }
}

.blog-single-section .comments-area .comment-theme img {
    border-radius: 5px;
}

.blog-single-section .comments-area .comment-main-area {
    padding-left: 100px;
}

@media (max-width: 767px) {
    .blog-single-section .comments-area .comment-main-area {
        padding-left: 0;
        margin-top: 25px;
    }
}

.blog-single-section .comments-area .comment-main-area p {
    margin-bottom: 20px;
}

.blog-single-section .comments-area .comments-meta h4 {
    font-size: 16px;
    font-size: 1rem;
    color: #020202;
    font-weight: 400;
    margin: 0 0 1em;
}

.blog-single-section .comments-area .comments-meta h4 span {
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-size: 0.8125rem;
    color: #1c1c1c;
    font-weight: normal;
    font-style: italic;
    text-transform: none;
    display: inline-block;
    padding-left: 5px;
}

@media (max-width: 767px) {
    .blog-single-section .comments-area .comments-meta h4 span {
        padding-left: 0;
    }
}

.blog-single-section .comments-area .comment-reply-link {
    background: #e65450;
    font-size: 13px;
    font-size: 0.8125rem;
    width: 80px;
    height: 25px;
    line-height: 25px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
}

.blog-single-section .comments-area .comment-reply-link:hover {
    background-color: #cd211d;
}

.blog-single-section .comment-respond {
    margin-top: 70px;
}

@media screen and (min-width: 992px) {
    .blog-single-section .comment-respond {
        padding: 55px 50px;
        -webkit-box-shadow: 0px 9px 57px 0px rgba(0, 0, 0, 0.11);
        box-shadow: 0px 9px 57px 0px rgba(0, 0, 0, 0.11);
    }
}

.blog-single-section .comment-respond .comment-reply-title {
    font-size: 22px;
    font-size: 1.375rem;
    margin: 0 0 1.5em;
}

@media (max-width: 991px) {
    .blog-single-section .comment-respond .comment-reply-title {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.blog-single-section .comment-respond form input,
.blog-single-section .comment-respond form textarea {
    background-color: #fff;
    width: 100%;
    height: 50px;
    border: 2px solid #f4f4f4;
    padding: 6px 15px;
    margin-bottom: 15px;
    outline: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.blog-single-section .comment-respond form input:focus,
.blog-single-section .comment-respond form textarea:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #cd211d;
}

@media (max-width: 991px) {
    .blog-single-section .comment-respond form input,
    .blog-single-section .comment-respond form textarea {
        height: 40px;
    }
}

.blog-single-section .comment-respond form textarea {
    height: 220px;
    padding: 15px;
}

@media (max-width: 991px) {
    .blog-single-section .comment-respond form textarea {
        height: 150px;
    }
}

.blog-single-section .comment-respond .form-inputs {
    overflow: hidden;
}

.blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
    width: 49%;
    float: left;
}

@media (max-width: 767px) {
    .blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
        width: 100%;
        float: none;
    }
}

.blog-single-section .comment-respond .form-inputs > input:nth-child(3) {
    width: 49%;
    float: right;
}

@media (max-width: 767px) {
    .blog-single-section .comment-respond .form-inputs > input:nth-child(3) {
        width: 100%;
        float: none;
    }
}

.blog-single-section .comment-respond .form-submit input {
    max-width: 180px;
    background-color: #cd211d;
    color: #fff;
    margin-bottom: 0;
    border: 0;
    outline: 0;
    text-transform: capitalize;
    font-weight: 600;
    border-radius: 0;
}

.blog-single-section .comment-respond .form-submit input:hover {
    background-color: #b71d1a;
}

@media screen and (min-width: 1200px) {
    .blog-single-left-sidebar-section .blog-sidebar {
        padding-right: 45px;
        padding-left: 0;
    }
}

/*--------------------------------------------------------------
	#shop-page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#10.1  shop-pg-section
--------------------------------------------------------------*/
.shop-pg-section .shop-grids {
    margin: 0 -15px;
}

.shop-pg-section .shop-grids .grid {
    width: calc(33.33% - 30px);
    float: left;
    margin: 0 15px 30px;
}

@media (max-width: 991px) {
    .shop-pg-section .shop-grids .grid {
        width: calc(50% - 30px);
    }
}

@media (max-width: 550px) {
    .shop-pg-section .shop-grids .grid {
        width: calc(100% - 30px);
        float: none;
    }
}

.shop-pg-section .grid:hover .cart-details li {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.shop-pg-section .grid:hover .img-cart:before {
    opacity: 0.6;
}

.shop-pg-section .img-cart {
    position: relative;
    overflow: hidden;
}

.shop-pg-section .img-cart:before {
    content: "";
    background-color: black;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.shop-pg-section .cart-details {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 20px;
    text-align: center;
}

.shop-pg-section .cart-details ul {
    overflow: hidden;
    display: inline-block;
    list-style-type: none;
}

.shop-pg-section .cart-details li {
    float: left;
    margin: 7px;
    position: relative;
    bottom: -50px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.shop-pg-section .cart-details li:last-child {
    -webkit-transition: all 0.5s 0.1s;
    -o-transition: all 0.5s 0.1s;
    transition: all 0.5s 0.1s;
}

.shop-pg-section .details {
    text-align: center;
    padding: 30px 15px;
}

.shop-pg-section .details h4 {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0 0 0.4em;
}

@media (max-width: 991px) {
    .shop-pg-section .details h4 {
        font-size: 16px;
        font-size: 1rem;
    }
}

.shop-pg-section .details h4 a {
    color: #020202;
}

.shop-pg-section .details h4 a:hover {
    color: #cd211d;
}

.shop-pg-section .details del {
    color: #aaa;
    font-weight: 500;
    display: inline-block;
    padding-right: 10px;
}

@media (max-width: 991px) {
    .shop-pg-section .details del {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.shop-pg-section .details .price {
    color: #020202;
    font-weight: 500;
}

@media (max-width: 991px) {
    .shop-pg-section .details .price {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.shop-pg-section .pagination-wrapper {
    text-align: center;
    clear: both;
}

/*--------------------------------------------------------------
	#shop-single-page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#11.1	shop-single-section
--------------------------------------------------------------*/
.shop-single-section {
    /*** product slider ***/
    /*** product info ***/
}

.shop-single-section .shop-single-slider .slider-for {
    text-align: center;
}

.shop-single-section .shop-single-slider .slider-for img {
    display: inline-block;
}

.shop-single-section .shop-single-slider .slider-nav {
    padding: 0 25px;
    margin-top: 35px;
}

.shop-single-section .shop-single-slider .slider-nav > i {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
}

.shop-single-section .shop-single-slider .slider-nav > i:hover {
    cursor: pointer;
}

.shop-single-section .shop-single-slider .slider-nav .nav-btn-rt {
    left: auto;
    right: 0;
}

.shop-single-section .shop-single-slider .slider-nav .slick-slide {
    text-align: center;
}

.shop-single-section .shop-single-slider .slider-nav .slick-slide img {
    display: inline-block;
}

.shop-single-section .product-details {
    padding: 30px 30px 93px;
    /*** product option ***/
}

@media (max-width: 1199px) {
    .shop-single-section .product-details {
        padding: 40px 30px 85px;
    }
}

@media (max-width: 991px) {
    .shop-single-section .product-details {
        margin-top: 45px;
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .shop-single-section .product-details {
        padding: 0;
    }
}

.shop-single-section .product-details h2 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.4em;
    margin: 0 0 0.33em;
}

@media (max-width: 767px) {
    .shop-single-section .product-details h2 {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

.shop-single-section .product-details .price {
    font-size: 36px;
    font-size: 2.25rem;
    color: #cd211d;
    margin: 7px 0 14px;
}

@media (max-width: 991px) {
    .shop-single-section .product-details .price {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

@media (max-width: 767px) {
    .shop-single-section .product-details .price {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

.shop-single-section .product-details .price .old {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: normal;
    color: #4f4f4f;
    text-decoration: line-through;
    display: inline-block;
    margin-left: 5px;
}

@media (max-width: 991px) {
    .shop-single-section .product-details .price .old {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .shop-single-section .product-details .price .old {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.shop-single-section .product-details p {
    margin-bottom: 1.3em;
}

.shop-single-section .product-details p:last-child {
    margin: 0;
}

.shop-single-section .product-details .product-option {
    margin-top: 45px;
}

.shop-single-section .product-details .product-option .product-row {
    overflow: hidden;
}

.shop-single-section .product-details .product-option .product-row button:after {
    display: none;
}

.shop-single-section .product-details .product-option .product-row > div {
    height: 35px;
    display: inline-block;
    float: left;
}

.shop-single-section .product-details .product-option .product-row > div + div {
    margin-left: 15px;
}

.shop-single-section .product-details .product-option .product-row > div:first-child {
    width: 85px;
}

.shop-single-section .product-details .product-option .product-row > div:last-child .theme-btn:hover {
    background: #cd211d;
    border-color: #cd211d;
    color: #fff;
}

.shop-single-section .product-details .product-option .theme-btn {
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0 20px;
    height: 35px;
    line-height: 27px;
    outline: 0;
}

.shop-single-section .product-details .product-option .theme-btn:hover {
    background-color: #cd211d;
    color: #fff;
    border-color: #cd211d;
}

@media (max-width: 767px) {
    .shop-single-section .product-details .product-option .theme-btn {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.shop-single-section .product-details .product-option .theme-btn:before {
    display: none;
}

.shop-single-section .product-details .product-option .theme-btn:hover {
    background: #020202;
    color: #fff;
}

.shop-single-section .product-details .product-option .heart-btn i {
    font-size: 15px;
    font-size: 0.9375rem;
}

.shop-single-section .product-details .product-option .product-row > div:last-child .theme-btn {
    font-size: 18px;
    font-size: 1.125rem;
}

.shop-single-section .product-details #product-count {
    border-radius: 0;
    border: 1px solid #e6e6e6;
}

.shop-single-section .product-details #product-count:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up,
.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    border-radius: 0;
    border-color: #e6e6e6;
}

.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up:hover,
.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:hover {
    background-color: #cd211d;
    color: #fff;
}

.shop-single-section .product-info {
    margin-top: 75px;
    /*** tabs ***/
    /*** client rv ***/
    /*** review form ***/
}

.shop-single-section .product-info h4 {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.7em;
}

.shop-single-section .product-info p {
    margin-bottom: 1.3em;
}

.shop-single-section .product-info .tab-pane p:last-child {
    margin-bottom: 0;
}

.shop-single-section .product-info .nav-tabs {
    border: 0;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .nav-tabs {
        margin-bottom: 20px;
    }
}

.shop-single-section .product-info .nav-tabs li {
    border: 2px solid #efefef;
    margin-right: 1px;
}

.shop-single-section .product-info .nav-tabs li.active a {
    border: 0;
    outline: 0;
}

.shop-single-section .product-info .nav-tabs a {
    font-weight: 700;
    font-size: 15px;
    font-size: 0.9375rem;
    color: #1c1c1c;
    border: 0;
    border-radius: 0;
    margin: 0;
    display: block;
    padding: 12px 20px 11px;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .nav-tabs a {
        font-size: 14px;
        font-size: 0.875rem;
        font-weight: normal;
        padding: 10px 10px 8px;
        text-transform: none;
    }
}

.shop-single-section .product-info .nav-tabs a:hover,
.shop-single-section .product-info .nav-tabs .active a {
    background: #cd211d;
    color: #fff;
}

.shop-single-section .product-info .nav-tabs .active,
.shop-single-section .product-info .nav-tabs li:hover {
    border-color: #cd211d;
}

.shop-single-section .product-info .tab-content {
    border: 2px solid #efefef;
    padding: 35px 25px;
    margin-top: -1px;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .tab-content {
        border: 0;
        padding: 0;
        margin: 0;
    }
}

.shop-single-section .product-info .client-rv {
    overflow: hidden;
    margin-bottom: 30px;
}

.shop-single-section .product-info .client-rv:last-child {
    margin-bottom: 0;
}

.shop-single-section .product-info .client-rv .client-pic {
    width: 60px;
    float: left;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .client-pic {
        width: 100%;
        float: none;
        margin-bottom: 10px;
    }
}

.shop-single-section .product-info .client-rv .details {
    width: calc(100% - 80px);
    float: right;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .details {
        width: 100%;
        float: none;
    }
}

.shop-single-section .product-info .client-rv .name-rating-time {
    border-bottom: 1px solid #e6e6e6;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .name-rating-time {
        padding-bottom: 3px;
    }
}

.shop-single-section .product-info .client-rv .name-rating-time > div,
.shop-single-section .product-info .client-rv .name-rating > div {
    display: inline-block;
    font-size: 14px;
    font-size: 0.875rem;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .name-rating-time > div,
    .shop-single-section .product-info .client-rv .name-rating > div {
        font-size: 12px;
        font-size: 0.75rem;
        display: block;
    }
}

.shop-single-section .product-info .client-rv .rating {
    font-size: 12px;
    color: #cd211d;
    padding-left: 12px;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .rating {
        padding-left: 0;
        margin: 4px 0 7px;
    }
}

.shop-single-section .product-info .client-rv .name-rating-time .time {
    float: right;
    color: #b3b3b3;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .name-rating-time .time {
        float: none;
    }
}

.shop-single-section .product-info .client-rv .review-body {
    padding-top: 12px;
}

.shop-single-section .product-info .review-form-wrapper {
    margin-top: 50px;
}

@media screen and (min-width: 1200px) {
    .shop-single-section .product-info .review-form-wrapper {
        padding-left: 15px;
    }
}

@media (max-width: 991px) {
    .shop-single-section .product-info .review-form {
        margin-top: 45px;
    }
}

.shop-single-section .product-info .review-form h4 {
    margin-bottom: 1.73em;
    font-weight: 400;
}

.shop-single-section .product-info .review-form form input,
.shop-single-section .product-info .review-form form textarea {
    background: #fbfbfb;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 40px;
    border: 2px solid #efefef;
}

.shop-single-section .product-info .review-form form input:focus,
.shop-single-section .product-info .review-form form textarea:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.shop-single-section .product-info .review-form form textarea {
    height: 130px;
}

.shop-single-section .product-info .review-form form > div {
    margin-bottom: 27px;
}

.shop-single-section .product-info .review-form form > div:last-child {
    margin-bottom: 0;
}

.shop-single-section .product-info .review-form form .rating-wrapper > div {
    display: inline-block;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .review-form form .rating-wrapper > div {
        display: block;
        float: none !important;
    }
}

.shop-single-section .product-info .review-form form .rating-wrapper > div:last-child {
    float: right;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .review-form form .rating-wrapper > div:last-child {
        margin-top: 20px;
    }
}

.shop-single-section .product-info .review-form form .rating a {
    font-size: 14px;
    color: #cccccc;
    display: inline-block;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .review-form form .rating a {
        font-size: 12px;
        margin-right: 5px;
    }
}

.shop-single-section .product-info .review-form form .rating a:last-child {
    margin: 0;
}

.shop-single-section .product-info .review-form form .rating a:hover {
    color: #cd211d;
}

.shop-single-section .product-info .review-form form .theme-btn-s4 {
    background-color: transparent;
    color: #908f8f;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.shop-single-section .product-info .review-form form .theme-btn-s4:hover {
    background-color: #cd211d;
    color: #fff;
}

@media screen and (min-width: 767px) {
    .shop-single-section .product-info .review-form form .theme-btn-s4 {
        font-size: 15px;
        font-size: 0.9375rem;
        padding: 0 20px;
    }
}

.shop-single-section .product-info .review-form .submit button {
    border: 0;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.shop-single-section .product-info .review-form .submit button:hover {
    background: #b71d1a;
    color: #fff;
}

.shop-single-section .slider-nav .slick-slide:focus {
    outline: none;
}

/*--------------------------------------------------------------
	#team-single-page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#12.1	team-sigle-section
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .team-sigle-section .team-single-sidebar {
        margin-bottom: 70px;
    }
}

.team-sigle-section .attorney-widget {
    background: #f1f1f1;
    padding: 35px 30px;
    border: 1px solid #e8e8e8;
}

@media screen and (min-width: 1200px) {
    .team-sigle-section .attorney-widget {
        margin-right: 40px;
    }
}

.team-sigle-section .attorney-widget h3 {
    font-size: 24px;
    font-size: 1.5rem;
    margin: 0 0 0.7em;
}

.team-sigle-section .attorney-widget ul > li + li {
    border-top: 1px solid #e7e7e7;
}

.team-sigle-section .attorney-widget a {
    display: block;
    font-weight: 600;
    color: #1c1c1c;
    padding: 13px 15px 13px 0;
}

.team-sigle-section .attorney-widget a:hover,
.team-sigle-section .attorney-widget li.current a {
    color: #cd211d;
}

.team-sigle-section .attorney-single-content .attorney-single-info {
    padding: 60px;
    -webkit-box-shadow: 0px 9px 42.32px 3.68px rgba(25, 38, 62, 0.06);
    box-shadow: 0px 9px 42.32px 3.68px rgba(25, 38, 62, 0.06);
}

@media (max-width: 991px) {
    .team-sigle-section .attorney-single-content .attorney-single-info {
        padding: 45px;
    }
}

@media (max-width: 767px) {
    .team-sigle-section .attorney-single-content .attorney-single-info {
        padding: 30px 20px;
    }
}

.team-sigle-section .attorney-single-content .attorney-single-info h3 {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 0.3em;
}

@media (max-width: 767px) {
    .team-sigle-section .attorney-single-content .attorney-single-info h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.team-sigle-section .attorney-single-content .attorney-single-info h3 + span {
    font-weight: 600;
    color: #cd211d;
}

.team-sigle-section .attorney-single-content .attorney-single-info .info ul {
    margin-top: 25px;
}

.team-sigle-section .attorney-single-content .attorney-single-info .info ul > li + li {
    margin-top: 8px;
}

.team-sigle-section .attorney-single-content .attorney-single-info .info li i {
    display: inline-block;
    color: #cd211d;
    padding-right: 5px;
}

.team-sigle-section .attorney-single-content .attorney-single-info .info li span {
    font-weight: 600;
    color: #020202;
}

.team-sigle-section .attorney-single-content .attorney-single-info .social {
    margin-top: 30px;
}

.team-sigle-section .attorney-single-content .attorney-single-info .social ul {
    overflow: hidden;
}

.team-sigle-section .attorney-single-content .attorney-single-info .social ul li {
    float: left;
}

.team-sigle-section .attorney-single-content .attorney-single-info .social ul > li + li {
    margin-left: 7px;
}

@media (max-width: 767px) {
    .team-sigle-section .attorney-single-content .attorney-single-info .social ul > li + li {
        margin-left: 3px;
    }
}

.team-sigle-section .attorney-single-content .attorney-single-info .social a {
    background-color: #e6e6e6;
    width: 43px;
    height: 43px;
    line-height: 43px;
    font-size: 13px;
    color: #797979;
    text-align: center;
    border-radius: 50%;
    display: block;
}

@media (max-width: 767px) {
    .team-sigle-section .attorney-single-content .attorney-single-info .social a {
        width: 38px;
        height: 38px;
        line-height: 38px;
    }
}

.team-sigle-section .attorney-single-content .attorney-single-info .social a:hover {
    background: #020202;
    color: #fff;
}

.team-sigle-section .attorney-single-content .attorney-details {
    padding-top: 35px;
}

.team-sigle-section .attorney-single-content .attorney-details h2 {
    font-size: 30px;
    font-size: 1.875rem;
    margin: 1.3em 0 0.7em;
}

@media (max-width: 991px) {
    .team-sigle-section .attorney-single-content .attorney-details h2 {
        font-size: 27px;
        font-size: 1.6875rem;
    }
}

@media (max-width: 767px) {
    .team-sigle-section .attorney-single-content .attorney-details h2 {
        font-size: 24px;
        font-size: 1.5rem;
    }
}

.team-sigle-section .attorney-single-content .attorney-details ul > li + li {
    margin-top: 7px;
}

.team-sigle-section .attorney-single-content .skills {
    padding-top: 10px;
    padding-bottom: 20px;
}

.team-sigle-section .attorney-single-content .skills .skill {
    margin-bottom: 35px;
}

.team-sigle-section .attorney-single-content .skills .skill:last-child {
    margin-bottom: 0;
}

.team-sigle-section .attorney-single-content .skills .skill:last-child .progress {
    margin-bottom: 0;
}

.team-sigle-section .attorney-single-content .skills h6 {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.6em;
    color: #1c1c1c;
}

@media (max-width: 991px) {
    .team-sigle-section .attorney-single-content .skills h6 {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.team-sigle-section .attorney-single-content .skills .progress {
    background-color: #e6e6e6;
    height: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: visible;
    box-shadow: none;
    position: relative;
    border-radius: 3px;
}

.team-sigle-section .attorney-single-content .skills .progress > span {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1c1c1c;
    padding: 2px 6px;
    text-align: center;
    position: absolute;
    right: 20px;
    top: -32px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

@media (max-width: 991px) {
    .team-sigle-section .attorney-single-content .skills .progress > span {
        padding: 0 6px;
    }
}

.team-sigle-section .attorney-single-content .skills .progress-bar {
    background: #cd211d;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 3px;
}

.team-sigle-section .attorney-single-content .skills .progress-bar:after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #cd211d;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: -3px;
    -webkit-box-shadow: 0 0 5px #969696;
    box-shadow: 0 0 5px #969696;
}

.team-sigle-section .attorney-single-content form input,
.team-sigle-section .attorney-single-content form select,
.team-sigle-section .attorney-single-content form textarea {
    background: #f5f5f5;
    width: 100%;
    height: 55px;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

@media (max-width: 991px) {
    .team-sigle-section .attorney-single-content form input,
    .team-sigle-section .attorney-single-content form select,
    .team-sigle-section .attorney-single-content form textarea {
        height: 45px;
    }
}

.team-sigle-section .attorney-single-content form input:focus,
.team-sigle-section .attorney-single-content form select:focus,
.team-sigle-section .attorney-single-content form textarea:focus {
    border-color: #cd211d;
}

.team-sigle-section .attorney-single-content form textarea {
    height: 180px;
}

.team-sigle-section .attorney-single-content form {
    margin: 0 -15px;
    overflow: hidden;
}

.team-sigle-section .attorney-single-content form ::-webkit-input-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.team-sigle-section .attorney-single-content form :-moz-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.team-sigle-section .attorney-single-content form ::-moz-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.team-sigle-section .attorney-single-content form :-ms-input-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.team-sigle-section .attorney-single-content form select {
    display: inline-block;
    color: #a9a9a9;
    cursor: pointer;
    opacity: 1;
    padding: 6px 12px;
    font-size: 15px;
    font-size: 0.9375rem;
}

.team-sigle-section .attorney-single-content form > div {
    width: calc(50% - 30px);
    float: left;
    margin: 0 15px 30px;
}

@media (max-width: 600px) {
    .team-sigle-section .attorney-single-content form > div {
        width: calc(100% - 30px);
        float: none;
    }
}

.team-sigle-section .attorney-single-content form .fullwidth {
    width: calc(100% - 30px);
    float: none;
    clear: both;
}

.team-sigle-section .attorney-single-content form .submit-area {
    margin-bottom: 0;
}

.team-sigle-section .attorney-single-content form .theme-btn-s8, .team-sigle-section .attorney-single-content form .theme-btn-s9, .team-sigle-section .attorney-single-content form .theme-btn-s10 {
    border: 0;
    outline: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.team-sigle-section .attorney-single-content form .theme-btn-s8:hover, .team-sigle-section .attorney-single-content form .theme-btn-s9:hover, .team-sigle-section .attorney-single-content form .theme-btn-s10:hover {
    background: #b71d1a;
    color: #fff;
}

/*--------------------------------------------------------------
    #404-page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#13.1  error-404-section
--------------------------------------------------------------*/
.error-404-section .error {
    width: 50%;
    float: left;
}

@media (max-width: 991px) {
    .error-404-section .error {
        width: 100%;
        float: none;
        text-align: center;
    }
}

.error-404-section .error h2 {
    font-size: 200px;
    font-size: 12.5rem;
    margin: 0;
}

@media (max-width: 991px) {
    .error-404-section .error h2 {
        font-size: 150px;
        font-size: 9.375rem;
    }
}

@media (max-width: 767px) {
    .error-404-section .error h2 {
        font-size: 100px;
        font-size: 6.25rem;
    }
}

.error-404-section .error-message {
    width: 50%;
    float: left;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .error-404-section .error-message {
        width: 100%;
        float: none;
        text-align: center;
        margin-top: 0;
    }
}

.error-404-section .error-message h3 {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 0.8em;
}

.error-404-section .error-message p {
    margin-bottom: 1.8em;
}

/*--------------------------------------------------------------
	### Miscellaneous
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #020202;
}

.theme-btn-s1, .theme-btn-s3, .theme-btn-s6, .theme-btn-s7, .theme-btn-s3, .theme-btn-s6,
.theme-btn-s6,
.theme-btn-s7 {
    font-weight: 400;
}

.theme-btn-s4,
.theme-btn-s5 {
    font-weight: 500;
}

.page-title .breadcrumb li {
    font-size: 16px;
    font-weight: 600;
}

.page-title h2 {
    font-size: 50px;
    font-size: 3.125rem;
    font-weight: bold;
    margin: 0 0 0.2em;
}

@media (max-width: 991px) {
    .page-title h2 {
        font-size: 48px;
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .page-title h2 {
        font-size: 35px;
        font-size: 2.1875rem;
    }
}

@media screen and (min-width: 1200px) {
    .section-title-s3 p {
        font-size: 17px;
    }
}

/*--------------------------------------------------------------
	#blog-section
--------------------------------------------------------------*/
.blog-section .grid:before {
    display: none;
}

.blog-section .entry-details {
    position: static;
    margin-top: 35px;
}

.blog-section .entry-details h3 {
    line-height: 1.2em;
    margin: 0 0 0.6em;
}

.blog-section .entry-details h3 a {
    color: #020202;
}

.blog-section .entry-details p {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
}

/*--------------------------------------------------------------
	#case-single-section
--------------------------------------------------------------*/
.case-single-section .big-img {
    max-height: 455px;
    overflow: hidden;
}

.case-single-section .donate-area-bottom {
    margin-top: 60px;
}

.case-single-section form[id*=give-form] #give-final-total-wrap .give-donation-total-label,
.case-single-section form[id*=give-form] #give-final-total-wrap .give-final-total-amount {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
}

.case-single-section .donate-area-wrapper textarea {
    height: 150px;
}

.case-single-section .case-info-area .goal-raised span {
    display: inline-block;
    padding-right: 8px;
}

@media screen and (min-width: 1200px) {
    .case-single-section .donate-area-wrapper,
    .case-single-section .big-img {
        padding-right: 25px;
    }
}

.case-single-section #give-gateway-radio-list label {
    font-weight: 600;
}

.case-single-section #give_purchase_form_wrap .give-input {
    padding-left: 15px;
}

.case-single-section #give-recurring-form .form-row,
.case-single-section form.give-form .form-row,
.case-single-section form[id*=give-form] .form-row {
    margin-bottom: 22px;
}

.case-single-section #give_purchase_form_wrap {
    padding-top: 15px;
}

.case-single-section .donate-area-wrapper h3 + p {
    text-transform: none;
    font-size: 16px;
    font-weight: 500;
}

/*--------------------------------------------------------------
	#event-single-section
--------------------------------------------------------------*/
.event-single-section .event-info h5 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    padding-top: 5px;
    margin: 0 0 0.1em;
}

.event-single-section .event-info h3 {
    margin: 0 0 1em;
}

@media screen and (min-width: 1200px) {
    .event-single-section .event-text p {
        margin-bottom: 1.8em;
        font-size: 18px;
    }
}

.event-single-section .event-text p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
	#mission-vision-section
--------------------------------------------------------------*/
.mission-vision-section .overlay:before {
    background: rgba(205, 33, 29, 0.95);
}

.about-page-section .about-features-grid p {
    font-size: 16px;
}

.about-section .about-features p {
    font-size: 15px;
}

.shop-pg-section .details h4 {
    font-weight: 500;
}

.shop-pg-section .details del {
    font-weight: 400;
}

/*--------------------------------------------------------------
  #Sliding Text
--------------------------------------------------------------*/
/***Sliding Text one**/
.sliding-text {
    position: relative;
    display: block;
    z-index: 1;
}

.sliding-text-inner {
    position: relative;
    display: block;
    background-color: #1b2b57;
    padding: 35px 0 35px;
    z-index: 1;
}

.sliding-text-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .20;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.sliding-text-list {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    flex-wrap: nowrap;
}

.sliding-text-list li {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    gap: 20px;
}

.sliding-text-list li + li {
    margin-left: 20px;
}

.sliding-text-list li .icon {
    position: relative;
    display: block;
    top: 4px;
}

.sliding-text-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: #ffffff;
}

.sliding-text-list li > p {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

/***Sliding Text Two**/
.sliding-text-two {
    position: relative;
    display: block;
    padding: 52px 0 0;
    z-index: 1;
}

.sliding-text-two-inner {
    position: relative;
    display: block;
}

.sliding-text-two-list {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    flex-wrap: nowrap;
}

.sliding-text-two-list li {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    gap: 30px;
}

.sliding-text-two-list li + li {
    margin-left: 20px;
}

.sliding-text-two-list li .icon {
    position: relative;
    display: block;
}

.sliding-text-two-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 81px;
    color: #d90202;
    text-transform: uppercase;
}

.sliding-text-two-list li > h2 {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 100px;
    line-height: 1.5em;
    font-weight: 700;
    font-style: normal;
    color: #000000;
    text-transform: uppercase;
}

/****/
.sliding-text .sliding-text-list .icon a {
    width: 100%;
    display: inline-block;
    position: relative;
}

.sliding-text .sliding-text-list .icon a:before {
    content: "";
    background-color: rgba(205, 33, 29, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
}

.sliding-text .sliding-text-list .icon a:after {
    font-family: "Themify";
    content: "\e73d";
    font-size: 20px;
    font-size: 1.25rem;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
}

.sliding-text .sliding-text-list .icon a:hover:before {
    opacity: 1;
}

.sliding-text .sliding-text-list .icon a:hover:after {
    opacity: 1;
}

.hero-style-3 .slide-inner > .container {
    margin-top: 150px;
}

/***Sliding Text Three**/
.sliding-text-three {
    padding: 0 0 0;
}


/***/

.color-w {
    color: #bbbdc8 !important;
}

.color-g {
    color: #cdcbcb !important;
}

/***/
.bg-w {
    background-color: #ffffff !important;
}

.bg-b {
    background-color: rgb(183 177 177 / 9%) !important;
}

/***/
.pad-l-0 {
    padding-left: 0 !important;
}

.pad-t-0 {
    padding-top: 0 !important;
}

.pad-r-50 {
    padding-right: 50px !important;
}

.pad-t-50 {
    padding-top: 50px !important;
}

.pad-t-100 {
    padding-top: 100px !important;
}

.pad-t-120 {
    padding-top: 120px !important;
}

/***/
.mar-b-60 {
    margin-bottom: 60px !important;
}

.mar-t-0 {
    margin-top: 0 !important;
}

/*******/
.boder-botom {
    border-bottom: 1px solid #ccc !important;
}


/*# sourceMappingURL=style.css.map */