/* Universal Css Start Here */
body {
    font-family: var(--font-default);
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    background: #fbfbfb;
}

html {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}
.form-control:focus {
    box-shadow: none;
}
ul {
    padding: 0;
    list-style: none;
}
a {
    text-decoration: none;
}
h1 {
    font-size: 51px;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    color: #000000;
    margin: 0;
}
h2 {
    font-size: 30px;
    font-family: "Manrope", sans-serif;
    margin: 0;
    color: #101010;
}
h3 {
    font-size: 30px;
    font-family: "Manrope", sans-serif;
    margin: 0;
    color: #101010;
}
h5 {
    font-size: 20px;
    font-size: 22px;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    color: #101010;
    margin: 0;
}
h6 {
    font-size: 13px;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    color: #000000;
    margin: 0;
}
p {
    line-height: 1.8;
    font-family: "Manrope", sans-serif;
    color: #000;
    font-size: 15px;
    margin: 0;
    font-weight: 400;
}
.btn {
    background: #27a9e0;
    border-radius: 5px;
    padding: 13px 40px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    text-transform: capitalize;
    border: none;
    overflow: hidden;
}
.btnwrapper a.btn {
    font-size: 14px;
}
.btn:active {
    transform: scale(0.8);
}
.btn:hover {
    color: #fff;
    z-index: 3;
    transition-delay: 1s;
}
.btn:before {
    content: "";
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%) scale(0.6);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 1;
    transition-property: left, transform;
    transition-delay: 0s, 0s;
    transition-duration: 1s, 0.5s;
    opacity: 0;
}

.btn:after {
    content: "";
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%) scale(0.6);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 1;
    transition-property: right, transform;
    transition-delay: 0s, 0s;
    transition-duration: 0.8s, 0.5s;
    opacity: 0;
}
.btn:hover:after {
    right: 10px;
    transform: translateY(-50%) scale(50);
    transition-delay: 0s, 1s;
    opacity: 1;
    background: #662d91;
    z-index: -1;
}
.btn:hover:before {
    left: 10px;
    transform: translateY(-50%) scale(50);
    transition-delay: 0s, 1s;
    opacity: 1;
    background: #662d91;
    z-index: -1;
}
.btn.hover-wrapper:after {
    background: #27aae1 !important;
}
.btn.hover-wrapper:hover:before {
    background: #27aae1 !important;
}
.btn.bring-content-btn:hover {
    color: #fff !important;
}
.btn.hover-perk-purple:hover:before {
    background: #27aae1 !important;
}
.btn.hover-perk-purple:hover:after {
    background: #27aae1 !important;
}
/* Variable Css End Here */
.loader {
    width: 250px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: helvetica, arial, sans-serif;
    text-transform: uppercase;
    font-weight: 900;
    color: #662d91;
    letter-spacing: 0.2em;
}
.loader::before,
.loader::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: #662d91;
    position: absolute;
    -webkit-animation: load 0.7s infinite alternate ease-in-out;
    animation: load 0.7s infinite alternate ease-in-out;
}
.loader::before {
    top: 0;
}
.loader::after {
    bottom: 0;
}

@-webkit-keyframes load {
    0% {
        left: 0;
        height: 30px;
        width: 15px;
    }
    50% {
        height: 8px;
        width: 40px;
    }
    100% {
        left: 235px;
        height: 30px;
        width: 15px;
    }
}

@keyframes load {
    0% {
        left: 0;
        height: 30px;
        width: 15px;
    }
    50% {
        height: 8px;
        width: 40px;
    }
    100% {
        left: 235px;
        height: 30px;
        width: 15px;
    }
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999999;
    overflow: hidden;
    background: #fff;
}

/* header css */
.navbar-nav .dropdown-menu li {
    border-bottom: 1px solid #e1e1e1;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-nav .dropdown-menu li:hover .dropdown-wrapper {
    visibility: visible;
}
.navbar-nav .dropdown-menu li a.active {
    color: #27a9e0;
    background-repeat: no-repeat;
    background-position: 114px 1px;
    width: 100%;
}
.navbar-nav .dropdown-menu li a:hover {
    color: #27a9e0;
}
a.dropdown-toggle i {
    margin-left: 10px;
    color: #000;
}
.navbar-nav .dropdown-menu li a {
    color: #101010;
    font-size: 14px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
}
.navbar-nav .dropdown-menu li:last-child {
    border-bottom: none !important;
}
.navbar-nav .dropdown-menu {
    position: absolute;
    padding: 13px 10px;
    box-shadow: rgba(99, 99, 99, 0.2);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: none;
    width: 100%;
    height: 100px;
    top: 40px;
}
a.dropdown-toggle {
    color: #fff;
    font-family: "Poppins-SemiBold";
    font-size: 17px;
}
.dropdown-toggle::after {
    display: none;
}
header.web-header {
    background: transparent !important;
    padding: 16px;
    position: relative;
    z-index: 9;
}
.nav-top-first ul.navbar-nav li.nav-item .nav-link:focus,
.nav-top-first ul.navbar-nav li.nav-item .nav-link:hover {
    color: #27a9e0;
}

.nav-top-first ul.navbar-nav {
    display: flex !important;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    margin-top: 0px;
    width: 100%;
    flex-direction: initial;
    gap: 30px;
}
.last-heading-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    justify-content: end;
}
.last-heading-wrapper::before {
    content: "";
    position: absolute;
    height: 49px;
    width: 2px;
    background-color: #fafd93;
    left: 0%;
    top: 30%;
    bottom: 50%;
}
li.nav-item a {
    color: #000;
    font-size: 14px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
}
.donate-text h5 {
    color: #fafd93;
    font-family: var(--font-poppin-bold);
    font-size: 20px;
}
.img-logo-main img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.last-heading-wrapper img {
    width: 67px;
    height: 71px;
    object-fit: scale-down;
}
.nav-top-first {
    margin-right: 20px;
}

.nav-item #active {
    color: #27a9e0;
}

/* footer css */
.footer-navbar .navbar-nav li.nav-item a.nav-link {
    color: #101010;
    margin: 0;
    line-height: 0.5;
}
.footer-navbar .navbar-nav li.nav-item1 a.nav-link:hover {
    color: #f23838;
}
li.nav-item1 a {
    color: #fff;
    font-family: "Poppins-SemiBold";
    font-size: 17px;
}
.footer-navbar .navbar-nav li.nav-item1 a.nav-link {
    color: #101010;
    margin: 0;
    line-height: 0.5;
}
.footer-logo img {
    width: 100%;
    height: 120px;
    object-fit: scale-down;
}
.footer-navbar .navbar-nav li.nav-item a.nav-link:hover {
    color: #f23838;
}
li.nav-item-icon {
    display: flex;
    gap: 10px;
}
li.nav-item-icon a i {
    color: #f23838;
    font-size: 22px;
}
li.nav-item-icon a i:hover {
    color: #101010;
    font-size: 22px;
}
.footer-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer.text-white {
    position: relative;
    padding-top: 40px;
}

/*  */
section.banner-sec {
    background-color: #f7feff;
    padding-top: 50px;
}
.banner-heading {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    position: relative;
    padding: 40px 0;
}
/* mobile responsive */
.mobile-responsive-wrapper {
    display: none;
}
a.menu {
    float: left;
    width: 30px;
    height: 23px;
    overflow: hidden;
    transition: 0.3s;
}
a.menu span {
    float: left;
    width: 30px;
    height: 3px;
    background-color: #000;
    position: relative;
    top: 10px;
    transition: 0.3s;
}
a.menu span:before {
    content: "";
    width: 30px;
    height: 3px;
    background-color: #000;
    position: absolute;
    top: -8px;
    left: 0;
}
a.menu span:after {
    content: "";
    width: 30px;
    height: 3px;
    background-color: #000;
    position: absolute;
    bottom: -8px;
    left: 0;
}
a.menu.active {
    transform: rotate(360deg);
}
a.menu.active span {
    background-color: transparent;
}
a.menu.active span:before {
    top: 0;
    transform: rotate(-45deg);
}
a.menu.active span:after {
    bottom: 0;
    transform: rotate(45deg);
}
.mobile-responsive {
    background: #fff;
    display: none;
    position: relative;
    z-index: 111;
}
.wrapper-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slideContent {
    background: #d0f6fd;
    display: block;
    align-items: center;
    justify-content: center;
    height: 20vh;
    position: relative;
}
.slideContent li.nav-item a {
    color: #000;
    font-size: 14px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
}
.slideContent a.dropdown-toggle {
    color: #000;
    font-family: "Poppins-SemiBold";
    font-size: 17px;
}
.slideContent a.dropdown-toggle i {
    margin-left: 10px;
    color: #f23838;
}

/* footer end here */
.searchbar input[type="text"]::before {
    content: "";
    width: 1px;
    height: 5px;
}
li.search-li {
    background: #d3d4d5;
}
input:focus-visible {
    outline: none;
}
.newsletter_wrapper .btn {
    background: white;
    /* font-family: var(--font-poppin-medium); */
    color: #025042 !important;
    font-size: 15px;
    border: 0;
    font-family: var(--bold-font-family);
    border-radius: 0px !important;
    width: 100%;
}
.newsletter_wrapper input {
    background: #f5f5f5;
    height: 50px;
    padding: 0px 5px;
    border-radius: 0px;
    outline: none;
    border: none;
}
.newsletter_wrapper input::placeholder {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: #cccbd1 !important;
    font-weight: 500;
}
.btn-slatter {
    position: absolute;
    line-height: 0px;
    right: 0px !important;
    border-radius: 0px;
    padding: 0 5px !important;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
}
.newsletter_wrapper .btn {
    background: #662d91;
    color: #fff !important;
    border-radius: 0px !important;
    width: 100%;
    padding: 0px 24px;
    text-transform: capitalize;
    height: 100%;
    letter-spacing: 1px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
}
.news-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}
footer {
    padding: 28px 0;
}
.newsletter_wrapper h3 {
    font-size: 21px;
    text-transform: capitalize;
    margin-bottom: 19px;
    line-height: 26px;
    width: 80%;
    color: #181433;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}
.footer_content.left-padding-footer {
    padding-left: 0 !important;
}
ul.footer-menus.contect-wrapper {
    padding: 0;
}
ul.footer-menus {
    padding: 0;
    padding-left: 0px;
}
ul.footer-menus li {
    padding-bottom: 19px;
}
ul.footer-menus li a {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: #181433;
    font-weight: 600;
}
.newsletter_wrapper p {
    color: #8b8999;
    margin-top: 27px;
    padding-right: 50px;
    font-size: 15px;
}
.head h5 {
    margin-bottom: 20px;
    text-transform: capitalize;
    font-size: 21px;
    color: #181433;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    margin-top: 0px;
}
.img-footer img {
    width: 152px;
    height: 72px;
    object-fit: scale-down;
    margin-bottom: 11px;
}
.row.border-top-wrapper {
    padding-top: 37px;
}
.footer_content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 100%;
    align-items: normal;
    padding-left: 0px;
    padding-top: 52px;
}
.footer_content.tampletes-content-wrapper {
    padding-left: 0;
}
h6.copy-right {
    margin-top: 50px;
    border-top: 1px solid #e5e5ea;
    padding-top: 40px;
    color: #181433;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 500;
}
.canvas-icon {
    display: none;
}
ul.social-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}
.img-footer p {
    color: #757095;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    padding-right: 50px;
}
ul.social-wrapper li a i {
    color: #3734a9;
    font-size: 20px;
}
/* banner */
/* table css */
.main-tabs-wrapper .tile {
    width: 70%;
    /* margin: 0 auto; */
    padding-bottom: 0px;
    padding-top: 20px;
}
.main-tabs-wrapper #tile-1 .nav-pills {
    padding: 9px 0;
}

.main-tabs-wrapper #tile-1 .nav-pills li button {
    padding: 0;
    color: #9a9a9a !important;
    position: relative;
    z-index: 11111;
    font-size: 20px;
    font-family: "Gilroy-Bold";
    text-align: start;
}
.main-tabs-wrapper #tile-1 .nav-pills {
    position: relative;
}

.main-tabs-wrapper #tile-1 .nav-pills li {
    margin: 0px !important;
    padding-right: 10px;
}

.main-tabs-wrapper #tile-1 .nav-pills li a {
    position: relative;
    margin-right: 0px !important;
    padding: 20px 40px !important;
    font-size: 16px;
    border: none !important;
    color: #333;
}

.main-tabs-wrapper #tile-1 .nav-pills a:hover {
    background-color: #fff !important;
    border: none;
}
.main-tabs-wrapper #tile-1 .slider {
    display: inline-block;
    width: 30px;
    height: 10%;
    border-radius: 10px;
    background-color: #662d91 !important;
    position: absolute;
    z-index: 1200;
    bottom: 0;
    transition: all 0.4s linear;
}
.main-tabs-wrapper #tile-1 .nav-pills .active {
    background-color: transparent !important;
    border: none !important;
    color: #042933 !important;
    position: relative;
    z-index: 11111;
    font-size: 20px;
    font-family: "Gilroy-Bold";
    text-align: start;
}
.main-tabs-wrapper table.table.table-bordered.table-hover {
    border-spacing: 0 14px;
    border-top: 10px;
    border-bottom: 10px;
    border-collapse: separate;
    text-indent: initial;
    border-spacing: 11px 11px;
}

.main-tabs-wrapper th {
    border: 1px solid #fff !important;
    display: table-cell;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    font-family: "Poppins-SemiBold";
    font-size: 18px;
    padding: 4px 8px !important;
    vertical-align: middle;
    background-color: #222222 !important;
}
.table-responsive.Embroidered td {
    background: #fff;
    padding: 6px 14px !important;
}
.background-wrapper {
    position: absolute;
    left: -60px;
    z-index: -1;
    top: -380px;
}
.banner-headin1 p {
    color: #757095;
    font-size: 19px;
}
.newsletter_wrapper.banner input.form-control {
    background-color: transparent;
    padding: 0;
}
.newsletter_wrapper.banner h3 {
    font-size: 16px !important;
    font-family: "Gilroy-Bold" !important;
    margin: 0;
    color: #999999 !important;
}
.newsletter_wrapper.banner button.btn.btn-outline-success {
    background-color: #042933 !important;
    font-weight: 800;
    font-size: 20px;
    font-family: "Gilroy-Bold";
}
.newsletter_wrapper.banner .btn-slatter {
    top: -20px !important;
    align-items: start !important;
    justify-content: start !important;
    display: flex !important;
    position: absolute !important;
    right: 0px !important;
    bottom: 16px;
}
.newsletter_wrapper.banner
    .btn-slatter
    button.btn.hover-wrapper.btn-outline-success {
    padding: 0px 43px;
}
.newsletter_wrapper.banner input::placeholder {
    font-family: "Gilroy-Bold" !important;
    font-size: 24px !important;
    color: #e4e4e4 !important;
}
.banner-headin1 h1 {
    margin: 20px 0;
}
.newsletter_wrapper.banner {
    background: #fff;
    padding: 10px 15px;
    position: relative;
}
.img-wrapper {
    position: absolute;
    right: 50px;
    top: -80px;
}
.img-wrapper img {
    width: 100%;
    height: 650px;
    object-fit: fill;
}
/*  */
.counter-container {
    /* border: 2px solid #fff; */
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin: 30px 10px 30px 20px;
    text-align: left;
}
.count {
    font-size: 55px;
    margin-top: 10px;
    color: #27aae1;
    font-family: "Manrope", sans-serif;
    font-weight: 900;
}
.percent:after {
    content: "K+";
    display: inline-block;
}
.counter-container i {
    font-size: 64px;
    color: #09a0f7;
}
section.counter-sec {
    position: relative;
    background-size: cover;
    padding: 20px 0px;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 40px;
}
.counter-container p {
    color: #042933;
    padding-right: 56px;
    font-family: "Gilroy-SemiBold" !important;
    font-size: 21px;
    line-height: 1.3;
}
.percentage-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.percentage-wrapper h6 {
    font-size: 60px;
    margin-top: 10px;
    font-family: "Oswald-SemiBold";
    color: #fff;
}
#return-to-top {
    position: fixed;
    bottom: 10px;
    right: 15px;
    background: #662d91;
    width: 41px;
    height: 41px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 2px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 13px;
    top: 10px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}
h6.stockie-heading {
    font-size: 16px;
    margin-top: 10px;
    color: #27aae1;
    margin-bottom: 10px;
    font-family: "Gilroy-Bold";
    text-transform: uppercase;
}
h2.we-team-heading {
    font-size: 37px;
    color: #000000;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 20px;
}
p.para-head {
    font-size: 16px;
    color: #64607d;
    margin-bottom: 20px;
}
section.operation-sec .btn {
    background: #662d91;
}
.project-cell {
    position: relative;
}
.div-cell-number h3 {
    font-size: 180px;
    position: absolute;
    color: #f2f2f2;
    font-family: "Gilroy-Black";
}
.project-cell {
    position: relative;
    width: 28%;
}
.project-cell .cell.main-heading p {
    color: #64607d;
    font-size: 16px;
}
.cell-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 180px;
}
.div-cell-number {
    position: absolute;
    right: 90px;
    top: -80px;
    z-index: -1;
}
.project-cell .cell.main-heading h5 {
    font-weight: 900 !important;
    margin-bottom: 10px;
    font-size: 16px;
}
.project-cell.second-position {
    position: relative;
    top: -120px;
    left: 40px;
}
.project-cell.third-position {
    top: -367px;
    right: 51px;
}
.wave {
    position: absolute;
    top: -290px;
    left: -180px;
    z-index: -1;
}
section.operation-sec {
    position: relative;
    padding-top: 20px;
}
.circle-wrapper {
    width: 360px;
    height: 360px;
    background: #f5f8ff;
    border-radius: 100%;
    position: absolute;
    right: -60px;
    z-index: -1;
    top: 30px;
}
/*  */
.bring-wrapper {
    position: relative;
}
.bring-content {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    bottom: 0;
    left: 0;
    right: 0;
}
.bring-content h2 {
    font-size: 42px;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}
.bring-content p {
    font-size: 17px;
    color: #fff;
    text-align: center;
    padding: 0px 120px;
    margin-bottom: 20px;
    font-family: "Gilroy-Medium" !important;
}
.bring-content a.btn {
    background: #fff;
    color: #662d91;
}
.bring-wrapper img.img-fluid {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
section.bring-sec {
    position: relative;
    padding: 100px 0 60px 0;
    margin-bottom: 40px;
}
/*  */
.business-help-heading h2 {
    font-family: "Manrope", sans-serif;
    color: #000000;
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 800;
}
.business-help-heading p {
    font-family: "Manrope", sans-serif;
    color: #64607d;
    font-size: 18px;
    margin-bottom: 10px;
    padding: 0px 230px;
}
.you-card {
    background: #fff;
    padding: 40px 20px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    border-radius: 20px;
}
.you-card:hover {
    background-color: #27a9e0;
    transition: all 0.5s ease-in-out;
}
.you-card:hover h4 {
    color: #fff;
    transition: all 0.5s ease-in-out;
}
.you-card:hover p {
    color: #fff;
    transition: all 0.5s ease-in-out;
}
.you-card:hover a {
    color: #662d91;
    transition: all 0.5s ease-in-out;
}
.you-card a span {
    padding-left: 10px;
    line-height: 1;
}
.you-card img {
    margin-bottom: 30px;
    margin-top: 20px;
}
.you-card h4 {
    font-family: "Manrope", sans-serif;
    color: #000000;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 800;
    transition: all 0.8s ease-in-out;
}
.you-card p {
    color: #64607d;
    margin-bottom: 15px;
}
.you-card a {
    color: #01966b;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.8s ease-in-out;
}
.background-image-you {
    z-index: -1;
    top: -250px;
    width: 160%;
    left: -450px;
    height: 40%;
}
/*  */
.vector-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
}
.vector-wrapper img {
    background: #f7ecff;
    width: 50px;
    height: 50px;
    padding: 10px;
    object-fit: scale-down;
    border-radius: 5px;
}
.vector-wrapper h4 {
    font-size: 20px;
    color: #64607d;
    font-family: "Gilroy-SemiBold";
}
h3.provider-heading {
    font-size: 30px;
    color: #000000;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}
.border-wrapper {
    border: 1px solid #dee1e6;
    padding: 35px 20px;
    border-radius: 17px;
}
section.we-dedicated-sec {
    padding-top: 50px;
    padding-bottom: 50px;
}
a.btn.you-btn {
    border-radius: 10px;
}
.perks-headings {
    text-align: start;
    background: #f8f9fd;
    padding: 50px;
    border-radius: 20px;
}
h2.sign-up-wrapper-heading {
    color: #000000 !important;
}
.perks-headings ul li {
    color: #64607d;
    font-size: 16px;
    margin-bottom: 18px;
    padding: 0px 0px;
    font-family: "Gilroy-Medium" !important;
    text-align: start;
}
.perks-headings h4 {
    font-size: 33px;
    color: #000000;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    margin-bottom: 20px;
}
.banner-headin1 {
    padding-bottom: 30px;
}
.perks-headings p {
    color: #64607d;
    margin-bottom: 20px;
    padding: 0px 0px;
    font-family: "Gilroy-Medium" !important;
}
.btn.perk-purple {
    background: #662d91;
}
a.btn.size {
    width: 170px;
}
.background-image-you1 {
    z-index: -1;
    top: -40px;
    width: 100%;
    left: 0px;
    height: 100%;
}
.business-help-heading.sign-up h5 {
    color: #27aae1;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: "Gilroy-Bold" !important;
}
.business-help-heading.sign-up h2 {
    padding: 0px 140px;
}
.business-help-heading.sign-up h2 {
    color: #64607d;
}
a.btn.size-btn {
    border-radius: 30px;
    width: 200px;
}
section.perks-sec {
    padding-bottom: 70px;
    padding-top: 70px;
}
section.we-help-you.sign-up {
    padding: 200px 0;
}
/*  */
.our-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}
.our-heading h2 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 40px;
}
section.our-blogs {
    padding-top: 50px;
    padding-bottom: 60px;
}
.blog-card h5 {
    color: #64607d;
    font-size: 17px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Gilroy-SemiBold";
}
.blog-card h5 span {
    margin-left: 10px;
}
.blog-card h4 {
    font-family: "Manrope", sans-serif;
    font-weight: 900;
    font-size: 19px;
    margin-bottom: 12px;
    line-height: 1.8;
}
h5.category-heading {
    font-family: "Gilroy-SemiBold";
    font-size: 16px;
}
p.para-colo-r-wrapper {
    color: #000 !important;
    font-weight: 900 !important;
}
.blog-card p {
    color: #64607d;
}
.blog-card img {
    width: 100%;
    height: 270px;
    object-fit: fill;
    border-radius: 10px;
}
.blog-card.end-content {
    display: flex;
}
.blog-card.end-content img {
    height: 100% !important;
    width: 100%;
    object-fit: fill;
}
.blog-card.end-content {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #dee1e6;
    padding-bottom: 20px;
    padding-top: 20px;
}
.blog-card.end-content h5 {
    margin: 0;
}
/*  */
section.have-aquery {
    background: #042933;
    padding: 60px 0;
    margin-top: 60px;
}
.query-content h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: "Gilroy-Bold" !important;
    text-transform: uppercase;
}
.query-content h2 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: #fff;
    padding-right: 230px;
}
.query-content p {
    color: #fff;
    margin-top: 10px;
    font-size: 20px;
}
.form-control {
    background: transparent;
    border: none;
    padding: 0;
}
.form-control input {
    background: #fff;
}
.form-control input {
    background: #cdd2d3;
    border-radius: 10px;
    height: 50px;
    padding: 10px 16px;
}
.form-control input::placeholder {
    color: #6a7990;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
}
.container-image {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    /* top: 50%; */
    transform: translate(0%, 0%);
    /* left: 50%; */
    /* border-radius: 6px; */
}
.container-image img {
    /* width: 300px; */
    /* height: 500px; */
    border-radius: 6px;
    /* box-shadow: 2px 2px 24px #000; */
}
.container-image .overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 0%;
    height: 100%;
    z-index: 1;
    border-radius: 6px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.8),
        rgba(39, 169, 224, 0.8)
    );
    transition: all 0.8s ease-in-out;
}
.container-image:hover .overlay {
    width: 100%;
}
/*  */
.modal-sign-up .modal-header {
    border-bottom: none;
}
.modal-sign-up .sign-in-wrapper {
    text-align: center;
}
.modal-sign-up .sign-in-wrapper {
    text-align: center;
}
.modal-sign-up .sign-in-wrapper h6 {
    font-family: "Gilroy-SemiBold";
    font-size: 22px;
}
.modal-sign-up .sign-in-wrapper h2 {
    font-weight: 800;
    margin: 21px 0;
    font-size: 50px;
}
.modal-sign-up .btn-google-facebook-wrapper a {
    border: 1px solid #bcbcbc;
    border-radius: 9px;
    padding: 20px 10px;
    width: 100%;
    color: #7d7a7a;
    --font-default: "  Manrope", sans-serif;
    font-size: 16px;
    font-weight: 500;
}
.modal-sign-up .btn-google-facebook-wrapper {
    display: flex;
    gap: 11px;
    margin-top: 39px;
    align-items: center;
}
.modal-sign-up h5.or {
    text-align: center;
    color: #7d7a7a;
    margin: 28px 0;
}
.modal-sign-up .btn-google-facebook-wrapper a span {
    margin-right: 10px;
}
.modal-sign-up .modal-body.main-modal {
    padding: 10px 24px 40px 24px;
}
.modal-sign-up
    .form-control-wrapper
    .form-control
    input#exampleFormControlInput1 {
    background: transparent;
    border-bottom: 1px solid #cfcdcd;
    border-radius: 0;
}
.modal-sign-up p.login {
    color: #7d7a7a;
    font-weight: 400;
    margin-top: 12px;
}
.modal-sign-up p.login span a {
    color: #a4d9dc;
    font-weight: 800;
}
.modal-sign-up div#show_hide_passwordsign-in {
    position: relative;
}
.modal-sign-up .input-group-addon {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 111;
}
.modal-sign-up .input-group-addon a i {
    color: #c5c5c5;
}
/*  */
.modal-content.success-wrapper .modal-body {
    text-align: center;
    padding-bottom: 31px;
}
.modal-content.success-wrapper i.fa-solid.fa-check {
    font-size: 35px;
    border: 1px solid green;
    border-radius: 50px;
    padding: 10px;
    margin-bottom: 20px;
    color: green;
}
.modal-content.success-wrapper h2 {
    font-weight: 800;
    margin-bottom: 11px;
    font-size: 45px;
}
.modal-content.success-wrapper .modal-header {
    border-bottom: none;
}
.modal-content.success-wrapper h3 {
    margin-bottom: 20px;
    color: #64607d;
    font-weight: 800;
}
.modal-content.success-wrapper h4 {
    color: #64607d;
}
/* main-heading */
h1.main-website-heading {
    text-align: center;
    padding: 30px 0;
}
/*  */
.tabs-modal .nav-pills .nav-link.active {
    border: 1px solid #7a7a7a;
    background-color: #27aae1 !important;
}
.tabs-modal .nav-link {
    background: transparent;
    border: 1px solid #7a7a7a;
    color: #000;
    width: 200px;
    padding: 13px 74px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul#pills-tab {
    gap: 20px;
}
.form-control-wrapper {
    margin-bottom: 40px;
}
.form-control-wrapper select.form-select {
    border: none;
    border-bottom: 1px solid #cfcdcd;
    border-radius: 0;
    padding-bottom: 20px;
    padding-top: 12px;
    color: #707070;
}
/* cell */
.cell-hover {
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 20px;
    position: absolute;
    top: -82px;
    left: 8px;
    transition: 0.5s all ease-in-out;
    cursor: pointer;
}
.cell-hover span::before {
    content: "";
    background: #c4c4c4;
    width: 25px;
    height: 25px;
    border-radius: 11px;
}
.cell-hover span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.cell-hover:hover {
    background-color: #27aae1;
    transition: 0.5s all ease-in-out;
}
.cell-hover:hover span::before {
    background-color: #fff;
    transition: 0.5s all ease-in-out;
}
@media (max-width: 1500px) {
    .circle-wrapper {
        width: 360px;
        height: 360px;
        background: #f5f8ff;
        border-radius: 100%;
        position: absolute;
        right: -110px;
        z-index: -1;
        top: 30px;
    }
}
@media (max-width: 1367px) {
    .main-tabs-wrapper #tile-1 .nav-pills li button {
        font-size: 17px;
    }
    .main-tabs-wrapper #tile-1 .nav-pills .active {
        font-size: 18px;
    }
    .project-cell {
        position: relative;
        width: 28%;
    }
    .project-cell.third-position {
        top: -420px;
        right: -80px;
    }
    .img-wrapper img {
        width: 100%;
        height: 610px;
        object-fit: fill;
    }
    .img-wrapper {
        position: absolute;
        right: 30px;
        top: -70px;
    }
    .circle-wrapper {
        width: 390px;
        height: 390px;
        background: #f5f8ff;
        border-radius: 100%;
        position: absolute;
        right: -130px;
        z-index: -1;
        top: 60px;
    }
    .project-cell.first-position {
        top: -30px;
        left: 12px;
    }
    .project-cell .cell.main-heading p {
        color: #64607d;
        font-size: 15px;
    }
    .project-cell.second-position {
        position: relative;
        top: -169px;
        left: 110px;
    }
    .background-wrapper {
        position: absolute;
        left: -190px;
        z-index: -1;
        top: -255px;
    }
    .cell-wrapper {
        margin-top: 228px;
    }
    .div-cell-number {
        position: absolute;
        right: 104px;
        top: -91px;
        z-index: -1;
    }
    /*  */
    .last-heading-wrapper::before {
        content: "";
        position: absolute;
        height: 49px;
        width: 2px;
        background-color: #fafd93;
        left: -8%;
        top: 30%;
        bottom: 50%;
    }
    .heading-wrapper-text h3 {
        color: #f23838;
        font-family: "Poppins-Bold";
        font-size: 55px;
        height: 112px;
    }
    .banner-heading h1 {
        font-size: 45px;
    }
    .upcycle-text h3 {
        font-family: "Poppins-Bold";
        font-size: 64px;
        color: #101010;
        padding: 0px 13px;
    }
    p {
        font-size: 14px;
    }
    .shelter-image img {
        width: 100%;
        height: 516px;
        object-fit: scale-down;
    }
    .nav-top-first ul.navbar-nav {
        gap: 30px;
    }
    .nav-top-first {
        margin-right: 15px;
    }
    .last-heading-wrapper::before {
        content: "";
        left: -13%;
    }
}
@media (max-width: 1281px) {
    .circle-wrapper {
        width: 360px;
        height: 360px;
        background: #f5f8ff;
        border-radius: 100%;
        position: absolute;
        right: -180px;
        z-index: -1;
        top: 60px;
    }
    h2.we-team-heading {
        font-size: 32px;
        color: #000000;
        font-family: "Manrope", sans-serif;
        font-weight: 800;
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .tail-image img {
        width: 100%;
        height: 581px;
        object-fit: scale-down;
    }
}
@media (max-width: 1025px) {
    .img-wrapper img {
        width: 100%;
        height: 470px;
        object-fit: fill;
    }
    .img-wrapper {
        position: absolute;
        right: 30px;
        top: 0px;
    }
    h2.we-team-heading {
        font-size: 27px;
    }
    p.para-head {
        font-size: 14px;
        color: #64607d;
        margin-bottom: 20px;
    }
    .project-cell.second-position {
        position: relative;
        top: -214px;
        left: 110px;
    }
    .project-cell.first-position {
        top: -80px;
        left: 12px;
    }
    .project-cell.third-position {
        top: -402px;
        right: -22px;
    }
    section.we-help-you.sign-up {
        padding: 40px 0;
    }
    .query-content h2 {
        font-size: 30px;
        padding-right: 0px;
    }
    /*  */
    li.nav-item a {
        font-size: 14px;
    }
    .donate-text h5 {
        font-size: 14px;
    }
    .img-logo-main img {
        width: 150px;
        height: 62px;
    }
    .nav-top-first ul.navbar-nav {
        margin-top: 12px;
    }
    .banner-heading h1 {
        font-size: 40px;
    }
    .ball-iamge {
        position: absolute;
        left: 43%;
        right: 50%;
        top: 8px;
    }
    .shelter-tire-headind h2 {
        font-size: 40px;
    }
    .shelter-image img {
        height: 406px;
    }
    .tail-image img {
        height: 451px;
    }
    section.tail-wag .banner-heading-wag h2 {
        font-size: 31px;
    }
    .ball-rolling-content {
        padding: 27px 17px;
    }
    .heading-wrapper-text p {
        padding: 20px 10px;
        height: 190px;
    }
    .upcycle-text h2 {
        font-size: 88px;
    }
    .upcycle-text h4 {
        font-size: 86px;
    }
    .upcycle-text h3 {
        font-size: 50px;
    }
    .dogstep-image-tire-bottom {
        position: absolute;
        left: -404px;
        bottom: -155px;
    }
    .shadeball {
        position: absolute;
        right: 40px;
        bottom: 30px;
    }
    p {
        font-size: 13px;
    }
    .dogstep-image-tire1 img {
        width: 100%;
        height: 381px;
        object-fit: scale-down;
    }
}

@media (max-width: 914px) {
    .background-wrapper {
        position: absolute;
        left: -50px;
        z-index: -1;
        top: -80px;
    }
    .newsletter_wrapper.banner
        .btn-slatter
        button.btn.hover-wrapper.btn-outline-success {
        padding: 0px 53px;
    }
    .news-wrapper input.form-control::placeholder {
        font-size: 20px !important;
    }
    .newsletter_wrapper.banner h3 {
        font-size: 13px !important;
    }
    .banner-headin1 p {
        color: #757095;
        font-size: 15px;
    }
    .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: scale-down;
    }
    .count {
        font-size: 35px;
    }
    .counter-container {
        /* border: 2px solid #fff; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 30px 10px 30px 20px;
        text-align: center;
    }
    .counter-container p {
        color: #042933;
        padding-right: 0px;
        font-family: "Gilroy-SemiBold" !important;
        font-size: 21px;
        line-height: 1.3;
    }
    .cell-wrapper {
        margin-top: 40px !important;
    }
    .cell-wrapper {
        display: flex;
        align-items: start;
        justify-content: start;
        margin-top: 180px;
        flex-direction: column;
    }
    .project-cell {
        position: inherit;
        width: auto;
        margin-bottom: 30px;
    }
    .project-cell.second-position {
        position: relative;
        top: 0;
        left: 0;
    }
    .cell-hover {
        display: none;
    }
    .wave {
        position: absolute;
        top: -290px;
        left: -180px;
        z-index: -1;
        display: none;
    }
    .bring-content p {
        font-size: 14px;
        padding: 0px 20px;
    }
    .bring-wrapper img.img-fluid {
        width: 100%;
        height: 450px;
        object-fit: cover;
    }
    .bring-content h2 {
        font-size: 25px;
        padding: 2px;
    }
    section.bring-sec {
        position: relative;
        padding: 50px 0 60px 0;
        margin-bottom: 40px;
    }
    .div-cell-number {
        display: flex;
        align-items: end;
        right: 0;
        top: 50px;
        z-index: -1;
        text-align: end;
        width: 100%;
        justify-content: end;
        position: relative;
        bottom: 0px;
    }
    .business-help-heading p {
        font-family: "Manrope", sans-serif;
        color: #64607d;
        font-size: 14px;
        margin-bottom: 10px;
        padding: 0px 0px;
    }
    .business-help-heading h2 {
        font-family: "Manrope", sans-serif;
        color: #000000;
        font-size: 30px;
        margin-bottom: 10px;
        font-weight: 800;
    }
    .div-cell-number h3 {
        font-size: 70px;
    }
    .vector-wrapper {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 20px;
        padding-top: 20px;
    }
    section.perks-sec {
        padding-bottom: 70px;
        padding-top: 10px;
    }
    .perks-headings {
        text-align: start;
        background: #f8f9fd;
        padding: 20px;
        border-radius: 20px;
        margin-top: 20px;
    }
    .perks-headings h4 {
        font-size: 25px;
    }
    .business-help-heading.sign-up h2 {
        padding: 0px 10px;
    }
    section.we-help-you.sign-up {
        padding: 10px 0;
    }
    .background-image-you1 {
        z-index: -1;
        top: -70px;
        width: 100%;
        left: 0px;
        height: 100%;
    }
    .background-image-you1.position-absolute img.img-fluid.w-100 {
        height: 560px;
        object-fit: fill;
    }
    .query-content h2 {
        font-family: "Manrope", sans-serif;
        font-weight: 800;
        font-size: 30px;
        color: #fff;
        padding-right: 10px;
    }
    .query-content p {
        color: #fff;
        margin-top: 10px;
        font-size: 16px;
        margin-bottom: 20px;
    }
    .footer_content {
        display: flex;
        flex-direction: column;
        justify-content: start;
        width: 100%;
        align-items: normal;
        padding-left: 0px;
        padding-top: 2px;
    }
    .img-footer img {
        width: 172px;
        height: 82px;
        object-fit: scale-down;
        margin-bottom: 11px;
    }
    h2.we-team-heading {
        font-size: 30px;
    }
    /*  */
    header.web-header {
        display: none;
    }
    .img-wrapper {
        position: relative;
        right: 30px;
        top: 40px;
    }
    .slideContent {
        background: #d0f6fd;
        display: block;
        align-items: center;
        justify-content: center;
        height: auto;
        position: relative;
        padding: 30px;
    }
    .mobile-responsive {
        display: block;
    }
    .shadeball {
        right: -5px;
    }
    ul.navbar-nav {
        display: flex;
        flex-direction: column !important;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .img-logo-main img {
        width: 158px;
        height: 112px;
        object-fit: scale-down;
    }
    .nav-top-first ul.navbar-nav {
        gap: 0px;
    }
    .nav-top-first {
        margin-right: 0px;
    }
    .dogstep-imag1 {
        display: none;
    }
    .backgroung-image-banner img {
        width: 100%;
        height: 297px;
        object-fit: scale-down;
    }
    .ball-iamge {
        position: absolute;
        left: 45%;
        right: 50%;
        top: 8px;
    }
    .ball-iamge img {
        width: 150px;
        height: 70px;
        object-fit: scale-down;
    }
}
@media (min-width: 600px) and (max-width: 741px) {
    .banner-heading h1 {
        font-size: 30px;
    }
    .backgroung-image-banner img {
        width: 100%;
        height: 207px;
        object-fit: scale-down;
    }
    .slideContent {
        height: auto;
    }
    .shelter-image img {
        height: 336px;
    }
    p {
        font-size: 11px;
    }
    .ball-iamge1 {
        height: 80%;
    }
    .upcycle-text h4 {
        font-size: 36px;
    }
    .upcycle-text h3 {
        font-size: 30px;
    }
    .upcycle-text h2 {
        font-size: 38px;
    }
    section.upcycled-tennis-ball {
        padding: 40px 0;
    }
    .dogstep-image-tire-bottom img {
        display: none;
    }
    .heading-wrapper-rolling h2 {
        font-size: 40px;
    }
    .shelter-tire-headind h2 {
        font-size: 18px;
    }
    .tail-image img {
        height: 340px;
    }
    section.tail-wag .banner-heading-wag h2 {
        font-size: 21px;
    }
    .dogstep-image {
        display: none;
    }
    .ball-iamge img {
        width: 150px;
        height: 57px;
        object-fit: scale-down;
    }
}

@media (max-width: 600px) {
    .foot_dog {
        /* position: unset !important; */
        top: 52px !important;
    }
    .heading-wrapper-text h3 {
        height: auto;
    }
    .slideContent {
        height: auto;
    }
    .footer_logo {
        text-align: center;
    }

    footer {
        padding-top: 40px;
    }

    .quick_links {
        text-align: center;
        padding-top: 10px;
    }

    .footer_icon {
        text-align: center;
    }
}
@media (max-width: 581px) {
    .background-wrapper {
        position: absolute;
        left: -50px;
        z-index: -1;
        top: -80px;
    }
    .newsletter_wrapper.banner
        .btn-slatter
        button.btn.hover-wrapper.btn-outline-success {
        padding: 0px 23px;
    }
    .news-wrapper input.form-control::placeholder {
        font-size: 14px !important;
    }
    .newsletter_wrapper.banner h3 {
        font-size: 13px !important;
    }
    .tabs-modal .nav-link {
        background: transparent;
        border: 1px solid #7a7a7a;
        color: #000;
        width: 134px;
        padding: 13px 14px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .banner-headin1 p {
        color: #757095;
        font-size: 15px;
    }
    .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }
    .count {
        font-size: 35px;
    }
    .counter-container {
        /* border: 2px solid #fff; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 30px 10px 30px 20px;
        text-align: center;
    }
    .counter-container p {
        color: #042933;
        padding-right: 0px;
        font-family: "Gilroy-SemiBold" !important;
        font-size: 21px;
        line-height: 1.3;
    }
    .cell-wrapper {
        margin-top: 40px !important;
    }
    .cell-wrapper {
        display: flex;
        align-items: start;
        justify-content: start;
        margin-top: 180px;
        flex-direction: column;
    }
    .project-cell {
        position: inherit;
        width: auto;
        margin-bottom: 30px;
    }
    .project-cell.second-position {
        position: relative;
        top: 0;
        left: 0;
    }
    .cell-hover {
        display: none;
    }
    .wave {
        position: absolute;
        top: -290px;
        left: -180px;
        z-index: -1;
        display: none;
    }
    .bring-content p {
        font-size: 14px;
        padding: 0px 20px;
    }
    .bring-wrapper img.img-fluid {
        width: 100%;
        height: 450px;
        object-fit: cover;
    }
    .bring-content h2 {
        font-size: 25px;
        padding: 2px;
    }
    section.bring-sec {
        position: relative;
        padding: 50px 0 60px 0;
        margin-bottom: 40px;
    }
    .div-cell-number {
        display: flex;
        align-items: end;
        right: 0;
        top: 50px;
        z-index: -1;
        text-align: end;
        width: 100%;
        justify-content: end;
        position: relative;
        bottom: 0px;
    }
    .business-help-heading p {
        font-family: "Manrope", sans-serif;
        color: #64607d;
        font-size: 14px;
        margin-bottom: 10px;
        padding: 0px 0px;
    }
    .business-help-heading h2 {
        font-family: "Manrope", sans-serif;
        color: #000000;
        font-size: 30px;
        margin-bottom: 10px;
        font-weight: 800;
    }
    .div-cell-number h3 {
        font-size: 70px;
    }
    .vector-wrapper {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 20px;
        padding-top: 20px;
    }
    section.perks-sec {
        padding-bottom: 70px;
        padding-top: 10px;
    }
    .perks-headings {
        text-align: start;
        background: #f8f9fd;
        padding: 20px;
        border-radius: 20px;
        margin-top: 20px;
    }
    .perks-headings h4 {
        font-size: 25px;
    }
    .business-help-heading.sign-up h2 {
        padding: 0px 10px;
    }
    section.we-help-you.sign-up {
        padding: 10px 0;
    }
    .background-image-you1 {
        z-index: -1;
        top: -70px;
        width: 100%;
        left: 0px;
        height: 100%;
    }
    .background-image-you1.position-absolute img.img-fluid.w-100 {
        height: 560px;
        object-fit: fill;
    }
    .query-content h2 {
        font-family: "Manrope", sans-serif;
        font-weight: 800;
        font-size: 30px;
        color: #fff;
        padding-right: 10px;
    }
    .query-content p {
        color: #fff;
        margin-top: 10px;
        font-size: 16px;
        margin-bottom: 20px;
    }
    .footer_content {
        display: flex;
        flex-direction: column;
        justify-content: start;
        width: 100%;
        align-items: normal;
        padding-left: 0px;
        padding-top: 2px;
    }
    .img-footer img {
        width: 172px;
        height: 82px;
        object-fit: scale-down;
        margin-bottom: 11px;
    }
    h2.we-team-heading {
        font-size: 30px;
    }
    /*  */
    .dogstep-image {
        position: absolute;
        right: 0;
        display: none;
    }
    .boll-weg-foot1 {
        display: none;
    }
    .footer-wrapper-main-image {
        margin: 20px 0px;
    }
    .boll-weg-foot2 {
        z-index: -1;
    }
    section.upcycled-tennis-ball {
        padding: 40px 0;
    }
    .bouncingball {
        animation: none !important;
        transform: translateY(0px);
        animation-iteration-count: infinite;
    }
    .shelter-image img {
        width: 100%;
        height: 100%;
        object-fit: scale-down;
    }
    .shelter-image {
        position: relative;
    }
    section.shelter-tire {
        background: #fafd93;
        padding: 0px 0;
        position: relative;
    }
    .shelter-tire-headind h2 {
        font-family: "Poppins-Bold";
        font-size: 40px;
        margin-bottom: 30px;
        color: #101010;
    }
    .shelter-tire-headind p {
        padding: 0px 10px;
    }
    section.shelter-tire {
        padding-bottom: 50px;
    }

    .dogstep-image-tire1 {
        z-index: -1;
    }
    .tail-image {
        position: relative;
        bottom: 0;
        right: 0;
    }
    section.tail-wag .banner-heading-wag h2 {
        font-size: 31px;
    }
    .ball-iamge1 {
        display: none;
    }
    .shadeball {
        display: none;
    }
    footer.text-white {
        position: relative;
        padding-top: 40px;
        text-align: center;
    }
    .tail-image img {
        width: 100%;
        height: 281px;
        object-fit: scale-down;
    }
    .ball-iamge1 img {
        width: 30%;
        height: 80px;
        object-fit: scale-down;
    }
    .dogstep-image-tire {
        z-index: -1;
    }
    .ball-iamge {
        position: absolute;
        left: 0%;
        right: 0%;
        top: 36%;
        animation: none;
    }
    .backgroung-image-banner img {
        width: 100%;
        height: 100%;
        object-fit: scale-down;
    }
    .dogstep-imag1 {
        position: absolute;
        bottom: 160px;
        right: 0;
        z-index: -1;
    }
    section#banner {
        background: #f6feff;
        position: relative;
    }
    .banner-heading h1 {
        font-size: 35px;
    }

    .ball-rolling-content {
        padding: 27px 17px;
    }
    .heading-wrapper-text p {
        padding: 20px 10px;
        height: 190px;
    }
    .dogstep-image-tire-bottom1 {
        z-index: -1;
    }
    .dogstep-image-tire-bottom {
        z-index: -1;
    }
    .dogstep-image-tire-bottom {
        bottom: -115px;
    }
    .upcycle-text h2 {
        font-size: 88px;
    }
    .upcycle-text h4 {
        font-size: 76px;
    }
    .upcycle-text h3 {
        font-size: 54px;
    }
    .upcycle-text h2 {
        font-size: 78px;
    }
    h1 {
        font-size: 35px;
    }
    .modal-sign-up .sign-in-wrapper h2 {
        font-weight: 800;
        margin: 21px 0;
        font-size: 35px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 30px;
    }
    h5 {
        font-size: 20px;
    }
    h6 {
        font-size: 13px;
    }
    .dogstep-image2 {
        display: none;
    }
    .ball-iamge.bouncingball {
        display: none;
    }
    .upcycle-text h2 {
        margin-bottom: 10px;
    }
    .backgroung-image-banner {
        position: inherit;
    }
    .img-wrapper {
        position: relative;
        right: 0;
        top: 0;
    }
}
