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

* {
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    color: #111111;
}

.bg-oragne {
    background-color: #e28a34;
}

.bg-primary {
    background-color: #3b2c4a;
}

.bg-primary-light {
    background-color: #4c3761;
}

.element-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.element {
    width: 95%;
    max-width: 1200px;
}

.header {
    color: #ffffff;
}

.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1% 0%;
}

.logo>img {
    width: 30%;
    min-width: 150px;
}

.header-contact {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    font-weight: bold;
}

.header-contact-number {
    cursor: pointer;
}

.header-contact>div {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.nav-button {
    display: none;
}

.header-contact-icon {
    border: 2px solid #e28a34;
    color: #e28a34;
    padding: 5px;
    border-radius: 100%;
    margin: 0 10px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation {
    display: flex;
    width: 100%;
}

.navigation>a {
    border: none;
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
    transition: 0.2s;
    font-weight: bold;
}

.border-top-left-radius-10 {
    border-top-left-radius: 10px;
}

.border-top-right-radius-10 {
    border-top-right-radius: 10px;
}

.navigation>a:hover {
    background-color: #3b2c4a;
}

.navigation>.active {
    background-color: #e28a34;
}

.navigation>.active:hover {
    background-color: #e4984c;
}

.welcome-container {
    height: 550px;
    background-color: #dddddd;
    background-image: url("../assets/welcome-bg.webp");
    background-size: cover;
    background-position: center center;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
}

.welcome {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.welcome-title {
    color: #ffffff;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    font-size: 40px;
    margin: 0;
    width: 100%;
    text-align: right;
}

.welcome-text {
    color: #ffffff;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    font-size: 20px;
    margin: 0;
    width: 100%;
    text-align: right;
}

.orange-button {
    background-color: #e28a34;
    color: #ffffff;
    padding: 10px;
    font-size: 18px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 2.5%;
}

.orange-button:hover {
    background-color: #e4984c;
}

.welcome-text-position {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3% 0%;
}

.about-left-side {
    width: 50%;
}

.about-title {
    margin-bottom: 5%;
}

.about-text {
    margin: 0%;
    font-size: 18px;
}

.about-right-side {
    width: 50%;
    display: flex;
    justify-content: center;
}

.about-right-side>img {
    width: 100%;
}

.close-nav-button {
    display: none;
}

.goal {
    min-height: 300px;
    background-image: url("../assets/goal-bg.webp");
    background-size: 25%;
}

.goal-item-container {
    display: flex;
    justify-content: center;
    padding-top: 2%;
    padding-bottom: 2%;
}

.goal-item {
    display: flex;
    color: #ffffff;
    justify-content: center;
    align-items: top;
    margin: 1%;
    width: 100%;
}

.goal-item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 50px;
    background-color: #e28a34;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.goal-text-container {
    margin: 0% 10px 0% 10px;
}

.goal-title {
    margin: 0% 0% 1% 0%;
    padding: 0%;
}

.goal-text {
    margin: 0%;
    padding: 0%;
}

.services {
    padding: 1% 0% 1% 0%;
}

.services-title {
    text-align: center;
    margin: 0% 0% 0% 0%;
}

.services-grid {
    display: flex;
    justify-content: center;
}

.services-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

.services-img>img {
    width: 100%;
}

.services-block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 300px;
}

.sergvices-item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.service-item-title {
    margin: 0% 0% 10px 0%;
    padding: 0%;
    width: 100%;
    display: flex;
    align-items: center;
}

.service-item-text {
    margin: 0% 0% 0% 0%;
    padding: 0%;
    width: 100%;
}

.services-block-left>*>.service-item-title {
    justify-content: flex-end;
}

.services-block-left>*>.service-item-text {
    text-align: right;
}

.services-block-right>*>.service-item-title {
    justify-content: flex-start;
}

.services-block-right>*>.service-item-text {
    text-align: left;
}

.services-icon {
    padding: 5px;
    background-color: #e28a34;
    border-radius: 50%;
    color: #ffffff;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-icon {
    margin-left: 5px;
}

.right-icon {
    margin-right: 5px;
}

.paw {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    width: 20%;
}

.paw-line {
    width: 100%;
    height: 2px;
    background-color: #f1f1f1;
}

.paw-icon {
    padding: 5px;
    color: #e28a34;
}

.footer {
    padding: 15px 0px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left-container {
    display: flex;
    justify-content: center;
    width: 50%;
}

.footer-right-container {
    display: flex;
    justify-content: center;
    width: 50%;
}

.footer-left-container>div {
    max-width: 245px;
    text-align: center;
}

.footer-logo {
    width: 100%;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 19px;
    margin-top: 7px;
    transition: 0.2s;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-icon-link {
    font-size: 25px;
    margin: 0px 3px;
    margin-right: 7px;
}

.services-m-icon {
    display: none;
}

.contact {
    background-image: url("../assets/heart-dog-paw.png"), url("../assets/paws.png");
    background-position: 15% 50%, right bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: auto 30%, auto 50%;
}

.contact>div {
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-title {
    color: #111111;
    margin: 0px;
    padding: 0px;
    width: 100%;
    text-align: center;
}

.contact-subtitle {
    margin: 0;
    margin-bottom: 25px;
    padding: 0;
    color: #666;
    font-size: 18px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 10px 0px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.contact-item:hover {
    opacity: 0.7;
}

.contact-icon {
    font-size: 25px;
    color: #111111;
    margin-right: 5px;
    width: 30px;
    text-align: left;
}



.limestone {
    display: flex;
    align-items: center;
    padding: 3% 0%;
}

.limestone-btn {
    margin-bottom: 0px;
}

@media only screen and (max-width: 650px) {

    .limestone-btn {
        margin-bottom: 20px;
    }


    .welcome-container {
        height: 470px;
        background-position: center center;
    }

    .navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        flex-wrap: wrap;
        display: none;
    }

    .navigation>a {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-right: none;
        border-bottom: 1px solid #3b2c4a;
    }

    .about {
        flex-wrap: wrap;
    }

    .limestone {
        flex-wrap: wrap;
    }


    .about-left-side {
        width: 100%;
    }

    .about-right-side {
        width: 100%;
    }

    .welcome-title {
        font-size: 28px;
        text-align: center;
    }

    .welcome-text {
        font-size: 18px;
        text-align: center;
    }

    .orange-button {
        font-size: 15px;
    }

    .header-contact>div {
        display: none;
    }

    .nav-button {
        display: inline;
        background-color: transparent;
        border: none;
        font-size: 22px;
        color: #ffffff;
        cursor: pointer;
    }

    .nav-button:active {
        background-color: transparent;
    }

    .nav-button:focus {
        background-color: transparent;
    }

    .close-nav-button {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        font-size: 20px;
        width: 50px;
        height: 50px;
        background-color: #4c3761;
        color: #ffffff;
        border: none;
        cursor: pointer;
    }

    .show {
        display: flex;
    }

    .goal-item-container {
        flex-wrap: wrap;
    }

    .goal-item {
        width: 100%;
    }

    .goal {
        background-size: 80%;
    }

    .services-block-left>*>.service-item-title {
        justify-content: flex-start;
    }

    .services-block-left>*>.service-item-text {
        text-align: left;
    }

    .services-block-right>*>.service-item-title {
        justify-content: flex-start;
    }

    .services-block-right>*>.service-item-text {
        text-align: left;
    }

    .left-icon {
        display: none;
    }

    .services-m-icon {
        display: flex;
        margin-right: 5px;
    }

    .services-block {
        width: 100%;
        max-width: 100%;
    }

    .services-grid {
        flex-wrap: wrap;
    }

    .sergvices-item {
        margin: 1%;
    }

    .goal-item-icon {
        width: 30px;
        font-size: 30px;
        height: 30px;
    }

    .welcome-text-position {
        justify-content: center;
    }

    .welcome-text-position {
        margin-bottom: 30%;
    }

    .footer {
        flex-wrap: wrap;
    }

    .footer-left-container {
        width: 100%;
        margin: 5px 0px;
    }

    .footer-right-container {
        width: 100%;
        margin: 5px 0px;
    }

    .contact {
        background-position: 3% 10%, right bottom;
        background-repeat: no-repeat, no-repeat;
        background-size: auto 30%, auto 50%;
        padding: 30px 0px;
    }

    .contact-title {
        font-size: 25px;
    }

    .footer-logo {
        width: 50%;
    }
}