/* 
* BASIC STYLE
  - General Style    
  - Button Style      
      
* HEADER 
  - Header Style
  
* CONTANT
  - Banner Style
  - Typography css
  - Service Style
  - Gallery Css
  - Team Css
  - Testimonial Css
  - Blog Css
  - Process Css
  - Contact Form Css
  
* FOOTER/*



================================================
	    Fonts - Poppins and Open sans
	================================================
*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&amp;family=Poppins:wght@200;300;400;500;600;700;800&amp;display=swap');

/*
	================================================
        Common CSS
	================================================
*/
* {
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

/* colors */
.primary-color {
    color: #ec353a;
    background-color: #fff;
    padding: 2px 10px;
    border-radius: 5px;
}

.white-color {
    color: #fff;
}

.section {
    padding: 100px 0px;
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.mb-40 {
    margin-bottom: 60px;
}

p {
    font-weight: 600;
    color: #888;
}

.common-transition {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn {
    position: relative;
    padding: 0 30px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    border-width: 0;
    font-size: 14px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    letter-spacing: -0.04em;
    overflow: hidden;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #0640a491;
    border-color: #0640a491;
}

.default-btn {
    border: 1px solid #fff;
    border-radius: 5px;
    color: #333333;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    margin-top: 25px;
    overflow: hidden;
    padding: 12px 42px;
    position: relative;
    text-transform: uppercase;
    z-index: 9;
    background: #fff;
}

.default-btn:hover {
    color: #fff;
    background: #333333
}

.banner-btn {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #363636;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 38px;
    overflow: hidden;
    padding: 0 35px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

.banner-btn::after {
    content: attr(data-text);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: translate(-30%, 0px);
    transition: all 0.3s ease 0s;
    width: 100%;
}

.banner-btn span {
    transition: all 0.3s ease 0s;
}

.banner-btn:hover {
    background: #471A72;
    color: #fff;
    border: 1px solid #471A72;
}

.banner-btn:hover>span {
    opacity: 0;
    transform: translate(0px, 40px);
}

.banner-btn:hover::after {
    opacity: 1;
    transform: translate(0px, 0px);
}

.btn-secondary {
    color: #fff;
    background-color: #0741a5;
    border-color: #0741a5;
}

.btn-primary i {
    margin-left: 10px;
}

label {
    font-weight: 600;
}

.btn-primary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    background-color: #fff;
    height: 100%;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: #ec3236;
    border-color: #fff;
}

.btn-primary:focus {
    color: #ec3236;
    background-color: #fff;
    border-color: #fff;
}

.custom-navbar .navbar-nav li a:hover,
.custom-navbar .navbar-nav li a.active,
.common-color {
    color: #ec3236;
}

.common-back-color {
    background-color: #ec3236;
}

/* Basic-stylesheet */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 23px;
    color: #303030;
    font-weight: 400;
}

ul {
    list-style: none;
}

a {
    color: #000;
    text-decoration: none;
    background-color: transparent;

}

a:hover {
    color: #841619;
    text-decoration: none;
    transition: 0.5s ease-in-out;
}

p {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}


/* Header-css */
/* Header-top-area */
.header-top-area {
    background-color: #841619;
    padding: 10px 0px;
}

.header-left-icon {
    margin-top: 39px;
    text-align: right;
}

.header-left-icon a {
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    height: 30px;
    line-height: 30px;
    margin: 0 8px;
    text-align: center;
    transition: all 0.3s ease 0s;
    width: 30px;
}

.header-left-icon a:last-child {
    margin-right: 0
}


.headers-left {
    padding-top: 10px;
}

.headers-left-text {
    float: left;
    margin-right: 20px;
}

.headers-left-text:last-child {
    margin-right: 0;
}

.headers-left-icon {
    float: left;
    margin-right: 10px;
}

.headers-left-icon i {
    color: #ec3236;
    font-size: 16px;
    margin-top: 5px;
}

.headers-left-text>p {
    font-size: 14px;
    margin-bottom: 0;
    color: #fff;
}

.header-rights {
    float: right;
}

.header-rights i {
    font-size: 13px;
    margin-right: 3px;
    padding-left: 3px;
}

.header-rights a {
    background: #ec3236;
    color: #fff;
    font-size: 14px;
    padding: 5px 5px;
    display: inline-block;
    border-radius: 2px;
    text-align: center;
    font-weight: 600;
    border: 2px solid #ec3236;
}

.header-rights a:hover {
    background-color: #7192cb;
    color: #fff;
    border: 2px solid #7192cb;
    transition: 0.5s ease-in-out;
}

/* Main Menu - Starts */
 .logo {
    max-height: 80px;
} 

.logo-text {
    text-transform: uppercase;
    display: inline-block;
    line-height: 30px;
    font-size: 30px;
    vertical-align: middle;
    padding-left: 10px;
}

.logo img {
    width: 165px;
}

.logo-text span {
    display: block;
}

.dropdown:hover>.dropdown-menu {
    display: block;

}

.dropdown>.dropdown-toggle:active {
    pointer-events: none;
}

.navbar-nav li a {
    font-size: 15px;
    font-weight: 600;
}

.navbar-nav li>a {
    color: #222;
    border-radius: 5px;
    margin-right: 15px;
}

.navbar-nav li:last-child>a {

    margin-right: 0px;
}

.navbar-nav li>a.active,
.navbar-nav li>a:hover {
    color: #0741a4;
    background-color: transparent;
    text-align: center;
    border-radius: 5px;
}

.navbar {
    padding: 0 0;
    float: right;
    padding-top: 25px;
}

.dropdown-menu {
    box-shadow: 0px 0px 25px rgba(0, 0, 0, .2);
    border-width: 0;
    border-radius: 0;
    padding: 0;
    margin-top: 25px;

}

.dropdown {
    padding-bottom: 20px;
}

.dropdown-menu .dropdown-item {
    padding: 10px 16px 8px;
    border-radius: 0;
    border-bottom-width: 1px;
    font-weight: 400;
    font-size: 14px;
    min-width: 200px;
    text-transform: unset;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #ec3236;
    text-decoration: none;
    background-color: #fff;
}

.dropdown-menu .dropdown-item:last-child {
    border-bottom-width: 0;
}

.dropdown:hover>.dropdown-menu {
    -webkit-animation: move-up .3s ease 1 forwards;
    -moz-animation: move-up .3s ease 1 forwards;
    -ms-animation: move-up .3s ease 1 forwards;
    -o-animation: move-up .3s ease 1 forwards;
    animation: move-up .3s ease 1 forwards;
}

/* select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
 }
select::-ms-expand {
    display: none;
} */
@-webkit-keyframes move-up {
    0% {
        margin-top: 25px;
    }

    100% {
        margin-top: -5px;
    }
}

@-moz-keyframes move-up {
    0% {
        margin-top: 25px;
    }

    100% {
        margin-top: -5px;
    }
}

@-ms-keyframes move-up {
    0% {
        margin-top: 25px;
    }

    100% {
        margin-top: -5px;
    }
}

@-o-keyframes move-up {
    0% {
        margin-top: 25px;
    }

    100% {
        margin-top: -5px;
    }
}

@keyframes move-up {
    0% {
        margin-top: 25px;
    }

    100% {
        margin-top: -5px;
    }
}

.fixed-header-menu {
    z-index: 7;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.fixed-header-menu .navbar-brand .logo {
    max-height: 60px;
}

.fixed-header-menu .navbar-brand .logo-text {
    font-size: 22px;
}

.main-header-menu {
    background-color: #ec333833;
    z-index: 999;
    padding: 8px 0;

}

.fixed-top {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);

}

#resMenuCloseIcon {
    display: none;
}

.navbar-brand {
    padding-top: 10px;
    padding-bottom: 8px;
}

/* .fixed-header-menu .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
} */
.fixed-header-menu .navbar-nav li>a {
    padding: 5px 5px;
    color: #fff;
}

/* Main Menu - Ends */



/* .custom-navbar.sticky .back-effect{
	opacity: 1;
} */


/* Slider-start */
/*==========================  START HOME ============================*/

.home {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 550px;
}

.home .home-image::before {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 1;
}

.home .home-detail {
    position: absolute;
    top: 20%;
    right: 0;
    margin: auto;
    left: 0;
    height: 0;
    text-align: center;
    padding: 0 70px;
    z-index: 1;
}

.home .home-title {
    font-size: 45px;
    font-weight: 900;
    color: #fff;
    line-height: 0px;
    margin-top: 70px;
    margin-bottom: 70px;
}

.home h2 {
    font-weight: 600;
    color: #fff;
    font-size: 26px;
    letter-spacing: 10px;
}

.home .owl-item.active h1.home-title {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.home .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}

.home .owl-item.active .home-button {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

.wow {
    visibility: hidden;
}


/* Slider-end */


/* Home-Version-2 */
.heading__subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #ec3236;
    display: block;
    margin-bottom: 10px;
}

.heading__title {
    font-size: 44px;
    font-weight: 800;
}

.about-sec {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 10px 30px 0px rgba(201, 201, 201, 0.48);
}

.about-2 .about-sec .about-two__icon {
    width: 110px;
    height: 110px;
    line-height: 110px;
    border-radius: 50%;
    display: inline-block;
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    -o-transition: .4s linear;
    transition: .4s linear;
}

.about-2 {
    background-image: url('../images/bg.png');
    height: 100%;
    width: 100%;
    background-color: #f5f5f5;
}

.about-sec .about-two__icon {
    font-size: 20px;
    line-height: 1;
    color: #ec3236;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -ms-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    margin-bottom: 10px;
}

.about-sec .about-two__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.about-sec .about-two__desc {
    margin-bottom: 0;
}

.about-sec:hover .about-two__icon {
    -webkit-animation: slideTopDown .7s infinite alternate;
    -moz-animation: slideTopDown .7s infinite alternate;
    -ms-animation: slideTopDown .7s infinite alternate;
    -o-animation: slideTopDown .7s infinite alternate;
    animation: slideTopDown .7s infinite alternate;
}

/* End */

/* Service-2-start */

.service-two {
    padding: 100px 0px 80px 0px;
}

.service-two .headline {
    margin-bottom: 0px;
}

.service-two .content {
    margin: 10px 0 20px 0;
    position: relative;
    background: #fff;
    padding: 35px 35px;
    box-shadow: 0px 0px 10px #eae8e8;
    border-radius: 10px;
}

.service-two .content:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0;
    height: 0;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 10px;
}

.service-two .content:hover:before {
    animation: animate 1s linear forwards;
}

@keyframes animate {
    0% {
        width: 0;
        height: 0;
        border-top-color: #ec3236;
        border-right-color: transparent;
        border-left-color: transparent;
        border-bottom-color: transparent;
    }

    50% {
        width: 100%;
        height: 0;
        border-top-color: #ec3236;
        border-right-color: #ec3236;
        border-left-color: transparent;
        border-bottom-color: transparent;
    }

    100% {
        width: 100%;
        height: 100%;
        border-top-color: #ec3236;
        border-right-color: #ec3236;
        border-left-color: transparent;
        border-bottom-color: transparent;
    }
}

.service-two .content:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0;
    height: 0;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 10px;
}

.service-two .content:hover:after {
    animation: animate2 1s linear forwards;
    animation-delay: 1s;
}

@keyframes animate2 {
    0% {
        width: 0;
        height: 0;
        border-top-color: transparent;
        border-right-color: transparent;
        border-left-color: transparent;
        border-bottom-color: #ec3236;
    }

    50% {
        width: 0;
        height: 100%;
        border-top-color: transparent;
        border-right-color: transparent;
        border-left-color: #ec3236;
        border-bottom-color: #ec3236;
    }

    100% {
        width: 100%;
        height: 100%;
        border-top-color: transparent;
        border-right-color: transparent;
        border-left-color: #ec3236;
        border-bottom-color: #ec3236;
    }
}

.service-two .content img {
    float: left;
    max-width: 95px;
    margin-right: 25px;
}

.service-two .content h5 {
    color: #563f4f;
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 700;
}

.service-two .content p {
    margin: 0;
    font-weight: 500;
    color: #888;
}


/* End */


/* Home-Version-three */

.about-section-two {
    padding: 100px 0px;
}

.about-2 .row {
    border-radius: 30px;
    overflow: hidden;
}

.about-single-service {
    position: relative;
    overflow: hidden;
}

.about-single-service .service-img {
    position: relative;
    z-index: 1;
    transform: scale(1) rotate(0);
    transition: all .3s ease 0s;
}

.about-single-service .service-img img {
    display: block;
    width: 100%;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.about-single-service .overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .3s ease 0s;
    opacity: .4;
    background: #111;
}

.about-single-service:hover .service-content {
    opacity: 1;
    transform: translateY(0px);
}

.about-single-service:hover .service-title {
    opacity: 0;
}

.service-content p {
    color: #fff;
}

.btn-light {
    margin-top: 30px;
}

.about-single-service:hover .overlay {
    opacity: 0.9;
    background: #563f4f;
}

.about-single-service:hover .service-img {
    transform: scale(1.05) rotate(0.02deg);
}

.service-hover {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.service-hover .service-title {
    opacity: 1;
    transition: all .3s ease 0s;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.service-hover .service-title h3 {
    flex: 1;
}

.service-hover h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(11, 11, 11, 0.4);
}

.service-hover .service-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all .3s ease 0s;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    flex: 0 1 auto;
    padding: 20px 40px;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
}

/* Service-three-start */
.service-three-section {
    background: #eaeff7;
    padding: 100px 0 70px 0;
}

.service-three-section .single-service {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 3px 35px 0 rgba(46, 61, 73, 0.06);
    border-bottom: 3px solid #ec3236;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.service-three-section .single-service span {
    text-align: center;
}

.service-three-section .single-service span img {
    position: relative;
    max-width: 100px;
    object-fit: cover;
    background: #f3eff9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 45px;
    z-index: 1;
}

.service-three-section .single-service span:after {
    position: absolute;
    content: '';
    background: url(../images/icon/service-dot.png);
    height: 69px;
    width: 232px;
    left: 90px;
    top: 60px;
    z-index: 0;
}

.service-three-section .single-service h3 {
    font-size: 24px;
    font-weight: 800;
    color: #303030;
    text-align: center;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.service-three-section .single-service:hover {
    margin-top: -5px;
}

.service-three-section .single-service:hover h3 {
    color: #ec3236;
}

.service-three-section .green {
    border-bottom: 3px solid #7fc540;
}

.service-three-section .green i {
    color: #7fc540;
}

.service-three-section .violet {
    border-bottom: 3px solid #6e80fe;
}

.service-three-section .violet i {
    color: #6e80fe;
}

.service-three-section .pink {
    border-bottom: 3px solid #ec3236;
}

.service-three-section .pink i {
    color: #ec3236;
}

.service-three-section .orange {
    border-bottom: 3px solid #ffb606;
}

.service-three-section .orange i {
    color: #ffb606;
}


/* End */


/*===============
4.  About-us-start
=================*/
.about-area {
    padding: 100px 0px 130px 0px;
}

.about-content {
    margin-top: 65px;
    margin-right: 60px
}

.about-title h2 {
    font-size: 36px;
    color: #2c2c2c;
    font-weight: 800;
    margin-bottom: 30px;
}

.about-title h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    background-color: #f9f9f9;
    padding: 10px 10px;
    border-left: 4px solid #841619;
}

.benefit-area .about-title h2 {
    margin-bottom: 50px;
}

.about-img-heading {
    position: absolute;
    bottom: 0;
    background-color: #ffffff;
    width: 100%;
    color: #563f4f;
    font-weight: 600;
    padding: 10px 15px;
}

.about-content p {
    font-size: 14px;
    color: #888;
    line-height: 30px;
    margin-bottom: 30px;
}

.about-main-head:after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50px;
    width: 100%;
    height: 100%;
    border-style: solid;
    border-width: 15px;
    border-color: #841619;
    z-index: 0;
}


.about-main-head:before {
    content: '';
    position: absolute;
    top: 100px;
    left: 60px;
    width: 100%;
    height: 50%;
    background-color: #fff;
    background-image: url(../images/dot-pattern.png);
    background-repeat: repeat;
    background-position: -4px 0;
    z-index: 1;
}

.about-card {
    position: relative;
    margin-bottom: 30px;
    z-index: 9;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.about-card img {
    border-radius: 5px;
}

.about-img-heading h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}


.about-content .banner-btn {
    background: #0641a4;
    color: #fff;
    border: 1px solid #0641a4;
}

/* Why-us-start */
.why-us {
    background-image: url(../images/about/bg-2.jpg);
    background-size: cover;
    background-position: center;
    padding: 100px 0px;
}

.why-us-area {
    width: 50%;
    padding: 50px 50px 34px 50px;
    border-radius: 5px;
    background-color: #563f4f;
    position: relative;
    z-index: 99;
}

.why-us-area::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 20px;
    width: 100%;
    height: 50%;
    background-image: url(../images/dot-pattern.png);
    background-repeat: repeat;
    background-position: -4px 0;
    z-index: 1;
}

.why-us-area h2 {
    font-size: 35px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.why-us-area p {
    color: #fff;
}

.why-us-area .form-control {
    border-radius: 5px;
    background-color: #ffffff;
    border: 0;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
    height: 40px;
}

.why-us-area .form-control:focus {
    background-color: #563f4f;
    box-shadow: none;
    color: #fff;
    border: 2px solid #ffffff;
}

.btn-donate {
    background-color: #ec3236;
    margin-top: 20px;
    border: 2px solid #fff;
    color: white;
    width: 20%;
    padding: 0px;
    line-height: 30px;
}

.btn-donate:hover {
    color: #563f4f;
    text-decoration: none;
    background-color: #ffffff;
}

/* Why-choose-us-start */

.why-choose-area {
    background: #f9fcff;
    padding: 100px 0px 130px 0px;
}

.why-choose-area .why-choose-content .content span {
    font-weight: 700;
    position: relative;
    color: #ec3236;
}

.why-choose-area .why-choose-content .content span::before {
    position: absolute;
    content: '';
    right: -75px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 60px;
    background-color: #ec3236;
}

.why-choose-area .why-choose-content .content .title {
    font-size: 56px;
    line-height: 57px;
    font-weight: 800;
    padding-top: 18px;
    padding-bottom: 20px;
}

.why-choose-area .why-choose-thumb {
    position: relative;
}

.why-choose-area .why-choose-thumb .play {
    height: 150px;
    width: 150px;
    background-color: #563f4f;
    position: absolute;
    right: 40px;
    border-radius: 5px;
    text-align: center;
    bottom: -50px;
    border-radius: 5px;
}

.why-choose-area .why-choose-thumb .play a {
    text-align: center;
}

.why-choose-area .why-choose-thumb .play a i {
    color: #ec3236;
    background: #f2f5f8;
    height: 75px;
    width: 75px;
    text-align: center;
    line-height: 75px;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 23px;
}

.why-choose-content .content p {
    color: #888;
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 0;
    margin-top: 10px;
}

.why-choose-thumb img {
    border-radius: 5px;
    box-shadow: 0px 10px 30px 0px rgba(201, 201, 201, 0.48);
}

.why-choose-area .why-choose-thumb .play a span {
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
}

/* End */

/*------------------------
    5. Services area css
-----------------------------*/
.services-section {
    padding: 100px 0px 70px 0px;
}

.section-title h2 {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 30px;
}

.section-title p {
    font-size: 14px;
    margin-bottom: 0;
}

.section-title {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 40px;
}

.color {
    background-color: #fbd6d7;
    color: #0641a4;
    padding: 0px 10px;
    font-size: 30px;
    border-right: 5px solid #841619;
}

.services-img,
.services-title {
    display: inline-block;
}

.services-title>h5 {
    font-size: 22px;
    font-weight: 700;
    color: #841619;
    line-height: 1.4;
}

.services-title {
    margin-left: 15px;
}

.services-text>p {
    font-size: 14px;
    margin-bottom: 0;
}

.services-text {
    padding-top: 20px;
}

.single-services {
    margin-bottom: 30px;
    box-shadow: 0 0px 3px #eee;
    padding: 30px 30px 30px;
    border: 1px solid transparent;
    transition-duration: .5s;
    border-bottom: 5px solid transparent;
    border-right: 5px solid transparent;
    position: relative;
}

.big-text {
    font-size: 70px;
    font-weight: 800;
    position: absolute;
    color: #0641a42b;
    top: 30px;
    right: 10px;
}

.services-img img {
    width: 70px;
}

.single-services:hover {
    border-bottom: 5px solid #841619;
    border-right: 5px solid #841619;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}

.services-section-img img {
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    border-radius: 5px;
}

.service-card {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #841619;
    padding: 10px 20px;
    color: #fff;
}

.service-card-main {
    position: relative;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 600;
}

.service-card p {
    color: #fff;
}


/* Why-you-help-them-start */
/* home-service-area */
.home-service-area {
    overflow: hidden;
    background-color: #f9f9f9;
}

.home-service-wrapper {
    background-position: center center;
    background-size: cover;
    background-image: url('../images/about/bg.jpg');
    padding: 120px 0;
}

.home-content {
    background: #fff;
    margin: auto;
    padding: 40px 40px;
    width: 420px;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    border-bottom: 5px solid #563f4f;
}

.home-content h3 {
    border-bottom: 1px solid #c4a2fc;
    color: #563f4f;
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.content {
    margin-top: 27px;
}

.content h4 {
    font-size: 18px;
    color: #563f4f;
    font-weight: 700;
    margin-bottom: 0;
}

.content p {
    color: #563f4f;
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 0;
    margin-top: 10px;
}

.home-area-right {
    padding: 50px;
}

.home-section>h3 {
    color: #563f4f;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
}

.home-section h4 {
    font-size: 20px;
    letter-spacing: 5px;
    font-weight: 600;
    color: #ec3236;
}

.homes-info p {
    font-size: 14px;
    line-height: 24px;
    color: #888;
    margin-bottom: 0;
}

.homes-info {
    margin-bottom: 28px;
    padding-right: 47px;
}

.home-wrapper {
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}

.home-text img {
    width: 70px;
}

.home-text {
    position: relative;
}

.home-text>p {
    color: #888;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

.home-text h5 {
    font-size: 16px;
    padding-top: 20px;
    font-weight: 700;
    color: #563f4f;
    margin: 0;
}

/* Gallery-start */
/*--------------------------------------------------------------
  ##  Project
  --------------------------------------------------------------*/

.cause-projects-area {
    padding: 100px 0px 70px 0px;
}

.comp-project-items {
    border-radius: 30px;
    overflow: hidden;
}

.single-comp-project {
    transition: 0.4s;
}

.single-comp-project:hover .we-bg-secondary {
    background-color: #841619;
}

.single-comp-project:hover .comp-hover-box {
    height: 100%;
    opacity: 1;
}

.comp-project-content {
    height: 350px;
    padding: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.4s;
    background-color: #f2f2f2;
}

.single-comp-project h1 {
    font-size: 50px;
    font-weight: 800;
    color: #ffffff;
    position: absolute;
    top: 10px;
    right: 15px;
    margin: 0;
}

.comp-project-content h3 {
    font-weight: 800;
    color: #563f4f;
    margin-bottom: 20px;
    transition: 0.4s;
    text-align: left;
}

.comp-project-content p {
    transition: 0.4s;
}

.comp-project-content .we-btn {
    transition: 0.4s;
    display: none;
}

.comp-project-bg {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.comp-hover-box {
    width: 100%;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background-color: rgba(86, 63, 79, 0.5);
    transition: 0.4s;
}

.cause-project {
    overflow: hidden;
}

.cause-project .hyperlink {
    z-index: 20;
}

.cause-project:hover .cause-project-cat {
    left: 0;
    opacity: 1;
}

.cause-project:hover .cause-project-thum img {
    transform: scale(1.1);
}

.cause-project:hover .cause-project-thum:after {
    opacity: 1;
    bottom: 0;
}

.cause-project:hover .cause-project-thum:before {
    opacity: 1;
    height: 100%;
}

.cause-project:hover h3 {
    color: #c4a2fc;
}

.cause-project:hover i {
    background-color: #c4a2fc;
    border-radius: 50%;
}

.cause-project-cat {
    position: absolute;
    left: -100%;
    top: 15px;
    padding: 5px 15px;
    color: #fff;
    background-color: #c4a2fc;
    transition: 0.35s;
    opacity: 0;
    border-radius: 0px 5px 5px 0px;
}

.cause-project-thum {
    overflow: hidden;
}

.cause-project-thum img {
    transition: 0.35s;
    width: 100%;
    height: auto;
}

.cause-project-thum:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -40px;
    z-index: 15;
    width: 100%;
    height: 40px;
    background: url(../images/curve.svg) center bottom no-repeat;
    transition: 0.35s;
    opacity: 0;
}

.cause-project-thum:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: 0.35s;
}

.cause-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.cause-project-content {
    padding: 20px;
}

ul.project-badges {
    margin: 15px 0px;
}

ul.project-badges li {
    display: inline-block;
    background-color: #0641a49e;
    border-radius: 5px;
    padding: 2px 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;
    margin-right: 10px;
}

ul.project-badges li.pink {
    background-color: #ec3236;
}

.progress {
    margin: 20px 0px 0px 0px;
}

.cause-project-content p {
    margin-top: 10px;
}

.progress-bar {
    width: 0;
    animation: progress 1.5s ease-in-out forwards;
    background-color: #ec3236;

    .title {
        opacity: 0;
        animation: show 0.35s forwards ease-in-out 0.5s;
    }
}

@keyframes progress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cause-project-content i {
    position: absolute;
    top: 0%;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #c4a2fc;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    transform: translateY(-50%);
    transition: 0.35s;
    cursor: pointer;
    border-radius: 4px;
    z-index: 999;
}

.cause-project-content h3 {
    margin-bottom: 0;
    font-size: 20px;
    transition: 0.35s;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-weight: 800;
    color: #303030;
}

.mb-30,
.my-30 {
    margin-bottom: 30px !important;
}

.project-info {
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
    padding: 30px;
}

.project-info ul li {
    border-bottom: 1px solid #e7e7e7;
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
    padding-bottom: 15px;
    text-align: left;
}

.project-info ul li:last-child {
    margin-bottom: 0;
}

.project-info ul li span {
    color: #999999;
    display: block;
    font-weight: 400;
    margin-top: 5px;
    text-transform: capitalize;
}

.project-info ul li span i {
    margin-right: 10px;
    color: #563f4f;
}


/*==========================  START TEAM ============================*/
.team-sec {
    padding: 0px 0px 100px 0px;
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    background-color: rgb(196, 162, 252, 0.6);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
}

.team-data:hover .team-image::before {
    opacity: 1;
}

.team-data .team-image img {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    max-width: 100%;
}

.team-data:hover .team-image img {
    transform: scale(1.1) rotate(5deg);
    -webkit-transform: scale(1.1) rotate(5deg);
    -moz-transform: scale(1.1) rotate(5deg);
}

.team-inner {
    background-color: #fff;
    padding: 20px 10px;
    position: absolute;
    bottom: -45px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    z-index: 1;
}

.team-data:hover .team-inner {
    bottom: 0;
}

.team-data {
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}

.team-image .team-inner ul {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 0;
    transition: all .5s;
    z-index: 1;
    margin: 0 0 15px 0
}

.team-info h5 {
    font-weight: 700;
}

.team-image .team-inner ul li {
    display: inline-block;
    margin: 0px 2px;
}

.team-image .team-inner ul li a {
    background-color: #c4a2fc;
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    color: #ffffff;
    border-radius: 4px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.team-image .team-inner ul li a:hover {
    background-color: #ec3236;
    color: #fff;
}

.team-inner .team-info {
    text-align: center;
    position: relative;
    padding: 0;
}

.team-inner .team-info a {
    color: #ec3236;
}

.team-inner .team-info span {
    font-size: 14px;
    color: #fff;
    display: block;
}

/********************************/
/*          9. FAQ              */
/********************************/
.faq {
    padding: 100px 0px;
    position: relative;
    background-image: url(../images/bg.png);
    height: 100%;
    width: 100%;
}


.top_mrg_faq {
    margin-top: 70px;
}

.faq-img-card {
    position: relative;
}

.faq-img-heading {
    background-color: #ec3236;
    color: #fff;
    padding: 10px;
    position: absolute;
    width: 100%;
}

.faq-img-heading h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

.faq_list {
    margin-bottom: 25px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.05);
    padding: 20px;
    background-color: #fff;
    border-bottom: 5px solid #c4a2fc;
    border-radius: 5px;
}

.faq_list .box_number {
    width: 65px;
    height: 65px;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    line-height: 65px;
    float: left;
    margin-bottom: 30px;
    margin-right: 15px;
    font-size: 35px;
    font-weight: 800;
    position: relative;
    top: -2px;
    background-color: #c4a2fc;
}

.faq_list h4 {
    font-size: 16px;
    color: #2d2d43;
    font-weight: 600;
}

.faq_list p {
    color: #7c7c7c;
    line-height: 22px;
    margin-bottom: 0px;
}

.faq_content img {
    width: 100%;
    box-shadow: 0px 10px 30px 0px rgba(201, 201, 201, 0.48);
    border-radius: 5px 5px 0px 0px;
}

/*==========================  END TEAM ============================*/



/*--------------------------------------------------------------
Blog
  --------------------------------------------------------------*/
.blog-area {
    padding: 0px 0px 100px 0px;
}

.comp-project-items {
    border-radius: 30px;
    overflow: hidden;
}

.single-comp-project {
    transition: 0.4s;
}

.single-comp-project:hover .we-bg-secondary {
    background-color: #841619;
}

.single-comp-project:hover>.comp-project-content h3 {
    color: #ffffff;
}

.single-comp-project:hover>.comp-project-content p {
    color: #ffffff;
}

.single-comp-project:hover .comp-hover-box {
    height: 100%;
    opacity: 1;
}



.comp-project-content p {
    transition: 0.4s;
}

.comp-project-content .we-btn {
    transition: 0.4s;
    display: none;
}

.comp-project-bg {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.comp-hover-box {
    width: 100%;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background-color: rgba(132, 22, 25, 0.5);
    transition: 0.4s;
}

.we-project-wrap {
    overflow: hidden;
}

.we-project-wrap .hyperlink {
    z-index: 20;
}

.we-project-wrap:hover .we-project-cat {
    left: 0;
    opacity: 1;
}

.we-project-wrap:hover .we-project-thum img {
    transform: scale(1.1);
}

.we-project-wrap:hover .we-project-thum:after {
    opacity: 1;
    bottom: 0;
}

.we-project-wrap:hover .we-project-thum:before {
    opacity: 1;
    height: 100%;
}

.we-project-wrap:hover h3 {
    color: #ff9f1f;
}

.we-project-wrap:hover i {
    background-color: #ff9f1f;
    border-radius: 50%;
}

.we-project-cat {
    position: absolute;
    left: -100%;
    top: 15px;
    padding: 5px 15px;
    color: #fff;
    background-color: #563f4f;
    transition: 0.35s;
    opacity: 0;
    box-shadow: 0 0 8px 5px rgba(255, 255, 255, 0.7);
}

.we-project-thum {
    overflow: hidden;
}

.we-project-thum img {
    transition: 0.35s;
    width: 100%;
    height: auto;
}

.we-project-thum:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -40px;
    z-index: 15;
    width: 100%;
    height: 40px;
    background: url(https://akthemes.com/) center bottom no-repeat;
    transition: 0.35s;
    opacity: 0;
}

.we-project-thum:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: 0.35s;
}

.we-project-content {
    padding: 30px 65px 30px 20px;
}

.we-project-content i {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #563f4f;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    transform: translateY(-50%);
    transition: 0.35s;
    cursor: pointer;
    border-radius: 4px;
}

.we-project-content h3 {
    margin-bottom: 0;
    font-size: 20px;
    transition: 0.35s;
    cursor: pointer;
}

.project-info {
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
    padding: 30px;
}

.project-info ul li {
    border-bottom: 1px solid #e7e7e7;
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
    padding-bottom: 15px;
    text-align: left;
}

.project-info ul li:last-child {
    margin-bottom: 0;
}

.project-info ul li span {
    color: #999999;
    display: block;
    font-weight: 400;
    margin-top: 5px;
    text-transform: capitalize;
}

.project-info ul li span i {
    margin-right: 10px;
    color: #563f4f;
}



/* Event-detail-start */

/* News Details - Starts */
.news-qoute {
    display: block;
    padding: 28px 28px;
    position: relative;
    font-size: 18px;
    line-height: 28px;
    font-style: italic;
    border-left-width: 3px;
    border-left-style: solid;
    background-color: #ec3236;
    color: #fff;
    border-left: 4px solid #000;
}

.blog-detail h1 {
    font-weight: 800;
    margin-top: 0px;
    color: #ec3236;
}

.blog-detail h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    background-color: #f9fcff;
    padding: 20px;
    border-radius: 5px;
}

.news-details h1 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: bold;
    margin: 0;
    word-wrap: break-word;
}

.news-details h2 {
    font-size: 18px;
    line-height: 1.25;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 0;
    color: #999;
    margin: 12px 0;
}

.news-stats-list li {
    margin-left: 20px;
    font-size: 14px;
}

.news-stats-list li i {
    margin-right: 3px;
}

.news-stats .float-left {
    font-size: 14px;
}

.news-details p {
    font-size: 16px;
    line-height: 1.5;
}

.news-banner-img {
    margin: 20px 0;
}

.news-video {
    text-align: center;
}

.news-banner-img-2 {
    margin-bottom: 20px;
}

.news-author-details {
    padding-left: 20px;
}

.news-author-details h3 {
    font-weight: 600;
    font-size: 18px;
}

.news-author-details a {
    font-style: italic;
    font-size: 14px;
}

.news-author>div {
    display: table-cell;
    margin-top: 0;
    vertical-align: top;
}

.news-author img {
    width: 200px;
}

.news-author {
    margin-top: 30px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}

.news-author-details p {
    margin-bottom: 0;
    font-size: 15px;
}

.news-details-side .footer-column {
    padding-top: 0;
}

.news-details-side .footer-column h3 {
    margin-top: 0;
    background-color: #f2f2f2;
    border-left: 4px solid #ec3236;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
}

/* Footer Section - Starts */
.footer-column h3 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    margin: 20px 0 30px 0;
}

.footer-column p {
    font-size: 14px;
}

.footer-bottom-container {
    height: 50px;
}

.footer-bottom-container .desc {
    line-height: 50px;
    text-align: center;
    font-size: 14px;
}

.footer-column a:hover {
    text-decoration: none;
}

.footer-social-menu li a {
    font-size: 18px;
}

.footer-social-menu li {
    margin-right: 15px;
}

.footer-about-links li i {
    padding-right: 6px;
}

.list-vertical-reset li i {
    padding-right: 10px;
}

.footer-column {
    padding: 30px 0;
}

.footer-about-links li,
.list-vertical-reset li {
    font-size: 14px;
    margin: 12px 0;
}

.footer-logo {
    margin: 10px 0 20px 0;
    display: inline-block;
}

.footer-news-img {
    max-width: 72px;
    width: 100%;
}

.footer-news-desc-container {
    padding-left: 10px;
}

.footer-news-img-container,
.footer-news-desc-container {
    display: table-cell;
    vertical-align: top;
}

.footer-news-desc-container h4 {
    font-size: 15px;
    font-weight: 600;
}

.footer-news-desc-container .footer-news-dates {
    font-size: 12px;
    font-weight: 600;
}

.footer-news-img-container {
    width: 72px;
}

.footer-news article {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9fcff;
}

.widget {
    margin-bottom: 30px;
    border: 1px solid #fff;
    background: #f9fcff;
    overflow: hidden;
    padding: 30px 20px;
}

.widget .tagcloud a {
    padding: 5px 12px;
    background: #ec3236;
    color: #ffffff;
    display: inline-block;
    border-radius: 30px;
    margin: 5px 2px;
    font-weight: 500;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}


/*==========================  START TESTIMONIAL ============================*/
.testimonial {
    background-color: #563f4f;
    padding: 100px 0px 90px 0px;
}

.testimonial .section-title p {
    color: #fff;
}

.testimonial h2 {
    color: #fff;
}

.testimonial .inner-testimonial .testimonial-data {
    max-width: 700px;
}

.testimonial .inner-testimonial .testimonial-data .testimonial-img img {
    height: 130px;
    width: 130px !important;
}

.testimonial .inner-testimonial .testimonial-data .testimonial-detail {
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    margin-top: 50px;
    position: relative;
}

.testimonial .testimonial-data .testimonial-detail::before {
    content: '';
    position: absolute;
    left: 40%;
    margin: auto;
    top: -39px;
    border-top: 20px solid transparent;
    border-right: 20px solid #fff;
    border-bottom: 19px solid #fff;
    border-left: 20px solid transparent;
    width: 20px;
}

.testimonial .inner-testimonial .testimonial-data .client-review {
    font-size: 14px;
    color: #6c757d;
}

.testimonial .inner-testimonial .testimonial-data .client-name {
    font-size: 18px;
    color: #563f4f;
}

.testimonial .inner-testimonial .testimonial-data .client-name.position {
    color: #888;
    font-weight: bold;
    font-size: 14px;
}

.testimonial .inner-testimonial .testimonial-data .testimonial-icon i {
    font-size: 48px;
    color: #fff;
}

.testimonial .owl-carousel .owl-dot {
    border-radius: 10px;
    height: 15px;
    margin-right: 10px;
    width: 15px;
    background-color: transparent;
    margin-bottom: 10px;
}

.testimonial .owl-carousel .owl-dot.active {
    background-color: #c4a2fc;
    border: 1px solid #c4a2fc;
}

.testimonial .owl-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.testimonial .owl-carousel .owl-dot {
    border: 1px solid #ffffff;
}

/*==========================  End TESTIMONIAL ============================*/


/* How-we-working */
.booking-title h1 {
    font-size: 22px;
    font-weight: 600;
    color: #c4a2fc;
    letter-spacing: 3px;
    margin: 0;
}

.booking-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #563f4f;
    margin: 20px 0px;
}

.booking-card {
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
}

.booking-card.one {
    background-color: #c4a2fc;
}

.booking-card.two {
    background-color: #ec3236;
}

.booking-card.three {
    background-color: #c4a2fc;
}

.booking-img img {
    width: 70px;
}

.booking-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0px;
}

.booking-card p {
    color: #fff;
    margin: 0;
}


/* Partners-start */
.partners {
    padding: 0px 0px 100px 0px;
}

.partners img {
    transition: 0.3s;
    opacity: .6;
    margin: 0 auto;
}

.partners img:hover {
    opacity: 1;
}

/*===============
21.  Footer
=================*/
.footer {
    background-color: #fbd6d7;
}

.footer--top {
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer .form-control {
    border-radius: 7px;
    border: 0;
    color: #fff;
    font-size: 13px;
    transition: 0.3s;
}

.footer--top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .1;
}

.footer--bottom {
    padding: 20px 0;
    text-align: center;
    position: relative;
    background-color: #841619;
}

.footer--bottom p {
    margin: 0;
    color: #fff;
}

.footer .cab-widget--title {
    color: #0741a5;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 800;
}

.has-icon i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.has-icon {
    position: relative;
}

.footer .cab-aside--logo {
    justify-content: flex-start;
    background-color: transparent;
    text-align: left;
    padding: 0;
}

.footer .cab-aside--logo a {
    color: #fff;
}

.cab-widget {
    margin-bottom: 30px;
}

.cab-widget p {
    color: #000;
}

.footer .widget-social-media a {
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #841619;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-right: 10px;
}

.footer .widget-social-media a:hover {
    color: #7192cb;
}

.footer ul {
    column-count: 2;
}

.footer ul li a {
    display: block;
    font-weight: 600;
    color: #000;
    font-size: 13px;
    text-transform: uppercase;
    padding: 0 0 15px;
    letter-spacing: 1px;
}

.footer ul li a:hover {
    color: #841619;
}

/* Footer-end */

/* Contact-start */
.get-in-touch {
    padding: 100px 0px;
}

.contact {
    padding: 100px 0px 100px 0px;
    background-color: #f9fcff;
}

.get-icon img {
    width: 50px;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #eee;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.contact-details-container {
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    padding: 20px;
    text-align: center;
    background-color: #c4a2fc;
    border-radius: 5px;
}

.contact-details-container h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    color: #fff;
}

.contact-details-container a {
    color: #fff;
}

.gmap_canvas {
    height: 350px;
}

.contact-form {
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    padding: 20px;
}

.contact-social-menu li {
    margin-right: 15px;
}

.list-inline li {
    float: left;
    list-style-type: none;
}

.contact-social-menu {
    display: inline-block;
}

/* Subheader-start */
.sub-subheader {
    position: relative;
    background-image: url('../pics/c1.png');
    /*background-image: url('../images/about/ab-1.jpg');*/
    background-size: cover;
    background-position: center;
    text-align: center;
    z-index: 0;
    padding: 200px 0px 100px 0px;
}

.sub-subheader::before {
    background-image: linear-gradient(270deg, #000000, #303030);
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    zoom: 1;
    filter: alpha(opacity=50);
    -webkit-opacity: .5;
    -moz-opacity: .5;
    opacity: .5;
    -webkit-transition: opacity 3s;
    -moz-transition: opacity 3s;
    -o-transition: opacity 3s;
    transition: opacity 3s;
    z-index: -2;
}

.sub-subheader:hover::before {
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
}

.sub-subheader::after {
    background-image: -webkit-linear-gradient(-180deg, #7abd72, var(--black));
    background-image: -moz-linear-gradient(-180deg, #7abd72, var(--black));
    background-image: -ms-linear-gradient(-180deg, #7abd72, var(--black));
    background-image: -o-linear-gradient(-180deg, #7abd72, var(--black));
    background-image: linear-gradient(270deg, #7abd72, var(--black));
    pointer-events: none;
    content: "";
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    filter: alpha(opacity=50);
    -webkit-opacity: .5;
    -moz-opacity: .5;
    opacity: .5;
    -webkit-transition: opacity 3s;
    -moz-transition: opacity 3s;
    -o-transition: opacity 3s;
    transition: opacity 3s;
    background-image: -webkit-linear-gradient(0deg, #7abd72, var(--black));
    background-image: -moz-linear-gradient(0deg, #7abd72, var(--black));
    background-image: -ms-linear-gradient(0deg, #7abd72, var(--black));
    background-image: -o-linear-gradient(0deg, #7abd72, var(--black));
    background-image: linear-gradient(90deg, #7abd72, var(--black));
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    z-index: -1;
}

.sub-subheader:hover::after {
    zoom: 1;
    filter: alpha(opacity=50);
    -webkit-opacity: .5;
    -moz-opacity: .5;
    opacity: .5;
}

.sub-subheader--inner h1 {
    color: #fff;
    font-size: 48px;
    margin: 0;
    font-weight: 800;
}

.sub-subheader--inner .breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub-subheader--inner .breadcrumbs li {
    color: #dcdcdc;
    font-weight: 600;
}

.sub-subheader--inner .breadcrumbs li a {
    color: #fff;
    position: relative;
    opacity: 1;
}

.sub-subheader--inner .breadcrumbs li a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: 0.3s;
}

.sub-subheader--inner .breadcrumbs li a+span {
    padding: 0 10px;
    opacity: .4;
}

.sub-subheader--inner .breadcrumbs li a:hover::before {
    width: 100%;
}



/* Login-page-start */
.login-page {
    padding: 100px 0px;
}

.login-signup-page .login-signup-area {
    background: #f1f1f1;
}

.login-signup-page .login-signup-area .login-signup-box {
    background: #fff;
}

.login-signup-page .login-signup-area .login-signup-box .login-form {
    padding: 30px;
}

.login-signup-page .login-signup-area .login-signup-box .login-form form input {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.login-signup-page .login-signup-area .login-signup-box .login-form form input:focus {
    outline: none;
}

.login-signup-page .login-signup-area .login-signup-box .login-form form button {
    width: 250px;
    margin: 30px auto 0px;
    display: block;
}

.login-signup-page .login-signup-area .login-signup-box .nav .nav-link {
    padding: 15px 20px;
}

.login-signup-page .login-signup-area .login-signup-box .nav .nav-link.signin {
    background: #e8e9ed;
}

.login-signup-page .login-signup-area .login-signup-box .nav .nav-link.register {
    background: #2d3b55;
}

@media screen and (min-width: 992px) {
    .login-signup-page .login-signup-area .login-signup-box .login-form {
        padding: 50px;
    }
}

.login-page .signin .signin-content {
    background-position: center;
    background-size: cover;
}

.login-page .signin .signin-content .inner {
    background: #ec3236;
    color: white;
    height: 100%;
    padding: 50px;
    border-radius: 5px 0px 0px 5px;
}

.login-page .signin .signin-form {
    background: #c4a2fc;
    color: white;
    border-radius: 10px;
}

.login-page .signin .signin-form form {
    padding: 50px 50px 30px;
}

.recover-pass a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.light-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    transition: 0.2s ease-in;
}

.light-outline:hover {
    color: inherit;
    background: white;
    color: black;
}

.inner h4 {
    font-size: 30px;
    font-weight: 700;
}

.inner p {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.login-page .signin .signin-form form .input-grp {
    margin-bottom: 30px;
}

.login-page .signin .signin-form form .input-grp label {
    margin: 0px;
    text-transform: uppercase;
    font-weight: 600;
}

.login-page .signin .signin-form form .input-grp input {
    display: block;
    background: inherit;
    border: none;
    border-bottom: 1px solid white;
    width: 100%;
    padding: 0px;
}

.login-page .signin .signin-form form .input-grp input:focus {
    outline: none;
}

.login-page .signin .signin-form form button {
    display: block;
    margin: 0 auto;
    width: 70%;
}

.login-page .signin .signin-form .recover-pass {
    padding: 20px;
    text-align: center;
    border-top: 1px solid white;
}


/* Signup-start */

.signup-page {
    padding: 100px 0px;
}

.signup-page .signup .signup-content {
    background: url("../images/about/ab-1.jpg");
    background-size: cover;
    background-position: center;
    height: 100%;
    text-align: center;
}

.signup-page .signup .signup-content .shadow {
    background: #563f4fba;
    color: white;
    height: 100%;
    padding: 40px;
}

.signup-page .signup .signup-content .shadow h4 {
    margin-top: 15px;
    font-size: 36px;
    font-weight: 800;
}

.shadow p {
    color: #fff;
    margin-top: 20px;
}

.signup-page .signup .signup-form {
    background: #c4a2fc;
}

.signup-page .signup .signup-form form {
    padding: 50px 50px 30px;
}

.signup-page .signup .signup-form form .input-grp {
    margin-bottom: 30px;
}

.signup-page .signup .signup-form form .input-grp label {
    display: block;
    margin: 0px;
    color: white;
}

.signup-page .signup .signup-form form .input-grp input {
    background: inherit;
    border: none;
    border-bottom: 1px solid white;
    width: 100%;
    padding: 0px;
}

.signup-page .signup .signup-form form .input-grp input:focus {
    outline: none;
}

@media screen and (min-width: 992px) {
    .signup-page .signup .signup-content .shadow {
        padding: 90px 30px 0px;
    }
}




/* Error-page- */

.error-page {
    background: #ffffff;
    padding: 100px 0px;
}

.error-page .error-wrap {
    background: #f9fcff;
    text-align: center;
    padding: 100px;
}

.error-page .error-wrap span.error-title {
    font-size: 160px;
    font-weight: 700;
    line-height: 1;
    color: #ec3236;
}

.error-page .error-wrap h3 {
    margin: 15px 0;
    font-weight: 800;
}

.error-page .error-wrap p {
    font-size: 16px;
    margin-bottom: 60px;
}


/*New css*/

#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: #0741a5; /* Blue color, change as needed */
  color: #fff;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: none; /* Hidden by default */
  transition: background-color 0.3s, transform 0.3s;
}

#scrollToTopBtn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}
