@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap");

/* font-family: 'Roboto', sans-serif; */

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */
body {
    margin: 0;
    padding: 0;
    font-family: var(--fredoka-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: normal;
    font-style: normal;
    color: var(--body-color);
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
}

:root {
    scroll-behavior: inherit;
    --fredoka-font: "Fredoka";
    --header-color: #3c2827;
    --body-color: #7a7a7a;
    --orange-color: #ff6500;
    --black-color: #000;
    --white-color: #fff;
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px 0;
    padding: 0;
    color: #000;
    font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

h1,
.h1-title {
    font-weight: 500;
    font-size: 66px;
    line-height: 1.2;
    color: var(--header-color);
}

h2,
.h2-title {
    font-weight: 500;
    font-size: 70px;
    line-height: 1;
}

h3,
.h3-title {
    font-weight: 500;
    font-size: 50px;
    line-height: 1;
}

h4,
.h4-title {
    font-size: 24px;
    line-height: 1.2;
}

h5,
.h5-title {
    font-size: 20px;
    line-height: 1.2;
}

a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: #ecb61e;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: red;
}

img {
    max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.7);
    height: 58px;
    padding: 0 16px;
    outline: none !important;
}

textarea {
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 12px 16px;
    width: 100%;
    color: #000;
    height: 158px;
    outline: none !important;
}

select {
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 100%;
    padding: 0 11px;
    background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
    background-size: 18px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    background: #eab71e;
    color: #000000;
    height: 58px;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;

    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background: #000;
    color: #eab71e;
}

::-webkit-input-placeholder {
    opacity: 0.7;
    color: #000;
}

:-ms-input-placeholder {
    opacity: 0.7;
    color: #000;
}

::-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

:-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}

/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 40px;
    display: inline-block;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"] + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    border: 1px solid #3e3e42;
    background: transparent;
}

.form_input_check label input[type="checkbox"] + span::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/tick.svg) no-repeat center center;
    background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked + span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"] + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
    content: "";
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked + span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 55px;
    height: 55px;
    background-color: #bdd653;
    display: none;
    border-radius: 100%;
    line-height: 68px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    z-index: 9;
}

#scroll:hover {
    background: #88a725;
}

#scroll i {
    color: #fff;
    font-size: 44px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

#scroll:hover i {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

/* navbar*/

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 106px;
    display: inline-block;
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    border-radius: 0;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav > li {
    margin: 0 15px;
    padding: 20px 0;
    position: relative;
}

.navbar-nav > li:last-child {
    margin-right: 0;
}

.navbar-nav > li:first-child {
    margin-left: 0;
}

.navbar-nav > li > a {
    color: #000;
    font-size: 16px;
    line-height: 1.2;
    position: relative;
    font-weight: normal;
}

.navbar-nav > li > a:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #3b61dc;
    /* opacity: 0; */
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a {
    color: #3b61dc;
}

.navbar-nav > li.current-menu-item > a:after,
.navbar-nav > li > a:hover:after,
.navbar-nav > li.menu-item-has-children:hover > a:after {
    width: 100%;
}

/* navbar submenu*/

.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    width: 140px;
    padding: 0;
}

.sub-menu > li > a {
    color: #000;
    display: block;
    width: 100%;
    padding: 6px 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.sub-menu > li {
    width: 100%;
    display: block;
}

.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a,
.sub-menu > li.current-menu-item > a {
    background: #eab71e;
    color: #fff;
}

.navbar-nav > li:last-child > .sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
    display: none;
}

#navoverlay {
    display: block;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    margin: 0;
    padding: 0;
    z-index: 99;
    -webkit-transition: background-color 0.5s linear;
    -o-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

/* for push-menu end*/

.container {
    padding: 0 15px;
}

.landing-page-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100dvh;
}

.banner-sec-starts {
    position: relative;
    padding: 55px 0 50px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* overflow: hidden; */
}

.banner-sec-inr {
    position: relative;
    z-index: 2;
}

.snake-shape {
    position: absolute;
    left: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 10px;
    width: 100%;
}

.cross-shape {
    position: absolute;
    left: -14%;
    top: 22%;
    max-width: 18px;
    width: 100%;
}

.jilapi-one {
    position: absolute;
    top: 5px;
    left: -50px;
    max-width: 20px;
    width: 100%;
}

.jilapi-two {
    position: absolute;
    right: 70px;
    bottom: -57px;
    max-width: 20px;
    width: 100%;
}

.row-banner {
    --bs-gutter-y: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner-left-inr {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-right-inr {
    width: 100%;
    height: 100%;
    position: relative;
    padding-left: 30px;
}

.banner-left-inr h1 span {
    color: var(--orange-color);
}

.dogmobile-wrp {
    width: 100%;
    /* max-width: 280px; */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.dogmobile-wrp img {
    width: 100%;
    /* height: 100%; */
    -o-object-fit: contain;
    object-fit: contain;
}

/* Target only dynamic API image */
.landing-api-image {
  width: 100%;
  max-height: 550px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* Ensure dynamic image does NOT stretch the wrapper */
@media (max-width: 576px) {
  .landing-api-image {
    max-height: 250px;
  }
}



.dogmobile-backshape {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 100%;
}

.banner-top-left-shape {
    position: fixed;
    top: 0;
    left: 0;
    width: 25.8%;
    /* max-width: 412px; */
    z-index: -1;
    pointer-events: none;
}

.banner-top-rightshape {
    position: fixed;
    top: 0;
    right: 0;
    width: 58%;
    max-width: 925px;
    z-index: -1;
    pointer-events: none;
    max-height: 90dvh;
}

.main-head {
    /* position: absolute; */
    padding: 20px 0;
    z-index: 10;
    width: 100%;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
}

.bruno-sec {
    border-radius: 12px;
    overflow: hidden;
    padding: 10px 10px 20px 10px;
    position: absolute;
    right: -23px;
    bottom: 55px;
    min-height: 250px;
    min-width: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 3;
}

.licking-dog {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.bruno-gr {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(65.19%, rgba(0, 0, 0, 0)),
        color-stop(114.36%, #000000)
    );
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 65.19%, #000000 114.36%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 65.19%, #000000 114.36%);
}

.percentage-wrp {
    background-color: #211a1a;
    border-radius: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 7px 5px 10px;
    position: relative;
    z-index: 1;
}

.percentage-wrp span {
    width: 13px;
    height: 13px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: end;
    align-content: end;
    margin-right: 5px;
}

.percentage-wrp p {
    color: var(--white-color);
    font-size: 12px;
    font-weight: 500;
}

.verified-brunotitle-wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
}

.verified-bruno {
    position: relative;
    z-index: 1;
}

.verified-brunotitle-wrp span {
    font-size: 14px;
    color: var(--white-color);
    font-weight: 500;
}

.verified-brunotitle-wrp i {
    width: 17px;
    height: 17px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 3px;
}

.verified-brunotitle-wrp i img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.verified-bruno-parawrp > *:not(:last-child) {
    margin-bottom: 2px;
}

.verified-bruno-parawrp {
    color: var(--white-color);
    font-size: 13px;
    margin-bottom: 5px;
}

.cmn-verified-tag {
    font-size: 11px;
    font-weight: 500;
    border-radius: 20px;
    background-color: #ffe6d3;
    text-align: center;
    min-width: 65px;
    padding: 3px;
    color: #594f48;
}

.obedient-tag {
    background-color: #ffe4e1;
    color: #b7736c;
}

.verified-brunotag-wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.verified-brunotag-wrp > *:not(:last-child) {
    margin-right: 5px;
}

.devid-wrp {
    border-radius: 20px;
    background-color: var(--white-color);
    padding: 30px 17px 30px 10px;
    -webkit-box-shadow: 0px 3.42197px 31.0543px rgba(242, 242, 242, 0.66);
    box-shadow: 0px 3.42197px 31.0543px rgba(242, 242, 242, 0.66);
    position: absolute;
    left: 8px;
    top: 98px;
    z-index: 4;
    max-width: 180px;
}

.devid-suza-wrp {
    width: 100%;
    margin-bottom: 15px;
}

.devid-suza-wrp img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.devid-text-wrp span {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--header-color);
    display: block;
}

.devid-text-wrp p {
    font-weight: 300;
    font-size: 13px;
}

.paw-one-left {
    position: absolute;
    top: -5%;
    left: 19%;
    max-width: 24px;
    width: 100%;
}

.paw-one-right {
    position: absolute;
    top: -40px;
    right: 0;
    max-width: 24px;
    width: 100%;
}

.paw-shape-two {
    max-width: 24px;
    width: 100%;
    position: absolute;
    right: -12%;
    bottom: 24%;
}

/* .main-head.fixed{
    background-color: var(--white-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
} */

.copytright-inr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.copytright-footer {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #e9e9e9;
}

.terms-lists-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 40px;
    margin-bottom: 0;
    list-style: none;
}

.terms-lists-footer > *:not(:last-child) {
    margin-right: 30px;
    position: relative;
}

.terms-lists-footer > *:not(:last-child)::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: var(--black-color);
    border-radius: 50%;
    position: absolute;
    right: -17px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.terms-lists-footer li a {
    color: var(--body-color);
}

.terms-lists-footer li a:hover {
    color: var(--orange-color);
}

.copyright-text a {
    color: var(--body-color);
}

.copyright-text a:hover {
    color: var(--orange-color);
}

.copyright-text {
    margin-bottom: 0;
}

/* privecy terms starts */

.privacy-policy {
    padding: 60px 0;
    flex-grow: 1;
}

.privacy-policy h1 {
    font-size: 52px;
    margin: 0;
    margin-bottom: 6px;
}

.policy-cntnt-wpr h2 {
    font-size: 30px;
    /* font-weight: 600; */
    line-height: 1.3;
    margin: 40px 0 15px;
}

.policy-cntnt-wpr h3 {
    font-size: 20px;
    /* font-weight: 600; */
    line-height: 1.3;
    margin: 30px 0 12px;
}

.policy-cntnt-wpr h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin: 20px 0 12px;
}

.policy-cntnt-wpr {
    line-height: 1.8;
}

.policy-cntnt-wpr p > strong,
.policy-cntnt-wpr p > b {
    font-weight: 600;
}

.policy-cntnt-wpr ul > li {
    margin-bottom: 12px;
}

.policy-cntnt-wpr p > a {
    text-decoration: underline !important;
    color: #475ba8;
    word-break: break-all;
}

.policy-cntnt-wpr p > a:hover {
    text-decoration: none !important;
}

.privacy-table-wpr {
    width: 100%;
    overflow: auto;
    margin: 30px 0;
}

.privacy-table-wpr table {
    width: 100%;
    min-width: 600px;
}

.privacy-table-wpr table th,
.privacy-table-wpr table td {
    border: 1px solid #3f3f3f;
    padding: 10px 15px;
}

.privacy-table-wpr table th {
    font-weight: 600;
}

/* privecy terms ends */

/* ========== responsive css =========== */

@media (min-width: 1025px) {
    /* navbar*/
    .navbar-nav .clickD {
        display: none;
    }

    .navbar-nav li.menu-item-has-children:hover > .sub-menu {
        display: block;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1170px;
    }
}

@media (max-width: 1499px) {
    .paw-shape-two {
        right: -10%;
    }
}

@media (max-width: 1399px) {
    .paw-shape-two {
        right: -10%;
    }

    h1,
    .h1-title {
        font-size: 54px;
    }

    .paw-shape-two {
        right: 0;
    }

    .navbar-brand {
        max-width: 80px;
    }
}

@media (max-width: 1199px) {
    h1,
    .h1-title {
        font-size: 48px;
    }

    .privacy-policy h1 {
        font-size: 42px;
    }

    .policy-cntnt-wpr h2 {
        font-size: 28px;
        margin: 30px 0 12px;
    }

    .policy-cntnt-wpr h3 {
        font-size: 20px;
        margin: 22px 0 10px;
    }

    .banner-sec-starts {
        padding: 15px 0 50px;
    }
}

@media (max-width: 1024px) {
    /* navbar*/
    .navbar-nav .clickD {
        position: absolute;
        right: 0;
        top: 17px;
        width: 20px;
        height: 20px;
        background: url(images/sort-down.svg) center center no-repeat;
        display: block;
        background-size: 10px;
        cursor: pointer;
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu > li.menu-item-has-children .clickD {
        top: 8px;
        right: 5px;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .sub-menu > li.menu-item-has-children .clickD.toggled {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .navbar-nav > li.menu-item-has-children {
        padding-right: 20px;
    }

    .sub-menu > li.menu-item-has-children > a {
        padding-right: 20px;
    }

    .sub-menu.show {
        display: block;
    }

    .navbar-nav > li {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navbar-nav > li.current-menu-item > a:after,
    .navbar-nav > li > a:after,
    .navbar-nav > li.menu-item-has-children > a:after {
        width: 100%;
        opacity: 0;
    }

    .navbar-nav > li.current-menu-item > a:after,
    .navbar-nav > li > a:hover:after,
    .navbar-nav > li.menu-item-has-children:hover > a:after {
        width: 100%;
        opacity: 1;
    }

    /* navbar end*/
}

@media (max-width: 991px) {
    /* navbar*/
    .navbar-toggler {
        position: relative;
        width: 33px;
        margin-left: auto;
        height: 28px;
        padding: 0;
        outline: none !important;
        border: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    .stick,
    .stick:after,
    .stick:before {
        width: 30px;
        height: 2px;
        background: #000;
        position: absolute;
        left: 0;
        top: auto;
        -webkit-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s;
        border-radius: 5px;
    }

    .stick:before {
        content: "";
        top: -10px;
        left: 0;
    }

    .stick:after {
        content: "";
        top: 10px;
        left: 0;
    }

    .stick.open {
        -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px);
        background: transparent;
    }

    .stick.open:before {
        -webkit-transform: rotate(45deg) translate(42px, -28px);
        -ms-transform: rotate(45deg) translate(42px, -28px);
        transform: rotate(45deg) translate(42px, -28px);
        left: 2px;
    }

    .stick.open:after {
        -webkit-transform: rotate(-45deg) translate(42px, 28px);
        -ms-transform: rotate(-45deg) translate(42px, 28px);
        transform: rotate(-45deg) translate(42px, 28px);
        left: 2px;
    }

    .navbar-nav .clickD {
        top: 8px;
        right: 10px;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu > li.menu-item-has-children .clickD {
        top: 8px;
        right: 10px;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }

    .sub-menu,
    .navbar-nav > li > .sub-menu .sub-menu {
        position: relative;
        width: 100%;
        left: inherit;
        top: inherit;
        border: none;
        right: inherit;
    }

    .navbar-nav > li.menu-item-has-children {
        padding-right: 0;
    }

    .navbar-nav > li {
        margin: 0;
        padding: 0;
    }

    .navbar-nav > li > a {
        padding: 8px 20px;
        display: inline-block;
        width: 100%;
    }

    .navbar-nav li.menu-item-has-children > a {
        padding-right: 30px;
    }

    .sub-menu > li > a {
        padding-left: 40px;
    }

    .sub-menu .sub-menu > li > a {
        padding-left: 60px;
    }

    .sub-menu .sub-menu .sub-menu > li > a {
        padding-left: 80px;
    }

    .navbar-nav > li > a:after {
        bottom: 0;
    }

    /* navbar end*/

    /* push nav */

    .navbar-collapse {
        background: #fff;
        position: fixed;
        top: 0;
        height: 100% !important;
        width: 290px;
        overflow-y: auto;
        -webkit-transition: inherit !important;
        -o-transition: inherit !important;
        transition: inherit !important;
        right: 0;
        margin: 0;
        display: block !important;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.2s ease-in-out !important;
        -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
        transition: -webkit-transform 0.2s ease-in-out !important;
        -o-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        transition:
            transform 0.2s ease-in-out,
            -webkit-transform 0.2s ease-in-out !important;
        z-index: 100;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block !important;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: transform 0.2s ease-in-out !important;
        -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
        transition: -webkit-transform 0.2s ease-in-out !important;
        -o-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        transition:
            transform 0.2s ease-in-out,
            -webkit-transform 0.2s ease-in-out !important;
    }

    .navbar-collapse .navbar-nav {
        margin: 80px 0 0;
        padding: 0 0 40px 0;
    }

    .navbar-collapse .navbar-toggler {
        display: block;
        right: 20px;
        top: 20px;
        position: absolute;
    }

    #navoverlay.open {
        background-color: rgba(0, 0, 0, 0.4);
        pointer-events: all;
        -webkit-transition: background-color 0.5s linear;
        -o-transition: background-color 0.5s linear;
        transition: background-color 0.5s linear;
    }

    body.open-nav,
    html.open-nav {
        height: 100%;
        overflow: hidden;
    }

    /* push nav end */

    .banner-right-inr {
        padding-left: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .banner-sec-starts {
        padding: 30px 0 50px;
    }

    .banner-left-inr {
        margin-bottom: 10px;
    }

    .privacy-policy h1 {
        font-size: 36px;
    }

    .policy-cntnt-wpr h2 {
        font-size: 26px;
        margin: 26px 0 12px;
    }

    .policy-cntnt-wpr h3 {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .navbar-brand {
        margin: 0 auto;
    }

    .banner-left-inr {
        text-align: center;
    }
}

@media (max-width: 767px) {
    /* images alignment for wordpress content pages */
    .alignright,
    .alignleft,
    .aligncenter {
        float: none;
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        clear: both;
        margin-bottom: 24px;
    }

    h1,
    .h1-title {
        font-size: 44px;
    }

    .devid-wrp {
        left: 0;
    }

    .bruno-sec {
        right: 0;
    }

    .banner-right-inr {
        max-width: 410px;
    }

    .bruno-sec {
        min-width: 135px;
        min-height: 190px;
        padding: 10px 10px 20px 10px;
        bottom: 10%;
    }

    .obedient-tag {
        min-width: 55px;
        padding: 3px;
        font-size: 10px;
    }

    .devid-wrp {
        top: 17%;
        padding: 15px 10px;
        max-width: 150px;
        border-radius: 15px;
    }

    .devid-text-wrp span {
        margin-bottom: 0;
    }

    .devid-text-wrp p {
        font-size: 12px;
        line-height: 1;
    }

    .dogmobile-wrp {
        max-width: 200px;
    }

    h1,
    .h1-title {
        font-size: 40px;
    }

    /* 
.banner-sec-starts{
    padding: 120px 0;
} */

    .banner-left-inr {
        text-align: center;
    }

    .copytright-inr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        padding: 12px 0 14px;
    }

    .terms-lists-footer {
        padding-left: 0;
    }

    .copytright-inr > *:not(:last-child) {
        margin-bottom: 10px;
    }

    .privacy-policy {
        padding: 40px 0;
    }

    .copytright-inr .copyright-text {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-bottom: 0;
        margin-top: 4px;
    }
}

@media (max-width: 575px) {
    .policy-cntnt-wpr h2 {
        font-size: 24px;
    }
}

@media (max-width: 479px) {
    .banner-top-left-shape {
        max-width: inherit;
        width: 55%;
    }

    .banner-top-rightshape {
        max-width: inherit;
        width: 60%;
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        top: auto;
        bottom: 0;
    }

    .paw-one-right {
        top: auto;
        bottom: -5%;
        right: 5%;
    }

    .percentage-wrp {
        padding: 3px;
    }

    .percentage-wrp p {
        font-size: 10px;
    }

    .cmn-verified-tag {
        font-size: 8px;
        min-width: 45px;
    }

    .verified-bruno-parawrp {
        font-size: 10px;
    }

    .bruno-sec {
        min-width: 100px;
        min-height: 170px;
        padding: 10px;
    }

    .devid-wrp {
        max-width: 120px;
    }

    h1,
    .h1-title {
        font-size: 34px;
    }

    body {
        font-size: 14px;
    }

    .copytright-inr > *:not(:last-child) {
        margin-bottom: 2px;
    }

    .copytright-inr {
        padding: 15px 0;
    }

    .banner-sec-starts {
        padding: 30px 0;
    }

    .paw-one-left {
        top: 0;
    }

    .privacy-policy h1 {
        font-size: 34px;
    }

    .policy-cntnt-wpr h2 {
        font-size: 22px;
    }

    .policy-cntnt-wpr h3 {
        font-size: 17px;
    }
}
