body {
    font-family: "Open Sans", sans-serif;
    color: #444
}

a {
    color: #ff7f5d;
    text-decoration: none
}

a:hover {
    color: #ffa790;
    text-decoration: none
}

.hidden-overflow {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Raleway, sans-serif
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ff7f5d;
    border-top-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #ff7f5d;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all .4s
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0
}

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

.back-to-top.active {
    visibility: visible;
    opacity: 1
}

#header {
    background: rgba(21, 5, 23, .25);
    transition: all .5s;
    z-index: 997;
    position: relative;
    height: 70px
}

@media (max-width:992px) {
    #header {
        height: 60px
    }
}

#header.fixed-top,
#header.header-inner-pages {
    background: rgba(21, 5, 23, .8)
}

#header.fixed-top {
    position: fixed
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase
}

#header .logo a {
    color: #fff
}

#header .logo img {
    max-height: 40px;
    transition: .5s
}

@media (min-width:991px) {
    #header .logo img:hover {
        transform: scale(1.1)
    }
}

.scrolled-offset {
    margin-top: 70px
}

@media (max-width:991px) {
    .scrolled-offset {
        margin-top: 60px
    }
}

.header-social-links {
    padding-left: 20px
}

.header-social-links a {
    color: #fff;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    padding: 5px 7px;
    border: 2px solid #fff;
    border-radius: 5px
}

.header-social-links a i {
    line-height: 0
}

.header-social-links a:hover {
    color: #ff7f5d;
    border: 2px solid #ff7f5d
}

@media (max-width:768px) {
    .header-social-links {
        padding: 0 15px 0 0
    }
}

.navbar {
    padding: 0
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center
}

.navbar li {
    position: relative
}

.navbar > ul > li {
    white-space: nowrap;
    padding: 10px 12px
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: .3s;
    color: #fff;
    position: relative
}

.navbar a i,
.navbar a:focus i {
    font-size: 14px;
    line-height: 0;
    margin-left: 5px
}

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -7px;
    left: 0;
    background-color: #ff7f5d;
    visibility: hidden;
    width: 0;
    transition: all .3s ease-in-out 0s
}

.navbar .active:before,
.navbar a:hover:before,
.navbar li:hover > a:before {
    visibility: visible;
    width: 100%
}

.navbar .active,
.navbar .active:focus,
.navbar a:hover,
.navbar li:hover > a {
    color: #fff
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 12px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, .25);
    transition: .3s
}

.navbar .dropdown ul li {
    min-width: 200px
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    text-transform: none;
    font-weight: 500;
    color: #150517
}

.navbar .dropdown ul a i {
    font-size: 14px
}

.navbar .dropdown ul .active:hover,
.navbar .dropdown ul a:hover,
.navbar .dropdown ul li:hover > a {
    color: #ff7f5d
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible
}

@media (max-width:1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%
    }
}

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: .5s
}

@media (max-width:991px) {
    .mobile-nav-toggle {
        display: block
    }

    .navbar ul {
        display: none
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .9);
    transition: .3s;
    z-index: 999
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: .3s
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 16px;
    color: #150517
}

.navbar-mobile > ul > li {
    padding: 0
}

.navbar-mobile .active:before,
.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before {
    visibility: hidden
}

.navbar-mobile .active,
.navbar-mobile a:hover,
.navbar-mobile li:hover > a {
    color: #ff7f5d
}

.navbar-mobile .getstarted {
    margin: 15px
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, .25)
}

.navbar-mobile .dropdown ul li {
    min-width: 200px
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px
}

.navbar-mobile .dropdown ul a i {
    font-size: 14px
}

.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #ff7f5d
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block
}

#hero {
    width: 100%;
    height: 100vh;
    background: url(../img/hero-bg.webp) top center;
    background-size: cover;
    position: relative;
    margin-bottom: -70px
}

@media (max-width:992px) {
    #hero {
        margin-bottom: -60px
    }
}

#hero:before {
    content: "";
    background: rgba(21, 5, 23, .5) linear-gradient(rgba(26, 0, 33, .5) 0, rgba(26, 0, 33, .5) 5%, rgba(38, 6, 51, .5) 40%, rgba(147, 47, 69, .7) 76%, rgba(236, 97, 93, .7) 94%, rgba(236, 97, 93, .5) 100%) repeat scroll 0 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center
}

#hero h1 {
    margin: 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
    color: #fff
}

#hero h2 {
    color: #eee;
    margin: 15px 0 0 0;
    font-size: 24px
}

#hero .btn-get-started {
    font-family: Raleway, sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 4px;
    transition: .5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff
}

#hero .btn-get-started:hover {
    background: #ff7f5d;
    border: 2px solid #ff7f5d
}

@media (min-width:1024px) {
    #hero {
        background-attachment: fixed
    }
}

@media (max-width:768px) {
    #hero h1 {
        font-size: 30px;
        line-height: 36px
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px
    }
}

section {
    padding: 60px 0;
    overflow: hidden
}

.section-bg {
    background-color: #fafafa
}

.section-title {
    text-align: center;
    padding-bottom: 30px
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #ff7f5d;
    bottom: 0;
    left: calc(50% - 25px)
}

.section-title p {
    margin-bottom: 0;
    color: #919191;
    font-size: 16px
}

.about .content h3 {
    font-weight: 600;
    font-size: 26px
}

.about .content ul {
    list-style: none;
    padding: 0
}

.about .content ul li {
    padding-left: 28px;
    position: relative
}

.about .content ul li + li {
    margin-top: 10px
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #ff7f5d;
    line-height: 1
}

.about .content p:last-child {
    margin-bottom: 0
}

.about .content .btn-learn-more {
    font-family: Raleway, sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: .3s;
    line-height: 1;
    color: #ff7f5d;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
    margin-top: 6px;
    border: 2px solid #ff7f5d
}

.about .content .btn-learn-more:hover {
    background: #ff7f5d;
    color: #fff;
    text-decoration: none
}

.counts {
    padding: 0
}

.counts .counters span {
    font-size: 48px;
    display: block;
    color: #ff7f5d
}

.counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: Raleway, sans-serif;
    font-size: 18px
}

.services .icon-box {
    padding: 30px 10px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, .21);
    transition: all .3s ease-in-out;
    height: 100%
}

.services .icon-box:hover {
    transform: translateY(-5px)
}

.services .title {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 24px
}

.services .title-hindi {
    font-weight: 600;
    font-size: 20px
}

.services .title a {
    color: #111
}

.services .icon-box:hover .title a {
    color: #ff7f5d
}

.services .description {
    font-size: 16px;
    line-height: 24px;
    margin-top: -15px;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid #fff
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 5px 45px;
    color: #111
}

.testimonials .testimonial-item h4 {
    font-size: 16px;
    color: #999;
    margin: 0 0 0 45px
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #fba;
    font-size: 26px
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #fff;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #ff7f5d
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ff7f5d
}

.cta {
    background: #280a2c;
    background-size: cover;
    padding: 60px 0
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700
}

.cta p {
    color: #fff
}

.cta .cta-btn {
    font-family: Raleway, sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 4px;
    transition: .5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff
}

.cta .cta-btn:hover {
    background: #ff7f5d;
    border: 2px solid #ff7f5d
}

.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0 0 4px rgba(0, 0, 0, .24);
    border-radius: 5px;
    position: relative;
    overflow: hidden
}

.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #777;
    background: #f8f8f8
}

.pricing h4 {
    font-size: 32px;
    color: #ff7f5d;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    margin-bottom: 20px
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px
}

.pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444;
    text-align: center;
    line-height: 20px;
    font-size: 15px
}

.pricing ul li {
    padding-bottom: 16px
}

.pricing ul i {
    color: #ff7f5d;
    font-size: 18px;
    padding-right: 4px
}

.pricing ul .na {
    color: #ccc;
    text-decoration: line-through
}

.contact .info {
    width: 100%
}

.note_contact a {
    color: #fd7653;
    transition: .5s;
    font-weight: 800
}

.note_contact a:hover {
    color: #f83737
}

.contact .info i {
    font-size: 20px;
    color: #ff7f5d;
    float: left;
    width: 44px;
    height: 44px;
    background: #fff8f6;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all .3s ease-in-out
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #150517
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 16px;
    color: #62176b
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px
}

.contact .info .address:hover i,
.contact .info .email:hover i,
.contact .info .phone:hover i {
    background: #ff7f5d;
    color: #fff
}

.contact .php-email-form {
    width: 100%
}

.contact .php-email-form .form-group {
    padding-bottom: 8px
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #be2800;
    text-align: left;
    padding: 15px;
    font-weight: 600
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #ff7f5d;
    text-align: center;
    padding: 15px;
    font-weight: 600
}

.contact .php-email-form .loading {
    display: none;
    background: #fafafa;
    text-align: center;
    padding: 15px
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #ff7f5d;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 4px;
    box-shadow: none;
    font-size: 16px
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #ff7f5d
}

.contact .php-email-form input {
    height: 44px
}

.contact .php-email-form textarea {
    padding: 10px 12px
}

.contact .php-email-form button[type=submit] {
    background: #ff7f5d;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: .4s;
    border-radius: 4px
}

.contact .php-email-form button[type=submit]:hover {
    background: #ff9377
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.map {
    border:0;
    width: 100%;
    height: 270px;
}

#footer {
    background: url(../img/footer-bg.webp) center center no-repeat;
    color: #fff;
    font-size: 16px;
    position: relative
}

#footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(2, 0, 2, .6);
    z-index: 1
}

#footer .footer-top {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0
}

#footer .footer-top h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: Poppins, sans-serif;
    padding-bottom: 0;
    margin-bottom: 0
}

#footer .footer-top p {
    font-size: 16;
    font-style: italic;
    margin: 30px 0 0 0;
    padding: 0
}

#footer .footer-top .footer-newsletter {
    text-align: center;
    font-size: 16px;
    margin-top: 30px
}

#footer .footer-top .footer-newsletter form {
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
    text-align: left
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px)
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    border: 0;
    background: 0 0;
    font-size: 16px;
    padding: 0 20px;
    background: #ff7f5d;
    color: #fff;
    transition: .3s;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .1)
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #ff9377
}

#footer .footer-top .social-links {
    margin-top: 30px
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 12px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: .3s
}

#footer .footer-top .social-links a:hover {
    background: #ff7f5d;
    color: #fff;
    text-decoration: none
}

#footer .footer-bottom {
    border-top: 1px solid #3b0e41;
    z-index: 2;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px
}

#footer .copyright {
    float: left
}

#footer .credits {
    float: right;
    font-size: 16px
}

@media (max-width:768px) {

    #footer .copyright,
    #footer .credits {
        float: none;
        text-align: center
    }

    #footer .credits {
        padding-top: 5px
    }
}

.appointment .php-email-form {
    width: 100%
}

.appointment .php-email-form .form-group {
    padding-bottom: 8px
}

.appointment .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 14px
}

.appointment .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #e86b4a;
    text-align: left;
    padding: 15px;
    font-weight: 600
}

.appointment .php-email-form .error-message br + br {
    margin-top: 25px
}

.appointment .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: rgba(74, 23, 80, .9);
    text-align: center;
    padding: 15px;
    font-weight: 600
}

.appointment .php-email-form .loading {
    display: none;
    background: #fafafa;
    text-align: center;
    padding: 15px
}

.appointment .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid rgba(48, 13, 52, .9);
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite
}

.appointment .php-email-form input,
.appointment .php-email-form select,
.appointment .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
    padding: 10px !important
}

.appointment .php-email-form input:focus,
.appointment .php-email-form select:focus,
.appointment .php-email-form textarea:focus {
    border-color: #1977cc
}

.appointment .php-email-form input,
.appointment .php-email-form select {
    height: 44px
}

.appointment .php-email-form textarea {
    padding: 10px 12px
}

.appointment .php-email-form button[type=submit] {
    background: rgba(48, 13, 52, .9);
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: .4s;
    border-radius: 50px
}

.appointment .php-email-form button[type=submit]:hover {
    background: rgba(68, 21, 74, .9)
}
