:root {
    --body: #2d2d2d;
    --primary: #27AAE1;
    --secondary: #48487F;
    --gray: #A9ABAB;
    --light: #f1f3f6;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

body {
    line-height: 150%;
    color: var(--body);
    overflow-x: hidden;
    padding: 0 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
}
h1, h2 {
    font-size: 64px;
    line-height: 120%;
    font-weight: 900;
    color: var(--secondary);
}
.page-content h2, .blog-post h2, .footer-widget h2, h3, h4, h5 {
    font-size: 20px;
    line-height: 140%;
    font-weight: 700;
}
.page-content h4 {
    margin: 40px 0 15px;
}
.subtitle {
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    color: var(--body);
}
a {
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: var(--primary);
    text-decoration: underline;
}

header {
    background-color: var(--white);
    width: 100%;
    margin-bottom: 20px;
}
.navbar-brand,
.navbar-brand:hover {
    text-decoration: none;
}
.navbar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    margin: 0;
    padding: 0;
}

.navbar-nav > li:first-child {
    display: none;
}

.navbar-nav > li {
    display: block;
}
.navbar-nav > li > a {
    font-size: 17px;
    line-height: 130%;
    font-weight: 500;
    color: var(--body);
    text-decoration: none;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 7px;
}

.navbar-nav > li:hover > a {
    color: var(--primary);
}

/* Custom Menu Toggler */

.custom-toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 100%;
    width: 48px;
    height: 48px;
    position: relative;
    cursor: pointer;
}
.toggler-line {
    display: block;
    height: 2px;
    width: 28px;
    background: var(--body);
    border-radius: 3px;
    opacity: 1;
    transform: rotate(0deg);
    transition: transform 0.3s;
}
.custom-toggler[aria-expanded="true"] {
    gap: 0;
}
.custom-toggler[aria-expanded="true"] .toggler-line-top {
    position: absolute;
    transform: rotate(45deg);
    transform-origin: 50% 50%;
    will-change: transform;
}
.custom-toggler[aria-expanded="true"] .toggler-line-bottom {
    position: absolute;
    transform: rotate(-45deg);
    transform-origin: 50% 50%;
    will-change: transform;
}

.btn-default {
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0px 15px;
    gap: 5px;
    background: var(--primary);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 48px;
    border: 1.5px solid transparent;
    border-radius: 100px;
    text-decoration: none;
    min-width: 156px;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border: 1.5px solid transparent;
}

.cta-3 .buttons .btn-default:hover,
.cta-3 .buttons .btn-default:focus,
.cta-3 .buttons .btn-default:active {
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border: 1.5px solid var(--white);
}

.btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0px 15px;
    gap: 5px;
    background: transparent;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 54px;
    border: 1px solid var(--white);
    border-radius: 100px;
    text-decoration: none;
    min-width: 156px;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-default:active {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    text-decoration: none;
}
.hero {
    padding: 20px 0;
}
.hero .hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.cta .hero-buttons,
.cta-2 .hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}
.hero-image {
    background: url('../../images/unimovingoc-truck.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    padding: 10px;
    border-radius: 20px;
}
.heading-subheading {
    gap: 20px;
}
.hero h1 {
    color: var(--secondary);
}
.hero-rating-container {
    gap: 10px;
    align-items: center;
}
.hero-rating {
    background: var(--secondary);
    color: var(--white);
    gap: 7px;
    padding: 2px 10px;
    border-radius: 20px;
    align-items: center;
}
.hero-rating img {
    height: 15px;
}
.hero .subtitle {
    color: var(--body);
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}

.hero .subtitle span {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}
.hero-image .hero-right {
    background: var(--white);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 15px;
    gap: 10px;
    height: 576px;
}
.hero-image .hero-right h4 {
    margin: 0;
}
.hero-image .hero-right .form-subtitle {
    font-weight: 500;
}

.hero-image .hero-right form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-image .hero-right form .form-group p {
    margin: 0;
}

.hero-image .hero-right form input[type="text"],
.hero-image .hero-right form input[type="tel"],
.hero-image .hero-right form input[type="email"] {
    background: #f1f3f6;
    height: 48px;
    width: 100%;
    padding: 10px;
    color: var(--body);
    font-size: 15px;
    line-height: 44px;
    border-radius: 5px;
    box-shadow: none;
    border: none;
}
.hero-image .hero-right form input::placeholder {
    color: var(--body);
    font-size: 15px;
    line-height: 44px;
}
.hero-image .hero-right form p {
    margin-bottom: 5px;
}
.hero-image .hero-right form .wpcf7-list-item {
    margin: 10px 0;
}
.hero-image .hero-right form .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-image .hero-right form .wpcf7-list-item-label {
    color: #A9ABAB;
}
.hero-image .hero-right form .wpcf7-list-item-label a {
    color: #1e1e1e;
}
.hero-image .hero-right form .submit-btn {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 0px 30px;
    gap: 5px;
    background: var(--primary);
    color: var(--white);
    line-height: 48px;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    margin-top: 0;
}
.hero-image .hero-right form .submit-btn:hover,
.hero-image .hero-right form .submit-btn:focus {
    background: var(--secondary);
    color: var(--white);
}

/* Get a Quote */

.get-a-quote {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    gap: 15px;
    height: 100%;
}
.get-a-quote .form-subtitle {
    font-weight: 500;
}
.get-a-quote form input[type="text"],
.get-a-quote form input[type="tel"],
.get-a-quote form input[type="email"],
.get-a-quote form input[type="date"] {
    background: #f1f3f6;
    height: 54px;
    width: 100%;
    padding: 10px;
    color: var(--body);
    font-size: 15px;
    line-height: 44px;
    border-radius: 5px;
    box-shadow: none;
    border: none;
}

.get-a-quote form input[type="date"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z'/%3E%3Cpath d='M2.5 4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}
.get-a-quote form select {
    appearance: none;
    -webkit-appearance: none;
    background: #f1f3f6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    height: 54px;
    width: 100%;
    padding: 10px;
    color: var(--body);
    font-size: 15px;
    line-height: 36px;
    border-radius: 5px;
    box-shadow: none;
    border: none;
}

.get-a-quote form textarea {
    background: #f1f3f6;
    max-height: 150px;
    width: 100%;
    padding: 10px;
    color: var(--body);
    font-size: 15px;
    line-height: 24px;
    border-radius: 5px;
    box-shadow: none;
    border: none;
}
.get-a-quote form input::placeholder {
    color: var(--body);
    font-size: 15px;
    line-height: 44px;
}
.get-a-quote form p {
    margin-bottom: 5px;
}
.get-a-quote form .wpcf7-list-item {
    margin: 10px 0;
}
.get-a-quote form .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
}
.get-a-quote form .wpcf7-list-item-label {
    color: #A9ABAB;
}
.get-a-quote form .wpcf7-list-item-label a {
    color: #1e1e1e;
}
.get-a-quote form .submit-btn {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    min-width: 156px;
    padding: 0px 30px;
    margin: auto;
    gap: 5px;
    background: var(--primary);
    color: var(--white);
    line-height: 48px;
    border: none;
    border-radius: 100px;
}
.get-a-quote form .submit-btn:hover,
.get-a-quote form .submit-btn:focus {
    background: var(--secondary);
    color: var(--white);
}
.submit-spinner {
    position: relative;
}
.get-a-quote .submit-spinner {
    position: relative;
    width: 260px;
}
.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #23282d;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 24px;
    position: absolute;
    z-index: 9999;
    bottom: 0;
    right: -4px;
    top: 0;
    transform: translateY(50%);
}
/* End of Get a Quote */

.google-reviews {
    gap: 5px;
}
.google-reviews div:first-child {
    gap: 5px;
}
.reviews-stars {
    gap: 1px;
}

.reviews {
    padding: 30px 0;
}
.reviews-item-brand-google {
    margin-bottom: 0;
}
.reviews-item-brand-facebook,
.reviews-item-brand-thumbtack {
    margin-bottom: 5px;
}
.reviews-item-thumbtack {
    gap: 10px;
}
.reviews-trustanalytica {
    width: 120px;
    margin: auto;
}
.reviews-trustanalytica script {
    display: block;
}
.reviews-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3%;
    color: var(--secondary);
    text-transform: uppercase;
}
.about {
    background: var(--light);
    padding: 40px 0;
    border-radius: 20px;
}
.about-text {
    display: flex;
    gap: 30px;
}
.feature-box {
    background: var(--white);
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,.15);
}
.feature-box .box-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.about h2,
.feature-box h2,
.services h2,
.testimonials h2,
.blog-widget h2,
.feature-box h3,
.hero-right h3 {
    margin: 0;
}
.blog-post h2 {
    margin: 10px 0;
}
.feature-box.dark {
    background: var(--secondary);
}
.feature-box.dark h3 {
    color: var(--white);
}
.feature-box h3 {
    color: var(--secondary);
    margin: 0;
}
.feature-box p {
    margin: 0;
}
.feature-box.dark p {
    color: var(--white);
    opacity: .75;
}
.cta {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%), url('../../images/cta.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 800px;
    padding: 40px 10px 10px 50px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.cta h2 {
    color: var(--white);
}
.cta .subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 150%;
    width: 380px;
}
.cta-feature-box {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 15px;
    padding: 15px;
    width: 380px;
    height: 300px;
    margin-left: auto;
    box-shadow: 0 0 30px rgba(0,0,0,.4);
}
.cta-feature-box .numbers {
    font-family: 'Manrope', sans-serif;
    font-size: 90px;
    font-weight: 200;
    line-height: 110%;
}
.cta-feature-box .numbers span {
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    font-weight: 200;
    line-height: 110%;
}
.services p span {
    color: var(--primary);
}
.services .btn {
    margin: auto;
}
.page-template-page-services .services {
    padding: 0;
}
.service-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 500px;
    padding: 5px;
    border-radius: 15px;
}
.service-box.first {
    background: url('../../images/local.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 50%;
}
.service-box.second {
    background: url('../../images/long.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 50%;
}
.service-box.third {
    background: url('../../images/packing.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 50%;
}
.service-feature-box {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 10px;
    gap: 5px;
    padding: 10px 15px;
    margin-left: auto;
}
.service-feature-box h3 {
    margin: 0;
}
.service-feature-box h3 a {
    color: var(--secondary);
    text-decoration: none;
}
.service-feature-box h3 a:hover {
    color: var(--primary);
    text-decoration: none;
}
.service-feature-box p {
    margin: 0;
}
.service-feature-box p span {
    color: var(--primary);
    margin: 0;
}

.testimonials {
    border-radius: 20px;
    border: 1.5px solid var(--body);
    padding: 75px 0;
    margin-bottom: 10px;
    position: relative;
}

.testimonial-item {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.icon-quote {
    background: var(--white);
    position: absolute;
    padding: 5px 35px;
    top: -22px;
    width: 116px;
    left: 60px;
}

.testimonial-heading h5 {
    margin: 0;
}

.testimonial-rating {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.testimonial-heading p,
.testimonial-rating p {
    color: var(--secondary);
    font-size: 15px;
    line-height: 160%;
    font-weight: 500;
    margin: 0;
}

.testimonial-item p {
    margin: 0;
}

.cta-2 {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%), url('../../images/cta-2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 800px;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.cta-2 .title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 130%;
}
.cta-2 .subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 150%;
}
.cta-2 .cta-right {
    justify-content: space-between;
    align-items: center;
}
.cta-2 .cta-left img {
    height: 140px;
}
.cta .cta-heading,
.cta-2 .cta-heading,
.cta-3 .cta-heading {
    font-size: 64px;
    line-height: 120%;
    font-weight: 900;
    color: var(--white);
}
.blog-widget {
    margin-bottom: 40px;
}
.blog-widget p span {
    color: var(--primary);
}

.cta-3 {
    background: var(--secondary);
    padding: 50px 0 10px;
    border-radius: 20px 20px 0 0;
}

.cta-3 h2 {
    color: var(--white);
}

.cta-3 .divider {
    background: var(--white);
    height: 1px;
    opacity: .2;
}

.cta-3 .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-3 .description {
    color: var(--white);
}

.cta-3 .get-in-touch {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    border-left: 10px solid var(--primary);
    padding-left: 30px;
}

.cta-3 .social {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.cta-3 .buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-3 .address {
    color: var(--gray);
}

/* Blog */

.page-header {
    background: var(--light);
    border-radius: 20px;
    padding: 0 120px;
}

.blog-post {
    border-radius: 15px;
}

.blog-post .post-thumbnail img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

.blog-post h2 a {
    text-decoration: none;
    color: var(--secondary);
}
.blog-post h2 a:hover {
    text-decoration: none;
    color: var(--primary);
}

.blog-post .text-truncate-4 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: calc(1.6em * 3);
    line-height: 1.5;
    color: var(--body);
    font-size: 16px;
    line-height: 160%;
}
.single-post .post-thumbnail img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: 20px;
}
.single-post .post-title {
    font-size: 56px;
    line-height: 130%;
    font-weight: 400;
}
.post-meta {
    display: flex;
    gap: 10px;
}
.page-header .post-meta .author,
.page-header .post-meta .date {
    background-color: var(--secondary);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: 0px 10px;
    border-radius: 100px;
}
.post-meta .author,
.post-meta .date {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 500;
    padding: 0px;
}

/* Footer */

.footer-widgets {
    background: var(--secondary);
    border-radius: 0 0 20px 20px;
}

.footer-widget .wp-block-heading {
    color: var(--white);
}

footer .copyright {
    color: var(--body);
    font-size: 15px;
    line-height: 160%;
    padding-top: 30px;
    padding-bottom: 30px;
    margin: 0;
}
.footer-widget ul {
    padding: 0;
}
.footer-widget ul li {
    display: block;
    padding: 8px 0;
}
.footer-widget ul li a {
    text-decoration: none;
    color: var(--white);
    opacity: .6;
}
.footer-widget ul li a:hover {
    text-decoration: none;
    color: var(--white);
    opacity: 1;
}
.footer-widget h4 {
    margin-bottom: 30px;
}

/* Navbar Expand */

.navbar-nav .dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 10px 15px;
    color: var(--body);
    transition: all 0.2s ease;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li:hover a {
    background: var(--light);
    color: var(--primary);
    text-decoration: none;
}

.navbar-nav .dropdown-toggle::after {
    display: none;
}

.navbar-nav .nav-link.has-dropdown::after {
    content: "\f282";
    font-family: 'bootstrap-icons';
    font-size: 13px;
    transition: transform 0.3s ease;
    display: inline-block;
    font-weight: normal;
    font-style: normal;
    line-height: 130%;
    border: none;
}

#menu-footer-menu li:first-child {
    display: none;
}

#menu-areas-we-serve {
    column-count: 3;
}

@keyframes phoneCallVibration {
    0% { transform: rotate(0deg); }
    2% { transform: rotate(-7deg); }
    4% { transform: rotate(7deg); }
    6% { transform: rotate(-7deg); }
    8% { transform: rotate(7deg); }
    10% { transform: rotate(-7deg); }
    12% { transform: rotate(7deg); }
    
    15% { transform: rotate(-15deg); }
    20% { transform: rotate(12deg); }
    25% { transform: rotate(-8deg); }
    30% { transform: rotate(4deg); }
    
    35% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.phone-icon-animated {
    animation: phoneCallVibration 5s ease-in-out infinite;
    animation-delay: 0.5s;
    display: inline-block;
    transform-origin: center center;
}

@media (prefers-reduced-motion: reduce) {
    .phone-icon-animated,
    .phone-call-animation,
    .btn-call-action {
        animation: none;
    }
}

.color-white {
    color: var(--white);
}
.margin-auto {
    margin: auto;
}

.page-template-page-about .page-image {
    object-fit: cover;
    width: 100%;
    height: 420px;
    border-radius: 15px;
}

.page-template-default .post-thumbnail img {
    border-radius: 20px;
}

[id^="attachment_"] {
    max-width: 100%;
    height: auto;
    margin: auto;
    display: block;
}

[id^="attachment_"] img {
    border-radius: 10px;
    margin: 15px 0;
    width: 100%;
}

.wp-caption-text {
    color: var(--secondary);
    font-size: 14px;
    font-style: italic;
    text-align: center;
    line-height: 130%;
    margin-bottom: 10px;
}
.arrow-link {
    transition: 300ms;
}
.arrow-link:hover {
    transform: rotate(45deg);
}

.areas-we-serve-map {
    border-radius: 20px;
    height: 440px;
    overflow: hidden;
}
.contact-info i {
    margin-right: 10px;
}
.ti-footer .ti-rating-text:nth-of-type(2) {
    display: none;
}

.excelent {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Owl Carousel */
.owl-carousel .item {
    padding: 10px;
}

.owl-carousel .item .item-inner {
    padding: 20px;
    background: var(--white);
    box-shadow: 1px 4px 10px 0px rgba(0, 0, 0, 0.1), 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.owl-carousel .item .item-inner .item-header {
    position: relative;
}

.owl-carousel .item .item-inner .item-header .name {
    font-weight: 700;
}

.owl-carousel .item .item-inner .item-header .g-icon {
    height: 20px;
    width: 20px;
    position: absolute;
    top: 0;
    right: 0;
}

.owl-carousel .item .item-inner .item-header .g-icon img {
    height: 20px;
    width: 20px;
}

.owl-carousel .item .item-inner .item-header .profile-image img {
    height: 40px;
    width: 40px;
}

.owl-carousel .item .item-inner .reviews-stars img {
    height: 16px;
    width: 17px;
}

.owl-carousel .item .item-inner .item-body {
    font-size: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden !important;
    transition: 0.5s ease;
}

.owl-carousel .item .item-inner .item-body br {
    display: block;
    margin-top: 10px;
    content: "";
}

.owl-carousel .item .item-inner .item-body.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.owl-carousel .item .item-inner .read-more-btn {
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 14px;
    cursor: pointer;
    padding: 5px 0;
    text-decoration: none;
}

.owl-carousel .item .item-inner .read-more-btn:hover {
    color: var(--primary);
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    display: inline-block;
    margin: 0 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.owl-dot span {
    width: 20px !important;
    height: 3px !important;
}

.owl-dot.active {
    background: var(--body);
}

.owl-nav {
    position: absolute;
    top: 120px;
    width: 100%;
    transform: translateY(-50%);
    margin: 0 !important;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-prev, .owl-next {
    position: absolute;
    background: var(--white) !important;
    color: var(--body) !important;
    border: 1px solid var(--gray) !important;
    border-radius: 100% !important;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-prev:hover, .owl-next:hover {
    background: var(--gray) !important;
    color: var(--white) !important;
    border: 1px solid var(--gray) !important;
}

.owl-prev {
    left: -10px;
}

.owl-next {
    right: -10px;
}

.dropdown-item.active,
.dropdown-item:active,
.navbar-nav .dropdown-menu li a.active {
    color: var(--white);
    text-decoration: none;
    background-color: var(--primary);
}

.ccb-page-breaker .ccb-fields-list, 
.ccb-page-breaker .ccb-subtotals-block-summary {
    padding: 0 !important;
}
.ccb-vertical-layout {
    gap: 15px;
}
.ccb-button.success:hover {
    background: var(--secondary) !important;
}
.ccb-box-with-heading-checkbox-description 
.ccb-checkbox-label .label[data-v-1c031895] {
    font-size: 20px !important;
}
.ccb-field__title {
    font-size: 20px !important;
    margin-bottom: 15px !important;
}
.ccb-box-with-heading-checkbox-description label[data-v-1c031895]:before {
    background-color: var(--white) !important;
}
.ccb-box-with-heading-checkbox-description label[data-v-1c031895]:has(input[type=checkbox]:checked):before {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}
.ccb-summary-list__titles {
    background: var(--light) !important;
}

.get-a-quote .quote-form-home-mobile .submit-spinner {
    position: relative;
    width: 100%;
}
.services-intro-text {
    font-size: 20px;
    font-weight: 500;
}
.privacy-menu {
    gap: 15px;
}
.privacy-menu a {
    color: var(--body);
}

.grecaptcha-badge {
  visibility: hidden !important;
}

.wpcf7 form .wpcf7-response-output {
    margin: 10px 0 0;
    padding: 5px;
}

.ccb-formatted-text {
    font-size: 12px;
    line-height: 16px;
}

.recaptcha-text {
    font-size: 12px;
    line-height: 16px;
    color: gray;
}

/* Resposiveness */

@media (max-width: 1199.98px) {
.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-right: 0;
    padding: 30px 15px;
}
.navbar-collapse {
    background: var(--white);
    position: absolute;
    top: 72px;
    left: 50%;
    right: 50%;
    width: 100%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 3px var(--white);
    z-index: 9999;
}
.navbar-nav .dropdown-menu li a {
    font-size: 17px;
    line-height: 130%;
    font-weight: 500;
    padding: 10px 15px;
    color: var(--secondary);
    text-decoration: none;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 15px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        position: relative;
    }
    
    .navbar-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-visible {
        display: block !important;
    }
    
    .dropdown-item {
        padding: 7px 0;
        text-align: center;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-arrow {
        font-size: 13px;
        transition: transform 0.3s ease;
        position: absolute;
        right: -18px;
    }
    
    .dropdown-arrow.rotated {
        transform: rotate(180deg);
        font-size: 13px;
        transition: transform 0.3s ease;
        position: absolute;
        right: -18px;
    }
    
    .dropdown-submenu .dropdown-item {
        padding-left: 2.5rem;
        font-size: 0.9rem;
    }
    .navbar-nav .nav-link.has-dropdown.active::after {
        transform: rotate(180deg);
    }
}

@media (max-width: 991.98px) {
#mainMenu {
    background: #f8f9fa;
    margin-top: 1rem;
    border-radius: 0.375rem;
  }
  
.main-menu .nav {
    gap: 0.5rem;
  }
  
.main-menu .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #dee2e6;
  }
.hero-image {
    background: url('../../images/unimovingoc-truck.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    padding: 10px;
    border-radius: 20px;
    height: 400px;
}
}

@media (max-width: 767.98px) {
.owl-nav {
    display: none;
}
}

@media (max-width: 575.98px) {
body {
    line-height: 160%;
    color: var(--body);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 10px 0;
}
header {
    margin-bottom: 10px;
}
.navbar-brand img {
    height: 48px;
    width: auto;
}
.navbar-collapse {
    top: 60px;
}
main {
    gap: 30px;
}
h1, h2 {
    font-size: 36px;
    line-height: 130%;
    font-weight: 700;
    color: var(--secondary);
}
.page-content h4 {
margin: 20px 0 10px;
}
.cta .cta-heading,
.cta-2 .cta-heading,
.cta-3 .cta-heading {
    font-size: 36px;
    line-height: 130%;
    font-weight: 700;
    color: var(--white);
}
.btn-default {
    display: inline-flex;
}

header .navbar {
    padding: 0;
}
.toggler-line {
    height: 2px;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}
.hero {
    padding-top: 10px;
    padding-bottom: 0;
}
.hero-image {
    height: 200px;
    border-radius: 10px;
}
.hero-rating-container {
    font-size: 14px;
    font-weight: 600;
}
.heading-subheading {
    gap: 20px;
}
.hero h1 {
    margin: 0;
}
.get-a-quote {
    background: var(--white);
    padding: 0;
    gap: 15px;
}
.get-a-quote form .submit-btn {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: auto;
    min-width: 156px;
    margin: auto;
    padding: 0px 30px;
    gap: 5px;
    background: var(--primary);
    color: var(--white);
    line-height: 48px;
    border: none;
    border-radius: 100px;
}
.ti-widget.ti-goog.ti-disable-font .ti-widget-container {
    margin: 0px !important;    
}
.ti-widget.ti-goog .ti-col-1 .ti-reviews-container {
    margin: 0px !important;
}
.reviews {
    padding: 15px 0;
}
.reviews .row [class^="col-"]{
    margin-bottom: 15px;
}
.reviews .reviews-item-brand-google img {
    height: 42px;
}
.reviews .reviews-item-brand-facebook img {
    height: 24px;
}
.reviews .reviews-item-brand-thumbtack img {
    height: 20px;
}
.reviews-trustanalytica {
    width: 80px;
    margin: auto;
}
.reviews-label {
    font-size: 8px;
    letter-spacing: 0;
}
.reviews .reviews-stars img {
    gap: 0px;
    width: 12px;
    height: 12px;
}
.reviews .reviews-item-thumbtack .reviews-stars {
    justify-content: center;
}
.about {
    padding: 20px 0 12px;
}
.about-text {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.cta {
    background-position: 40% 0%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 700px;
    padding: 10px;
    border-radius: 10px;
}
.cta .subtitle {
    width: 100%;
}
.cta-feature-box {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    height: 280px;
    margin-left: auto;
}
.cta .hero-buttons,
.cta-2 .hero-buttons {
    justify-content: flex-start;
}
.service-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 450px;
    padding: 5px;
    border-radius: 10px;
}
.service-feature-box p {
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;
    margin: 0;
    width: 100%;
}
.service-feature-box p span {
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;
    color: var(--primary);
    margin: 0;
}
.testimonials {
    border-radius: 10px;
    border: 1.5px solid var(--body);
    padding: 50px 0 12px;
    margin-bottom: 10px;
    position: relative;
    border-radius: 10px;
}
.testimonial-item {
    background: var(--light);
    padding: 15px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}
.icon-quote {
    background: var(--white);
    position: absolute;
    padding: 5px 15px;
    top: -22px;
    width: 116px;
    left: 15px;
}
.testimonial-heading h5 {
    margin: 0;
}
.testimonial-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.testimonial-heading p,
.testimonial-rating p {
    color: var(--secondary);
    font-size: 15px;
    line-height: 160%;
    font-weight: 500;
    margin: 0;
}
.testimonial-item p {
    margin: 0;
}
.icon-quote {
    width: 76px;
}
.cta-2 {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%), url('../../images/cta-2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 15% 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 640px;
    padding: 25px 15px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.cta-2 .title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 120%;
}
.cta-2 .subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 150%;
}
.cta-2 .cta-right {
    justify-content: space-between;
    align-items: center;
}
.cta-2 .cta-left img {
    width: 100%;
    height: auto;
}
.blog-widget {
    padding: 0;
    margin: 0;
}

.cta-3 {
    background: var(--secondary);
    padding: 15px 0;
    border-radius: 10px 10px 0 0;
}
.cta-3 .description {
    color: var(--white);
}

.cta-3 .social {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}
.cta-3 .buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
}
.cta-3 .btn-secondary {
    width: 100%;
}
.footer-widgets {
    border-radius: 0 0 10px 10px;
}
footer .copyright {
    color: var(--body);
    font-size: 15px;
    line-height: 140%;
    padding: 15px 0;
    margin: 0;
}
.page-header {
    background: var(--light);
    border-radius: 10px;
    padding: 0 15px;
}
.blog-post .post-thumbnail img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
}
.single-post .post-title {
    font-size: 24px;
    line-height: 130%;
    font-weight: 600;
}
.single-post .post-thumbnail img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 10px;
}
#menu-areas-we-serve {
    column-count: 1;
}
.footer-widgets ul li a {
    font-size: 13px;
}
.footer-widget h4 {
    margin-bottom: 5px;
}
.footer-widget .menu-footer-menu-container {
    margin-bottom: 15px;
}
.page-template-default .post-thumbnail img {
    border-radius: 10px;
}
.areas-we-serve-map {
    border-radius: 10px;
}
.wp-caption-text {
    color: var(--secondary);
    font-size: 11px;
    text-align: center;
    line-height: 18px;
    margin-bottom: 10px;
}
.page-template-page-about .page-image {
    object-fit: cover;
    width: 100%;
    height: 200px;
    border-radius: 10px;
}
/* Quick Links */
.quick-links {
  position: fixed;
  bottom: 5px;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-radius: 100px;
  margin: 0 10px;
  justify-content: space-around;
  box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
}
.quick-links a {
    color: var(--body);
    padding: 15px;
    min-height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
}
.quick-links img {
    height: 20px;
    width: auto;
}
}

@media (min-width: 1200px) {
  .navbar-nav .dropdown:hover .nav-link.has-dropdown::after {
    transform: rotate(180deg);
  }
}

@media (min-width: 992px) {
  .main-menu .nav {
    gap: 2rem;
  }
}