@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sedgwick+Ave&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap'); */

* {
    margin: 0;
    padding: 0;
    /* font-family: ProximaNova, arial, Helvetica Neue, sans-serif; */
    /* font-family: "Open Sans", sans-serif; */
    font-family: "Poppins", sans-serif;
    /* font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;; */
    box-sizing: border-box;
    letter-spacing: .6px;
}

header {
    position: sticky;
    top: 0;
    background-image: linear-gradient(#ff400f, #F88C1F);
    width: 100%;
    z-index: 1000;
}
@media (min-width: 1700px){
    .container {
        max-width: 1780px !important;
    }
}
header .header {
    display: flex;
    position: relative;
    align-items: center;
}
header .header .logo-container {
    flex: 1;
    display: flex;
    align-items: center;
}
header .header .logo-container img {
    width: 100%;
}
header .header .nav-btn {
    flex: 5;
    display: flex;
}
.header .nav-btn .nav-links{
    flex: 3;
}
.header .nav-btn .log-sign {
    /* flex: 1; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;
    margin-right: 0px;
    width: 95px;
}
.header .nav-btn .log-sign a {
    text-decoration: none;
    padding: 5px 15px;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    font-weight: 200;
    border-radius: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: 100%;
    /*font-size: 12px;*/
}

header .nav-links > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    margin-right: -60px;
}
header .nav-links .nav-link {
    position: relative;
    margin: -5px;
}
header .nav-links .nav-link > a{
    line-height: 3rem;
    color: #fff;
    padding: 0 .9rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition:  .5s;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 18px;    
}
header .nav-links .nav-link > a > i {
    margin-left: .4rem;
}
header .nav-links .nav-link:hover > a{
    transform: scale(1.1);
}

header .nav-links .dropdowns {
    position: absolute;
    top: 100%;
    left: 0;
    width: 15rem;
    background-color: #fff;
    /* background-color: #FFF2D7; */
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
    border-radius: 8px;
}

header .nav-links .dropdowns ul {
    position: relative;
}

header .nav-links .dropdowns li {
    list-style: none;
    margin-left: -32px;
}
.dropdowns a {
    font-weight: 900;
}
header .nav-links .dropdowns a {
    color: #F55A2C;
    display: flex;
    padding: .5rem .3rem;
    text-decoration: none;
    align-items: center;
    /* justify-content: space-evenly; */
    text-transform: capitalize;
    text-align: start;
    padding-left: 20px;
    font-weight: 500 !important;
}

header .nav-links .dropdowns li:hover a{
    /* background-color: #F98866; */
    background-image: linear-gradient(#ff400f, #F88C1F);
    color: #FFF;
}

header .nav-links .dropdowns .arrow{
    background-color: #F98866;
    /* background-image: linear-gradient(#fc4a14, #f69534); */
}

header .nav-links .dropdowns .arrow {
    position: absolute;
    width: 15px;
    height: 15px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    z-index: -1111;
}
.nav-link:hover > .dropdowns{
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}
.hamburger-menu {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hamburger-menu div {
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    position: relative;
    z-index: 1001;
    transition: .5s;
}
.hamburger-menu div::before,
.hamburger-menu div::after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #fff;
    border-radius: 3px;
    transition: .5s;
}
.hamburger-menu div::before {
    transform: translateY(-7px);
}
.hamburger-menu div::after {
    transform: translateY(7px);
}
#check {
    position: absolute;
    top: 50%;
    right: .8rem;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    z-index: 9000;
    cursor: pointer;
    opacity: 0;
    display: none;
}


.main-search {
    display: flex;
    width: 200px;
    border-radius: 10px;
    align-items: center;
    margin-left: 60px;
    /*margin-right: 10px;*/
}
.main-search .search_box {
    position: relative;
    width: 190px;
    height: 36px;
}
.main-search .search_box  form{
    background-color: #fff;
    border-radius: 5px;
}
.main-search .input {
    border: 0;
    outline: none;
    color: #8a8989;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px 14px;
    font-size: 15px;
    text-transform: capitalize;
    background-color: #fff;
    border-radius: 5px;
}
.main-search .search_box .btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    cursor: pointer;
    color: #000;
    border: none;
}
.main-search .search_box .btn i{
    outline: none !important;
}

.warpper-search {
    display: none;
}

.mobile-login {
    display: none;
}
@media only screen and (max-width: 920px){
    header .header .logo-container a{
        width: 60%;
    }
    .header .main-search{
        display: none;
    }
    header .header .logo-container img {
        width: 100%;
    }
    .warpper-search {
        display: block;
    }
}
@media only screen and (max-width: 426px){
    .warpper-search {
        width: 150px !important;
        background-color: #fff;
        border-radius: 10px;
        margin-right: -20px !important;
    }
    .warpper-search .search_box {
        position: relative;
        width: 150px !important;
        height: 36px;
    }

}
@media only screen and (max-width: 375px){
    .warpper-search {
        width: 100px !important;
        background-color: #fff;
        border-radius: 10px;
        margin-right: -20px !important;
    }
    .warpper-search .search_box {
        position: relative;
        width: 100px !important;
        height: 36px;
    }

}

@media only screen and (max-width: 920px) {
    header .header .logo-container img {
        width: 100%;
    }
    .demo142 {
        display: flex;
        align-items: center;
        column-gap: 20px;
    }
    .warpper-search {
        width: 220px ;
        background-color: #fff;
        border-radius: 10px;
        margin-right: -20px;
    }
    .warpper-search .search_box {
        position: relative;
        width: 220px;
        height: 36px;
    }
    .warpper-search .input {
        border: 0;
        outline: none;
        color: #8a8989;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 15px;
        text-transform: capitalize;
    }
    .warpper-search .search_box .btn {
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 100%;
        cursor: pointer;
        color: #8a8989;
    }
    .warpper-search .search_box i{
        outline: none !important;
    }
}

@media only screen and (max-width: 920px) {
    .mobile-login {
        display: block;
    }
    .mobile-login a{
        padding: 5px;
        text-decoration: none;
        border-radius: 5px;
        color: #fff;
        text-transform: uppercase;
        font-size: 22px;
    }
    .log-sign {
        display: none;
    }
}

.search__login {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-right: -20px;
}

.search {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: hsla(230, 75%, 15%, .1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px); /* For safari */
    padding: 8rem 1.5rem 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
}

.search__form {
    /* display: flex;
    align-items: center; */
    column-gap: .5rem;
    background-color: #fff;
    box-shadow: 0 8px 32px hsla(230, 75%, 15%, .2);
    padding-inline: 1rem;
    border-radius: .5rem;
    transform: translateY(-1rem);
    transition: transform .4s;
}
.input__icon {
    display: flex;
    align-items: center;
}
.search__icon {
    font-size: 1.25rem;
    color: #8a8989;
}

.search__input {
    width: 100%;
    padding-block: .8rem;
    border: none;
    outline: none !important;
    padding-left: 10px;
}

.search__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}


.nav__search {
  font-size: 1.25rem;
  cursor: pointer;
  transition: color .4s;
  color: #fff;
  display: none;
}
@media only screen and (max-width: 920px) {
    .nav__search {
        font-size: 1.25rem;
        cursor: pointer;
        transition: color .4s;
        color: #fff;
        display: block !important;
    }
}

/* Show search */
.show-search {
    opacity: 1;
    pointer-events: initial;
}
.show-search .search__form {
    transform: translateY(0);
}

.btn_common button {
    border: none;
    background-color: #fff;
}
.result_box {
    max-height: 300px;
    overflow-y: scroll;
}

.search_wrap {
    position: relative;
    z-index: 111;
}

.result__box {
    max-height: 300px;
    overflow-y: scroll;
    position: absolute;
    width: 100%;
}
.result__box ul {
    list-style: none;
    padding: 10px 10px;
    border-top: 1px solid #e1e1e1;
    width: 100%;
    background-color: #fff;
}
.result__box ul li {
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.result__box ul li:hover {
    background-color: #e1e1e1;
}

.result_box ul {
    list-style: none;
    /* margin-left: -15px; */
    margin-top: 40px;
    padding: 10px 10px;
    border-top: 1px solid #e1e1e1;
    width: 100%;
}
.result_box ul li {
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.result_box ul li:hover {
    background-color: #e1e1e1;
}

.result_Mobilebox ul {
    list-style: none;
    margin-top: 10px;
    padding: 10px 10px;
    border-top: 1px solid #e1e1e1;
    width: 100%;
}
.result_Mobilebox ul li {
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
}
.result_Mobilebox ul li:hover {
    background-color: #e1e1e1;
}


#check:checked ~ .hamburger-menu-container .hamburger-menu div {
    background-color: transparent;
}
#check:checked ~ .hamburger-menu-container .hamburger-menu div::before {
    transform: translateY(0) rotate(-45deg);
}
#check:checked ~ .hamburger-menu-container .hamburger-menu div::after {
    transform: translateY(0) rotate(45deg);
}
@media only screen and (min-width: 100px) and (max-width: 300px){
    header .header .nav-btn {
        top: 3.4rem !important;
    }
}
@media only screen and (min-width: 300px) and (max-width: 500px){
    header .header .nav-btn {
        top: 3.6rem !important;
    }
}
@media only screen and (min-width: 502px) and (max-width: 746px){
    header .header .nav-btn {
        top: 5rem !important;
    }
}

@media only screen and (max-width: 920px) {
    .hamburger-menu-container {
        display: flex;
    }
    header #check {
        display: block;
    }
    header .header .nav-btn {
        position: fixed;
        height: calc(100vh - 2.5rem);
        top: 6rem;
        left: 0;
        width: 100%;
        background-color: #000;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translate(100%);
        transition: .65s;
    }

    #check:checked ~ .nav-btn {
        transform: translate(0);
    }

    header .nav-links {
        flex: initial !important;
        width: 100%;
    }
    header .nav-links > ul {
        flex-direction: column;
        margin-right: 0px;
    }
    header .nav-links .nav-link {
        width: 100%;
    }
    header .nav-links .nav-link > a{
        line-height: 1;
        padding: 1.8rem 2rem;
    }
    header .log-sign {
        display: none !important;
        flex: initial !important;
        width: 100%;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start !important;
    }
    header .nav-links .nav-link .dropdowns {
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 90%;
        padding: 0;
        /* background-color: #F98866; */
        background-image: linear-gradient(#ff400f, #F88C1F);
        display: none;
    }  
    header .nav-links .nav-link:hover > .dropdowns{
        display: block;
    } 
    header .nav-links .nav-link .dropdown-link > a{
        background-color: transparent !important;
        color: #fff;
        padding: 1.2rem 2rem;
    }
    header .arrow {
        /* background-color: #F98866 !important; */
        background-image: linear-gradient(#ff400f, #F88C1F) !important;
        z-index: 1;
        left: 30%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }
    header .nav-links .nav-link > a > i {
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }
}

/* ======= home page services ========= */

section .all-services {
    border-radius: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

section .all-services .card-services{
    border: none;
    border-bottom: 1px solid #333;
    padding: 5px;
}
section .all-services  {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 10px;
}
@media only screen and (max-width: 460px) {
    section .all-services  {
        display: grid;
        grid-template-columns: repeat(1,1fr) !important;
        grid-gap: 10px;
    }
    section .all-services .card-services .card-title a{
        margin-top: 10px;
        font-size: 25px;
    }
}
@media only screen and (max-width: 768px) {
    section .all-services  {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 10px;
    }
}
@media only screen and (max-width: 920px) {
    section .all-services  {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 10px;
    }
}

@media only screen and (max-width: 460px) {
    section .all-services .card-services .card-body{
        display: flex;
        flex-direction: column;
    }
}

/* section .all-services .card-services {
    padding: 5px;
} */

section .all-services .card-services img{
    width: 100%;
    border-radius: 30px;
}

section .all-services .card-services .card-title {
    margin-top: 5px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-size: 16px;
}
section .all-services .card-services .card-title a{
    text-decoration: none;
    text-transform: capitalize;
    color: #F55A2C;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}


section .image-content .image img {
    width: 80%;
}
@media only screen and (max-width: 1000px) {
    section .image-content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
}
section .image-content .content {
    display: flex;
    align-items: center;
    background-image: url('/Images/pet_footprint.png');
    background-repeat: no-repeat;
    background-position: center;
    
}
section .image-content .content p{
    font-weight: 500;
}
section .image-content .image1{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ======= ADS ========= */

main img {
    width: 100%;
}

/* ======= Get In Touch ========= */

.main {
    background-color: #809BB9;
}

main .wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 10px;
}

@media only screen and (max-width: 640px) {
    
}

main .wrapper .img1,
main .wrapper .img2 {
    display: flex;
    align-items: center;
    justify-content: center;
}
main .wrapper .img1 img,
main .wrapper .img2 img  {
    width: 50%;
}

.contact-phone-email {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
}
.contact-phone-email h6 {
    font-family: "Sedgwick Ave", cursive;
    font-size: 40px;
    color: #ff4004;
}

@media only screen and (max-width: 640px) {
    .contact-phone-email h6 {
        font-size: 20px;
        margin-top: 20px;
    } 
    .contact-phone-email {
        row-gap: 5px;
    }
    main .wrapper img {
        width: 100% !important;
    }
} 
@media only screen and (max-width: 440px) {
    .contact-phone-email h6 {
        font-size: 16px;
        margin-top: 20px;
    } 
    .contact-phone-email {
        row-gap: 5px;
        margin-bottom: 10px;
    }
    main .wrapper img {
        width: 100% !important;
    }
    .contact-phone-email .social-media a{
        background-color: #013674;
        line-height: 20px;
        height: 20px;
        width: 20px;
        text-align: center;
        text-decoration: none;
        color: #fff;
        border-radius: 50%;
        font-size: 10px;
        border: 1px solid #fff;
    }
    .contact-phone-email .phone a,
    .contact-phone-email .email a{
        font-size: 14px;
    }
    
} 
.contact-phone-email .phone a,
.contact-phone-email .email a{
    color: #fff;
    text-decoration: none;
}
.contact-phone-email .email i {
    margin-right: 5px;
}
.contact-phone-email .social-media {
    display: flex;
    gap: 10px;
}
.contact-phone-email .social-media a{
    background-color: #013674;
    line-height: 30px;
    height: 30px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    border: 1px solid #fff;
}



/* ========== Footer =========== */

footer {
    /* background-color: #FFF2D7; */
    background-image: linear-gradient(#ff400f, #F88C1F);
}
footer .footer-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding-top: 20px;
    grid-gap: 20px;
}
footer .footer-logo img{
    width: 100%;
    border-radius: 10px;
}
footer .logo-content {
    margin-top: 8px;
}

@media only screen and (max-width: 998px) {
    footer .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 764px) {
    footer .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 460px) {
    footer .footer-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

footer .footer-container .services-prices {
    display: flex;
    flex-direction: column;
}
footer .footer-container .services-prices h6 {
    /* color: #ff4004; */
    color: #fff;
    text-transform: capitalize;
    font-size: 18px;
}
footer .footer-container .services-prices .about2 {
    display: flex;
    flex-direction: column;
}
footer .footer-container .services-prices .about2 a {
    padding-top: 10px;
    text-decoration: none;
    text-transform: capitalize;
    /* color: #000; */
    color: #fff;
}

footer .footer-address {
    display: flex;
    column-gap: 10px;
    padding-top: 10px;
    color: #fff;
}

footer .footer-mail span,
footer .footer-phone span{
    cursor: pointer;
    color: #fff;
}
footer .footer-mail {
    padding-top: 10px;
}
footer .footer-mail a{
    margin-left: 5px;
}
footer .copyRights {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}
footer .copyRight-social {
    display: flex;
    column-gap: 15px;
}
footer hr {
    color: #fff;
}
footer .copyRight-social a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    /* border: 1px solid #000; */
    border: 1px solid #fff;
    font-size: 13px;
}
footer .copyRight-social a {
    color: #fff;
}
footer  .copRight-year {
    color: #fff;
}

/* ============ ABOUT US PAGE ============= */
section.hero-section {
    background-color: #FFF2D7;
}
section.hero-section .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section.hero-section .hero-title h5 {
    font-size: 40px;
    text-transform: capitalize;
    font-weight: 600;
    text-shadow: 1px 1px 3px;
}
@media only screen and (max-width: 764px) {
    section.hero-section .hero-title h5 {
        font-size: 20px;
    }
}
section.hero-section .hero-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
section.hero-section .hero-img img {
    width: 78%;
}
@media only screen and (max-width: 958px) {
    section.hero-section .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
        column-gap: 20px;
    }
    .hero-title h5 {
        font-size: 30px;
        width: 100%;
        margin-right: 70px;
    }
    .hero-img img {
        width: 100%;
    }
}

section.about-ziweto .container {
    display: flex;
    align-items: center;
    column-gap: 35px;
    margin-top: 30px;
}
section.about-ziweto .container h3 {
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
}
@media only screen and (max-width: 990px) {
    section.about-ziweto .container {
        display: flex;
        flex-direction: column;
    }
}

@media only screen and (max-width: 568px) {
    section.about-ziweto .container img{
        width: 100%;
    }
}

section .why-choose {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section .why-choose h3 {
    text-transform: capitalize;
    font-size: 50px;
    font-weight: 600;
}
@media only screen and (max-width: 900px) {

    section .why-choose {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    section .why-choose h3 {
        text-transform: capitalize;
        font-size: 40px;
        font-weight: 600;
    }
    section .why-choose img {
       display: none;
    }
   
}

section .about-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}
section .about-services i {
    color: #FF960C;
}
section .about-services .about-services1 .title{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
section .about-services img {
    width: 100%;
}
section .about-services .about-services1 .title p {
    text-align: right;
}


/*  */

#testimonials h2 {
    color: #013674;
    font-family: "Sedgwick Ave", cursive;
    font-weight: 600;
    text-align: center;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 30px;
}
@media only screen and (max-width: 1030px) {
    .testimonials-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 764px) {
    .testimonials-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}
.testimonials-container .card {
    padding: 20px;
}
.testimonials-container .card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testimonials-container .card .card-body .card-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonials-container .card .card-body img {
    width: 100px;
    line-height: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 1px 2px 7px #333;
    margin-bottom: 10px;
}
.testimonials-container .card .card-body .card-name {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testimonials-container .card .card-body .card-name h6 {
    font-style: italic;
}
.testimonials-container .card .card-stars {
    display: flex;
    column-gap: 10px;
}
#testimonials p {
    line-height: 2rem;
}
.testimonials-container .card .card-stars i {
    color: #FF960C;
}

#hero-section .hero-section{
    background-size: 100% 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: center;
    color: #fff;
}
@media only screen and (max-width: 1100px) {
    #hero-section .hero-section{
        height: 200px;
    }
}
@media only screen and (max-width: 670px) {
    #hero-section .hero-section{
        height: 150px;
    }
    #hero-section h2 {
        width: 100%;
        line-height: 2rem !important;
        font-weight: 700;
        font-size: 26px !important;
    }
}
@media only screen and (max-width: 426px) {
    #hero-section .hero-section{
        height: 100px;
    }
    #hero-section h2 {
        width: 100%;
        line-height: 2rem !important;
        font-weight: 700;
        font-size: 17px !important;
    }
}
#hero-section h2 {
    width: 100%;
    line-height: 3rem;
    font-weight: 700;
    font-size: 40px;
}

