@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700');

@import url('https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #ff8882;
    --black-color: #fff;
    --white-color: #fff;

}

body {
    font-family: 'Ubuntu', sans-serif;
}

/* Custom Scroll Bar CSS */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* navbar styling */
nav {
    position: fixed;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    transition: all 0.3s ease;
}

nav.sticky {
    background: var(--primary-color);
    padding: 13px 0;
}

nav .navbar {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

nav .navbar .logo a {
    font-weight: 500;
    font-size: 35px;
    color: var(--primary-color);
}

nav.sticky .navbar .logo a {
    color: var(--white-color);
}

nav .navbar .menu {
    display: flex;
    position: relative;
}

nav .navbar .menu li {
    list-style: none;
    margin: 0 8px;
}

nav .navbar .menu a {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
    padding: 6px 0;
    transition: all 0.4s ease;
}

.navbar .menu a:hover {
    color: var(--primary-color);
}

nav.sticky .menu a {
    color: var(--white-color);
}

nav.sticky .menu a:hover {
    color: var(--black-color);
}

.navbar .media-icons a {
    color: var(--primary-color);
    font-size: 18px;
    margin: 0 6px;
}

nav.sticky .media-icons a {
    color: var(--white-color);
}

/* side navigation Menu Button CSS */
nav .menu-btn,
.navbar .menu .cancel-btn {
    position: absolute;
    color: var(--white-color);
    right: 30px;
    top: 20px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

nav .menu-btn {
    color: var(--primary-color);
}

nav.sticky .menu-btn {
    color: var(--white-color);
}

.navbar .menu .menu-btn {
    color: var(--white-color);
}

/*--------------------------------
RESET
---------------------------------*/
* {
    font-family: 'Oswald', sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/*--------------------------------
GLOBAL
---------------------------------*/


p {
    color: #767676;
    line-height: 23px;
    font-family: 'Nunito', sans-serif;
}

.btn {
    color: #fff;
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 500;
    background-color: #daa37f;
    border-radius: 0;
    text-align: center;
    text-transform: uppercase;
}

.btn--opacity {
    animation: opacity 3s;
}

.sect {
    padding: 130px 0;
}

.sect--brown {
    background-color: #fff;
}

.sect--grey {
    background-color: #ebebeb;
}

.sect--no-bottom {
    padding-bottom: 0;
}

.sect--white-text {
    color: #000;
}

.col--inbl {
    display: inline-block;
    float: none;
}

.row--center {
    text-align: center;

}

.row--small {
    max-width: 960px;
    margin: 0 auto;
}

.row--margin {
    margin-top: 65px;
}

/*--------------------------------
ANIOMATION
---------------------------------*/
@-webkit-keyframes banner-in {
    0% {
        background-color: rgba(0, 0, 0, 1);
    }

    100% {
        background-color: rgba(0, 0, 0, 0.5);
    }
}

@-moz-keyframes banner-in {
    0% {
        background-color: rgba(0, 0, 0, 1);
    }

    100% {
        background-color: rgba(0, 0, 0, 0.5);
    }
}

@-o-keyframes banner-in {
    0% {
        background-color: rgba(0, 0, 0, 1);
    }

    100% {
        background-color: rgba(0, 0, 0, 0.5);
    }
}

@keyframes banner-in {
    0% {
        background-color: rgba(0, 0, 0, 1);
    }

    100% {
        background-color: rgba(0, 0, 0, 0.5);
    }
}

@-webkit-keyframes opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*--------------------------------
BANNER
---------------------------------*/
.banner {
    background-image: url(/images/inicio/perritos-banner.jpg);
    background-color: #000;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: table;
    width: 100%;
    height: 100%;
    position: relative;
}

.banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: table;
    height: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    animation: banner-in 2s;
}

.banner__container {
    display: table-cell;
    vertical-align: middle;
}

.banner__scroll-down {
    position: absolute;
    bottom: 15px;
    left: 50%;
    margin-left: -12px;
    cursor: pointer;
    animation: opacity 3s;
}

.banner__title {
    font-size: 56px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    animation: opacity 3s;
}

.banner__text {
    font-size: 14px;
    color: #fff;
    margin: 0;
    margin-bottom: 18px;
    animation: opacity 3s;
}

/*--------------------------------
TYPE OF COFFEE
---------------------------------*/
.sect--type {
    background-image: url(/images/inicio/perritos-servicios.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #fff;
}

.sect__title {
    margin-top: 0;
    text-transform: uppercase;
    line-height: 40px;
    font-size: 30px;
    margin-bottom: 20px;
}

.sect__title_1 {
    color: #000;
}

.sect__subtitle {
    margin-bottom: 0;
}

.coffee {
    padding: 0 25px;
}

.coffee__name {
    letter-spacing: 1px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.coffee__img {
    width: 90%;
}

.coffee__descr {
    margin: 0;
    line-height: 23px;
}

/*--------------------------------
NOSOTROS
---------------------------------*/

.story-img {
    background-image: url(/images/inicio/nosotros.png);
    height: 0;
    padding-bottom: 52%;
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #fff;
}

/*--------------------------------
STAFF
---------------------------------*/
.half-sect__second {
    background-image: url(/images/inicio/staff.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #fff;
}

.half {
    width: 50%;
    display: table-cell;
    background-color: #fff;
}

.half-sect__first {
    padding: 150px;
    background-color: #fff;
}

.description__p {
    margin-bottom: 40px;
}

.description__title {
    margin-top: 0;
    margin-bottom: 15px;
}

/*--------------------------------
HISTORIA
---------------------------------*/
.sect--great {
    background-image: url(/images/inicio/veterinario-historia.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #fff;
}

/*--------------------------------
THE BEST COFFEE SHOP
---------------------------------*/
.sect--best {
    background-image: url(/images/inicio/perro-banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0;
    background-color: #000;
}

.best__title {
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.best__img {
    width: 50px;
}

.best--margin {
    margin-top: 20px;
    margin-bottom: 40px;
}

.best--bottom {
    margin-bottom: 40px;
}

/*--------------------------------
THREE IMAGES
---------------------------------*/
.three-img__img {
    height: 0;
    padding-bottom: 33.3%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.three-img {
    display: table;
    height: 33.3%;
    width: 100%;
}

.three-img--1 {
    background-image: url(/images/inicio/galeria-1.jpg);
}

.three-img--2 {
    background-image: url(/images/inicio/galeria-2.jpg);
}

.three-img--3 {
    background-image: url(/images/inicio/galeria-3.jpg);
}

/*--------------------------------
BLOG IMAGES
---------------------------------*/

.last-articles {
    margin-top: 50px;
}

.article-pre__img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 80%;
}

.article-pre {
    background-color: #fff;
}

.article-pre__title {
    letter-spacing: 1px;
    font-size: 16px;
    margin-top: 0;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.article-pre__date {
    color: #767676;
    line-height: 23px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 5px;
    display: inline-block;
    font-family: 'Nunito', sans-serif;
}

.article-pre__info {
    padding: 25px 20px 20px 20px;
}

.article-pre__ex {
    margin: 0;
    line-height: 22px;
}

.article-pre-1 .article-pre__img {
    background-image: url('https://canary.contestimg.wish.com/api/webimage/6117fee21bd0f94d8b0e4435-large.jpg?cache_buster=a1bb9bb91a2acf18874eaeb15c20a7ad');
}

.article-pre-2 .article-pre__img {
    background-image: url('https://scontent.fsrz1-2.fna.fbcdn.net/v/t1.6435-9/45338120_104105330595812_6509091231362973696_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=09cbfe&_nc_ohc=Tcf14ep8aQcAX_QUykk&tn=kV1zIKzU-ffktn_C&_nc_ht=scontent.fsrz1-2.fna&oh=00_AT9gdOHBjUwB_0z_EibHkfux_kzpOBxhtricK5nHCWjzuw&oe=62BF734B');
}

.article-pre-3 .article-pre__img {
    background-image: url('https://scontent.fsrz1-2.fna.fbcdn.net/v/t1.18169-9/10277557_737195306411150_8020157274225104700_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=09cbfe&_nc_ohc=ZA8NTdyIp3oAX_sKeis&tn=kV1zIKzU-ffktn_C&_nc_ht=scontent.fsrz1-2.fna&oh=00_AT-nNZdQqWufGcEAFOKz2itenZUVQ4VrUUHZ5I43LnKeDA&oe=62C06BAB');
}

.article-pre-4 .article-pre__img {
    background-image: url('https://www.pikpng.com/pngl/m/125-1254703_what-other-pikachu-dress-up-would-be-fun.png');
}

.article-pre-5 .article-pre__img {
    background-image: url('https://kajabi-storefronts-production.kajabi-cdn.com/kajabi-storefronts-production/site/2147489095/podcasts/fsAx0HB5Qk3rGHWe9kTR_insta_copy.jpg');
}

/*--------------------------------
FOOTER
---------------------------------*/
.footer {
    display: table;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.footer__half {
    width: 50%;
    display: table-cell;
    padding: 100px 140px;
}

.footer__half-1 {
    background-image: url(/images/inicio/contactar.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer__half-2 {
    background-color: var(--primary-color);
}

.footer__half-2 .footer__title {
    color: #fff;
}

.footer__big-title {
    margin-top: 0;
    text-transform: uppercase;
    line-height: 40px;
    font-size: 30px;
    margin-bottom: 25px;
    color: #fff;
}

.footer__title {
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    color: #daa37f;
}

.footer__desc {
    color: #d7d7d7;
    margin-bottom: 25px;
}

/*--------------------------------
RESPONSIVE
---------------------------------*/

@media screen and (max-width:1024px) {
    .sect {
        padding: 100px 0;
    }

    .row--margin {
        margin-top: 55px;
    }

    .banner__title {
        font-size: 54px;
    }

    .half-sect__first {
        padding: 100px;

    }

    .three-img__img {
        padding-bottom: 40%;
    }

    .sect--no-bottom {
        padding-bottom: 0px !important;
    }

    .footer__half {
        padding: 90px 120px;
    }

    .sect-t-footer {
        display: none;
    }

    .footer {
        position: relative;
    }
}


@media screen and (max-width:991px) {
    .sect {
        padding: 80px 0;
    }

    .banner__title {
        font-size: 50px;
    }

    .row--margin {
        margin-top: 45px;
    }

    .coffee {
        padding: 0 15px;
    }

    .coffe__img {
        width: 100%;
    }

    .half-sect__first {
        padding: 80px;
    }

    .last-articles {
        margin-bottom: 30px;
    }

    .sect__title,
    .description__title,
    .footer__big-title {
        line-height: 38px;
        font-size: 28px;
    }

    .footer__half {
        padding: 60px 90px;
    }

}

@media screen and (max-width:767px) {
    .banner__title {
        font-size: 48px;
    }

    .three-img {
        height: auto;
    }

    .sect {
        padding: 60px 0;
    }

    .row--margin {
        margin-top: 30px;
    }

    .coffee {
        margin-bottom: 30px;
    }

    .coffee__img {
        width: 35%;
    }

    .coffee__descr,
    .sect__subtitle {
        padding: 0 50px;
    }

    .sect__title,
    .description__title,
    .footer__big-title {
        line-height: 36px;
        font-size: 26px;
    }

    .half-sect__first {
        padding: 50px;
    }

    .article-pre {
        margin-bottom: 15px;
    }

    .footer__half {
        width: 100%;
        display: block;
        padding: 50px 50px;
    }

    .half-sect {
        display: block;
        height: auto;
    }

    .half {
        width: 100%;
        display: block;
    }

    .half-sect__second {
        padding-bottom: 60%;
    }


}

@media screen and (max-width:480px) {
    .banner__title {
        font-size: 44px;
    }

    .sect {
        padding: 50px 0;
    }

    .sect__title,
    .description__title {
        line-height: 30px;
        font-size: 22px;
        margin-bottom: 15px;
    }

    .sect__subtitle {
        padding: 0;
    }

    .coffee__img {
        width: 65%;
    }

    .coffee__descr,
    .sect__subtitle {
        padding: 0 15px;
    }

    .best--margin {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .row--margin {
        margin-top: 15px;
    }

    .best__img {
        width: 44px;
    }

    .best__title {
        margin-top: 15px;
    }

    .three-img__img {
        padding-bottom: 60%;
        width: 100%;
    }

    .footer__half {
        padding: 35px 35px;
    }

    .footer__desc {
        margin-bottom: 10px;
    }

}