@import url('https://fonts.googleapis.com/css2?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');

:root {
    --font: "Roboto", sans-serif;
    --color-1: #101C42;
    /*    --color-2: #0091FF;*/
    --color-2: #0091FF;
    /*    --color-3: #FF8E27;*/
    --color-3: #0091FF;
    --color-4: #FFFFFF;
    --color-5: #000000;
    --color-6: #f4f4f4;
    --border-1: #e6e6e6;
    --shadow-1: 0px 5px 10px rgba(0, 0, 0, 0.08);
}

/* Common css */

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-family: var(--font);
    font-weight: 400;
    color: var(--color-5);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
b {
    color: var(--color-1);
}

h1,
.h1,
h1 span,
.h1 span {
    font-size: 55px;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 700;
}

h1 span,
.h1 span {
    color: var(--color-2);
}

h2,
.h2,
h2 span,
.h2 span {
    line-height: 1.38;
    font-weight: 700;
    font-size: 40px
}

h2 span,
.h2 span {
    color: var(--color-2);
}

h3,
.h3,
h3 span,
.h3 span {
    font-size: 25px;
    font-weight: 700;
}

h3 span,
.h3 span {
    color: var(--color-2);
}

h4,
.h4,
h4 span,
.h4 span {
    font-size: 22px;
    font-weight: 600;
}

h4 span,
.h4 span {
    color: var(--color-2);
}

p,
span,
strong {
    color: var(--color-5);
    font-size: 16px;
    font-weight: 400;
}

.th-links-wrap {
    margin-top: 30px;
}

.th-links-wrap a {
    margin-right: 30px;
}

.th-links-wrap a:last-child {
    margin-right: 0px;
}

a,
a span {
    color: var(--color-1);
    font-size: 16px;
    font-weight: 600;
}

a span {
    position: relative;
    top: 1px;
    margin-left: 5px;
}

a:hover,
a:hover span {
    color: var(--color-3);
}

.th-btn {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 6px;
}

.th-btn span {
    margin-left: 10px;
}

.th-btn.th-btn-01 {
    border-color: var(--color-3);
    color: var(--color-4);
    background: var(--color-3);
}

.th-btn.th-btn-01 span {
    color: var(--color-4);
}

.th-btn.th-btn-01:hover,
.th-btn.th-btn-01:hover span {
    color: var(--color-4) !important;
    background: var(--color-1);
    border-color: var(--color-1);
}

.th-btn.th-btn-02 {
    border-color: var(--color-1);
    color: var(--color-4);
    background: var(--color-1);
}

.th-btn.th-btn-02 span {
    color: var(--color-4);
}

.th-btn.th-btn-02:hover,
.th-btn.th-btn-02:hover span {
    color: var(--color-4) !important;
    background: var(--color-3);
    border-color: var(--color-3);
}

.section-head h1 span,
.section-head h2 span,
.section-head h3 span,
.section-head h4 span,
.section-head h5 span,
.section-head h6 span {
    color: var(--color-2);
}

.section-head p {
    font-size: 16px;
    color: var(--color-5);
    line-height: 140%;
    font-weight: 500;
}

.th-section {
    padding: 80px 0px;
}

.section-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.hr-left-margin {
    margin-left: 3rem;
}

.bottom-inner-section {
    margin-top: 80px;
    background: #ff8e2738;
    padding: 40px;
}

.section-head .points-list {
    margin-bottom: 30px;
}

.section-head .points-list .list-wrap {
    padding: 20px;
    background: linear-gradient(to right, rgb(0 145 255 / 76%), transparent);
    margin-bottom: 10px;
    display: flex;
    align-items: start;
    border-radius: 10px;
}

.section-head .points-list .list-wrap .icon {
    margin-right: 12px;
    width: 24px;
}

.section-head .points-list .list-wrap .icon span {
    font-size: 24px;
    color: var(--color-4);
}

.section-head .points-list .list-wrap p {
    margin-bottom: 0px;
    font-size: 15px;
    font-weight: 500;
}

.section-head .points-list .list-wrap b {
    font-weight: 600;
    font-size: 18px;
}

.section-card {
    padding: 25px;
    border-radius: 8px;
    background: var(--color-4);
    height: calc(100% - 25px);
    margin-bottom: 25px;
}

.section-card p {
    color: var(--color-5);
}

.section-card .icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    box-shadow: var(--shadow-1);
    margin-bottom: 15px;
    border: 1px solid var(--border-1);
}

.th-section-gray {
    background: var(--color-6);
}

/* Common css end*/

/* -------------------------------------------------------------------------------- */

/* Header start */
.th-header {
    background: var(--color-4);
    box-shadow: var(--shadow-1);
    z-index: 999;
}

.th-header .th-announcement {
    background: var(--color-5);
}

.th-header .th-announcement .th-full-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.th-header .th-announcement .nav .nav-item .nav-link {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--color-4);
    font-size: 14px;
}

.th-header .th-announcement .nav .nav-item .nav-link span {
    color: var(--color-4);
    font-size: 14px;
}

.th-header .th-announcement .nav .nav-item .nav-link:hover span {
    color: var(--color-3);
}

.th-header .th-announcement .nav .nav-item .nav-link .icon span {
    color: var(--color-3);
    font-size: 14px;
}


.th-header .th-announcement .nav .nav-item p {
    font-weight: 500;
    margin-bottom: 0px;
    color: var(--color-4);
    font-size: 14px;
}

.th-header .th-announcement .nav .nav-item p span {
    font-weight: 700;
    color: var(--color-3);
    font-size: 14px;
}

.th-header .th-announcement .nav .nav-item .nav-link .icon {
    margin-right: 8px;
}

.th-header .th-full-brand .th-brand .th-brand-logo img {
    height: 56px;
    width: auto;
}

.th-full-brand {
    /*    padding: 0px;*/
    justify-content: space-around;
    margin-right: 0px;
    /*    margin-left: 135px;*/
    padding: 0px 200px 0px 176px;
}

.th-header .th-full-brand .th-nav-item .th-nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-5);
}

.th-header .th-full-brand .th-nav-item .th-nav-link:hover {
    color: var(--color-3);
}

.th-header .th-full-brand .th-nav-item .th-inner-menu {
    position: absolute;
    top: 100%;
    background: var(--color-4);
    box-shadow: var(--shadow-1);
    padding: 0px 5px;
    padding-bottom: 15px;
    padding-top: 5px;
    border-radius: 0px 0px 10px 8px;
    border: 1px solid var(--border-1);
    border-top: 4px solid var(--color-3);
    display: none;
    /*    margin-top: 12px;*/

}

.th-header .th-full-brand .th-nav-item .th-inner-menu .nav-link {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-5);
}

.th-header .th-full-brand .th-nav-item .th-inner-menu .nav-link:hover {
    color: var(--color-3);
}

.th-header .th-full-brand .th-nav-drop:hover .th-inner-menu {
    display: block;
}


.th-header .th-full-brand .th-nav-item .th-nav-link span {
    margin-left: 3px;
    position: relative;
    top: 1px;
    color: var(--color-5);
}

.th-header .th-full-brand .th-nav-item:hover .th-nav-link {
    color: var(--color-3);
}

.th-header .th-full-brand .th-nav-item .th-nav-link:hover span {
    color: var(--color-3);
}

.th-header .th-full-brand .th-main-menus {
    display: flex;
    align-items: center;
}

.th-header .th-full-brand .th-main-menus .th-btn {
    margin-left: 30px;
}

.th-header .th-full-brand .th-nav-item {
    /*    padding: 12px 0px;*/
    position: relative;
    margin-right: var(--th-size-25) !important;
}

.th-flex-nav .th-nav-item:last-child {
    margin-right: var(--th-size-0) !important;
    ;
}

.th-header .th-full-brand .th-nav-drop {
    padding: 25px 0px;
    z-index: 100;
}

.bottomlogo {
    text-align: center;
    position: absolute;
    bottom: -20px;
    width: 100%;
    z-index: -1;
}

.bottomlogo div {
    height: 48px;
    background: var(--color-4);
    display: inline-block;
    position: relative;
    width: 200px;
}

.bottomlogo div::before {
    left: -34px;
    transform: skewX(45deg);
}

.bottomlogo div::before,
.bottomlogo div::after {
    content: '';
    position: absolute;
    background: var(--color-4);
    width: 175px;
    height: 70px;
    top: 4px;
    z-index: -1;
    box-shadow: 0 8px 5px -6px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.bottomlogo div::after {
    right: -34px;
    transform: skewX(-45deg);
}

.bottomlogo p {
    top: 35px;
    position: absolute;
    font-weight: 600;
    color: var(--color-2);
    padding: 5px 10px;
    margin-bottom: 0px;
}

.th-brand {
    padding: 12px 0px 0 0;
    top: 0px;
    position: absolute;
    z-index: 999;
}

.th-header .th-full-brand .th-btn {
    position: absolute;
    right: 0;
}

.th-active {
    color: var(--color-2) !important;
}

/* Header end */

/* -------------------------------------------------------------------------------- */

/* Hero banner start */

.th-banner-section {
    margin-top: 122px;
}

.th-banner-section .th-full-banner,
.th-banner-section .th-full-banner .th-banner-wrap,
.th-banner-section .th-full-banner .th-banner-wrap .container,
.th-banner-section .th-full-banner .th-banner-wrap .container .row {
    height: 100% !important;
}

.th-banner-section .th-full-banner .th-banner-wrap .container .row {
    align-items: center;
    justify-content: center;
}

.th-banner-section .section-head h1 {
    margin-bottom: 30px;
    color: var(--color-4);
}

.th-banner-section .section-head p {
    margin-bottom: 40px;
    color: var(--color-4);
}

.th-banner-section .section-head .th-links-wrap a,
.th-banner-section .section-head .th-links-wrap a span {
    color: var(--color-4);
}

.th-banner-section .section-head .th-links-wrap a:hover,
.th-banner-section .section-head .th-links-wrap a:hover span {
    color: var(--color-3);
}

.th-banner-section .th-full-banner .th-banner-wrap {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    padding: 50px 0px;
}

.th-banner-img img {
    width: 100%;
    height: auto;
}

.th-banner-section .th-full-banner {
    position: relative;
}

.th-banner-section .th-full-banner ul.slick-dots {
    position: absolute;
    width: 100%;
    bottom: 45px;
    left: 0;
}

.th-banner-section .th-full-banner .slick-dots li button:before {
    font-size: 14px;
    color: var(--color-3);
    background: var(--color-3);
    width: 12px;
    height: 12px;
    content: "";
}

.th-banner-section .th-full-banner .slick-prev {
    left: 45px;
    z-index: 99;
}

.th-banner-section .th-full-banner .slick-next {
    right: 45px;
    z-index: 99;
}

.th-banner-section .th-full-banner .slick-prev,
.th-banner-section .th-full-banner .slick-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-5);
    opacity: 0.4;
}


.th-banner-section .th-full-banner .slick-prev:hover,
.th-banner-section .th-full-banner .slick-next:hover {
    opacity: 1;
    background: var(--color-4);
}

.th-banner-section .th-full-banner .slick-prev:before,
.th-banner-section .th-full-banner .slick-next:before {
    font-family: 'Font Awesome 5 Pro';
    font-size: 20px;
    opacity: 1;
    color: var(--color-4);
    font-weight: 900;
}

.th-banner-section .th-full-banner .slick-prev:hover:before,
.th-banner-section .th-full-banner .slick-next:hover:before {
    color: var(--color-3);
}

.th-banner-section .th-full-banner .slick-prev:before {
    content: '\f053';
}

.th-banner-section .th-full-banner .slick-next:before {
    content: '\f054';
}

.th-banner-section .th-full-banner {
    position: relative;
    margin: 0px;
}

.th-banner-section .th-full-banner .slick-list,
.th-banner-section .th-full-banner .slick-list .slick-track {
    height: 100%;
}

.desktop-home-slider {
    display: block;
}

.mobile-home-slider {
    display: none;
}

.tablet-home-slider {
    display: none !important;
}

.th-banner-section .section-head {
    background: rgb(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 10px;
    padding-bottom: 48px;
    /*box-shadow: 10px 10px 5px 0px rgba(0,145,255,0.4);
    box-shadow: rgba(0, 145, 255, 0.25) 0px 54px 55px, rgba(0, 145, 255, 0.12) 0px -12px 30px, rgba(0, 145, 255, 0.12) 0px 4px 6px, rgba(0, 145, 255, 0.17) 0px 12px 13px, rgba(0, 145, 255, 0.09) 0px -3px 5px;
    box-shadow: rgba(0, 145, 255, 0.48) 6px 2px 16px 0px, rgba(0, 145, 255, 0.8) -6px -2px 16px 0px;
    box-shadow: rgb(0, 145, 255) 0px 20px 30px -10px;
    box-shadow: rgba(0, 145, 255, 0.4) 5px 5px, rgba(0, 145, 255, 0.3) 10px 10px, rgba(0, 145, 255, 0.2) 15px 15px, rgba(0, 145, 255, 0.1) 20px 20px, rgba(c, 0.05) 25px 25px;*/
    /*    box-shadow: rgba(0, 145, 255, 0.4) 0px 5px, rgba(0, 145, 255, 0.3) 0px 10px, rgba(0, 145, 255, 0.2) 0px 15px, rgba(0, 145, 255, 0.1) 0px 20px, rgba(0, 145, 255, 0.05) 0px 25px;*/
}

@media screen and (max-width: 480px) {
    .mobile-home-slider {
        display: block !important;
    }

    .desktop-home-slider {
        display: none;
    }

    .tablet-home-slider {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .mobile-home-slider {
        display: none !important;
    }

    .desktop-home-slider {
        display: none;
    }

    .tablet-home-slider {
        display: block !important;
    }
}

/* Hero banner start */

/* -------------------------------------------------------------------------------- */

/* Footer start */
.th-footer {
    background: var(--color-5);
    color: var(--color-4);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.th-footer p {
    color: var(--color-4);
    font-size: 14px;
}

.th-footer .footer-about {
    padding-right: 50px;
    margin: 20px 0px;
}

.th-footer .th-brand-logo img {
    height: 60px;
    width: auto;
}

.th-footer .th-footer-social .th-flex-nav .th-nav-item .th-nav-link {
    width: var(--th-size-40);
    height: var(--th-size-40);
    border-radius: var(--th-size-per-50);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-4);
    color: var(--color-3) !important;
}

.th-footer .th-footer-social .th-flex-nav .th-nav-item .th-nav-link span {
    margin: 0px;
    color: var(--color-3) !important;
}

.th-footer .th-footer-social .th-flex-nav .th-nav-item .th-nav-link:hover {
    background: var(--color-3);
}

.th-footer .th-footer-social .th-flex-nav .th-nav-item .th-nav-link:hover span {
    color: var(--color-4) !important;
}

.th-footer .th-footer-titel span {
    font-weight: var(--th-weight-600);
    font-size: var(--th-size-16);
    line-height: var(--th-size-12);
    letter-spacing: 0.46px;
    text-transform: uppercase;
    color: var(--color-3);
}

.th-footer .th-footer-titel {
    margin-bottom: var(--th-size-20);
}

.th-footer .th-block-nav .th-nav-item .th-nav-link {
    font-weight: var(--th-weight-400);
    font-size: var(--th-size-14);
    line-height: var(--th-size-per-100);
    letter-spacing: 0.04em;
    color: var(--color-4);
}

.th-footer .th-block-nav .th-nav-item .th-nav-link:hover {
    color: var(--color-3);
}

.th-footer .th-block-nav .th-nav-item {
    margin-bottom: var(--th-size-8);
}

.th-footer .list-wrap {
    display: flex;
    align-items: start;
}

.th-footer .list-wrap .icon {
    margin-right: 10px;
}

.th-footer .list-wrap .icon span {
    color: var(--color-3);
}

.th-footer .list-wrap p {
    margin-bottom: 0px;
}

.th-footer .list-wrap .link .nav-link:hover {
    color: var(--color-3);
}

.th-copyright {
    border-top: 1px solid var(--border-1);
    padding: 10px 0px;
}

.th-copyright p a {
    color: var(--color-4);
}

.th-copyright p a:hover {
    color: var(--color-3);
}

/* Footer end */

/* -------------------------------------------------------------------------------- */

/* When is ProServe start */



.why-ProServe-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.why-ProServe-section .section-head h2,
.why-ProServe-section .section-head p {
    color: var(--color-5);
}

.why-ProServe-section .section-head {
    margin-bottom: 50px;
}

.why-ProServe-section .section-card {
    text-align: center;
    background: var(--color-4);
}

.why-ProServe-section .section-card .icon {
    background: var(--color-4);
}

.why-ProServe-section .section-card h3 span {
    color: var(--color-1);
}

.why-ProServe-section .section-card p {
    color: var(--color-5);
}

.why-ProServe-section .section-card:hover {

    background: rgb(255 255 255 / 40%);
}

.why-ProServe-section .section-card:hover h3 span {
    color: var(--color-1);
}

.why-ProServe-section .section-card:hover p {
    color: var(--color-4);
}

.why-ProServe-section .section-card h3 span a {
    font-size: 25px !important;
    font-weight: 700 !important;
    color: var(--color-1) !important;
}

/* When is ProServe end */

/* -------------------------------------------------------------------------------- */



/*Support portal start*/
/*.th-login {
    padding: 50px 0px;
}*/
.th-login .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.th-login .card h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.th-login .card p {
    font-size: 0.9rem;
    color: #6c757d;
}

.th-login .card form .form-control {
    border-radius: 10px;
    padding: 12.8px 15px;
    background: #fdfdfd;
    height: calc(2em + .75rem + 2px);
    border: 1px solid var(--color-1);
    color: #000;
}

.th-login .card form .form-control:focus {
    border: 3px solid var(--color-2);
}

.th-login .card form .btn-primary {
    background-color: #f39c12;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.th-login .card form .btn-outline-secondary {
    border-radius: 10px;
}

.th-login .card form .text-decoration-none {
    color: var(--color-1);
}

.th-login .card form .text-decoration-none:hover {
    text-decoration: underline;
    color: var(--color-3);
}

.th-login .card form .btn img {
    margin-right: 5px;
}

.th-login .card .text-center a {
    color: var(--color-1);
    font-weight: 600;
}

.th-login .card .text-center a:hover {
    text-decoration: underline;
    color: var(--color-3);
}

.min-vh {
    min-height: 90vh;
}

.th-login .field-icon {
    float: right;
    margin-right: 10px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.th-login h4 span {
    color: var(--color-3);
}

.th-dashboard {
    padding: var(--th-size-40);
}

select.th-form-control-fill {
    background-image:
        linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%),
        linear-gradient(to right, #ccc, #ccc);
    background-position:
        calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px),
        calc(100% - 2.5em) 0.5em;
    background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
    background-repeat: no-repeat;
}

select.th-form-control-fill:focus {
    background-image:
        linear-gradient(45deg, green 50%, transparent 50%),
        linear-gradient(135deg, transparent 50%, green 50%),
        linear-gradient(to right, #ccc, #ccc);
    background-position:
        calc(100% - 15px) 1em,
        calc(100% - 20px) 1em,
        calc(100% - 2.5em) 0.5em;
    background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
    background-repeat: no-repeat;
    border-color: green;
    outline: 0;
}

.tiket-chat-wrap {
    border: 1px solid #dee2e6 !important;
    border-bottom: 0px;
    background-color: #f8f9fa !important;
}

.tiket-chat-wrap .user-detail,
.tiket-chat-wrap .user-chat-wrap {
    height: 100%;
}

.tiket-chat-wrap .user-detail {
    padding: 15px !important;
    border-right: 1px solid #dee2e6 !important;
    border-bottom: 1px solid #dee2e6 !important;
}

.tiket-chat-wrap .user-detail .col-md-3 {
    border-right: 1px solid #dee2e6 !important;
}

.tiket-chat-wrap .user-detail .label-success,
.tiket-chat-wrap .user-detail .text-muted {
    display: block;
}

.tiket-chat-wrap .user-detail .label-success {
    font-weight: 600;
}

.tiket-chat-wrap .user-detail:nth-child(odd) {
    background: #26394b3b !important;
}

.tiket-chat-wrap .user-detail:nth-child(even) {
    background: #17a2b83d !important;
}

.replybtn {
    display: flex;
    justify-content: flex-end;
}

.replybtn .btn-reply {
    background: var(--color-2);
    border-color: var(--color-2);
    color: #fff;
}

.replybtn .btn-reply:hover,
.replybtn .btn-reply:focus {
    background: #fff;
    border-color: var(--color-2);
    color: var(--color-2);
}

/*Support portal end*/

/*forgot password pop up start*/
.th-auth-popup {
    border-radius: var(--th-size-10);
    border: var(--th-size-2) solid var(--th-white-border-8);
    position: relative;
    margin-top: 70px;
}

.th-auth-popup .modal-body {
    padding: 20px;
    padding-top: 50px;
}

.th-auth-popup .modal-body .th-auth-head {
    margin-bottom: 20px;
}

.th-auth-popup .modal-body .th-auth-head h4 {
    font-size: 24px;
}

.th-auth-popup .modal-body .th-auth-head p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: var(--th-size-18);
    line-height: var(--th-size-20);
    font-family: var(--th-font-medium);
}

.th-auth-popup .modal-body .th-form-wrap {
    margin-bottom: var(--th-size-15);
}

.th-form-wrap {
    position: relative;
}

.form-label {
    font-weight: 600;
}

.required {
    color: #FF0000;
    font-weight: bold;
}

.th-auth-popup .modal-body .th-form a {
    margin: var(--th-size-0);
    color: var(--color-1);
    font-size: var(--th-size-16);
    line-height: var(--th-size-26);
    font-family: var(--th-font-medium);
}

.th-auth-popup .modal-body .th-form a:hover {
    color: var(--color-3);
}

.th-auth-popup .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    border: none;
    box-shadow: none;
    outline: none;
}

.th-auth-popup .close-btn span {
    color: #000;
}

.th-auth-popup .close-btn:hover span {
    color: var(--color-2);
}

.th-auth {
    width: 100%;
    height: 100vh;
}

.th-auth .th-brand a,
.th-auth .th-brand a img {
    margin: 0px auto;
    margin-bottom: 20px;
    display: block;
}



.th-auth .th-card-body h3 {
    font-size: var(--th-size-30);
    line-height: var(--th-size-35);
    font-family: var(--th-font-semibold);
    margin-bottom: 0px;
}

.th-auth .th-card-body h3 span {
    color: var(--th-primary);
}


.th-auth .th-card-body .th-form a {
    margin: var(--th-size-0);
    color: var(--th-secondary);
    font-size: var(--th-size-16);
    line-height: var(--th-size-26);
    font-family: var(--th-font-medium);
}

.th-auth .th-card-body .th-form a:hover {
    color: var(--th-primary);
}

.modal .error {
    color: red !important;
    margin-top: 5px;
    font-weight: 600;
}

/* auth end */


.th-auth-popup {
    border-radius: var(--th-size-10);
    border: var(--th-size-2) solid var(--th-white-border-8);
    position: relative;
    margin-top: 70px;
}

.th-auth-popup .modal-body .th-brand img {
    height: 28px;
    width: auto;
}

.th-auth-popup .modal-body .th-brand {
    margin-bottom: 20px;
}

.th-auth-popup .modal-body .th-auth-head {
    margin-bottom: 20px;
}

.th-auth-popup .modal-body .th-auth-head h4 {
    font-size: 24px;
}

.th-auth-popup .modal-body .th-auth-otp-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.th-auth-popup .modal-body .th-auth-otp-wrap .th-form-control {
    width: 53.6px;
    height: 53.6px;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.th-auth-popup .modal-body .th-auth-otp-wrap .th-form-wrap {
    margin-right: 15px;
}

.th-auth-popup .modal-body .th-auth-otp-wrap .th-form-wrap:last-child {
    margin-right: 0px;
}

.th-form-wrap .th-password-icon {
    position: absolute;
    bottom: 10px;
    right: 17px;
    cursor: pointer;
}

.th-form-wrap .th-password-icon span {
    font-size: 18px;
}

.th-form-wrap .th-password-icon:hover span {
    color: var(--th-primary);
}

/*view pop up*/
.backgrount-iner.detail-wrap {
    padding-bottom: 30px;
}

.backgrount-iner {
    height: calc(100% - 1rem) !important;
    padding: 15px;
    background-color: white;
}

.form-group .box-wrap {
    border: 1px solid #dee2e6;
}

.form-group .box-wrap .box-item {
    padding: 15px !important;
}

.br {
    border-right: 1px solid #dee2e6 !important;
}

.supportViewModal .modal-dialog {
    transform: none;
    /* width: 751px; */
    /* margin: auto; */
    max-width: 850px;
}

.supportTicketModal .modal-dialog,
.supportEditModal .modal-dialog,
.supportReplyModal .modal-dialog {
    max-width: 850px;
}

/*forgot password pop up end*/

/*reset password page start*/
.th-auth .th-card {
    border-radius: var(--th-size-10);
    border: var(--th-size-2) solid rgb(225 225 225 / 80%);
    height: calc(var(--th-size-per-100) - var(--th-size-20));
    margin-bottom: var(--th-size-20);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.th-auth .th-card .th-card-body {
    padding: var(--th-size-40) var(--th-size-24);
    background: var(--th-white);
}

.th-auth .th-card-body .auth-head {
    margin-bottom: 15px;
}

.th-auth .th-card-body .th-form-wrap {
    margin-bottom: var(--th-size-15);
}

.required {
    color: #FF0000;
    font-weight: bold;
}

.th-auth .form-label {
    font-weight: 600;
}

.th-form-control-fill {
    height: calc(2.0em + .75rem + 2px);
    width: 100%;
    font-size: 16px;
    color: var(--color-5);
    line-height: 30px;
    font-weight: 400;
    padding: 7.8px 15px;
    background-color: #fdfdfd;
    border: 1px solid var(--color-1) !important;
    border-radius: 10px;
}

.th-form-control-fill:focus {
    border: 3px solid var(--color-2) !important;
}

.th-auth #frm_reset_password .th-form-wrap .th-password-icon {
    position: absolute;
    bottom: 9px;
    right: 45px;
    cursor: pointer;
}

.th-auth #frm_reset_password .th-form-wrap .th-password-icon span {
    font-size: 18px;
    position: relative;
    left: 35px;
    top: 0px;
}

/*reset password page end*/

/*breadcrumb common banner star*/
.breadcrumb-area {
    background-size: cover;
    position: relative;
    min-height: 350px;
    background-repeat: no-repeat;
    background-color: #000;
    background-position: center;
    margin-top: 122px;
}

.breadcrumb-title h2 {
    font-size: var(--th-size-60);
    color: var(--color-2);
    letter-spacing: var(--th-size-1);
    /*    margin-top: var(--th-size-100);*/
}

.breadcrumb-title span {
    font-size: var(--th-size-60);
    margin-bottom: var(--th-size-40);
    line-height: var(--th-size-40);
    color: var(--color-2);
    letter-spacing: var(--th-size-1);
    /*    margin-top: var(--th-size-100);*/
}

.breadcrumb-title p {
    color: var(--color-4);
}

.fix {
    overflow: hidden;
}

.pb-120 {
    padding-bottom: var(--th-size-120);
}

.pt-120 {
    padding-top: var(--th-size-120);
}

.mt-30 {
    margin-top: var(--th-size-30);
}

.mb-30 {
    margin-bottom: var(--th-size-30);
}

.pl-30 {
    padding-left: var(--th-size-30);
}

.breadcrumb-title h2,
.breadcrumb-title h2 span {
    line-height: 110%;
}

/*common banner end*/

/*contact us page start*/
.pb-30 {
    padding-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.contact-info .single-cta {
    float: left;
}

.single-cta {
    border-bottom: 1px solid #ccc;
    float: left;
    width: 100%;
    line-height: var(--th-size-28);
}

.f-cta-icon {
    float: left;
    margin-right: var(--th-size-30);
}

.single-cta a {
    color: var(--color-5);
    font-weight: 500;
}

.f-cta-icon span {
    display: inline-block;
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 78px;
    background: var(--color-1);
    border-radius: 50%;
    color: var(--color-3);
    font-size: 28px;
}

.single-cta h5 {
    font-size: var(--th-size-20);
    margin-bottom: var(--th-size-15) !important;
}

.single-cta p {
    margin-bottom: var(--th-size-0);
    color: var(--color-5);
    font-weight: 500;
}

.contact-bg02 {
    padding: 100px;
    text-align: center;
}

.section-title p {
    margin-top: var(--th-size-10);
    width: 60%;
    display: inline-block;
    color: #fff;
}

.contact-field {
    padding-right: var(--th-size-0);
}

.contact-field input {
    width: 100%;
    padding: 12.8px 15px;
    transition: .3s;
    border-radius: 10px;
    border: 1px solid var(--color-1);
    height: calc(2.0em + .75rem + 2px);
    background: #fdfdfd;
}

.contact-field input:focus {
    border: 3px solid var(--color-2);
}

.contact-field textarea {
    width: 100%;
    padding: var(--th-size-15);
    transition: .3s;
    height: var(--th-size-115);
    border: 1px solid var(--color-1);
    background: #fdfdfd;
    padding: 12.8px 15px;
    border-radius: 10px;
}

.contact-field textarea:focus {
    border: 3px solid var(--color-2);
}

.contact-area .section-header h3 {
    padding-left: var(--th-size-0);
    padding-right: var(--th-size-0);
}

.padding-large {
    padding-top: 4em;
    padding-bottom: 4em;
}

.padding-medium {
    padding: 2em 45px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
}

#subscribe .container {
    background: var(--color-3);
}

#subscribe p {
    font-weight: 500;
    color: var(--color-4);
    margin-bottom: var(--th-size-0);
}

.subscription-form .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    align-content: center;
    justify-content: flex-end;
}

.subscription-form .th-btn.th-btn-02:hover,
.subscription-form .th-btn.th-btn-02:hover span {
    color: var(--color-4) !important;
    background: var(--color-2);
    border-color: var(--color-2);
}

.error {
    color: red !important;
}

.contact-map .google-map.google-map__contact iframe {
    width: 100% !important;
    height: 350px !important;
    border: 0;
    display: block;
}

/*contact us page end*/

/*blog page start*/
.blog_container {
    width: 100%;
    display: flex;
    /*    align-items: top;*/
    background-color: var(--color-4);
}

.blog_content {
    padding: 2rem;
    width: 100%;
}

.blog_content .load-btn {
    display: block;
    width: 150px;
    margin: 5vh auto;
}

.left_content {
    display: flex;
    /*    align-items: top;*/
    justify-content: space-between;
    flex-wrap: wrap;
    column-count: 2;
    gap: 20px 10px;
    flex: 0 0 70%;
}

.right_content {
    flex: 0 0 30%;
    background: var(--color-6);
    border-radius: 20px;
}

.blog_card {
    width: 100%;
    flex: 0 0 48.5%;
    overflow: hidden;
    background-color: var(--color-6);
}

.th-blog .card {
    border: 0;
    background: var(--color-6);
    border-radius: 1.25rem;
}


.th-blog .card ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.th-blog .card ul li {
    text-transform: uppercase;
    background: var(--clr-tag);
    color: #282828;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.375rem 0.625rem;
    border-radius: 0.188rem;
}

.th-blog .card ul .branding {
    color: #704a31;
}

.th-blog .card ul .packaging {
    color: #1e3938;
}

.th-blog .card ul .marketing {
    color: #4d1637;
}

.th-blog .card .content {
    padding: 15px;
    padding-right: calc(57px + 15px);
}

.th-blog .card .content h3 {
    text-transform: capitalize;
}

.th-blog .card .content p {
    margin: 0.625rem 1rem 1.25rem;
    color: #565656;
    margin-left: 0px;
    margin-right: 0px;
}

.th-blog .card-inner {
    position: relative;
    width: inherit;
    height: 18.75rem;
    background: var(--clr);
    border-radius: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    overflow: hidden;
}

.th-blog .card-inner .box {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
}

.th-blog .card-inner .box .imgBox {
    position: absolute;
    inset: 0;
}

.th-blog .card-inner .box .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.th-blog .card-inner .box .imgBox img:hover {
    transform: scale(1.2)
}

.th-blog .content .icon {
    position: absolute;
    bottom: -0.375rem;
    right: -0.375rem;
    width: 4rem;
    height: 4rem;
    background: var(--color-4);
    border-top-left-radius: 30%;
}

.th-blog .content .icon:hover .iconBox {
    transform: scale(1.1);
}

.th-blog .content .icon::before {
    position: absolute;
    content: "";
    bottom: 0.375rem;
    left: -1.25rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
}

.th-blog .content .icon::after {
    position: absolute;
    content: "";
    top: -1.25rem;
    right: 0.375rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
}

.th-blog .content .icon .iconBox {
    position: absolute;
    inset: 0.625rem;
    background: var(--color-3);
    border-radius: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.th-blog .content .icon .iconBox:hover {
    background: var(--color-1);
}

.th-blog .content .icon .iconBox span {
    color: #fff;
    font-size: 1.5rem;
    transform: rotate(45deg);
    top: 0px;
    left: -2px;
}

.page-item:last-child .page-link {
    color: var(--color-1);
    border-color: var(--color-3);
}

.pagination .page-item {
    margin-right: var(--th-size-15);
}

.pagination .page-item .page-link {
    border-radius: 50%;
    border-color: var(--color-1);
    color: var(--color-1);
    font-size: 18px;
    font-weight: 600;
    width: 40px;
    padding: 0px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

.singlepage .pagination .page-item .page-link {
    border-color: var(--color-1);
    color: var(--color-1);
    font-size: 18px;
    font-weight: 600;
    width: 125px;
    padding: 0px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    border: none;
}

.singlepage .pagination {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.singlepage p {
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 500;
}

.singlepage .pagination .page-item .page-link:hover {
    border-color: var(--color-1);
    background-color: var(--color-1);
    color: var(--color-4);
}

.singlepage .pagination .page-item .page-link p:hover {
    color: var(--color-4);
}

.pagination .page-item .page-link.active {
    background-color: var(--color-3);
    border-color: var(--color-3);
}

.pagination .page-item .page-link.active:hover {
    border-color: var(--color-1);
    background-color: var(--color-1);
}

.pagination .page-item .page-link:hover {
    border-color: var(--color-1);
    background-color: var(--color-1);
    color: var(--color-4);
}

.pagination .page-link span {
    margin-left: 0px;
    font-weight: 500;
}

.singlepage .pagination .page-link .fa-long-arrow-right {
    margin-left: 15px;
    margin-right: 0px;
    font-size: larger;
}

.singlepage .pagination .page-link .fa-long-arrow-left {
    margin-left: 0px;
    margin-right: 15px;
    font-size: larger;
}

.entry-date:nth-child(2) {
    position: absolute;
    left: -1px;
    top: 20px;
    -webkit-transform: translateX(0) rotate(180deg);
    transform: translateX(0) rotate(180deg);
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--color-4);
    writing-mode: vertical-rl;
    z-index: 2;
    padding: clamp(0.875rem, 0.7308rem + 0.641vw, 1.5rem) clamp(0.4375rem, 0.3942rem + 0.1923vw, 0.625rem);
    letter-spacing: var(--AD-Letter-Spacing);
    font-size: clamp(0.75rem, 0.7212rem + 0.1282vw, 0.875rem);
    text-transform: uppercase;
    border-radius: var(--th-size-10) 0px 0px var(--th-size-10);
    font-weight: 600;
}

.entry-date:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 20px;
    top: -10px;
    right: -10px;
    z-index: 0;
    -webkit-box-shadow: inset 10px 10px 0px 0px var(--color-4);
    box-shadow: inset 10px 10px 0px 0px var(--color-4);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.entry-date:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 20px;
    bottom: -10px;
    right: -10px;
    z-index: 0;
    -webkit-box-shadow: inset 10px -10px 0px 0px var(--color-4);
    box-shadow: inset 10px -10px 0px 0px var(--color-4);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

/*BLOG RIGHT CONTENT*/
.columns {
    display: block;
    margin-bottom: 20px;
    background-color: var(--white);
}

/*.columns div{
    padding:1rem;
}*/

.columns section p {
    font-size: 1em;
    font-weight: 600;
}

.columns .blogdate {
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    color: var(--color-3);
}

.columns .title {
    background-color: var(--color-3);
    color: var(--color-4);
    padding: 1rem;
    text-align: left;
    width: 100%;
    display: block;
    transition: 0.2s;
    border-left: 0px solid var(--color-1);
    font-size: 16px;
    font-weight: 500;
}

.columns:hover>.title {
    border-left: 5px solid var(--color-1);
}

.columns .title a {
    float: right;
}

.columns .title a:hover {
    color: var(--dark);
}

.columns .title .fa {
    color: var(--color-1);
}

.columns .title .fa:hover {
    color: var(--color-4);
}

.search form {
    width: 100%;
    display: flex;
    align-items: center;
}

.search fieldset:nth-child(2) {
    width: 10%;
}

.search form input {
    border: 1px solid var(--color-1);
    padding: 1rem;
    width: 100%;
    font-weight: 600;
    color: var(--color-5);
}

.search .btn1 {
    border: 1px solid var(--yellow);
    border-radius: 0;
}

.right_content .th-btn.th-btn-01 {
    border-color: var(--color-3);
    color: var(--color-4);
    background: var(--color-3);
    border-radius: 0;
    padding: 16px;
}

.right_content .th-btn span {
    margin-left: 0px;
}

/*CATEGORIES*/
.categories a {
    display: inline-block;
    color: var(--color-1);
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    display: flex;
    /*    flex-wrap: wrap;*/
    align-content: center;
    align-items: center;

}

.categories a:hover {
    color: var(--color-3);
}


.th-blog .categories .content .icon .iconBox {
    position: absolute;
    inset: 0.625rem;
    background: var(--color-3);
    border-radius: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    margin-bottom: 10px;
}

.th-blog .categories .content .icon .iconBox:hover {
    background: var(--color-1);
}

.th-blog .categories .content .icon .iconBox span {
    color: #fff;
    font-size: 1.5rem;
    transform: rotate(45deg);
    top: 0px;
    left: -2px;
}

.th-blog .categories .content .icon {
    position: absolute;
    bottom: unset;
    right: unset;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border-top-left-radius: 30%;
}

.th-blog .categories .content .icon::before {
    position: absolute;
    content: "";
    bottom: 0.375rem;
    left: -1.25rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem transparent;
}

.th-blog .categories .content .icon::after {
    position: absolute;
    content: "";
    top: -1.25rem;
    right: 0.375rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem transparent;
}

.th-blog .categories .nav-item {
    display: block;
}

.categories .icon {
    background: var(--color-3);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin-right: 15px;
    border-radius: 15%;
}

.categories .icon span {
    color: var(--color-4);
    font-size: 1.3rem;
}

.categories ul li a:hover .icon {
    background-color: var(--color-1);
}

.postlist {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.postlist .postthumb img {
    width: 110px;
    height: auto;
    border-radius: var(--th-size-10);
    object-fit: cover;
}

.postlist .postthumb {
    margin-right: 15px;
}

.postlist .postdetails span {
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    color: var(--color-3);
    margin-left: 0px;
}

.postlist .postdetails h6 {
    font-size: 17px;
    font-weight: 600;
    line-height: normal;
    color: var(--color-1);
}

.posts a:hover .postlist .postdetails h6 {
    color: var(--color-3);
}

.categories ul li a,
.posts a {
    margin: 0px;
    padding: 0px;
}

.categories ul li,
.posts ul li {
    margin: 0px;
    padding: 0px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bs-border-color-translucent);
}

.categories ul li:last-child,
.posts ul li:last-child {
    border-bottom: none;
}

/*POSTS*/
/*.posts a{
    display:flex;
    align-items:flex-start;
    margin:0.4rem -30px;
    flex-direction: column;
}*/


.posts a:hover>p {
    color: var(--black);
}

.singleblogdetail {
    border-bottom: 2px solid var(--color-1);
}

.singleblogdetail:last-child {
    border-bottom: 0px;
}

.singleblogdetail img {
    width: 100px;
    margin: 10px 0px;
    height: 80px;
    border-radius: 10px;
}

/*COMMENTS*/
.comments {
    position: relative;
    overflow: hidden;
    max-height: 60vh;
}

.marquee2 {
    position: relative;
    overflow: hidden;
    line-height: 1.6em;
}

.marquee2 p {
    border-bottom: 1px solid rgba(1, 1, 1, 0.1);
    position: relative;
    padding: 0.4rem 0;
}

.marquee2 p:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Pro";
    margin-right: 5px;
    position: relative;
    top: -5px;
}

@keyframes marquee1 {
    0% {
        top: 10%;
    }

    100% {
        top: -100%;
    }
}

.th-blog .card .content a h3 {
    line-height: 120%;
}

.th-blog .card .content a:hover h3 {
    color: var(--color-3);
}

/*blog page end*/

/*Single blog page start*/
.blogdetail {
    padding: 0 20px;
}

.blogdetail p {
    font-weight: 400;
}

.blogdetail ol {
    list-style-type: none;
}

.blogdetail ol li span {
    margin-right: 10px;
    top: 5px;
    position: relative;
}

.blogdetail .list {
    padding: 10px;
}

.blogdetail .list li {
    display: flex;
    margin-bottom: var(--th-size-10);
}

.blogdetail .list span {
    color: var(--color-3);
}

.blogdetail img {
    border-radius: 20px;
}

/*Single blog page end*/

/*Service page start*/
.services-page .section-card {
    border: 1px solid var(--border-1);
    box-shadow: var(--shadow-1);
    border-radius: 10px;
    padding: 25px;
}

.services-page .section-card h3 span a {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-1);
}

.services-page .section-card h3 span a:hover {
    color: var(--color-3);
}

/*Service page end*/

/*story page start*/
.story-page .section-head b {
    font-size: 20px;
    margin-bottom: 10px;
    display: inline-block;
}

.story-page .section-card {
    border: 1px solid var(--border-1);
    box-shadow: var(--shadow-1);
    border-radius: 10px;
    padding: 25px;
}

.story-page .section-card h3 span a {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-1);
}

.story-page .section-card h3 span a:hover {
    color: var(--color-3);
}

.story-page .about-story .section-card {
    border: none;
    box-shadow: none;
    padding: var(--th-size-15);
}

.th-symbolism {
    padding: 40px 0px;
}

.th-symbolism img {
    width: 60%;
}

.th-evolution {
    padding: 40px 0px;
}

.th-evolution img {
    width: 80%;
}

/*story page end*/

/*mobile header start*/
.mobilemenu {
    display: none;
}

.mobilemenu .th-count {
    position: relative;
    top: var(--th-size-min-12);
    right: var(--th-size-min-2);
    color: var(--th-primary);
}

.mobilemenu .logo img {
    width: 90%;
}

.top-bar {
    font-family: var(--th-text);
}

.top-bar a {
    text-decoration: none;
    font-size: var(--th-size-14);
    font-weight: var(--th-weight-500);
    color: var(--th-secondary);
    margin-right: var(--th-size-10);
    font-family: var(--font);
}

.top-bar .far:before {
    margin-right: var(--th-size-10);
    color: var(--color-3);
    font-family: 'Font Awesome 5 Pro';
}

.top-bar span {
    color: var(--th-secondary);
}

.main-header .navbar-nav .nav-link {
    font-size: var(--th-size-18);
    font-weight: var(--th-weight-600);
    color: var(--th-white);
}

.main-header .navbar-nav .nav-link:hover {
    color: #fdd835;
    /* Yellow color for hover */
}

.header-icons .cart-count {
    background-color: #fdd835;
    color: #000;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    position: relative;
    top: -10px;
    right: -10px;
}

.top-bar {
    background-color: var(--color-5);
}

.main-header {
    background: var(--color-4);
}

.navbar-toggler {
    background-color: var(--th-primary);
}

.header-icons a {
    color: var(--th-white);
    margin-right: var(--th-size-15);
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.2s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 20px;
    text-decoration: none;
    font-size: var(--th-size-18);
    color: var(--color-1);
    display: block;
    transition: 0.3s;
    font-weight: 600;
}

.mobilemenu .dropdown-menu {
    margin-left: 18px !important;
    border-top: 4px solid var(--color-3);
    border-radius: 0px 0px 10px 8px;
}

.sidenav a:hover {
    color: var(--color-3);
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.mobilemenu .sidenav .logo img {
    width: 65%;
    top: -45px;
    position: relative;
}

#main {
    transition: margin-left .5s;
    padding: 16px;
}

.sidenav .closebtn {
    color: var(--th-primary);
}

.hamburgermenu span {
    color: var(--th-primary);
}

.hamburgermenu .th-count-icon {
    color: var(--th-white);
    margin-right: var(--th-size-10);
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

/*mobile header end*/

/*New service section start*/
.th-services.services-main-home .services-item {
    background-color: #0C6460;
    background-image: url(assets/images/services/main-home/main-img/1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: background 0s;
    border-radius: 50px 0px 50px 0px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.th-services.services-main-home .services-item::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #0C6460;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all linear 0.3s;
}

.th-services.services-main-home .services-item .services-wrap {
    padding: 40px 50px 50px 45px;
    position: relative;
}

.th-services.services-main-home .services-item .services-wrap .services-icon {
    margin-left: -6px;
    margin-bottom: 20px;
}

.th-services.services-main-home .services-item .services-wrap .services-icon img {
    height: 90px;
    width: 90px;
    max-width: unset;
}

.th-services.services-main-home .services-item .services-wrap .services-content .title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 0px 0px 11px 0px;
}

.th-services.services-main-home .services-item .services-wrap .services-content .title a {
    color: #ffffff;
}

.th-services.services-main-home .services-item .services-wrap .services-content .title a:hover {
    color: #FF6D00;
}

.th-services.services-main-home .services-item .services-wrap .services-content .services-txt {
    color: #ffffff;
    margin: 0;
}

.th-services.services-main-home .services-item:hover::before {
    opacity: 1;
    visibility: visible;
}

.th-services.services-main-home .services-item.ser-bg2 {
    background-image: url(assets/images/services/main-home/main-img/2.jpg);
}

.th-services.services-main-home .services-item.ser-bg3 {
    background-image: url(assets/images/services/main-home/main-img/3.jpg);
}

.th-services.services-main-home .services-item.ser-bg4 {
    background-image: url(assets/images/services/main-home/main-img/4.jpg);
}

.th-services.services-main-home .services-item.ser-bg5 {
    background-image: url(assets/images/services/main-home/main-img/5.jpg);
}

.th-services.services-main-home .services-item.ser-bg6 {
    background-image: url(assets/images/services/main-home/main-img/6.jpg);
}

.th-services.services-style1 .services-item {
    background-color: #effdfc;
    border-radius: 50px 0px 50px 0px;
    margin: 0 -4px 0 -4px;
    transition: all ease 0.3s;
}

.th-services.services-style1 .services-item .services-wrap {
    padding: 40px 50px 50px 45px;
    position: relative;
}

.th-services.services-style1 .services-item .services-wrap .services-icon {
    margin-left: -6px;
    margin-bottom: 20px;
}

.th-services.services-style1 .services-item .services-wrap .services-icon img {
    height: 90px;
    width: 90px;
    max-width: unset;
}

.th-services.services-style1 .services-item .services-wrap .services-content .title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 0px 0px 11px 0px;
}

.th-services.services-style1 .services-item .services-wrap .services-content .title a {
    color: #101010;
}

.th-services.services-style1 .services-item .services-wrap .services-content .title a:hover {
    color: #FF6D00;
}

.th-services.services-style1 .services-item .services-wrap .services-content .services-txt {
    color: #101010;
    margin: 0;
}

.th-services.services-style1 .services-item:hover {
    transform: translateY(-5px);
}

.th-services.services-style1.services-modify1 .services-item .services-wrap .services-content .title a:hover {
    color: #FF6D00;
}

.th-services.services-style2 {
    background-color: #fff;
    border-radius: 0px 150px 0px 150px;
}

.th-services.services-style2 .th-services-slider {
    padding: 54px 50px 60px 40px;
    margin-bottom: 10px;
    border-radius: 3px 3px 100px 3px;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}

.th-services.services-style2 .th-services-slider .content-part .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin: 0 0 15px;
}

.th-services.services-style2 .th-services-slider .content-part .title a {
    color: #101010;
}

.th-services.services-style2 .th-services-slider .content-part .title a:hover {
    color: #0C6460;
}

.th-services.services-style2 .th-services-slider .content-part .description {
    font-size: 17px;
    line-height: 1.6;
    padding: 0px 0px 57px 0px;
    margin: 0px 0px 0px 0px;
    color: #454545;
}

.th-services.services-style2 .th-services-slider .bottom-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.th-services.services-style2 .th-services-slider .bottom-part .services-icon img {
    width: 55px;
    min-width: 55px;
    max-width: 55px;
    transition: all linear 0.3s;
}

.th-services.services-style2 .th-services-slider:hover .bottom-part .services-icon img {
    transform: rotateY(360deg);
}

.th-services.services-style2 .services-item .services-btn-box {
    padding: 30px 40px 33px 40px;
    background-color: #fff;
    border-radius: 0px 35px 0px 35px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}

.th-services.services-style2 .services-item .services-img img {
    border-radius: 0px 35px 0px 35px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}

.th-services.services-style3 {
    position: relative;
    margin-top: -60px;
    margin-bottom: 0px;
    z-index: 11;
}

.th-services.services-style3 .services-item {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    background-color: #effdfc;
    transition: all 0.3s ease-in-out;
}

.th-services.services-style3 .services-item .services-wrap {
    padding: 40px 20px 40px 20px;
    display: flex;
}

.th-services.services-style3 .services-item .services-wrap .services-icon {
    position: relative;
    transition: all 0.3s ease;
}

.th-services.services-style3 .services-item .services-wrap .services-icon .main-img {
    height: 65px;
    width: 65px;
    max-width: unset;
}

.th-services.services-style3 .services-item .services-wrap .services-icon .hover-img {
    height: 65px;
    width: 65px;
    max-width: unset;
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.th-services.services-style3 .services-item .services-wrap .services-content {
    padding: 0px 0px 0px 20px;
}

.th-services.services-style3 .services-item .services-wrap .services-content .title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 5px;
}

.th-services.services-style3 .services-item .services-wrap .services-content .services-txt {
    margin: 0;
}

.th-services.services-style3 .services-item:hover,
.th-services.services-style3 .services-item.active-bg {
    background-color: #0C6460;
}

.th-services.services-style3 .services-item:hover .services-wrap .services-icon .main-img,
.th-services.services-style3 .services-item.active-bg .services-wrap .services-icon .main-img {
    opacity: 0;
}

.th-services.services-style3 .services-item:hover .services-wrap .services-icon .hover-img,
.th-services.services-style3 .services-item.active-bg .services-wrap .services-icon .hover-img {
    opacity: 1;
    visibility: visible;
}

.th-services.services-style3 .services-item:hover .services-wrap .services-content .services-txt,
.th-services.services-style3 .services-item.active-bg .services-wrap .services-content .services-txt,
.th-services.services-style3 .services-item:hover .services-wrap .services-content .title,
.th-services.services-style3 .services-item.active-bg .services-wrap .services-content .title {
    color: #ffffff;
}

.th-services.services-style4 .services-item .services-wrap {
    position: relative;
    overflow: hidden;
}

.th-services.services-style4 .services-item .services-wrap .services-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s;
    max-width: unset;
}

.th-services.services-style4 .services-item .services-wrap .services-content {
    position: relative;
}

.th-services.services-style4 .services-item .services-wrap .services-content .title {
    font-size: 24px;
    line-height: 1.35em;
    font-weight: 700;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 30px;
    padding: 0;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}

.th-services.services-style4 .services-item .services-wrap .services-content .title a {
    color: #ffffff;
}

.th-services.services-style4 .services-item .services-wrap .services-content .title a:hover {
    color: #FF6D00 !important;
}

.th-services.services-style4 .services-item .services-wrap .services-content .services-btn {
    position: absolute;
    right: 10px;
    transition: 0.4s;
    bottom: 28px;
    opacity: 0;
    visibility: hidden;
}

.th-services.services-style4 .services-item .services-wrap:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease 0s;
    background-color: transparent;
}

.th-services.services-style4 .services-item .services-wrap:hover .services-content .title {
    opacity: 1;
    visibility: visible;
    bottom: 25px;
}

.th-services.services-style4 .services-item .services-wrap:hover .services-content .services-btn {
    right: 30px;
    opacity: 1;
    visibility: visible;
}

.th-services.services-style4 .services-item .services-wrap:hover:before {
    opacity: 1;
    visibility: visible;
}

.th-services.services-style5 .services-item {
    margin: 0px 0px 0px 0px;
    background-color: #effdfc;
    transition: background 0s;
    border-radius: 40px 40px 40px 40px;
}

.th-services.services-style5 .services-item .services-wrap {
    position: relative;
    padding: 35px 50px 60px 40px;
}

.th-services.services-style5 .services-item .services-wrap .services-icon {
    margin-bottom: 10px;
}

.th-services.services-style5 .services-item .services-wrap .services-icon img {
    height: 90px;
    width: 90px;
    max-width: unset;
}

.th-services.services-style5 .services-item .services-wrap .services-text .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin: 0 0 10px;
    letter-spacing: 0;
    transition: all linear 0.3s;
}

.th-services.services-style5 .services-item .services-wrap .services-text .title a {
    color: #0a0a0a;
    transition: all linear 0.3s;
}

.th-services.services-style5 .services-item .services-wrap .services-text .title a:hover {
    color: #FF6D00;
}

.th-services.services-style5 .services-item .services-wrap .services-text .services-txt {
    margin-bottom: 28px;
}

.th-services.services-style5 .services-item .services-wrap .services-text .serial-number {
    position: absolute;
    left: 242px;
    top: 34px;
    color: #0C646014;
    font-size: 50px;
    font-weight: 700;
}

.th-services.services-style5.services-carrers-modify1 .services-item {
    margin: 0px 0px 0px 0px;
    background-color: #fff;
    border-radius: 40px 0px 40px 0px;
}

.th-services.services-style5.services-carrers-modify1 .services-item .services-wrap .services-text .title {
    color: #0a0a0a;
}

.th-services.services-style5.services-carrers-modify1 .services-item .readon.read-more:hover {
    background-color: #ff6d00;
    color: #ffffff;
}

.th-services.services-style5.services-carrers-modify1 .services-item:hover .services-wrap .services-text .title {
    color: #0C6460;
}

.th-services.services-style5.services-carrers-modify1 .services-item:hover .services-wrap .readon.read-more {
    background-color: #ff6d00;
    color: #ffffff;
}

.th-services.services-style5.services-carrers-modify1 .services-item .services-wrap {
    padding: 35px 50px 45px 40px;
}

.th-services-single .services-add {
    background-color: #0C6460;
    position: relative;
    padding: 55px 35px 38px;
    border-radius: 80px 0px 80px 0px;
    text-align: center;
}

.th-services-single .services-add .services-overlay {
    background-image: url(assets/images/blog/style1/3.jpg);
    border-radius: 80px 0px 80px 0px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    opacity: 0.1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.th-services-single .services-add .address-wrap {
    position: relative;
}

.th-services-single .services-add .address-wrap .divider {
    padding-top: 15px;
    padding-bottom: 35px;
}

.th-services-single .services-add .address-wrap .divider .divider-separator {
    position: relative;
}

.th-services-single .services-add .address-wrap .divider .divider-separator:before {
    height: 3px;
    display: block;
    width: 120px;
    border-bottom: 2px dashed #e76404;
    content: '';
    margin: 0 auto;
}

.th-services-single .services-add .address-wrap .title {
    font-size: 24px;
    line-height: 41px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.th-services-single .services-add .address-wrap .title span {
    color: #FF6D00;
}

.th-services-single .services-add .address-wrap a {
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    color: #ffffff;
}

.th-services-single .services-add .address-wrap a:hover {
    color: #FF6D00;
}

.th-services-single .brochures {
    background-image: linear-gradient(280deg, #269D98 0%, #0C6460 100%);
    border-radius: 80px 0px 80px 0px;
    padding: 65px 24px 78px 34px;
}

.th-services-single .brochures .content-text .title-part {
    position: relative;
    padding-top: 20px;
}

.th-services-single .brochures .content-text .title-part .title {
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.th-services-single .brochures .content-text .title-part:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 65px;
    height: 5px;
    opacity: 1;
    background: #ff6d00;
}

.th-services-single .brochures .content-text .desc-part {
    color: #ffffff;
    margin: 0 0 48px;
}

.th-services-single .brochures .btn-wrapper {
    position: relative;
    text-align: center;
    font-weight: 400;
    display: inline-block;
}

.th-services-single .brochures .btn-wrapper .dual-btn {
    font-size: 16px;
    font-weight: 600;
    padding: 18px 35px 18px 35px;
    border-radius: 30px 0px 0px 0px;
    background-color: #0C6460;
    color: #ffffff;
    margin: 0 -4px;
}

.th-services-single .brochures .btn-wrapper .dual-btn-connector {
    position: absolute;
    z-index: 9;
    overflow: hidden;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #fff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3);
    color: #27374c;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 30px;
    left: 46%;
    top: -2px;
}

.th-services-single .brochures .btn-wrapper .rselement-dual-btn {
    font-size: 16px;
    font-weight: 600;
    padding: 18px 35px 18px 35px;
    border-radius: 0px 0px 30px 0px;
    background-color: #E76404;
    color: #ffffff;
}

.th-services-single .services-img img {
    border-radius: 100px 0px 100px 0px;
}

.th-services-single .services-title {
    position: relative;
    padding-top: 24px;
}

.th-services-single .services-title .title {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

.th-services-single .services-title:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 65px;
    height: 5px;
    opacity: 1;
    background: #E76404;
    z-index: 2;
}

.th-services-single .desc-part {
    color: #454545;
    margin: 0;
}

.th-services-single .bdru-4 {
    border-radius: 100px 0px 100px 0px;
}

.th-services .services-card .card {
    padding: 30px 25px;
    margin-bottom: 10px;
    border-radius: 5px 35px 5px 35px;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
    /*            border: unset;*/
    margin-top: 10px;
    margin-bottom: 15px;
}

.th-services .services-card .card .bottom-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.th-services .services-card .card .card-icon span {
    font-size: 40px;
    color: var(--th-primary);
}

.servicevardimag img {
    /*border-radius: 3px 15px;
    height: 80px;
    width: 80px;
    border: 3px solid var(--th-secondary);*/
    object-fit: scale-down;
}

.servicevardimag img:hover {
    background-color: var(--th-black-shadow-1);
}

.th-services .services-card .card:hover {
    /*            background-color: #faf3eb;*/
    box-shadow: 10px 10px 5px 0px rgba(238, 238, 238, 1);
}

.services-card .card {
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
    padding: 20px 25px;
}

.services-card .card:hover {
    background: rgb(0 145 255 / 25%);
    box-shadow: 10px 10px 5px 0px rgba(238, 238, 238, 1);
}

.services-card .card .icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    box-shadow: var(--shadow-1);
    margin-bottom: 15px;
    border: 1px solid var(--border-1);
    background-color: #fff;
}

.services-card .card-title a {
    font-size: 22px;
}

.slick-prev,
.slick-next {
    background: transparent;
}

.slick-prev:before,
.slick-next:before {
    color: var(--th-secondary);
    font-size: unset;
}

.slick-prev {
    left: 1155px;
}

.slick-next {
    right: 50px;
}

.slick-prev,
.slick-next {
    padding: var(--th-size-24) !important;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--th-size-10);
    top: -24%;
    border: 1px solid var(--color-2);
    background: transparent;
}

.slick-prev span,
.slick-next span {
    color: var(--color-2);
}

.slick-prev:hover span,
.slick-next:hover span {
    color: var(--color-4);
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: var(--color-2);
    background: var(--color-2);
}

.slick-prev:focus span,
.slick-next:focus span {
    color: var(--color-4);
}

/*New service section end*/

/*Newsletter start*/
.contact-area.bg-none:before {
    display: none;
}

.contact-area {
    position: relative;
    z-index: 1;
}

.contact-area::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: #fff;
}

.contact-area::after {
    position: absolute;
    content: "";
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 300px;
    background: url('https://dev.hrinfocare.com/proserve/public/assets/plugins/themes/tech-theme/imgs/bg/footer-bg.jpg');
    z-index: -1;
}

.contact-section-inner {
    position: relative;
    background-image: url('https://dev.hrinfocare.com/proserve/public/assets/plugins/themes/tech-theme/imgs/bg/contact_bg7.png');
    ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
}
.approachtext {
    margin-left: 3rem;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-section-inner {
        height: 320px;
    }
}

.contact-section-inner h2 {
    font-size: 48px;
    font-weight: 600;
    margin: 30px 0;
    color: var(--color-4);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-section-inner h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .contact-section-inner h2 {
        font-size: 40px;
    }
}

.contact-section-inner h5 {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--color-4);
}

/*Newsletter end*/

/*mobile media querie start*/
@media only screen and (min-width: 1025px) and (max-width: 1199px) {
    .th-header .th-full-brand .th-brand .th-brand-logo img {
        height: 60px;
        width: 80%;
    }

    .th-header .container {
        max-width: 100%;
    }

    .th-header .th-full-brand .th-nav-item {
        margin-right: 8px !important;
    }
}

/* Landscape*/
@media all and (min-width: 1024px) and (max-width: 1366px) and (orientation:portrait) {
    .th-header .th-full-brand .th-brand .th-brand-logo img {
        height: 60px;
        width: 80%;
    }

    .th-header .container {
        max-width: 100%;
    }

    /*.th-auth #frm_reset_password .th-form-wrap .th-password-icon {
        left: 212px;
        top: 50px;
    }*/
    .g-recaptcha {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

@media only screen and (max-width:1024px) {
    .breadcrumb-area {
        margin-top: var(--th-size-0);
    }

    .right_content {
        margin-top: 35px;
    }

    .th-footer .th-brand-logo img {
        width: 165px;
    }

    .posts ul {
        display: flex;
        align-content: flex-start;
        justify-content: flex-start;
        align-items: flex-start;
    }

    /*.th-auth #frm_reset_password .th-form-wrap .th-password-icon {
        left: 250px;
        top: 50px;
    }*/
    .g-recaptcha {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }

    .desktopmenu {
        display: none;
    }

    .mobilemenu {
        display: block;
    }

    .th-banner-section {
        margin-top: 0px;
    }

    .mobilemenu .contactdetails {
        display: flex !important;
        align-content: center;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .mobilemenu .th-btn {
        top: -6px;
        position: relative;
    }

    .hr-left-margin {
        margin-left: 0rem;
    }

    .service-arrow {
        display: none;
    }
    .approachtext {
        margin-left: 0rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tablet-home-slider .section-head {
        padding-top: 240px;
    }

    .th-footer .th-block-nav .th-nav-item .list-wrap .link a,
    .th-footer .th-block-nav .th-nav-item .list-wrap .link p {
        font-size: var(--th-size-11);
    }
}

@media only screen and (max-width:767.98px) {
    .breadcrumb-area {
        height: 500px;
        margin-top: var(--th-size-0);
    }

    .breadcrumb-area h2 {
        margin-top: var(--th-size-100);
    }

    .posts a {
        display: flex;
        align-items: flex-start;
        margin: 0.4rem 0px;
        flex-direction: row;
    }

    .categories a {
        display: inline-block;
        padding: 14px 0px;
        border-radius: 40px;
        color: var(--color-1);
        cursor: pointer;
        font-size: 15px;
        font-weight: 600;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;

    }

    .flex-column {
        display: flex;
        align-content: flex-start;
        justify-content: flex-start;
        align-items: flex-start;
    }

    /*.th-auth #frm_reset_password .th-form-wrap .th-password-icon {
        left: 260px;
        top: 50px;
    }*/
    .desktopmenu {
        display: none;
    }

    .mobilemenu {
        display: block;
        position: fixed;
        z-index: 99;
        width: 100%;
    }

    .mobile-home-slider .th-links-wrap {
        margin-top: 30px;
        display: flex;
        align-content: flex-start;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .mobile-home-slider .section-head {
        padding-top: 240px;
    }

    .desktop-home-slider .section-head {
        padding-top: 320px;
    }

    .mobile-home-slider .section-head h1 {
        font-size: 35px;
        /*        white-space: break-spaces;*/
    }

    .mobile-home-slider .section-head h1 span {
        font-size: 35px;
        white-space: nowrap;
    }

    .th-footer .th-footer-titel {
        margin-top: 20px;
    }

    .breadcrumb-title span {
        font-size: var(--th-size-40);
    }

    .blog_content {
        padding: 10px;
    }

    .categories .icon {
        width: 35px;
        height: 35px;
    }

    .categories .icon span {
        font-size: 1rem;
    }

    .subscription-form {
        margin-top: 20px;
    }

    .mobilemenu .th-btn {
        font-size: 12px;
        padding: 12px 12px;
        top: -6px;
        position: relative;
    }

    .mobilemenu .th-btn.th-btn-01 span {
        font-size: 12px;
    }

    .mobilemenu .contactdetails {
        display: flex !important;
        align-content: center;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .th-dashboard {
        padding: 80px 0px;
    }

    .table thead tr th {
        text-wrap: nowrap;
    }

    .table tbody tr td {
        text-wrap: nowrap;
    }
    .approachtext {
        margin-left: 0rem;
    }
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

@media only screen and (max-width:320px) {
    .breadcrumb-area {
        margin-top: var(--th-size-0);
    }

    /*.th-auth #frm_reset_password .th-form-wrap .th-password-icon {
        left: 215px;
        top: 50px;
    }*/
    .mobilemenu {
        width: 100%;
    }

    .mobilemenu .th-btn {
        font-size: 11px;
        padding: 10px 10px;
        top: -6px;
        position: relative;
    }

    .mobilemenu .th-btn.th-btn-01 span {
        font-size: 11px;
    }

    .contactdetails {
        padding: var(--th-size-7);
    }
}

/*mobile media queries end*/