:root {
    /* Font Families */
    --font-inter: "Inter", sans-serif;
    --font-lato: "Lato", sans-serif;
    --font-lora: "Lora", serif;
    --font-open-sans: "Open Sans", sans-serif;
    --font-poppins: "Poppins", sans-serif;
    --font-roboto: "Roboto", sans-serif;
    --font-ubuntu: "Ubuntu", sans-serif;

    /* Colors */
    --primary-color: #372568;
    --secondary-color: #000;
    --third-color: #81236f;
    --text-color: #333;
    --background-color: #fff;

    /* Font */
    --font-family: var(--font-inter);
    --font-size: 16px;
    --line-height: 1.3;
}

img{
   max-width: 100%; 
}

body,
h1,
h2,
h3,
p,
ul,
li,
figure,
figcaption,
div {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size);
    line-height: var(--line-height);
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-wrap: break-word;
}

main {
    min-height: 100vh;
}

/* Heading styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-poppins);
    margin-bottom: 15px;
}

/* Paragraph styles */
p {
    margin-bottom: 15px;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Lists */
ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    margin-bottom: 8px;
}

/**** Gap ****/
.gap-bottom-50 {
    margin-bottom: 50px;
}

/*** Title ***/
.title h2 {
    color: #000;
    font-size: 45px;
    font-weight: 650;
}

.title p {
    color: #333;
    font-size: 22px;
    font-weight: 500;
}

.sub-title h2 {
    color: #333;
    font-size: 35px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.sub-title p {
    color: #666;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
/**** Form ***/
input,
textarea,
select {
    font-size: 16px;
    font-size: var(--font-inter);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-family: var(--font-roboto);
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
}

.form-control:hover {
    border-color: #000;
}

.btn-submit {
    font-family: var(--font-roboto);
    font-size: 18px;
    font-weight: 450;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-submit:hover {
    text-decoration: underline;
    background-color: #000;
    border-color: #000;
    color: #fff;
}
/***** Header ****/
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-toggler {
    padding: 3px 10px;
}

.navbar-toggler:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.navbar-nav .nav-link {
    font-family: var(--font-poppins);
    font-size: 15.5px;
    font-weight: 500;
    color: #000;
}

.navbar-nav .nav-link:hover {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 0.5em;
}

.navbar-nav .active {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 0.5em;
}

.navbar-nav li {
    margin-bottom: 0;
}

.navbar-nav li:not(:last-child) {
    margin-right: 20px;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 10px;
}

.dropdown-menu li:not(:last-child) {
    margin-right: 0 !important;
    margin-bottom: 10px;
}

.dropdown-item {
    padding: 3px 10px 5px 10px;
    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    color: #000;
}

.dropdown-item:hover {
    color: #fff;
    background-color: var(--primary-color);
    text-decoration: none;
}

.dropdown-item.active {
    color: #fff;
    background-color: var(--primary-color);
    text-decoration: none;
}

.request-quote .nav-link {
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.35;
    border-radius: 10px;
    padding: 10px 30px !important;
    margin-left: 20px;
}

.request-quote .nav-link:hover {
    background-color: #000;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

.request-quote .nav-link.active {
    background-color: #000;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

/**** Hero Sliders ***/
.home-slider {
    margin-top: 70px;
    padding: 50px 0;
    background: #f5f5f5;
}

.carousel-wrapper {
    position: relative;
}

.owl-carousel .owl-nav {
    display: none;
}

.carousel-wrapper {
    position: relative;
}

.customNavigation a {
    position: absolute;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #181717;
    border-radius: 50%;
    opacity: 1;
    margin-top: auto;
    margin-bottom: auto;
    box-shadow: none;
    top: calc(40% - 20px);
    cursor: pointer;
    z-index: 100;
}

.customNavigation .prev {
    left: 5px;
}

.customNavigation .next {
    right: 5px;
}

.slider-item {
    margin: 0 50px;
}

.slider-item h2 {
    color: #000;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
}

.slider-item p {
    color: #333;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 450;
}

.slider-item .btn-contact-us {
    font-size: 15px;
    font-weight: 500;
    padding: 8px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.slider-item .btn:hover {
    text-decoration: underline;
    background-color: #000;
}

/**** Home Services ***/
.our-services {
    padding: 100px 0;
}

.service-item .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-item .card:hover {
    transform: scale(1.01);
}

.service-item .card-img-top {
    height: 250px;
    object-fit: cover;
    border-bottom: 5px solid #e80d79;
}

.service-item .card-title {
    font-size: 25px;
    font-weight: 550;
    color: #333;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.service-item a .card-title:hover {
    color: var(--primary-color);
}

.service-item .card-text {
    color: #555;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.service-item .btn-learn-more {
    padding: 5px 30px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.service-item .btn-learn-more:hover {
    color: #fff;
    background-color: var(--secondary-color);
    text-decoration: underline;
}

/***** Home About Us ******/
.home-about-us {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.home-about-us img {
    border-radius: 8px;
}

.home-about-us h2 {
    color: #000;
    font-size: 45px;
    font-weight: 650;
    line-height: 1.3;
    margin-bottom: 20px;
}

.home-about-us p {
    color: #333;
    font-family: var(--font-roboto);
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.home-about-us ul {
    color: #000;
    list-style: disc;
    font-size: 16px;
    padding-left: 20px;
    margin-bottom: 10px;
}

.home-about-us li {
    margin-bottom: 5px;
}

.home-about-us .btn-more-about {
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 40px;
    font-size: 16px;
    font-weight: 450;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.home-about-us .btn-more-about:hover {
    color: #fff;
    text-decoration: underline;
    background-color: var(--secondary-color);
}

/**** Home Brands ****/
.home-brands {
    background-color: #fff;
    padding: 100px 0;
}

.brand-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.brand-item img:hover {
    transform: scale(1.02);
}

/**** Home Posts ***/
.latest-posts {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.latest-post-item .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.latest-post-item .card:hover {
    transform: scale(1.01);
}

.latest-post-item .card-img-top {
    border-bottom: 1px solid #ddd;
}

.latest-post-item .card-body {
    padding: 20px 10px;
}

.latest-post-item .card-title {
    font-size: 25px;
    font-weight: 550;
    line-height: 1.3;
    color: #333;
    text-decoration: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.latest-post-item a .card-title:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.latest-post-item .card-text {
    color: #666;
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.latest-post-item .post-meta {
    font-size: 15px;
    font-weight: bold;
}

.latest-post-item .post-meta i {
    font-size: 15px;
    margin-right: 5px;
    color: #333;
}

.latest-post-item .post-meta a {
    text-decoration: none;
    color: var(--primary-color);
}

.latest-post-item .post-meta a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.btn-show-more {
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 40px;
    font-size: 16px;
    font-weight: 450;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-show-more:hover {
    color: #fff;
    text-decoration: underline;
    background-color: var(--secondary-color);
}

/* Breadcrumb */
.breadcrumb-section {
    background-color: #ececec85;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    margin-top: 80px;
}

.page-title h2 {
    font-family: var(--font-roboto);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.breadcrumb {
    margin-bottom: 0;
    font-family: var(--font-poppins);
    font-size: 17px;
}

.breadcrumb li {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: #252525;
}

/* Page Content */
.page-content h2 {
    color: #000;
    font-family: var(--font-roboto);
    font-size: 30px;
    font-weight: 550;
    line-height: 1.7;
    letter-spacing: 0.5px;
    position: relative;
}

.page-content h3 {
    color: #000;
    font-family: var(--font-roboto);
    font-size: 28px;
    font-weight: 550;
    line-height: 1.7;
    letter-spacing: 0.5px;
    position: relative;
}

.page-content p {
    color: var(--text-color);
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

/***** Post Page ****/
.post-page h1 {
    font-size: 45px;
    font-weight: 550;
    line-height: 1.3;
}

.post-page h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333;
}

.post-page p {
    font-family: var(--font-inter);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #333;
}

.post-page a {
    color: var(--primary-color);
}

.post-page ul,
.post-page ol {
    margin-bottom: 20px;
}

.post-page li {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

.post-page blockquote {
    font-style: italic;
    border-left: 4px solid #333;
    padding-left: 10px;
    margin: 20px 0;
}

/***** Service Page ***/
.service-content h1 {
    font-size: 45px;
    font-weight: 550;
    line-height: 1.3;
}

.service-content h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333;
}

.service-content p {
    font-family: var(--font-inter);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #333;
}

.service-content a {
    color: var(--primary-color);
}

.service-content ul,
.service-content ol {
    margin-bottom: 20px;
}

.service-content li {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

.service-content blockquote {
    font-style: italic;
    border-left: 4px solid #333;
    padding-left: 10px;
    margin: 20px 0;
}

/* Contact */
.contact-item {
    border: none;
    border-radius: 10px;
    padding: 20px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    transform: scale(1.01);
}

.contact-item .icon {
    font-size: 40px;
    color: var(--secondary-color);
}

.contact-item h3 {
    color: #000;
    font-family: var(--font-roboto);
    font-size: 22px;
    font-weight: 550;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item strong {
    font-size: 16px;
    line-height: 1.3;
}

.contact-form {
    padding: 10px 0;
}

.contact-form .form {
    border: none;
    border-radius: 10px;
    padding: 20px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.request-quote-form {
    border: none;
    border-radius: 10px;
    padding: 20px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/**** Our Work ***/
.filter-by-category .btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 5px 45px;
    margin: 5px;
    border-radius: 5px;
}

.filter-by-category .btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    text-underline-offset: 0.35em;
}

.filter-by-category .btn.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
}

.portfolio-item .card {
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-item .card:hover {
    transform: translateY(-5px);
}

.portfolio-item .card-title {
    color: #000;
    font-family: var(--font-roboto);
    font-size: 25px;
    font-weight: 550;
    line-height: 1.2;
    letter-spacing: 0.5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.portfolio-item .card-text {
    font-size: 17px;
    font-family: var(--font-inter);
    line-height: 1.2;
    color: #555;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.portfolio-item .btn {
    font-size: 16px;
    padding: 5px 25px;
    color: #fff;
    text-decoration: none;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
}

.portfolio-item .btn:hover {
    text-decoration: underline;
    background-color: #000;
    border-color: #000;
    color: #fff;
}
/**** Pagination ***/
.page-item {
    margin: 0 5px;
}

.page-link {
    padding: 5px 15px;
    text-decoration: none;
    color: var(--secondary-color);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.page-link:hover {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.page-item.disabled .page-link {
    color: #aaa;
    pointer-events: none;
}

.page-item.active .page-link {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

/**** Sidebar ****/
.sticky-top {
    top: 100px;
}

.sidebar-widget {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar-widget .card-header {
    background-color: #f5f5f5;
    border-bottom: none;
    color: #000;
    font-size: 18px;
    font-weight: bold;
}

.sidebar-widget .card-body {
    padding: 15px;
}

.sidebar-widget li {
    font-size: 16px;
    font-weight: 450;
    margin-bottom: 5px;
}

.sidebar-widget li a {
    color: var(--primary-color);
    text-decoration: none;
}

.sidebar-widget li a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.sidebar-widget a.badge {
    margin: 5px;
    padding: 8px;
    text-decoration: none;
    text-transform: capitalize;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.sidebar-widget a.badge:hover {
    text-decoration: underline;
}
/* Footer */
footer {
    color: #fff;
}

.widget {
    margin-bottom: 15px;
}

.widget h3 {
    font-family: var(--font-roboto);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.widget a {
    font-family: var(--font-poppins);
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget a:hover {
    text-decoration: underline;
    text-underline-offset: 0.5em;
}

.widget i {
    margin-right: 5px;
    font-size: 20px;
}

.copyright {
    font-family: var(--font-roboto);
    text-align: center;
}

.widget i.fas,
.widget i.fab,
.widget i.far {
    color: #ffffffaf;
}

.about-widget img {
    width: 150px;
}

.about-widget p {
    font-size: 17px;
    line-height: 1.3;
}
/***** Social Icons ****/
.social-media .btn-social-icon {
    width: 35px;
    height: 35px;
    padding: 0;
}

.social-media .btn {
    margin-right: 2px;
    margin-bottom: 10px;
}

.social-media .btn i {
    margin: 0;
    font-size: 20px;
    line-height: 1.7;
}

.social-media .btn-rounded {
    border-radius: 50px;
}

.social-media .btn-facebook {
    background: #3b579d;
    color: #ffffff;
}

.social-media .btn-youtube {
    background: #e52d27;
    color: #ffffff;
}

.social-media .btn-twitter {
    background: #2caae1;
    color: #ffffff;
}

.social-media .btn-dribbble {
    background: #ea4c89;
    color: #ffffff;
}

.social-media .btn-linkedin {
    background: #0177b5;
    color: #ffffff;
}

.social-media .btn-instagram {
    background: #dc4a38;
    color: #ffffff;
}

.social-media .btn-behance {
    background: #1769ff;
    color: #ffffff;
}

.social-media .btn-behance:hover,
.social-media .btn-behance:focus {
    background: #0057ff;
    color: #ffffff;
}

.social-media .btn-facebook:hover,
.social-media .btn-facebook:focus {
    background: #2d4278;
    color: #ffffff;
}

.social-media .btn-youtube:hover,
.social-media .btn-youtube:focus {
    background: #c21d17;
    color: #ffffff;
}

.social-media .btn-twitter:hover,
.social-media .btn-twitter:focus {
    background: #1b8dbf;
    color: #ffffff;
}

.social-media .btn-dribbble:hover,
.social-media .btn-dribbble:focus {
    background: #e51e6b;
    color: #ffffff;
}

.social-media .btn-linkedin:hover,
.social-media .btn-linkedin:focus {
    background: #015682;
    color: #ffffff;
}

.social-media .btn-instagram:hover,
.social-media .btn-instagram:focus {
    background: #bf3322;
    color: #ffffff;
}

/*** Contact Buttons ***/
  .contact-buttons {
            bottom: 2%;
            position: fixed;
            margin: 1em;
            left: 0;
        }

        .contact-button {
            display: block;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            color: white;
            margin: 20px auto 0;
            box-shadow: 0px 5px 11px -2px rgba(0, 0, 0, 0.18), 0px 4px 12px -7px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            -webkit-transition: all .1s ease-out;
            transition: all .1s ease-out;
            position: relative;
        }

        .contact-button>i {
            font-size: 38px;
            line-height: 60px;
            transition: all .2s ease-in-out;
            transition-delay: 2s;
        }

        .contact-button:active,
        .contact-button:focus,
        .contact-button:hover {
            box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
        }

        .contact-button:not(:last-child) {
            width: 60px;
            height: 60px;
            margin: 20px auto 0;
            opacity: 0;
        }

        .contact-button:not(:last-child)>i {
            font-size: 25px;
            line-height: 60px;
            transition: all .3s ease-in-out;
        }

        .contact-buttons:hover .contact-button:not(:last-child) {
            opacity: 1;
            width: 60px;
            height: 60px;
            margin: 15px auto 0;
        }

        .contact-button:nth-last-child(1) {
            -webkit-transition-delay: 25ms;
            transition-delay: 25ms;
        }

        .contact-button:not(:last-child):nth-last-child(2) {
            -webkit-transition-delay: 20ms;
            transition-delay: 20ms;
        }

        .contact-button:not(:last-child):nth-last-child(3) {
            -webkit-transition-delay: 40ms;
            transition-delay: 40ms;
        }

        .contact-button:not(:last-child):nth-last-child(4) {
            -webkit-transition-delay: 60ms;
            transition-delay: 60ms;
        }

        [tooltip]:before {
            font-family: 'Roboto';
            font-weight: 600;
            border-radius: 2px;
            background-color: #585858;
            color: #fff;
            content: attr(tooltip);
            font-size: 12px;
            visibility: hidden;
            opacity: 0;
            padding: 5px 7px;
            margin-left: 10px;
            position: absolute;
            left: 100%;
            bottom: 20%;
            white-space: nowrap;
        }

        [tooltip]:hover:before,
        [tooltip]:hover:after {
            visibility: visible;
            opacity: 1;
        }

        .contact-button.main-button {
            background: #2ab1ce;
        }

        .contact-button.whatsapp {
            background: #03A9F4;
        }

        .contact-button.call {
            background: #4CAF50;
        }

        .contact-button.email {
            background: #FFC107;
        }

        .contact-button.messenger {
            background: #0084FF;
        }

/* Tablets and iPads (Portrait) - Screen: 768px to 1024px */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .request-quote .nav-link {
        line-height: 1.45;
        padding: 5px 30px !important;
        margin-left: 0;
    }

    .navbar-nav .nav-link {
        padding: 7px 5px;
    }

    .dropdown-item {
        padding: 5px 5px 5px 5px;
    }

    .dropdown-menu li:not(:last-child) {
        margin-right: 0 !important;
        margin-bottom: 3px;
    }

    .slider-item h2 {
        font-size: 30px;
    }

    .slider-item {
        margin: 0 20px;
    }

    .customNavigation a {
        height: 20px;
        width: 20px;
    }

    .slider-item .btn-contact-us {
        padding: 5px 20px;
    }

    .title h2 {
        font-size: 40px;
    }

    .title p{
        font-size: 18px;
    }

    .service-item .card-title {
        font-size: 22px;
    }

    .home-about-us h2 {
        font-size: 30px;
    }

    .page-content h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .page-content h2 {
        font-size: 25px;
        line-height: 1.3;
    }

    .page-content h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .page-content blockquote {
        margin: 10px 0;
    }

    .post-page h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .post-page h2 {
        font-size: 25px;
        line-height: 1.3;
    }

    .post-page h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .post-page blockquote {
        margin: 10px 0;
    }

    .service-content h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .service-content h2 {
        font-size: 25px;
        line-height: 1.3;
    }

    .service-content h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .service-content blockquote {
        margin: 10px 0;
    }
}

/* Tablets and iPads (Landscape) - Screen: 768px to 1024px */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .request-quote .nav-link {
        line-height: 1.45;
        padding: 5px 30px !important;
        margin-left: 0;
    }

    .navbar-nav .nav-link {
        padding: 7px 5px;
    }

    .dropdown-item {
        padding: 5px 5px 5px 5px;
    }

    .dropdown-menu li:not(:last-child) {
        margin-right: 0 !important;
        margin-bottom: 3px;
    }

    .slider-item h2 {
        font-size: 30px;
    }

    .slider-item {
        margin: 0 20px;
    }

    .customNavigation a {
        height: 20px;
        width: 20px;
    }

    .slider-item .btn-contact-us {
        padding: 5px 20px;
    }

    .title h2 {
        font-size: 40px;
    }

    .title p{
        font-size: 18px;
    }

    .service-item .card-title {
        font-size: 22px;
    }

    .home-about-us h2 {
        font-size: 30px;
    }

    .page-content h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .page-content h2 {
        font-size: 25px;
        line-height: 1.3;
    }

    .page-content h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .page-content blockquote {
        margin: 10px 0;
    }

    .post-page h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .post-page h2 {
        font-size: 25px;
        line-height: 1.3;
    }

    .post-page h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .post-page blockquote {
        margin: 10px 0;
    }

    .service-content h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .service-content h2 {
        font-size: 25px;
        line-height: 1.3;
    }

    .service-content h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .service-content blockquote {
        margin: 10px 0;
    }
}

/* Low-Resolution Tablets, Mobiles (Landscape) - Screen: 481px to 767px */
@media screen and (min-width: 481px) and (max-width: 767px) {
    .request-quote .nav-link {
        line-height: 1.45;
        padding: 5px 30px !important;
        margin-left: 0;
    }

    .navbar-nav .nav-link {
        padding: 5px;
    }

    .dropdown-item {
        padding: 5px 5px 5px 5px;
    }

    .dropdown-menu li:not(:last-child) {
        margin-right: 0 !important;
        margin-bottom: 0;
    }

    .slider-item h2 {
        font-size: 25px;
    }

    .slider-item {
        margin: 0 20px;
    }

    .customNavigation a {
        height: 20px;
        width: 20px;
    }

    .slider-item .btn-contact-us {
        padding: 5px 20px;
    }

    .title h2 {
        font-size: 35px;
    }

    .title p{
        font-size: 18px;
    }

    .service-item .card-title {
        font-size: 20px;
    }

    .home-about-us h2 {
        font-size: 25px;
    }

    .page-content h1 {
        font-size: 25px;
        line-height: 1.3;
    }

    .page-content h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .page-content h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .page-content blockquote {
        margin: 10px 0;
    }

    .post-page h1 {
        font-size: 25px;
        line-height: 1.3;
    }

    .post-page h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .post-page h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .post-page blockquote {
        margin: 10px 0;
    }

    .service-content h1 {
        font-size: 25px;
        line-height: 1.3;
    }

    .service-content h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .service-content h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .service-content blockquote {
        margin: 10px 0;
    }
}

/* Most Smartphones and Mobiles (Portrait) - Screen: 320px to 479px */
@media screen and (min-width: 320px) and (max-width: 479px) {
    .request-quote .nav-link {
        line-height: 1.45;
        padding: 5px 30px !important;
        margin-left: 0;
    }

    .navbar-nav .nav-link {
        padding: 5px;
    }

    .dropdown-item {
        padding: 5px 5px 5px 5px;
    }

    .dropdown-menu li:not(:last-child) {
        margin-right: 0 !important;
        margin-bottom: 0;
    }

    .slider-item h2 {
        font-size: 25px;
    }

    .slider-item {
        margin: 0 20px;
    }

    .customNavigation a {
        height: 20px;
        width: 20px;
    }

    .slider-item .btn-contact-us {
        padding: 5px 20px;
    }

    .title h2 {
        font-size: 35px;
    }

    .title p{
        font-size: 18px;
    }

    .service-item .card-title {
        font-size: 20px;
    }

    .home-about-us h2 {
        font-size: 25px;
    }

    .page-content h1 {
        font-size: 25px;
        line-height: 1.3;
    }

    .page-content h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .page-content h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .page-content blockquote {
        margin: 10px 0;
    }

    .post-page h1 {
        font-size: 25px;
        line-height: 1.3;
    }

    .post-page h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .post-page h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .post-page blockquote {
        margin: 10px 0;
    }

    .service-content h1 {
        font-size: 25px;
        line-height: 1.3;
    }

    .service-content h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .service-content h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .service-content blockquote {
        margin: 10px 0;
    }
}
