@import url('https://fonts.googleapis.com/css2?family=Agbalumo&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Start Global View */
:root {
    --color-0: #F3F3F3;
    --color-1: #EEEEEE;
    --color-2: #393E46;
    --color-3: #222831;
    --color-4: #7BC74D;
    --color-5: #D0D4CA;
    --color-6: #5BB318;
    --color-7: #E9E8E8;
    --color-8: #E0E0E0;
}

body {
    background-color: var(--color-0);
    color: var(--color-2);
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.font-title {
    font-size: 2.5rem;
    font-weight: 500;
}

.font-subtitle {
    font-size: 1.125rem;
    font-weight: 700;
}

.font-item {
    font-size: 1rem;
    font-weight: 700;
}

/* End Global View */
/* Start Header */
header {
    color: var(--color-1);
    width: 100%;
    position: fixed;
    z-index: 1000;
    background-color: var(--color-3);
}

header .header-container {
    max-width: 1200px;
    min-height: 75px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* brand */
.header-container .logo {
    cursor: pointer;
}

.header-container .logo img {
    margin-right: 5px;
    height: 35px;
}

.header-container .logo .logo-content a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.logo .logo-content .logo-text {
    text-align: left;
}

.logo-content .logo-text .text-title h1 {
    font-size: 25px;
    font-family: 'Agbalumo', sans-serif;
    font-weight: 500;
    color: var(--color-1);
}

.logo-content .logo-text .text-subtitle h4 {
    margin-top: 2px;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    color: var(--color-5);
}

/* mobile menu icon */
.header-container .menu-icon {
    display: none;
    cursor: pointer;
    font-size: 18px;
    padding: 10px;
    color: var(--color-1);
}

/* desktop navigation */
.header-container nav {
    display: flex;
}

.header-container nav .ul-nav {
    list-style-type: none;
    overflow: hidden;
    display: flex;
    margin-right: 30px;
}

.header-container nav .ul-nav li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-container nav .ul-nav li a {
    color: var(--color-1);
    display: inline-block;
    text-align: center;
    padding: 8px;
    text-decoration: none;
}

.header-container nav .ul-nav li a:hover {
    color: var(--color-4);
}

.header-container nav .ul-nav li span {
    display: block;
    width: 0;
    height: 2px;
    background: var(--color-4);
    transition: 0.2s ease-in-out;
    transform-origin: left;
    transform: scaleX(1);
}

.header-container nav li a:hover~span {
    width: 75%;
    transform: scaleX(1);
}

/* call button */
.header-container .call-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-1);
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid var(--color-4);
    border-radius: 5px;
    cursor: pointer;
}

.header-container .call-btn a:hover {
    box-shadow: 0 0 5px var(--color-4);
    color: var(--color-4);
}

.header-container .call-btn a .fa-phone {
    color: var(--color-4);
    margin-right: 3px;
}

/* End Header */

/* Start Hero Slider Section */
.hero-section .container {
    padding: 74px 0 30px;
}

.container .carousel {
    max-width: 1200px;
    position: relative;
    margin: auto;
}

.carousel .carousel-wrapper .carousel-item {
    min-height: 450px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* carousel image */
.carousel-wrapper .carousel-item:nth-child(1) {
    background-image: url('../assets/images/hero-slider/slider-01.webp');
}

.carousel-wrapper .carousel-item:nth-child(2) {
    background-image: url('../assets/images/hero-slider/slider-02.webp');
}

.carousel-wrapper .carousel-item:nth-child(3) {
    background-image: url('../assets/images/hero-slider/slider-03.webp');
}

/* carousel caption */
.carousel-wrapper .carousel-item .carousel-caption {
    color: var(--color-1);
    border-radius: 5px;
    padding: 8px 20px;
    position: absolute;
    bottom: 75px;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
}

/* carousel caption h2 */
.carousel-wrapper .carousel-item .carousel-caption h2 {
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px var(--color-3);
}

/* carousel caption p */
.carousel-wrapper .carousel-item .carousel-caption p {
    font-weight: 300;
    line-height: 1.4;
    text-shadow: 1px 1px 2px var(--color-3);
}

/* carousel fading animation */
.carousel .carousel-wrapper .fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}

/* carousel buttons */
.carousel .prev-btn,
.carousel .next-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 6px 8px;
    margin-top: -22px;
    color: var(--color-0);
    font-weight: bold;
    font-size: 35px;
    transition: 0.6s ease;
    user-select: none;
}

.carousel .prev-btn {
    left: 0;
    border-radius: 50px 5px 5px 50px;
}

.carousel .next-btn {
    right: 0;
    border-radius: 5px 50px 50px 5px;
}

.carousel .prev-btn:hover,
.carousel .next-btn:hover {
    color: var(--color-0);
    background-color: var(--color-4);
}

/* carousel indicators */
.carousel .carousel-indicators {
    text-align: center;
    margin: 15px 0 10px;
}

.carousel .carousel-indicators .indicator-menu {
    display: inline-block;
    margin: 0 auto;
}

.carousel-indicators .indicator-menu .dot {
    cursor: pointer;
    height: 5px;
    width: 20px;
    margin: 0 5px;
    background-color: var(--color-5);
    display: inline-block;
    transition: background-color 0.6s ease;
}

.carousel-indicators .indicator-menu .active {
    background-color: var(--color-4);
}

/* End Hero Slider Section */

/* Start About Section */
.about-section .container {
    padding: 30px 0 50px;
}

/* about title */
.container .about-wrapper .about-title h2 {
    text-align: center;
    margin: 0 0 40px;
    color: var(--color-2);
}

/* about item */
.container .about-wrapper .about-item {
    display: flex;
    flex-direction: column;
}

.container .about-wrapper .about-item p {
    text-align: justify;
    line-height: 1.4;
}

/* about content */
.about-wrapper .about-item .about-content {
    display: flex;
    border: 1px solid var(--color-5);
    border-radius: 3px;
    margin-top: 15px;
    padding: 20px 0;
}

/* about image */
.about-item .about-content .about-img {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 20px;
}

.about-item .about-content .about-img img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--color-5);
    border-radius: 3px;
    box-shadow: 10px 10px 4px 0px var(--color-5);
}

/* about text */
.about-item .about-content .about-text {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 20px;
}

/* text 1 */
.about-content .about-text .text-1 p {
    text-align: justify;
    line-height: 1.4;
}

/* text 2 */
.about-text .text-2 .text-item {
    display: flex;
    align-items: center;
    margin: 10px 20px;
}

.about-text .text-2 .text-item .about-icon i {
    font-size: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid var(--color-4);
    background-color: transparent;
    border-radius: 50%;
    color: var(--color-4);
    margin: 0 16px 0 0;
}

.about-text .text-2 .text-item .item-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    line-height: 1.4;
}

/* End About Section */

/* Start Services Section */
.services-section .container {
    padding: 30px 0 50px;
}

/* services title */
.container .services-wrapper .services-title h2 {
    text-align: center;
    margin: 0 0 40px;
    color: var(--color-2);
}

/* services item */
.container .services-wrapper .services-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.4;
}

/* service card */
.services-item .services-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 330px;
    background-color: var(--color-1);
    border: 1px solid var(--color-5);
    border-radius: 3px;
    padding: 10px;
    margin: 10px;
}

/* services icon */
.services-card .services-icon {
    margin-bottom: 20px;
}

.services-card .services-icon i {
    font-size: 3rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    border: 1px solid var(--color-4);
    background-color: transparent;
    border-radius: 50%;
    color: var(--color-4);
}

/* services card title */
.services-card .services-card-title {
    margin-bottom: 20px;
}

/* End Services Section */

/* Start Pricing Section */
.pricing-section .container {
    padding: 30px 0 50px;
}

/* pricing title */
.container .pricing-wrapper .pricing-title h2 {
    text-align: center;
    margin: 0 0 40px;
    color: var(--color-2);
}

/* pricing list */
.container .pricing-wrapper .pricing-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* pricing card */
.pricing-list .pricing-card {
    display: flex;
    flex-direction: column;
    width: 520px;
    margin: 0 10px;
    padding: 10px 10px;
    background-color: var(--color-1);
    border: 1px solid var(--color-5);
    border-radius: 3px;
}

/* issue title */
.pricing-card .issue-title h3 {
    color: var(--color-1);
    background-color: var(--color-3);
    text-align: center;
    margin-bottom: 15px;
    border-bottom: 4px solid var(--color-4);
    border-radius: 3px;
    padding: 8px;
}

/* price thread */
.pricing-item .price-thread {
    margin-bottom: 15px;
    box-shadow: 0 0 8px var(--color-5);
    border-radius: 5px;
}

.pricing-item .price-thread .title-thread h4 {
    background-color: var(--color-6);
    color: var(--color-0);
    padding: 5px;
    border-radius: 3px 3px 0 0;
    margin-bottom: 8px;
    font-weight: 500;
}

/* title price */
.price-thread .price-data {
    font-size: 15px;
    display: flex;
    margin: 0px 5px 5px;
    padding: 0px 8px 8px;
    cursor: pointer;
}

.price-data .data-title {
    width: 70%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 1.4;
}

.price-data .data-title i {
    padding: 0 5px 0 0px;
}

.price-data .value {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.price-data .value span {
    margin-left: 4px;
    font-style: italic;
    font-weight: 700;
    text-decoration: underline;
}

/* End Pricing Section */

/* Start Activity Section */
.activity-section .container {
    padding: 30px 0 50px;
}

.container .activity-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* activity title */
.container .activity-wrapper .activity-title h2 {
    text-align: center;
    margin: 0 auto 20px;
    color: var(--color-2);
}

/* activity p */
.container .activity-wrapper .activity-title p {
    width: 80%;
    line-height: 1.4;
    text-align: center;
    margin: 0 auto 50px;
    font-size: 16px;
    font-weight: normal;
}

/* activity check status */
.container .activity-wrapper .activity-title span button {
    margin-top: 5px;
    color: var(--color-1);
    background-color: var(--color-2);
    padding: 5px 10px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.container .activity-wrapper .activity-title span button:hover {
    color: var(--color-1);
    background-color: var(--color-3);
}

/* activity filter */
.button-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.button-menu button {
    width: 215px;
    padding: 8px;
    margin: 0 4px 8px;
    font-size: 1rem;
    background-color: var(--color-1);
    border: 1px solid var(--color-5);
    color: var(--color-2);
}

.button-menu button:hover {
    background-color: var(--color-7);
    color: var(--color-2);
}

/* activity button for active */
.button-menu button.active-button {
    background-color: var(--color-8);
    color: var(--color-3);
    border: 1px solid var(--color-5);
    font-weight: 600;
}

/* activity item */
.container .activity-wrapper .activity-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.activity-item .activity-card {
    display: flex;
    flex-direction: column;
    width: 260px;
    background-color: var(--color-1);
    border: 1px solid var(--color-5);
    border-radius: 3px;
    margin: 10px;
    position: relative;
}

.activity-item .activity-card .post-img img {
    max-width: 100%;
    border-radius: 3px;
}

.activity-item .activity-card .post-content {
    padding: 0 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.activity-item .activity-card .post-content .post-date {
    font-size: 14px;
    position: relative;
    background: var(--color-1);
    padding: 8px;
    top: -18px;
    display: inline;
    width: 80%;
    border: 1px solid var(--color-5);
    box-shadow: 0px 0px 3px var(--color-5);
    border-radius: 3px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.activity-item .activity-card .post-content .post-title h3 {
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.4;
}

.activity-item .activity-card .post-content p {
    text-align: justify;
    margin-bottom: 5px;
    line-height: 1.4;
}

.activity-item .activity-card .post-content .post-goal,
.activity-item .activity-card .post-content .post-tag {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.activity-item .activity-card .post-content .post-goal {
    margin: 10px 0 5px;
}

.activity-item .activity-card .post-content .post-tag {
    margin-bottom: 40px;
}

.activity-item .activity-card .post-content .post-goal strong,
.activity-item .activity-card .post-content .post-tag strong {
    font-size: 12px;
    color: var(--color-6);
    font-weight: 500;
    padding: 3px;
    border-radius: 3px;
    margin-right: 4px;
}

.activity-item .activity-card .post-content .post-goal span,
.activity-item .activity-card .post-content .post-tag span {
    padding: 3px;
    margin: 0 4px 3px 0;
    font-size: 12px;
    border-radius: 3px;
    background-color: var(--color-0);
    color: var(--color-6);
    border: 1px solid var(--color-5);
    font-weight: 500;
}

.activity-item .activity-card .post-content .activity-link {
    font-size: 14px;
    width: 100%;
    margin: 0 0 8px;
    text-align: right;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.activity-item .activity-card .post-content .activity-link a {
    color: var(--color-0);
    border: 1px solid var(--color-6);
    background-color: var(--color-6);
    padding: 5px;
    border-radius: 3px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.activity-item .activity-card .post-content .activity-link a:hover {
    color: var(--color-1);
    background-color: var(--color-2);
    border: 1px solid var(--color-2);
}

/* End Activity Section */

/* Start Review Section */
.review-section .container {
    padding: 30px 0 50px;
}

/* review title */
.container .review-wrapper .review-title h2 {
    text-align: center;
    margin: 0 0 40px;
    color: var(--color-2);
}

.container .review-wrapper .review-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.container .review-wrapper .review-item .review-card {
    display: flex;
    flex-direction: column;
    width: 260px;
    margin: 10px;
}

.review-item .review-card .review-text {
    position: relative;
    background: var(--color-1);
    border-radius: 3px 3px 0 0;
    padding: 15px;
    text-align: left;
    border: 1px solid var(--color-5);
    -webkit-box-shadow: 0 0px 8px rgba(208, 212, 212, 0.5), 0 0px 10px rgba(208, 212, 212, 0.5);
    box-shadow: 0 1px 8px rgba(208, 212, 212, 0.5), 0 1px 10px rgba(208, 212, 212, 0.5);
}

.review-item .review-card .review-text p {
    font-style: italic;
    text-align: left;
    line-height: 1.4;
    margin-bottom: 15px;
}

.review-card .review-text .rating-box {
    margin-top: 10px;
}

.review-card .review-text .rating-box h4 {
    color: var(--color-2);
    margin-bottom: 5px;
    text-decoration: underline;
    text-align: center;
}

.review-card .review-text .rating-box ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.review-card .review-text .rating-box ul li {
    display: inline-block;
}

.review-card .review-text .rating-box ul li i {
    color: #ffce39;
    font-size: 15px;
}

.review-card .author-info-box {
    color: var(--color-1);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: row;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    text-align: left;
    padding: 20px 20px;
    background-color: var(--color-3);
    border: 1px solid var(--color-5);
    border-bottom: 8px solid var(--color-4);
    border-radius: 0 0 10px 10px;
}

.review-card .author-info-box .author-img img {
    border-radius: 50%;
    border: 5px solid transparent;
    width: 75px;
    margin: 0 auto;
    -webkit-box-shadow: 0 3px 15px var(--color-5);
    box-shadow: 0 3px 15px var(--color-5);
}

.review-card .author-info-box .author-img {
    margin-right: 18px;
}

.review-card .author-info-box h3 {
    color: var(--color-4);
}

.review-card .author-info-box span {
    font-size: 14px;
    letter-spacing: 1px;
    font-style: italic;
    font-weight: 300;
    color: var(--color-5);
}

/* End Review Section */

/* Start Contact Section */
.contact-section .container {
    padding: 30px 0 80px;
}

/* contact title */
.container .contact-wrapper .contact-title h2 {
    text-align: center;
    margin: 0 0 40px;
    color: var(--color-2);
}

/* contact list */
.container .contact-wrapper .contact-list {
    display: flex;
    border: 1px solid var(--color-5);
    background-color: var(--color-1);
    border-radius: 3px;
    margin-top: 15px;
    padding: 20px 0;
}

/* contact text */
.contact-wrapper .contact-list .contact-text {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 20px;
}

/* contact info title */
.contact-list .contact-text .contact-info-title h3 {
    text-decoration: underline;
}

/* contact detail*/
.contact-text .contact-item .contact-detail {
    display: flex;
    align-items: center;
    margin: 20px 10px;
}

.contact-item .contact-detail .contact-icon i {
    font-size: 1.5625rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.8125rem;
    height: 2.8125rem;
    border: 1px solid var(--color-4);
    background-color: transparent;
    border-radius: 50%;
    color: var(--color-4);
    margin: 0 16px 0 0;
}

.contact-item .contact-detail .contact-info-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    line-height: 1.4;
}

.contact-detail .contact-info-text div p {
    text-align: justify;
}

.contact-detail .contact-info-text div p a {
    text-decoration: none;
    color: var(--color-2);
}

.contact-detail .contact-info-text div p a:hover {
    color: var(--color-4);
}

/* contact map */
.contact-wrapper .contact-list .contact-map {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

/* End Contact Section */

/* Start Footer */
footer a {
    text-decoration: none;
    color: var(--color-1);
    font-size: 14px;
}

footer a:hover {
    text-decoration: none;
    color: var(--color-4);
}

/* Start Top Area */
footer .footer-top-area {
    background-color: var(--color-3);
    color: var(--color-1);
    padding: 40px 0;
}

footer .footer-top-area .container .top-area-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

/* box one */
.container .top-area-wrapper .footer-box-one {
    width: 35%;
    padding: 0 20px;
}

.top-area-wrapper .footer-box-one .footer-content {
    padding: 20px;
}

/* box one img */
.top-area-wrapper .footer-box-one .footer-content img {
    max-width: 100%;
    height: 38px;
    margin-bottom: 20px;
}

/* box one p */
.top-area-wrapper .footer-box-one .footer-content p {
    line-height: 1.4;
    font-size: 14px;
}

.top-area-wrapper .footer-box-one .footer-content span {
    font-size: 15px;
    font-weight: 600;
}

/* box one work status */
.top-area-wrapper .footer-box-one .footer-content .work-time-wrapper {
    display: flex;
    align-items: center;
    margin-top: 20px;
    border: 1px solid var(--color-5);
    border-bottom: 4px solid var(--color-4);
    padding: 15px;
    border-radius: 8px 8px 5px 5px;
    box-shadow: 4px 3px var(--color-5), 4px -2px 0 var(--color-5);
}

/* work icon */
.top-area-wrapper .footer-box-one .footer-content .work-time-wrapper i {
    font-size: 1.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.3125rem;
    height: 2.375rem;
    border: 1px solid var(--color-5);
    background-color: var(--color-2);
    border-radius: 50%;
    margin: 0 16px 0 0;
}

/* work time */
.top-area-wrapper .footer-box-one .footer-content .work-time-wrapper .work-time {
    display: flex;
    flex-direction: column;
}

.top-area-wrapper .footer-box-one .footer-content .work-time-wrapper .work-time strong h4 {
    font-size: 15px;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

.top-area-wrapper .footer-box-one .footer-content .work-time-wrapper .work-time div p {
    margin-top: 6px;
    line-height: 1.4;
    font-size: 14px;
    color: var(--color-8);
}

/* box two */
.container .top-area-wrapper .footer-box-two {
    width: 20%;
    padding: 0 20px 0 70px;
}

.top-area-wrapper .footer-box-two .footer-content {
    padding: 20px;
}

/* box two h3 */
.top-area-wrapper .footer-box-two .footer-content h3 {
    margin-bottom: 15px;
}

/* box two link */
.top-area-wrapper .footer-box-two .footer-content .footer-link li {
    line-height: 1.5;
}

/* box three */
.container .top-area-wrapper .footer-box-three {
    width: 30%;
    padding: 0 20px;
}

.top-area-wrapper .footer-box-three .footer-content {
    padding: 20px;
}

/* box three h3 */
.top-area-wrapper .footer-box-three .footer-content h3 {
    margin-bottom: 15px;
}

/* box three p */
.top-area-wrapper .footer-box-three .footer-content p {
    line-height: 1.4;
    font-size: 14px;
}

/* box three social */
.top-area-wrapper .footer-box-three .footer-content .footer-social {
    display: flex;
    margin-top: 12px;
}

.top-area-wrapper .footer-box-three .footer-content .footer-social li a {
    font-size: 1.25rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--color-1);
    background-color: var(--color-2);
    border-radius: 50%;
    color: var(--color-1);
    margin: 0 10px 0 0;
}

.top-area-wrapper .footer-box-three .footer-content .footer-social li a:hover {
    background-color: var(--color-3);
}

/* End Top Area */

/* Start Bottom Area */
footer .footer-bottom-area {
    background-color: var(--color-3);
    color: var(--color-1);
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--color-2);
}

footer .footer-bottom-area .bottom-area-wrapper .footer-copyright p {
    font-size: 14px;
}

/* End Bottom Area */

/* End Footer */

/* Start Button To Top */
#scroll-to-top {
    display: none;
    position: fixed;
    bottom: 58px;
    right: 20px;
    background-color: var(--color-4);
    color: var(--color-0);
    border: none;
    border-radius: 50%;
    padding: 14px;
    font-size: 16px;
    cursor: pointer;
}

#scroll-to-top:hover {
    background-color: var(--color-6);
}

/* End Button To Top */

/*  responsive for 1200px  */
@media (max-width: 1200px) {

    /* Start Header */
    header .header-container {
        width: 95%;
    }

    /* End Header */

    /* Start About Section */
    .about-section .container {
        width: 90%;
    }

    /* End About Section */

    /* Start Activity Section */
    /* activity filter */
    .button-menu {
        width: 95%;
    }

    /* End Activity Section */

    /* Start Contact Section */
    .contact-section .container {
        width: 90%;
    }

    /* End Contact Section */

    /* Start Footer */
    .footer-top-area .container {
        width: 95%;
    }

    .container .top-area-wrapper .footer-box-two {
        padding: 0 20px 0 40px;
    }

    .top-area-wrapper .footer-box-two .footer-content {
        padding: 15px;
    }

    /* End Footer */
}

/* responsive for 992px */
@media (max-width: 992px) {

    /* Start Global View */
    .font-title {
        font-size: 2.375rem;
        font-weight: 500;
    }

    /* End Global View */

    /* Start Header */
    /* mobile menu icon */
    .header-container .menu-icon {
        display: block;
        padding: 5px 10px;
        border: 1px solid var(--color-1);
        border-radius: 5px;
    }

    .header-container .menu-icon:hover {
        border: 1px solid var(--color-1);
        border-radius: 5px;
    }

    /* desktop navigation */
    .header-container nav {
        display: none;
        background: var(--color-3);
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        padding-bottom: 20px;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    .header-container nav.active {
        display: flex;
        flex-direction: column;
    }

    .header-container nav .ul-nav {
        flex-direction: column;
        align-items: flex-start;
        margin: 10px 0 10px 20px;
    }

    .header-container nav .ul-nav li span {
        display: none;
    }

    /* call button */
    .header-container .call-btn a {
        display: inline-block;
        margin: 10px 0 10px 20px;
    }

    /* Start Hero Section */
    /* caption */
    .carousel-caption {
        padding: 8px 10px;
    }

    /* End Hero Section */

    /* Start About Section */
    .about-section .container {
        width: 85%;
    }

    /* about content */
    .about-wrapper .about-item .about-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    /* about image */
    .about-item .about-content .about-img {
        width: 100%;
        padding: 0;
        margin-bottom: 40px;
    }
    
    /* about text */
    .about-item .about-content .about-text {
        width: 100%;
        padding: 0;
    }

    /* End About Section */

    /* Start Pricing Section */
    .pricing-section .container {
        width: 100%;
    }

    /* pricing card */
    .pricing-list .pricing-card {
        margin-bottom: 20px;
    }

    /* End Pricing Section */

    /* Start Activity Section */
    /* activity filter */
    .button-menu {
        width: 85%;
    }

    /* End Activity Section */

    /* Start Contact Section */
    .contact-section .container {
        width: 85%;
    }

    /* contact list */
    .container .contact-wrapper .contact-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    /* contact text */
    .contact-wrapper .contact-list .contact-text {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    /* contact map */
    .contact-wrapper .contact-list .contact-map {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    /* End Contact Section */

    /* Start Footer */
    /* box one */
    .container .top-area-wrapper .footer-box-one {
        width: 50%;
    }

    /* box two */
    .container .top-area-wrapper .footer-box-two {
        width: 34%;
        padding: 0 20px;
    }

    /* box three */
    .container .top-area-wrapper .footer-box-three {
        width: 50%;
    }

    /* End Footer */
}

/* responsive for 600px */
@media (max-width: 600px) {

    /* Start Global View */
    .font-title {
        font-size: 2.125rem;
        font-weight: 500;
    }

    /* End Global View */

    /* Start Services Section */
    .services-wrapper .services-item .services-card {
        margin-bottom: 30px;
    }

    /* End Services Section */

    /* Start About Section */
    .about-section .container {
        width: 80%;
    }

    /* End About Section */

    /* Start Pricing Section */
    .pricing-section .container {
        width: 85%;
    }

    .price-data .data-title {
        width: 60%;
    }

    .price-data .value {
        width: 40%;
    }

    /* End Pricing Section */

    /* Start Contact Section */
    .contact-section .container {
        width: 80%;
    }

    /* End Contact Section */

    /* Start Footer */
    .footer-top-area .container {
        width: 80%;
    }

    /* box one */
    .container .top-area-wrapper .footer-box-one {
        width: 100%;
    }

    /* box two */
    .container .top-area-wrapper .footer-box-two {
        width: 100%;
        padding: 0 20px;
    }

    .top-area-wrapper .footer-box-two .footer-content {
        padding: 20px;
    }

    /* box three */
    .container .top-area-wrapper .footer-box-three {
        width: 100%;
    }

    /* End Footer */
}

/* responsive for 500px */
@media (max-width: 500px) {

    /* Start Global View */
    .font-title {
        font-size: 2rem;
        font-weight: 500;
    }

    /* End Global View */

    /* Start About Section */
    /* text item */
    .about-text .text-2 .text-item {
        flex-direction: column;
        justify-content: center;
        margin: 20px 0;
    }

    /* about icon */
    .about-text .text-2 .text-item .about-icon {
        margin-bottom: 10px;
    }

    /* about icon for i tag */
    .about-text .text-2 .text-item .about-icon i {
        margin: 0;
    }

    .about-text .text-2 .text-item .item-text {
        margin: 0 20px;
        align-items: center;
    }

    .about-text .text-2 .text-item .item-text strong h4 {
        text-align: center;
        margin-bottom: 5px;
    }

    /* End About Section */

    /* Start Pricing Section */
    /* price data */
    .price-thread .price-data {
        flex-direction: column;
    }

    /* data title */
    .price-data .data-title {
        width: 100%;
        align-items: flex-start;
        margin: 5px 0;
    }

    .price-data .data-title i {
        padding: 2px 5px 0 0px;
    }


    /* value */
    .price-data .value {
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        margin-left: 20px;
    }

    /* End Pricing Section */

    /* Start Contact Section */
    /* contact detail*/
    .contact-text .contact-item .contact-detail {
        flex-direction: column;
        justify-content: center;
    }

    /* contact icon */
    .contact-item .contact-detail .contact-icon {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: left;
        margin-bottom: 10px;
    }

    /* contact icon for i tag */
    .contact-item .contact-detail .contact-icon i {
        margin: 0;
    }

    .contact-item .contact-detail .contact-info-text {
        align-items: center;
    }

    .contact-item .contact-detail .contact-info-text strong h4 {
        text-align: center;
        margin-bottom: 5px;
    }

    /* End Contact Section */

    /* Start Footer */
    /* Start Top Area */
    /* box one work status */
    .top-area-wrapper .footer-box-one .footer-content .work-time-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 20px 0;
    }

    /* work icon */
    .top-area-wrapper .footer-box-one .footer-content .work-time-wrapper .work-icon {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: left;
        margin-bottom: 10px;
    }

    .top-area-wrapper .footer-box-one .footer-content .work-time-wrapper .work-icon i {
        margin: 0;
    }

    .top-area-wrapper .footer-box-one .footer-content .work-time-wrapper .work-time strong h4 {
        text-align: center;
        margin-bottom: 5px;
    }

    /* End Top Area */

    /* Start Bottom Area */
    footer .footer-bottom-area {
        line-height: 1.4;
    }

    /* End Bottom Area */

    /* End Footer */
}

/* responsive for 300px */
@media (max-width: 300px) {

    /* Start Hero Section */
    /* caption */
    .carousel-caption {
        padding: 8px 0px;
    }

    /* End Hero Section */

    /* Start Footer */
    /* Start Top Area */
    /* box one */
    .container .top-area-wrapper .footer-box-one {
        padding: 0 5px;
    }

    /* box two */
    .container .top-area-wrapper .footer-box-two {
        padding: 0 5px;
    }

    /* box three */
    .container .top-area-wrapper .footer-box-three {
        padding: 0 5px;
    }

    /* End Top Area */

    /* End Footer */
}