@import url(http://fonts.googleapis.com/css?family=Roboto:400,300,100,500,700);
@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700);
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');
body {
    font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

h2 {
    font-size: 26px;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
}

body {
    background: #ffffff;
}

ul {
    padding-left: 0;
}

ul li {
    list-style: none;
}

a {
    color: #cd2528;
}

a:hover {
    text-decoration: none;
}

/*******************
 Preloader 
 *****************/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999999;
}

.loader {
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}

#loader-1:before,
#loader-1:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 7px solid transparent;
    border-top-color: rgb(190, 29, 58);
}

#loader-1:before {
    z-index: 100;
    animation: spin 1s infinite;
}

#loader-1:after {
    border: 7px solid #f2f2f2;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.top-bar {
    position: absolute;
    top: 0;
    width: 100%;
    /*  background: rgba(0, 0, 0, 0.4);*/
    color: #fff;
    transition: all 0.2s ease-out 0s;
    padding: 10px 0px;
    z-index: 1000;
}

.top-bar.animated-header {
    padding: 10px 0px;
    /*background: rgba(0, 0, 0, 0.4);*/
    box-shadow: none;
}

.navbar {
    border: 0;
    border-radius: 0;
    margin-bottom: 0;
    padding: 0;
}

.navbar.bg-light {
    background: #fff !important;
}

.navbar.transparent {
    background: transparent !important;
}

.navbar .nav-item .nav-link {
    color: #444 !important;
    font-size: 14px;
    font-weight: 500;
    transition: .3s all;
    text-transform: uppercase;
    padding: 5px 15px;
    display: block;
}

.navbar .nav-item:last-child .nav-link {
    padding-right: 0;
}

.header-btn {
    background: #ce2329;
    padding: 27px 36px;
    padding: 18px 36px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.header-btn:hover {
    background: #c56467;
    color: #fff;
}

/***********************
.general
*********************/

.title {
    display: block;
}

.title h1 {
    font-size: 25px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.title h2 {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.title h3 {
    font-size: 13px !important;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #ce2329;
}

.title p {
    color: #776b6a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

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

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

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

/***********************
.section Home
*********************/

section {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.bg-holder {
    position: absolute;
    width: 100%;
    min-height: 100%;
    top: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    will-change: transform, opacity, filter;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-repeat: no-repeat
}

.bg-holder.bg-right {
    right: auto;
    left: 0
}

.bg-holder.overlay:before {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, .3);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0
}

.bg-fixed {
    background-attachment: fixed
}

.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-text {
    z-index: 2;
}

.header-text h1 {
    font-size: 50px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.header-text p {
    color: #776b6a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.header-text a.hero-btn {
    color: #111111;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    padding: 0px;
    overflow: hidden;
}

.header-text a.hero-btn:hover {
    -webkit-transition: all 0.1s ease-out 0s;
    -moz-transition: all 0.1s ease-out 0s;
    -ms-transition: all 0.1s ease-out 0s;
    -o-transition: all 0.1s ease-out 0s;
    transition: all 0.1s ease-out 0s;
    color: #cd2528;
}

.vh-100 {
    height: 100vh !important;
}

/************************/

/*    . section widget servicios     */

/************************/

.widgetservicios-section {
    position: relative;
    padding: 5em 0;
}

.services {
    width: 100%;
}

.widget.services {
    margin-top: -150px;
    background: #fff;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}

@media (max-width:320px) {
    .widget.services {
        margin-top: 15px;
    }
}

@media (max-width:992px) {
    .widget.services {
        margin-top: 15px;
    }
}

.bg-light {
    background: #f8f9fa !important;
}

.widget.services .icon {
    width: 60px;
    height: 60px;
    line-height: 1.3;
    border-radius: 50%;
    background: #f0f0f0;
}

.widget.services .media-body {
    width: calc(100% - 100px);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.widget.services h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.widget.services p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #776b6a;
}

/************************/

/*    . section acerca de nosotros     */

/************************/

.acercade {
    padding: 100px 0px;
}

/************************/

/*    . section nuestros servicios     */

/************************/

.servicios-area {
    display: flex;
    align-items: center;
    padding: 0px;
}

.fix {
    overflow: hidden;
}

.servicios-area .servicios-img {
    background-image: url(../img/services.png);
    background-size: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 900px;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

.servicios-area .servicios-details {
    height: 900px;
    width: 50%;
    padding: 50px 20px 0px 75px;
    display: inline-grid;
    align-items: center;
    background: #efe1e1
}

@media (max-width:320px) {
    .servicios-area .servicios-details {
        height: 1150px;
        width: 100%;
        padding: 50px 15px;
    }
    .servicios-area .servicios-img {
        width: 100%;
        height: 500px;
    }
    .servicios-area {
        display: block;
    }
    .hidden-xs {
        display: none;
    }
}

@media (max-width:992px) {
    .servicios-area .servicios-details {
        height: 1150px;
        width: 100%;
        padding: 50px 15px;
    }
    .servicios-area .servicios-img {
        width: 100%;
        height: 500px;
    }
    .servicios-area {
        display: block;
    }
    .hidden-xs {
        display: none;
    }
}

.list-services {
    margin: 0px 0 0 0;
    padding: 0;
}

.list-services li {
    list-style: none;
    display: block;
    margin-bottom: 25px;
}

.list-services li .icon {
    width: 85px;
    height: 85px;
    line-height: 80px;
    border-radius: 50%;
    background: #f7f2f2;
    text-align: center;
}

.list-services li h3 {
    font-weight: 700;
    color: #000000;
    margin-left: 20px;
    margin-bottom: 0;
    font-size: 16px;
    margin-bottom: 15px;
}

.list-services li p {
    color: #000000;
    margin-left: 20px;
    margin-bottom: 0;
    font-size: 14px;
}

/************************/

/*    . section equipo veterinario     */

/************************/

.equipo-section {
    position: relative;
    padding: 5em 0;
}

.mr-5,
.mx-5 {
    margin-right: 1.25rem !important;
}

.equipo-section h3 {
    font-size: 20px;
    font-weight: 700;
}

.equipo-section p {
    color: #776b6a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/************************/

/*    . section roja con datos de contacto     */

/************************/

.datos-cont-section {
    position: relative;
    padding: 5em 0;
    background: #ce2329;
    color: #fff;
}

.datos-cont-section .contacto-btn {
    background: #fff;
    padding: 27px 36px;
    padding: 18px 36px;
    border-radius: 30px;
    color: #ce2329;
    font-weight: 600;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

.datos-cont-section .contacto-btn:hover {
    background: #c56467;
    color: #fff;
}

/************************/

/*    . section  fotos      */

/************************/

/*portfolio style================
===========================*/

.portfolio-thumbnail {
    margin-bottom: 30px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.portfolio-thumbnail .popup-img img {
    width: 100%;
    background: #fff;
    height: 350px;
    object-fit: cover;
}

.portfolio-thumbnail .content-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 90px;
    width: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.portfolio-thumbnail:hover .content-overlay {
    opacity: 1;
}

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

.portfolio-thumbnail:hover .content-details {
    bottom: 0px;
    left: 50%;
    opacity: 1;
}

.portfolio-thumbnail .content-details h3 {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    font-size: 16px;
}

.portfolio-thumbnail .content-details p {
    color: #fff;
    font-size: 0.8em;
}

.fadeIn-top {
    bottom: 10%;
}

/************************/

/*    . section  contacto     */

/************************/

.datos-cont-section {
    position: relative;
    padding: 5em 0;
}

.contact-info {
    margin-bottom: 25px;
}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.contact-info .media-body h3 {
    font-size: 16px;
    margin-bottom: 0;
    font-size: 16px;
    color: #2a2a2a;
}

.contact-info .media-body p {
    color: #8a8a8a;
}

.contact-info__icon {
    margin-right: 20px;
}

.contact-info__icon i,
.contact-info__icon span {
    color: #8f9195;
    font-size: 27px;
}

.line-red {
    height: 4px;
    background: #ce2329;
    width: 80px;
}

/*formulario de contacto*/

.call-action-form {
    position: relative;
}

.call-action-form input {
    width: 100%;
    height: 60px;
    border: 1px solid #cbced1;
    background: none;
    padding: 0 25px;
    border-radius: 5px;
    outline: none !important;
}

.call-action-form textarea {
    width: 100%;
    height: 115px;
    border: 1px solid #cbced1;
    background: none;
    padding: 10px 25px;
    border-radius: 5px;
    outline: none !important;
}

@media (max-width: 767px) {
    .call-action-form input {
        height: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .call-action-form input {
        height: 60px;
    }
}

.call-action-form input::placeholder {
    opacity: 1;
    color: #a4a4a4;
}

.call-action-form input::-moz-placeholder {
    opacity: 1;
    color: #a4a4a4;
}

.call-action-form input::-moz-placeholder {
    opacity: 1;
    color: #a4a4a4;
}

.call-action-form input::-webkit-input-placeholder {
    opacity: 1;
    color: #a4a4a4;
}

.call-action-form input:focus {
    border-color: #33519e;
}

@media (max-width: 767px) {
    .call-action-form .action-btn .main-btn {
        width: 100%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .call-action-form .action-btn .main-btn {
        width: auto;
    }
}

@media (max-width: 767px) {
    .call-action-form .action-btn {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .call-action-form .action-btn {
        position: absolute;
        top: 8px;
        right: 8px;
        margin-top: 0;
    }
}

.rounded-buttons .rounded-three {
    background: #ce2329;
    padding: 27px 36px;
    padding: 5px 36px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    -webkit-transition: all 0.1s ease-out 0s;
    -moz-transition: all 0.1s ease-out 0s;
    -ms-transition: all 0.1s ease-out 0s;
    -o-transition: all 0.1s ease-out 0s;
    transition: all 0.1s ease-out 0s;
}

.main-btn {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 2px solid transparent;
    padding: 0 32px;
    font-size: 16px;
    line-height: 46px;
    color: #666;
    cursor: pointer;
    z-index: 5;
    position: relative;
}

.rounded-buttons .rounded-three:hover {
    background: #d8585d;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rounded-buttons .rounded-three {
        line-height: 44px;
    }
}

@media (max-width: 767px) {
    .rounded-buttons .rounded-three {
        line-height: 44px;
    }
}

.rounded-buttons .rounded-three:hover {
    background-position: right center;
}

.rounded-buttons .main-btn {
    border-radius: 50px;
}

/*****************

footer

**********************/

.footer {
    background: #33519e;
    padding: 50px 0;
    color: #fff;
}

.text-25 {
    font-size: 25px;
}

.text-14 {
    font-size: 14px;
}
.text-12 {
    font-size: 12px;
}
.social-icon {
    font-size: 16px;
    color: #fff;
    padding-right: 15px;
}

.social-icon:hover {
    color: #ce2329;
}