/* lato  */

@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100&display=swap");

/* Motterdam  */

@font-face {
    font-family: "Motterdam";
    src: url(../fonts/motterdam/Motterdam.ttf);
}


/* bodoni  */

@font-face {
    font-family: "Bodoni";
    font-weight: 700;
    src: url(../fonts/bodoni72/bodoni-72-bold.ttf);
}


/* bodoni italic  */

@font-face {
    font-family: "BodoniItalic";
    font-weight: 700;
    src: url(../fonts/bodoni72/bodoni-72-book-italic.ttf);
}


/*halvatica-neue */

@font-face {
    font-family: "HelveticaNeue";
    font-weight: 700;
    src: url(../fonts/helvetica-neue/HelveticaNeueBold.ttf);
}

@font-face {
    font-family: "HelveticaNeue";
    font-weight: 500;
    src: url(../fonts/helvetica-neue/helvetica-neue-medium.ttf);
}

@font-face {
    font-family: "HelveticaNeue";
    font-weight: 400;
    src: url(../fonts/helvetica-neue/helvetica-neue-raguler.ttf);
}

@font-face {
    font-family: "HelveticaNeue";
    font-weight: 300;
    src: url(../fonts/helvetica-neue/helvetica-neue-thin.ttf);
}


/* HelveticaNeueCondanced  */

@font-face {
    font-family: "HelveticaNeueCondanced";
    font-weight: 700;
    src: url(../fonts/helvetica-neue/helvetica-neue-condensed-bold.ttf);
}

:root {
    --primary: #056144;
    --secondary: #242323;
    --secondary-light: #2e2e2e;
    --yellow: #ccae66;
    --white: #ffffff;
    --black: #000000;
    --transition: 0.3s all ease;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "sans-serif";
    padding: 0;
    margin: 0;
    background-color: var(--secondary);
}

html,
body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: var(--white);
}

h1,
h2 {
    font-family: "Bodoni", "lato";
    font-weight: 700;
    line-height: 1;
}

h1 {
    font-size: 80px;
}

h2 {
    font-size: 60px;
}

h3,
h4,
h5 {
    font-family: "Bodoni", "lato";
    font-weight: 700;
}

p {
    font-family: "HelveticaNeue";
    line-height: 1.3;
}

h6 span {
    font-family: "HelveticaNeueCondanced";
}

img {
    width: 100%;
    height: auto;
}

.site-btn {
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: max-content;
    min-width: 170px;
    font-size: 18px;
    border-radius: 42px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    border: 2px solid var(--btn-color);
    color: var(--white);
    background-color: var(--secondary);
    overflow: hidden;
    transition: 0.3s all ease;
    padding: 15px 10px;
    font-family: "HelveticaNeueCondanced";
    font-weight: 700;
    border: 2px solid var(--yellow);
    text-transform: uppercase;
}

i {
    font-size: 25px;
    transition: all 0.3s linear;
    color: var(--yellow);
}

.site-btn:hover i {
    transform: translateX(5px);
    color: var(--secondary);
}

.site-btn::before,
.site-btn::after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--yellow);
    z-index: -1;
    transition: all 200ms ease-in-out;
}

.site-btn:hover {
    color: var(--secondary);
}

.site-btn::before {
    opacity: 0.15;
}

.site-btn::after {
    transition-delay: 0.13s;
}

.site-btn:hover::before,
.site-btn:hover::after {
    width: 100%;
}

@media (min-width: 768px) {
    body.home .header .logo-link {
        display: none;
    }
    body.home nav.navbar {
        justify-content: flex-end;
    }
}


/* header  */

.header {
    position: absolute;
    z-index: 100;
    top: 20px;
    left: 0;
    width: 100%;
}

.offcanvas.offcanvas-end {
    width: 100%;
    padding: 20px 5% 10px;
    overflow-y: scroll;
}

.offcanvas.offcanvas-end::-webkit-scrollbar {
    width: 5px;
    background: transparent;
}

.offcanvas.offcanvas-end::-webkit-scrollbar-thumb {
    background-color: #fff;
}

.offcanvas-body {
    overflow: unset;
}

.header .barger-manu {
    padding: 0;
    margin: 0;
    transition: var(--transition);
    max-width: 50px;
    border: unset;
    background-color: transparent;
}

.header .barger-manu:hover {
    transform: scale(1.05);
    transition: var(--transition);
}

.header .btn-close {
    background-image: url(../images/close-cross.svg);
    opacity: 1;
    background-size: 80%;
}

.text-bg-dark {
    background-color: var(--black) !important;
}

.header .current-menu-item>a {
    color: var(--white) !important;
    position: relative;
}

.header .current-menu-item>a::before {
    content: "";
    border: 5px solid var(--primary);
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 5px;
}

.header .nav-link {
    color: var(--white);
    font-size: 30px;
    font-family: Helvetica;
    font-weight: 300;
    font-size: 33px;
    display: inline-block !important;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.inner-list {
    list-style-type: none;
    padding-left: 10px;
}

.inner-list li::before {
    content: "\2022";
    color: var(--primary);
    font-weight: 800;
    margin-right: 10px;
    font-size: 26px;
    line-height: 1;
}

.header .inner-list li a.nav-link {
    font-family: "Lato";
    font-size: 18px;
    font-weight: 300;
    text-transform: none;
    padding: 0;
}

.header .offcanvas-body ul li a:hover {
    color: var(--primary);
    transition: var(--transition);
}

.header .menu-item-has-children {
    /* position: relative; */
    display: flex;
    flex-wrap: wrap;
}

.header .menu-item-has-children>a {
    order: 0;
}

.header .menu-item-has-children .drop-toggler {
    margin-left: 15px;
    order: 1;
    border: none !important;
}

.header .menu-item-has-children .inner-list {
    width: 100%;
    order: 2;
}

.header .menu-item-has-children .drop-toggler i {
    color: var(--primary);
}


/* banner  */

.pb-100 {
    padding-bottom: 100px !important;
}

.banner {
    position: relative;
    background-color: #151716;
}

@media (min-width: 768px) {
    .hero-img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 45%;
        height: 100%;
        object-fit: cover;
        object-position: bottom center;
    }
}

.banner .text {
    position: relative;
    z-index: 2;
}

.banner .text h1 {
    font-size: 95px;
    max-width: 600px;
    line-height: 1;
}

.banner .text .logo img {
    max-width: 310px;
}

.banner .text h1 span {
    color: var(--primary);
}

.banner .text p {
    font-size: 25px;
    font-weight: 300;
    margin: 20px 0 25px;
}

.banner .text p span {
    font-weight: normal;
}

.banner .text>span {
    font-family: "Lato";
    font-size: 16px;
    color: var(--white);
    font-weight: 300;
}


/* section-1  */

@media (min-width: 1200px) {
    .section-1 .col-xl-7,
    .banner .col-xl-7 {
        width: 55%;
    }
}

.section-1 .wrapper {
    position: relative;
    z-index: 1;
}

.bg-green {
    background-color: var(--primary);
}

.grass-top {
    position: absolute;
    bottom: 99%;
}

.right-mask img {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 10%;
    height: 100%;
    object-fit: cover;
}

.black-grass img {
    position: absolute;
    z-index: -1;
    bottom: -25px;
    left: 0;
    width: 70%;
}

h6 span {
    text-transform: uppercase;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    letter-spacing: 2px;
}

h6 span hr {
    border: 1px solid var(--yellow);
    width: 25px;
    height: 5px;
    opacity: 1;
    background-color: var(--yellow);
}

.section-1 .text h2 {
    max-width: 530px;
    margin-top: 10px;
}

.section-1 .text p {
    font-size: 17px;
    color: #e4e4e4;
    max-width: 500px;
    margin: 30px 0;
}


/* section-2  */

.section-2 {
    position: relative;
    z-index: 1;
}

.owl-slider .img {
    position: relative;
    z-index: 1;
}

.owl-slider .img img {
    border: 15px solid var(--secondary);
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
}

.owl-slider .custom-1 .item {
    max-width: 350px;
}

.owl-slider .item {
    padding: 25px 0;
    margin: auto;
}

.owl-slider .item a:nth-child(1) img {
    margin-bottom: 15px;
}

.grid-2::after {
    content: "";
    /* background: linear-gradient(to right, #242323 50%, #056144 50%); */
    background-color: var(--primary);
    border-radius: 50%;
    aspect-ratio: 1;
    width: calc(100% + 34px);
    position: absolute;
    z-index: -1;
    top: -17px;
    left: -17px;
    transform: rotate(-85deg);
    clip-path: circle(96% at 113% 100%);
}

.about-on::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 40px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(#056144 58%, #242323 40%);
    bottom: 10%;
    left: 15%;
}

.left-side-mask img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 15%;
    height: 100%;
    object-fit: cover;
}

.section-2 .title h6 span {
    gap: 20px;
}

.section-2 .title h2 {
    max-width: 1000px;
    margin: 20px auto 30px;
}

.section-2 .title p {
    font-size: 18px;
    max-width: 840px;
    margin: auto;
    color: #f7eded;
}

.section-2 .item {
    text-align: center;
}

.names span {
    color: var(--white);
    position: relative;
    z-index: 1;
    font-family: "HelveticaNeueCondanced";
    font-size: 20px;
    border-bottom: 5px solid var(--yellow);
    padding-bottom: 5px;
}

.owl-nav button span {
    display: none;
}

.owl-nav button {
    position: relative;
    z-index: 1;
    margin: 0 !important;
}

.owl-nav button::before {
    content: "";
    border-top: 3px solid var(--yellow);
    border-left: 3px solid var(--yellow);
    width: 25px;
    height: 25px;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    transform: rotate(-45deg);
    border-radius: 2px;
}

.owl-nav button:last-of-type::before {
    transform: rotate(135deg);
}

.owl-nav button:hover {
    background: unset !important;
}

.owl-nav button:first-of-type {
    position: relative;
    left: -40px;
}

.owl-nav button:last-of-type {
    position: relative;
    right: -20px;
}

.owl-nav {
    position: absolute;
    z-index: -1;
    top: -20px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
}


/* section 3  */

.dogs-man {
    background-image: url(../images/man-with-dog.jpg);
    background-size: cover;
    padding: 100px 0 200px;
}

.section-3 .title h2 {
    margin: 25px 0 35px;
}

.section-3 .title p {
    color: #e4e4e4;
    font-size: 18px;
    max-width: 637px;
}


/* faqs section  */

@media (min-width: 1200px) {
    .faqs-section .col-xl-7 {
        width: 53.333333%;
    }
}

.faqs-section {
    position: relative;
    z-index: 1;
}

.padding-100 {
    padding: 100px 0;
}

.faqs-section .title h2 {
    margin: 10px 0 30px;
}

.faqs-section .title p {
    font-size: 18px;
    max-width: 485px;
}

.faqs-section .accordion {
    background: transparent;
    --bs-body-bg: var(--transition);
}

.faqs-section .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: unset;
}

.faqs-section .accordion-button:focus {
    box-shadow: unset;
}

.faqs-section .accordion-item {
    border: unset;
    border-radius: unset;
    color: var(--white);
}

.faqs-section .accordion-button {
    color: var(--white);
    padding: 10px 0;
    font-family: "Lato";
    font-size: 25px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    line-height: 1.3;
    max-width: 650px;
}

.faqs-section .accordion-body {
    padding: 10px 0;
}

.faqs-section .faqs hr {
    border: 1px solid var(--white);
    opacity: 1;
}

.faqs-section .accordion-button::after {
    background-image: url(../images/white-plus.png);
    border: 1px solid var(--white);
    padding: 15px;
    border-radius: 50%;
    background-position: center;
}

.faqs-section .accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus-icon.png);
}

.faqs-section .right-mask img {
    width: 15%;
}

.faqs-section .accordion-button span {
    max-width: 490px;
}


/* insta-feed section  */

.insta-feed-sec {
    background-color: #1a1919;
    padding-bottom: 140px !important;
    position: relative;
}

.insta-feed-sec .title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
}

.insta-feed-sec .img img {
    object-fit: cover;
}


/* our bullies page  */

.header .logo-link img {
    max-width: 150px;
}


/* banner 2  */

.banner-2 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.banner-2 .black-grass img {
    z-index: 0;
    bottom: -10%;
}

.gradient::before {
    background: linear-gradient( 180deg, rgba(36, 35, 35, 0.5) 0%, rgba(0, 0, 0, 0.02) 50%);
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* our bullies section 2  */

.section-2 .row {
    justify-content: center !important;
}

@media (min-width: 992px) {
    .section-2 .row {
        --bs-gutter-x: 3rem;
    }
}

@media (min-width: 1200px) {
    .section-2 .row {
        --bs-gutter-x: 6.5rem;
    }
}

.section-2 .title-2 h1 span {
    color: var(--primary);
}

.section-2 .title-2 p {
    max-width: 1188px;
    margin: unset;
    margin-top: 20px;
    color: var(--white);
}

.owl-slider.slid-2 .img {
    max-width: unset;
    margin: unset;
}

.right-mask.custom-h img {
    top: 0;
    bottom: 0;
    margin: auto;
    width: 18%;
    height: unset;
}

.black-grass.custom-w img {
    top: unset;
    bottom: -10px;
    right: 0;
    left: unset;
    z-index: 1;
    width: 65%;
}

.section-2 .black-grass.custom-w img {
    z-index: -1;
}


/* asad page  */

.inner-banner {
    padding: 275px 0 50px;
}

.inner-banner .asad img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-banner .text {
    position: relative;
    z-index: 1;
}

.inner-banner .text h1 {
    margin-bottom: 20px;
}

.inner-banner .text p {
    max-width: 463px;
    font-size: 18px;
}

.inner-banner .black-grass img {
    bottom: -2%;
}


/* detail-sec  */

.detail-sec {
    position: relative;
    z-index: 1;
}

.detail-sec .wrapper-1 {
    max-width: 1130px;
}

.detail-sec .inner-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid var(--primary);
    min-height: 60px;
}

.detail-sec .inner-text h3 {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 10px;
    font-weight: 700;
    font-family: "HelveticaNeue";
}

.detail-sec .inner-text :where(h3,
p) {
    font-size: 17px;
    flex-basis: 40%;
}

.detail-sec .inner-text h3 span {
    width: 65px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.detail-sec .inner-text h3 img {
    width: auto;
    max-width: 100%;
}

.detail-sec .row>div:nth-child(1) .inner-text p {
    flex-basis: 45%;
}

.detail-sec .row>div .inner-text:first-of-type {
    border-top: 1px solid var(--primary);
}

.my-btn .site-btn {
    padding: 10px 20px;
}

.my-btn .site-btn svg {
    color: var(--yellow);
    transition: var(--transition);
    max-width: 40px;
}

.my-btn .site-btn:hover svg {
    color: var(--secondary);
    transition: var(--transition);
}

.detail-sec .names .item a {
    position: relative;
    display: block;
}

.detail-sec .names .item img {
    height: 370px;
    object-fit: cover;
}

.detail-sec .names .play {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-sec .names .play i {
    font-size: 45px;
}


/* wrapper-2  */

.wrapper-2 .title {
    margin-top: 70px;
}

.wrapper-2 .title h2 {
    margin-top: 10px;
}

.wrapper-2 .title h2 span {
    color: var(--primary);
}

.detail-sec .right-mask img {
    width: 24%;
}


/* our kennel page  */

.kennel-sec-1 {
    position: relative;
    z-index: 1;
}

.kennel-sec-1>.right-mask img {
    z-index: 1;
    width: 22%;
}

.kennel-sec-1 .wrapper-1 .title h1 span {
    color: var(--primary);
}

.kennel-sec-1 .wrapper-1 .text-1 p {
    font-size: 18px;
    max-width: 480px;
    line-height: 1.4;
}

.kennel-sec-1 .wrapper-1 .text-2 h2 {
    font-family: "BodoniItalic";
}

.kennel-sec-1 .wrapper-1 .text-2 p {
    position: relative;
    max-width: 535px;
    margin: 60px 0 30px;
    font-family: "BodoniItalic";
    font-size: 18px;
    line-height: 1.3;
}

.kennel-sec-1 .wrapper-1 .text-2 p img {
    max-width: 40px;
    position: absolute;
}

.kennel-sec-1 .wrapper-1 .text-2 p>img {
    top: -35px;
    left: 0;
}

.kennel-sec-1 .wrapper-1 .text-2 p span img {
    bottom: -15px;
    right: -60px;
}

.kennel-sec-1 .wrapper-1 .text-2 p span {
    position: relative;
}

.kennel-sec-1 .wrapper-1 .text-2 h3 {
    font-family: "HelveticaNeue";
    font-weight: 700;
    font-size: 25px;
    color: var(--yellow);
}

.kennel-sec-1 .wrapper-1 .text-2>span {
    color: var(--white);
    font-family: "HelveticaNeue";
    font-size: 21px;
}

.kennel-sec-1 .wrapper-1 .text-2>h5 {
    font-family: "Motterdam";
    font-size: 50px;
    margin-top: 35px;
}

.kennel-sec-1 .wrapper-2 {
    padding: 100px 0 250px;
}

.kennel-sec-1 .wrapper-2 .text .img img {
    max-width: 30px;
}

.kennel-sec-1 .wrapper-2 .text h3 {
    font-family: "HelveticaNeueCondanced";
    max-width: 305px;
    margin: 10px 0 20px;
}

.kennel-sec-1 .wrapper-2 .text p {
    font-size: 18px;
    max-width: 377px;
}


/* contact us page  */

.contact-sec {
    padding: 60px 0 150px;
    position: relative;
    z-index: 1;
}

.contact-sec .wrapper {
    max-width: 1100px;
    margin: auto;
}

.contact-sec .title h1 span {
    color: var(--primary);
}

.contact-sec .title p {
    margin: 20px 0 40px;
    font-size: 23px;
}

#gform_fields_1 {
    --gf-form-gap-y: 20px;
}

.contact-sec .wrapper input:not([type="submit"]),
.contact-sec .wrapper textarea {
    width: 100% !important;
    background-color: var(--secondary) !important;
    padding: 20px !important;
    color: var(--white) !important;
    border: 2px solid var(--yellow) !important;
    font-family: "HelveticaNeue" !important;
    min-height: 65px;
}

.contact-sec .wrapper input::placeholder,
.contact-sec .wrapper textarea::placeholder {
    color: var(--white) !important;
}

.contact-sec .wrapper input[type="submit"] {
    background: none !important;
    min-width: 170px !important;
    font-size: 18px !important;
    border-radius: 42px !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1 !important;
    border: 2px solid var(--btn-color) !important;
    color: var(--white) !important;
    background-color: var(--secondary) !important;
    overflow: hidden !important;
    transition: 0.3s all ease !important;
    padding: 15px 10px !important;
    font-family: "HelveticaNeueCondanced" !important;
    font-weight: 700 !important;
    border: 2px solid var(--yellow) !important;
    text-transform: uppercase !important;
    text-align: center !important;
}

.contact-sec .wrapper .gform_footer {
    justify-content: center !important;
}

.contact-sec .wrapper input[type="submit"]:hover {
    background: var(--yellow) !important;
    transition: 0.3s all ease !important;
}

.detail-sec .black-grass.custom-w img,
.contact-sec .black-grass.custom-w img {
    z-index: -1;
}


/* footer */

.footer {
    background: #2E2E2E;
    padding: 0 0 40px;
    position: relative;
    z-index: 1;
    font-family: "Lato";
}

.footer .grass {
    position: absolute;
    bottom: 99%;
    z-index: -1;
}

.footer .logo-link {
    max-width: 220px;
    display: block;
    margin: -104px auto 55px;
}

@media (min-width: 992px) {
    .footer .col-lg-2 {
        width: 12%;
    }
    .footer .col-lg-2.serv {
        width: 16%;
    }
}

.footer .email-signup {
    width: 23%;
    background: #292626;
    padding: 30px 30px 40px;
    height: max-content;
}

.footer .email-signup .subtitle {
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
    color: var(--yellow);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

.footer .email-signup p {
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 16px;
}

.footer .email-signup input {
    background: #2B2929 !important;
    border: 1px solid #707070 !important;
    color: #fff !important;
    height: 50px !important;
}

.footer .email-signup input::placeholder {
    color: #fff !important;
}

.footer .email-signup input[type="submit"] {
    text-transform: uppercase;
    width: 100% !important;
    text-align: left !important;
    text-transform: uppercase !important;
    color: var(--white) !important;
    background: #242323 !important;
    border: 2px solid var(--yellow) !important;
    border-radius: 35px !important;
    transition: .3s all ease;
    font-family: "HelveticaNeueCondanced" !important;
    font-weight: 700 !important;
}

.footer .email-signup .gform_footer {
    margin-top: 8px !important;
}

.footer .email-signup input[type="submit"]:hover {
    color: var(--color-pink) !important;
    background: var(--white) !important;
    transition: .3s all ease;
}

.footer_list a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.footer_list a img {
    width: 18px;
}

.footer_list h5 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer_list h5.socail-title {
    margin-top: 60px;
}

.social_icons {
    display: flex;
    gap: 16px;
}

.social_icons a img {
    width: 33px;
}

.email-signup input::placeholder {
    color: #fff;
}

.email-signup input {
    background-color: #2B2929;
    border: 1px solid #707070;
    outline: none;
    color: #fff;
    font-size: 13px;
    width: 100%;
}

.copyright {
    margin-top: 50px;
}

.copyright p {
    font-family: "Helvetica Neue";
    color: #FFFFFF;
    font-size: 14px;
}

.copyright a {
    color: inherit;
    text-decoration: none;
}


/* Main Content page */

main.content-page {
    padding: 220px 0 60px;
    position: relative;
    z-index: 1;
}

main.content-page>.container>* {
    margin-bottom: 20px;
}

main.content-page .black-grass.custom-w img {
    z-index: -1;
}

main.content-page li {
    font-family: "HelveticaNeue";
}

main.content-page ul {
    list-style-type: none;
}

main.content-page ul li::before {
    content: "-";
}

main.content-page li {
    font-family: "HelveticaNeue";
}

main.content-page h1 {
    margin-bottom: 50px !important;
}

main.content-page h3 {
    font-size: 16px;
    font-family: "HelveticaNeue";
    font-weight: 700;
}


/* GLobal Columns */

section.global-column {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

section.global-column .title {
    margin-bottom: 40px;
}

section.global-column .black-grass {
    z-index: -1;
}


/* Blogs section */

.blog-section {
    padding: 80px 0;
}

.blog-section .section-card .img {
    overflow: hidden;
    margin-bottom: 10px;
}

.blog-section .section-card .img img {
    transition: .5s all ease;
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
}

.blog-section a:hover .section-card .img img {
    transform: scale(1.3);
    transition: .5s all ease;
}

.blog-section .date {
    font-style: italic;
    font-size: 15px;
    margin: 10px 0;
}

main.content-page.blog-inner-section {
    padding: 80px 0 60px;
}


/* nediaqery  */

@media (max-width: 1399px) {
    .banner .text h1 {
        font-size: 80px;
    }
    .banner .text p {
        font-size: 22px;
    }
    .section-1 .text h2,
    .section-3 .title h2 {
        font-size: 50px;
    }
}

@media (max-width: 1199px) {
    .banner .text .logo img {
        max-width: 150px;
    }
    .banner .text h1 {
        font-size: 60px;
    }
    .detail-sec .inner-text :where(h3,
    p) {
        flex-basis: 42%;
    }
    .owl-nav button:first-of-type {
        left: -28px;
    }
    .owl-nav button:last-of-type {
        right: -5px;
    }
    .header .logo-link img {
        max-width: 110px;
    }
    .owl-slider .item {
        max-width: 270px;
    }
    .owl-slider .custom-1 .item {
        max-width: 270px;
    }
    .footer_list a {
        font-size: 15px;
    }
    .footer .email-signup {
        width: 50%;
        margin: 40px auto 0;
    }
    .footer .col-lg-2 {
        width: 16%;
    }
    .footer .col-lg-2.serv {
        width: 22%;
    }
    .footer_list {
        width: 30%;
    }
}


/* 991  */

@media (max-width: 991px) {
    h2 {
        font-size: 38px !important;
    }
    p {
        font-size: 16px !important;
    }
    .site-btn {
        font-size: 16px !important;
    }
    .header {
        top: 15px;
    }
    .banner .text h1 {
        font-size: 39px;
    }
    .banner .text p {
        font-size: 18px;
    }
    .left-side-mask img {
        width: 20%;
    }
    .right-mask img {
        width: 35% !important;
    }
    .kennel-sec-1 .wrapper-2 .text h3 {
        font-size: 20px;
    }
    .kennel-sec-1 .wrapper-2 .text p {
        font-size: 14px;
    }
    .kennel-sec-1 .wrapper-2 {
        padding: 100px 0 106px;
    }
    .kennel-sec-1 .wrapper-1 .text-1 p {
        font-size: 15px;
    }
    .footer .col-lg-2 {
        width: 22%;
    }
    .footer .col-lg-2.serv {
        width: 33%;
    }
    .footer_list {
        width: 42%;
    }
    main.content-page {
        padding-top: 175px;
    }
}


/* 767  */

@media (max-width: 767px) {
    h1 {
        font-size: 50px !important;
    }
    h2 {
        font-size: 30px !important;
    }
    p {
        font-size: 14px !important;
    }
    .pb-100 {
        padding-bottom: 50px !important;
    }
    /* header  */
    .header {
        top: 0;
    }
    .header .btn-close {
        background-size: 60%;
    }
    .header .nav-link {
        font-size: 25px;
    }
    .offcanvas-body {
        padding: 0;
    }
    .banner {
        padding-top: 100px !important;
        padding-bottom: 0 !important;
    }
    .banner .text .logo {
        display: none;
    }
    .banner .text h1 {
        max-width: 350px;
    }
    /* banner   */
    .banner .text p {
        margin-bottom: 10px;
        font-size: 18px !important;
    }
    .banner .text>span {
        font-size: 18px;
    }
    .banner .row {
        flex-direction: column-reverse;
    }
    .banner .text .logo img {
        max-width: 80px;
        margin-bottom: 20px;
    }
    .section-1 .row {
        flex-direction: column-reverse;
    }
    .section-1 .text p {
        margin: 12px 0;
    }
    .section-2 {
        padding-top: 50px;
    }
    .site-btn {
        padding: 12px !important;
    }
    .black-grass img {
        bottom: -2px;
    }
    .left-side-mask img {
        width: 50%;
    }
    .owl-nav button:first-of-type {
        left: -25px;
    }
    .owl-nav button:last-of-type {
        right: 0px !important;
    }
    .dogs-man {
        padding: 50px 0;
    }
    .section-3 .title h2 {
        margin: 10px 0 15px;
        font-size: 25px !important;
    }
    .section-3 .title p br {
        display: none;
    }
    .padding-100 {
        padding: 50px 0;
    }
    .faqs-section .title h2 {
        margin: 10px 0 20px;
    }
    .faqs-section .accordion-button span {
        font-size: 17px;
    }
    .insta-feed-sec .title .site-btn {
        min-width: 140px;
    }
    h6 span {
        font-size: 14px;
    }
    .insta-feed-sec .title h2 {
        font-size: 25px !important;
    }
    /* our bullies  */
    .header .logo-link img {
        max-width: 70px;
    }
    .kennel-sec-1 .wrapper-1 .text-2 p>img {
        top: -14px;
        left: 0;
    }
    .kennel-sec-1 .wrapper-1 .text-2 p img {
        max-width: 20px;
    }
    .kennel-sec-1 .wrapper-1 .text-2 p span img {
        bottom: -6px;
        right: -25px;
    }
    .kennel-sec-1 .wrapper-1 .text-2 p {
        margin: 40px 0 19px;
    }
    .kennel-sec-1 .wrapper-1 .text-2>h5 {
        font-size: 30px;
        margin-top: 20px;
    }
    .kennel-sec-1>.right-mask img {
        width: 55% !important;
    }
    .header .barger-manu .img img {
        max-width: 35px;
    }
    .kennel-sec-1 {
        padding-top: 20px;
    }
    .kennel-sec-1 .wrapper-2 .text h3 {
        margin-bottom: 10px;
    }
    .owl-slider .item {
        max-width: 250px;
        margin: auto;
    }
    .owl-slider .custom-1 {
        max-width: 290px;
        margin: auto;
    }
    .right-mask.custom-h img {
        width: 60% !important;
    }
    .inner-banner {
        padding: 120px 0 50px;
    }
    .single-bully .inner-banner {
        min-height: 210px;
    }
    .mob-banner-text {
        margin-bottom: 50px;
    }
    .mob-banner-text h1 {
        margin-bottom: 20px;
    }
    .detail-sec .inner-text :where(h3,
    p) {
        flex-basis: 45%;
    }
    .owl-slider .custom-2 .item {
        max-width: 100%;
    }
    .my-btn {
        justify-content: start !important;
    }
    .detail-sec .wrapper-2 .title {
        margin-top: 40px;
    }
    .owl-nav button span {
        font-size: 120px;
    }
    .contact-sec .title p {
        margin: 10px 0 20px;
    }
    .contact-sec .wrapper input:not([type="submit"]),
    .contact-sec .wrapper textarea {
        padding: 10px;
    }
    .contact-sec {
        padding: 50px 0 70px;
    }
    .custom-2 {
        max-width: 300px;
        margin: auto;
    }
    .owl-nav button span {
        font-size: 86px;
    }
    .owl-slider .img img {
        border: 10px solid var(--secondary);
    }
    .grid-2::after {
        top: -10px;
        left: -10px;
        width: calc(100% + 20px);
    }
    .about-on::before {
        width: 25px;
    }
    .kennel-sec-1 .wrapper-2 {
        padding: 30px 0 50px;
    }
    .insta-feed-sec {
        padding-bottom: 80px !important;
    }
    .footer .logo-link {
        max-width: 130px;
        margin: -59px auto 15px;
    }
    .footer .col-lg-2,
    .footer .col-lg-2.serv {
        width: 50%;
    }
    .footer_list {
        margin-top: 29px;
        width: 100%;
    }
    .footer .email-signup {
        width: 95%;
        padding: 30px 20px 50px;
    }
    .footer .email-signup p {
        font-size: 14px;
    }
    .footer_form {
        margin-bottom: 22px;
    }
    .footer .header-logo {
        max-width: 170px;
        margin-bottom: 10px;
    }
    .copyright {
        margin-top: 30px;
    }
    .footer .col-lg-2,
    .footer .col-lg-2.serv {
        width: 50%;
    }
    .footer_list {
        margin-top: 29px;
        width: 100%;
    }
    .footer .email-signup {
        width: 95%;
        padding: 30px 20px 50px;
    }
    .footer .email-signup p {
        font-size: 14px;
    }
    .footer_form {
        margin-bottom: 22px;
    }
    .footer .header-logo {
        max-width: 170px;
        margin-bottom: 10px;
    }
    .copyright {
        margin-top: 30px;
    }
    .detail-sec .names .item img {
        height: 270px;
    }
    main.content-page h1 {
        margin-bottom: 40px !important;
    }
    main.content-page {
        padding-top: 90px;
    }
    main.content-page.blog-inner-section {
        padding-top: 50px;
    }
    .blog-section {
        padding: 50px 0;
    }
    section.global-column {
        margin-bottom: 40px;
    }
    section.global-column .title {
        padding: 45px 0;
    }
}

@media (max-width: 334px) {
    .owl-nav button:last-of-type {
        right: -20px;
    }
    .owl-nav button:first-of-type {
        left: -20px;
    }
    .insta-feed-sec .title h2 {
        font-size: 20px !important;
    }
    .custom-2 {
        max-width: 256px;
        margin: auto;
    }
    .owl-nav button:last-of-type {
        right: -30px;
    }
    .owl-nav button:first-of-type {
        left: -30px;
    }
    .insta-feed-sec .title .site-btn {
        min-width: 129px;
    }
    h6 span {
        font-size: 12px;
    }
}