/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
input[type="textarea"]:focus,
.uneditable-input:focus {   
  border-color: #69972ee3;
  box-shadow: none;
  outline: 0 none;
}

.fc-daygrid-event-harness {
    cursor: pointer;
}

body {
    font-family: "League Spartan", sans-serif;
    color: #444444;
}

a {
    color: #8bc53e;
    text-decoration: none;
}

a:hover {
    color: #6a972e;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "League Spartan", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #8bc53e;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #fff;
    border-top-color: #6a972e;
    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(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    bottom: 37px;
    left: 20px;
    z-index: 996;
    background: #648f2bb2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.4s;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}
.back-to-top i {
    font-size: 35px;
    color: #fff;
    line-height: 0;
}
.back-to-top:hover {
    background: #7fb438;
    color: #fff;
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.datepicker-dropdown {
    padding: 20px !important;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #6c0b8c;
    height: 40px;
    font-size: 16px;
    transition: all 0.5s;
    z-index: 996;
}
#topbar.topbar-scrolled {
    top: -40px;
}
#topbar .contact-info a {
    line-height: 1;
    color: #fff;
    transition: 0.3s;
}
#topbar .contact-info a:hover {
    color: #ce42fd;
}
#topbar .contact-info i {
    color: #fff;
    padding-right: 4px;
    margin-left: 15px;
    line-height: 0;
}
#topbar .contact-info i:first-child {
    margin-left: 0;
}
#topbar .social-links a {
    color: #fff;
    padding-left: 15px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}
#topbar .social-links a:hover {
    color: #ce42fd;
}
#topbar .social-links a:first-child {
    border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    top: 40px;
    box-shadow: 0px 2px 15px rgba(139, 197, 62, 0.4);
}
#header.header-scrolled {
    top: 0;
}
#header .logo img {
    max-height: 60px;
}

/**
* Botón "Hacer una cita" *
*/
.appointment-btn {
    margin-left: 25px;
    background: #8bc53e;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 18px;
    display: inline-block;
}
.appointment-btn:hover {
    background: #7fb438;
    color: #fff;
}
@media (max-width: 768px) {
    .appointment-btn {
        margin: 0 15px 0 0;
        padding: 6px 18px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.navbar li {
    position: relative;
}
.navbar > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 8px 0 8px 20px;
}
.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    color: #7fb438;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 2px solid #fff;
    padding: 5px 2px;
}
.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #6a972e;
    border-color: #6a972e;
}
.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 20px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}
.navbar .dropdown ul li {
    min-width: 200px;
}
.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    color: #7fb438;
    border: none;
}
.navbar .dropdown ul a i {
    font-size: 16px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #6a972e;
}
.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 Navigation 
*/
.mobile-nav-toggle {
    color: #6c0b8c;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
    color: #fff;
}

@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(139, 197, 62, 0.9);
    transition: 0.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: 0.3s;
    border-radius: 20px;
}
.navbar-mobile > ul > li {
    padding: 0;
}
.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 18px;
    color: #7fb438;
    border: none;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #6a972e;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    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;
    border-radius: 20px;
    box-shadow: 0 1rem 3rem rgba(127, 137, 161, 0.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: 16px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #1977cc;
}
.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.intro {
    width: 100%;
    height: 90vh;
    color: #ffffff;
    margin-bottom: -160px;
}
.intro .intro-content {
    position: absolute;
    z-index: 99;
    width: 100%;
}
.intro .container {
    position: relative;
}
.intro h1 {
    margin: 0;
    font-size: 60px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}
.intro h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 24px;
    width: 70%;
}
.intro .btn-get-started {
    font-family: "League Spartan", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 35px;
    margin-top: 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #6c0b8c;
}
.intro .btn-get-started:hover {
    background: #560870;
}

@media (max-width: 992px) {
    .intro {
        margin-bottom: 0;
        height: 80vh;
    }
    .intro h1 {
        margin-top: 100px;
        font-size: 35px;
        line-height: 36px;
    }
    .intro h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
        width: 100%;
    }
    .intro .btn-get-started {
        margin-top: 10px;
    }
}
@media (max-height: 600px) {
    .intro {
        height: 110vh;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f1f7fd;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}
.section-title h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #444444;
}
.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}
.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #6c0b8c;
    bottom: 0;
    left: calc(50% - 20px);
}
.section-title p {
    font-size: 24px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #f1f7fd;
    min-height: 40px;
    margin-top: 120px;
}
@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 100px;
    }
}
.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}
@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}
.breadcrumbs ol li + li {
    padding-left: 10px;
}
.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}
@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
    padding-top: 2rem;
    padding-bottom: 0.5rem;
}
.why-us .content {
    padding: 30px;
    background: #8bc53e;
    border-radius: 4px;
    color: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}
.why-us .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
}
.why-us .content p {
    margin-bottom: 30px;
}
.why-us .content .more-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 30px 8px 30px;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    transition: all ease-in-out 0.4s;
}
.why-us .content .more-btn i {
    font-size: 12px;
}
.why-us .content .more-btn:hover {
    background: rgba(0, 0, 0, 0.2);
}
.why-us .icon-boxes .icon-box {
    text-align: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    width: 100%;
    z-index: 10;
}
.why-us .icon-boxes .icon-box i {
    font-size: 40px;
    color: #8bc53e;
    margin-bottom: 30px;
}
.why-us .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 30px 0;
}
.why-us .icon-boxes .icon-box p {
    font-size: 15px;
    color: #848484;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    background-color: #8bc53e;
}
.about-img1 {
    position: absolute;
    height: 70%;
    width: 50%;
    left: 10px;
    object-fit: cover;
    z-index: 10;
}
.about-img2 {
    position: absolute;
    top: 15%;
    height: 75%;
    width: 50%;
    right: 10px;
    object-fit: cover;
    z-index: 11;
}
@media (max-width: 992px) {
    .about-img1,
    .about-img2 {
        position: relative;
        height: 200px;
        margin-bottom: 3rem;
    }
    .section-title p {
        font-size: 18px;
        margin-bottom: 0;
        margin-left: 1rem;
        margin-right: 1rem;
    }    
    .about .icon-box {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

.about .icon-boxes h3 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
.about .icon-box {
    margin-top: 40px;
}
.about .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: 0.5s;
}
.about .icon-box .icon i {
    color: #fff;
    font-size: 32px;
}
.about .icon-box:hover .icon {
    background: #fff;
    border-color: #fff;
}
.about .icon-box:hover .icon i {
    color: #8bc53e;
}
.about .icon-box .title {
    color: #fff;
    margin-left: 85px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 24px;
}
.about .icon-box .description {
    margin-left: 85px;
    line-height: 24px;
    font-size: 18px;
    color: #fff;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    border: 1px solid #d5e1ed;
    padding: 60px;
    transition: all ease-in-out 0.3s;
}
.services .icon-box .icon {
    margin: 0 auto;
    width: 130px;
    height: 130px;
    background: #8bc53e;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}
.principal-button {
  background-color: #8BC53E;
  transition: 0.5s;
  color: #fff;
}
.principal-button:hover {
  background-color: #60882b;
  transition: 0.5s;
  color: #fff;
}
.services .icon-box .icon i {
    color: #fff;
    font-size: 28px;
}
.services .icon-box .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: #6c0b8c8f;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
}
.services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}
.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}
.services .icon-box:hover {
    background: #8bc53e;
    border-color: #8bc53e;
}
.services .icon-box:hover .icon {
    background: #648f2b;
}
.services .icon-box:hover .icon i {
    color: #8bc53e;
}
.services .icon-box:hover .icon::before {
    background: #6c0b8c9a;
}
.services .icon-box:hover h4 a,
.services .icon-box:hover p {
    color: #fff;
}

#imgService {
    width: 110px;
    height: 110px;
    border-radius: 3px;
    object-fit: cover;
}

.imgServiceModal {
    border-radius: 10px;
    width: 300px;
    height: 300px;
    object-fit: cover;
}

.btnVerMas {
    background-color: #6a972e;
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 24px;
    transition: 0.5s;
    cursor: pointer;
}

.btnVerMas:hover {
    background-color: #6c0b8c;
    color: #fff;
    transition: 0.5s;
}
/*--------------------------------------------------------------
# Promotions
--------------------------------------------------------------*/
.promotion {
    width: 100%;
}
.promotion .img {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    -webkit-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
    box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
    z-index: 0;
}
.promotion .img:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    z-index: -1;
    background: rgba(255, 93, 177, 0);
    background: -moz-linear-gradient(
        top,
        rgba(255, 93, 177, 0) 0%,
        rgba(148, 54, 103, 0) 42%,
        black 100%
    );
    background: -webkit-gradient(
        left top,
        left bottom,
        color-stop(0%, rgba(255, 93, 177, 0)),
        color-stop(42%, rgba(148, 54, 103, 0)),
        color-stop(100%, black)
    );
    background: -webkit-linear-gradient(
        top,
        rgba(255, 93, 177, 0) 0%,
        rgba(148, 54, 103, 0) 42%,
        black 100%
    );
    background: -o-linear-gradient(
        top,
        rgba(255, 93, 177, 0) 0%,
        rgba(148, 54, 103, 0) 42%,
        black 100%
    );
    background: -ms-linear-gradient(
        top,
        rgba(255, 93, 177, 0) 0%,
        rgba(148, 54, 103, 0) 42%,
        black 100%
    );
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(255, 93, 177, 0)),
        color-stop(42%, rgba(148, 54, 103, 0)),
        to(black)
    );
    background: linear-gradient(
        to bottom,
        rgba(255, 93, 177, 0) 0%,
        rgba(148, 54, 103, 0) 42%,
        black 100%
    );
    opacity: 0.6;
}
.promotion .text {
    padding: 35px;
    padding-top: 0;
}
.promotion .text h3 {
    font-size: 34px;
    font-weight: 400;
    font-family: "League Spartan", serif;
    margin-bottom: 0;
}
.promotion .text {
    color: #fff;
}
.promotion .text h4 a {
    font-weight: bolder;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}
.promotion .text h4 a:hover {
    color: #999;
    transition: 0.5s;
}
.promotion .text h4 i {
    font-size: 14px;
}
.promotion .text .cat {
    font-size: 12px;
    color: #6a972e;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px 0px 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 3px;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
    background-color: #8bc53e;
}
.faq .container {
    padding-left: 0;
    padding-right: 0;
}
.faq .section-title h2,
.faq .section-title p {
    color: #fff;
}
.faq .faq-list ul {
    padding: 1rem;
    list-style: none;
}
.faq .faq-list li + li {
    margin-top: 15px;
}
.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}
.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "League Spartan", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}
.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #6c0b8c;
}
.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}
.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    font-size: 18px;
}
.faq .faq-list .icon-show {
    display: none;
}
.faq .faq-list a {
    color: #8bc53e;
}
.faq .faq-list a.collapsed {
    color: #343a40;
    transition: 0.3s;
}
.faq .faq-list a.collapsed:hover {
    color: #8bc53e;
    transition: 0.3s;
}
.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
    display: none;
}
@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 40px 30px;
    box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
    background: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.testimonials .testimonial-item .testimonial-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}
.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}
.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}
.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}
.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 #8bc53e;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #6a972e;
}
.testimonials .swiper-slide {
    opacity: 0.3;
}
@media (max-width: 1199px) {
    .testimonials .swiper-slide-active {
        opacity: 1;
    }
    .testimonials .swiper-pagination {
        margin-top: 0;
    }
}
@media (min-width: 1200px) {
    .testimonials .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}
.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    background: white;
    border-radius: 50px;
    padding: 2px 15px;
}
.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: #444444;
    margin: 0 4px 8px 4px;
    transition: 0.3s;
    border-radius: 50px;
    border: 2px solid #fff;
}
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #560870;
    border-color: #560870;
}
.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}
.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(255, 255, 255, 0.75);
}
.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(255, 255, 255, 0.75);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}
.portfolio .portfolio-wrap img {
    transition: 1s;
    width: 100%;
}
.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid #648f2b7c;
    border-left: 3px solid #648f2b7c;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid #648f2b7c;
    border-right: 3px solid #648f2b7c;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #560870;
    font-weight: 700;
}
.portfolio .portfolio-wrap .portfolio-info p {
    color: #8bc53e;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}
.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    background: #8bc53e;
    margin: 10px 2px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a i {
    font-size: 24px;
    line-height: 0;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
    background: #648f2b;
}
.portfolio .portfolio-wrap:hover img {
    transform: scale(1.1);
}
.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
}
.portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #4154f1;
}
.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: #4154f1;
}
.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}
.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}
.portfolio-details .portfolio-description {
    padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
    padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #fff;
}
.contact .info i {
    font-size: 20px;
    color: #1977cc;
    float: left;
    width: 44px;
    height: 44px;
    background: #d6e9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}
.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c4964;
}
.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #4b7dab;
}
.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #1977cc;
    color: #fff;
}
.contact .php-email-form {
    width: 100%;
    background: #fff;
}
.contact .php-email-form .form-group {
    padding-bottom: 8px;
}
.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    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: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}
.contact .php-email-form .loading {
    display: none;
    background: #fff;
    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 #18d26e;
    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: 0;
    box-shadow: none;
    font-size: 14px;
}
.contact .php-email-form input {
    height: 44px;
}
.contact .php-email-form textarea {
    padding: 10px 12px;
}
.contact .php-email-form button[type="submit"] {
    background: #1977cc;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}
.contact .php-email-form button[type="submit"]:hover {
    background: #1c84e3;
}
.btn-fb {
    width: 100%;
    background-color: #3b5998;
    border: 2px solid #3b5998;
    color: #fff;
    padding: 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}
.btn-fb:hover {
    background-color: #fff;
    color: #3b5998;
    border: 2px solid #3b5998;
    transition: 0.3s;
}
.btn-ig {
    width: 100%;
    background-color: #d6249f;
    border: 2px solid #d6249f;
    color: #fff;
    padding: 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}
.btn-ig:hover {
    background-color: #fff;
    color: #d6249f;
    border: 2px solid #d6249f;
    transition: 0.3s;
}
.btn-wp {
    width: 100%;
    background-color: #25d366;
    border: 2px solid #25d366;
    color: #fff;
    padding: 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}
.btn-wp:hover {
    background-color: #fff;
    color: #25d366;
    border: 2px solid #25d366;
    transition: 0.3s;
}
.btn-yt {
    width: 100%;
    background-color: #ff0000;
    border: 2px solid #ff0000;
    color: #fff;
    padding: 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}
.btn-yt:hover {
    background-color: #fff;
    color: #ff0000;
    border: 2px solid #ff0000;
    transition: 0.3s;
}
@media (max-width: 992px) {
    .map {
        height: 400px;
    }
}
@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #fff;
    font-size: 14px;
    background: #560870;
}
#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #6c0b8c;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}
#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "League Spartan", sans-serif;
    color: #fff;
}
#footer .footer-top h4 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}
#footer .footer-top .footer-links {
    margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #8bc53e;
    font-size: 18px;
    line-height: 1;
}
#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}
#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-size: 18px;
}
#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #8bc53e;
}
#footer .footer-newsletter {
    font-size: 15px;
}
#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}
#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #bfdcf7;
}
#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #fff;
}
#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #8bc53e;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}
#footer .social-links a:hover {
    background: #fff;
    color: #6c0b8c;
    text-decoration: none;
}
.footer-logo {
    width: 180px;
}
.send-btn {
    background: #8bc53e;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 18px;
    display: inline-block;
}
.send-btn:hover {
    background: #7fb438;
    color: #fff;
}
.note-google a,
.note-google a:hover {
    transition: 0.5s;
}

/* SVG */
#bigHalfCircle {
    background: #fff;
    display: block;
    height: 100px;
    pointer-events: none;
    width: 100%;
}
#bigHalfCircle path {
    fill: #8bc53e;
    stroke: #8bc53e;
    stroke-width: 2;
}

#bigTriangleColor {
    background: #8bc53e;
    display: block;
    height: 100px;
    pointer-events: none;
    width: 100%;
}
#bigTriangleColor path {
    fill: #fff;
    stroke: #fff;
    stroke-width: 2;
}
#floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: fixed;
    bottom: 37px;
    right: 20px;
    z-index: 996;
    cursor: pointer;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}
.iconfloat {
    color: white;
    position: absolute;
    top: 0;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0;
    margin: 0;
    line-height: 65px;
    font-size: 30px;
    animation: plus-out 0.3s;
    transition: all 0.3s;
}
.iconfloat2 {
    color: white;
    position: absolute;
    top: 0;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0;
    margin: 0;
    line-height: 65px;
    font-size: 30px;
    animation: edit-out 0.3s;
    transition: all 0.3s;
    opacity: 0;
    transform: rotateZ(-70deg);
}
#container-floating {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    z-index: 996;
}
#container-floating:hover {
    height: 400px;
    width: 90px;
    padding: 30px;
}
#container-floating:hover .iconfloat {
    animation: plus-in 0.15s linear;
    animation-fill-mode: forwards;
}
#container-floating:hover .iconfloat2 {
    animation: edit-in 0.2s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}
#floating-button {
    background: #648f2bb2 !important;
}

.nds {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: fixed;
    z-index: 300;
    transform: scale(0);
    cursor: pointer;
}

.nd1 {
    position: fixed;
    opacity: 0;
    right: 20px;
    bottom: 120px;
    z-index: 996;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background-color: #25d366;
    transition: all 0.1s;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.nd2 {
    position: fixed;
    opacity: 0;
    right: 20px;
    bottom: 200px;
    z-index: 996;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background-color: #6c0b8c;
    transition: all 0.1s;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.nd1,
.nd2 {
    color: white;
    line-height: 10px;
    font-size: 25px;
}

.nd1:hover {
    background-color: #1ba34d;
    color: #fff;
    transition: 0.5s;
}
.nd2:hover {
    background-color: #560870;
    color: #fff;
    transition: 0.5;
}

@keyframes bounce-nds {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce-out-nds {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0);
    }
}

@keyframes edit-in {
    from {
      opacity: 0;
      transform: rotateZ(-70deg);
    }
    to {
      opacity: 1;
      transform: rotateZ(0deg);
    }
  }
  
  @keyframes edit-out {
    from {
      opacity: 1;
      transform: rotateZ(0deg);
    }
    to {
      opacity: 0;
      transform: rotateZ(-70deg);
    }
  }
  
  @keyframes plus-in {
    from {
      opacity: 1;
      transform: rotateZ(0deg);
    }
    to {
      opacity: 0;
      transform: rotateZ(180deg);
    }
  }
  
  @keyframes plus-out {
    from {
      opacity: 0;
      transform: rotateZ(180deg);
    }
    to {
      opacity: 1;
      transform: rotateZ(0deg);
    }
  }

#container-floating:hover .nds {
    animation: bounce-nds 0.1s linear;
    animation-fill-mode: forwards;
}

#container-floating:hover .nd3 {
    animation-delay: 0.08s;
}
#container-floating:hover .nd4 {
    animation-delay: 0.15s;
}
#container-floating:hover .nd5 {
    animation-delay: 0.2s;
}
