
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@500;700&amp;family=Poppins:wght@400;500;600;700&amp;display=swap");
:root {
    --tj-ff-title: "DM Sans", sans-serif;
    --tj-ff-body: "Poppins", sans-serif;
}
:root {
    --tj-primary-color: #c9233d;
    --tj-primary-color2: #ffd1c3;
    --tj-primary-color3: #8f3c23;
    --tj-secondary-color: #062e39;
    --tj-body-color: #7c858c;
    --tj-white-color: #ffffff;
    --tj-dark-color: #181818;
    --tj-dark-color2: #f6f6f6;
    --tj-gray-color: #747474;
    --tj-gray-color2: #c5c5c5;
    --tj-gray-color3: #ddd;
    --tj-gray-color4: #e0e0e0;
    --tj-gray-color5: #e1e1e1;
    --tj-gray-color6: #d9d9d9;
    --tj-gray-color7: #787878;
    --tj-gray-color8: #ffc107;
    --tj-gray-color10: #d3d3d3;
    --tj-gray-color11: #f4f4f4;
    --tj-blue-color: #2a55a3;
}

html,
body {
    font-size: 16px;
    color: var(--tj-body-color);
    font-family: var(--tj-ff-title);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

input,
textarea,
select {
    border: 0;
    background: transparent;
    transition: 0.4s;
}
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    transition: 0.4s;
    text-decoration: none;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tj-ff-title);
    color: var(--tj-secondary-color);
    line-height: 1.35;
}

h1 {
    font-weight: 700;
    font-size: 70px;
    line-height: 1.2;
}

h2 {
    font-weight: 700;
    font-size: 55px;
    line-height: 1.2;
}

h3 {
    font-weight: 700;
    font-size: 45px;
    line-height: 1.2;
}

h4 {
    font-weight: 700;
    font-size: 26px;
}

h5 {
    font-weight: 500;
    font-size: 24px;
}

h6 {
    font-weight: 700;
    font-size: 22px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.list-gap {
    margin: 0;
    padding: 0;
    list-style: none;
}

.p-z-idex {
    position: relative;
    z-index: 3 !important;
}

.loader-icon img {
    max-width: 65px;
    width: 100%;
}

.tj-section-heading.text-center {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
}

.tj-section-heading {
    margin-bottom: 25px;
    max-width: 800px;
}

.tj-section-heading .sub-title {
    color: var(--tj-primary-color);
    font-size: 22px;
    font-weight: 500;

    position: relative;
    padding-left: 35px;
    transition: 0.6s;
}

.tj-section-heading .sub-title.active-shape::before {
    position: absolute;
    content: "";
    width: 16px;
    top: 8px;
    left: 0;
    border: 2px solid var(--tj-primary-color);
    height: 16px;
    z-index: 3;
    transform: rotate(45deg);
}

.tj-section-heading .sub-title.active-shape::after {
    position: absolute;
    content: "";
    width: 16px;
    top: 8px;
    left: 10px;
    border: 2px solid var(--tj-secondary-color);
    height: 16px;
    transform: rotate(45deg);
}

.tj-section-heading .sub-title.active-shape2::before {
    position: absolute;
    content: "";
    width: 16px;
    top: 8px;
    left: 0;
    border: 2px solid var(--tj-primary-color);
    height: 16px;
    z-index: 3;
    transform: rotate(45deg);
}

.tj-section-heading .sub-title.active-shape2::after {
    position: absolute;
    content: "";
    width: 16px;
    top: 8px;
    left: 10px;
    border: 2px solid var(--tj-white-color);
    height: 16px;
    transform: rotate(45deg);
}

.tj-section-heading .title {
    margin-top: 0px;
    font-size: 34px;
}

/* ----------------------------------
    01. Header CSS
 ------------------------------------ */
.tj-header-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding-top: 30px;
}

.tj-header-section .container {
    background: var(--tj-white-color);
    border-radius: 6px;
}

.tj-header-section .container .col-lg-12 {
    padding-left: 0;
    padding-right: 0;
}
.ptb-60
{
    padding: 60px 0px;
}
.tj-header-section.header-sticky {
    padding:0px 0;
}

.header-section-two.header-sticky .header-topbar,
.tj-header-section.header-sticky .header-topbar {
    display: block; !important;
}

.header-section-three.header-sticky,
.header-section-two.header-sticky,
.tj-header-section.header-sticky {
    position: fixed;
    width: 100%;
    background: var(--tj-white-color);
    top: 0;
    box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
    -webkit-animation: sticky 0.7s;
    animation: sticky 0.7s;
    z-index: 999;
}

.header-section-three.header-sticky {
    background: var(--tj-secondary-color);
    box-shadow: 0px 0px 45px 0px rgba(255, 255, 255, 0.55);
}

@-webkit-keyframes sticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}
@keyframes sticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

.tj-header-section .bg-color {
    background: var(--tj-white-color);
    border-radius: 6px;
    position: relative;
}

.tj-header-section .logo-area {
    width: 209px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
}

.tj-header-section .header-content-area {
    width: calc(100% - 215px);
    display: flex;
    flex-wrap: wrap;
}

.header-topbar {
    background: #062e39;
    padding: 9px 20px 9px 45px;
    border-radius: 0 4px;
    width: 100%;
}

.header-content-left span {
    font-size: 14px;
    font-weight: 500;
    color: var(--tj-white-color);
}

.header-content-right {
    text-align: right;
}

.header-content-right .header-social-icon .social-list li {
    display: inline-block;
    margin-left: 10px;
}

.header-content-right .header-social-icon .social-list li a i {
    color: var(--tj-white-color);
    font-size: 15px;
    transition: 0.4s;
}

.header-content-right .header-social-icon .social-list li a i:hover {
    color: var(--tj-primary-color);
}

.header-content-right .header-social-icon .social-list li a .icon-youtube {
    font-size: 10px;
}

.header-content-right .header-social-icon .social-list li a .icon-twiter {
    font-size: 13px;
}

.header-section-two .header-topbar {
    background: var(--tj-secondary-color);
    padding: 7px 0;
}

.header-section-two .topbar-content-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header-section-two .header-content-left {
    margin-bottom: 0;
}

.header-section-two .header-content-left ul li {
    display: inline-block;
    font-size: 15px;
    color: var(--tj-white-color);
    margin-right: 50px;
    padding-left: 25px;
    position: relative;
}

.header-section-two .header-content-left ul li:last-child {
    margin-right: 0;
}

.header-section-two .header-content-left ul li i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    line-height: 1;
}

.header-section-two .header-content-left ul li a {
    color: var(--tj-white-color);
    transition: 0.4s;
}

.header-section-two .header-content-left ul li a:hover {
    color: var(--tj-primary-color);
}

.header-section-two .header-content-right .nice-select {
    background-color: transparent;
    border: none;
    border-radius: 0;
    font-size: 15px;
    padding-left: 0;
    padding-right: 25px;
    font-weight: 500;
    color: var(--tj-white-color);
}

.header-section-two .nice-select::after {
    border-bottom: 1px solid var(--tj-white-color);
    border-right: 1px solid var(--tj-white-color);
    height: 10px;
    margin-top: -7px;
    right: 6px;
    width: 10px;
    top: 50%;
}

.header-section-two .nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: transparent;
}

.header-section-two .nice-select .list {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0 0 5px 5px;
    margin-top: 7px;
}

.header-section-two .nice-select .option {
    padding-left: 30px;
    padding-right: 30px;
    color: var(--tj-secondary-color);
    font-weight: 500;
}

.header-section-two .menu-search-box .header-content-right .nice-select {
    background-color: transparent;
    border: none;
    height: 0;
    line-height: 0;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--tj-white-color);
}

.header-section-two .menu-search-box .nice-select {
    margin-right: 30px;
    font-size: 16px;
    color: var(--tj-secondary-color);
    border: none;
}

.header-section-two .menu-search-box .nice-select::after {
    border-bottom: 1px solid var(--tj-secondary-color);
    border-right: 1px solid var(--tj-secondary-color);
    height: 10px;
    margin-top: -8px;
    right: 6px;
    width: 10px;
}

.header-section-two .menu-search-box .nice-select .option:hover,
.menu-search-box .nice-select .option.focus,
.menu-search-box .nice-select .option.selected.focus {
    background-color: transparent;
}

.header-section-two .menu-search-box .nice-select .list {
    border-radius: 0;
    box-shadow: none;
    border-radius: 0;
    margin-top: 15px;
}

.header-section-two .menu-search-box .nice-select .option {
    padding-left: 30px;
    padding-right: 30px;
    color: var(--tj-secondary-color);
    font-weight: 500;
}

.header-section-two .header-social-icon {
    position: relative;
    padding-left: 55px;
}

.header-section-two .header-social-icon::before {
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, 0.2);
    width: 1px;
    height: 20px;
    top: 4px;
    left: 35px;
}

.header-section-two .tj-header-menu-bottom .menu-search-box .hambugar-icon i {
    font-size: 35px;
    color: var(--tj-primary-color);
    transition: 0.4s;
}

.header-section-two .tj-header-menu-bottom .menu-search-box .hambugar-icon i:hover {
    color: var(--tj-secondary-color);
}

.tj-header-menu-bottom {
    padding: 15px 0;
}

.tj-header-menu-bottom .logo-box {
    max-width: 196px;
    width: 100%;
}

.tj-header-menu-bottom .logo-box a {
    display: inline-block;
}

.tj-header-menu-bottom .header-menu-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.tj-header-menu-bottom .tj-btn {
    height: 60px;
}

.tj-header-menu-bottom .menu-search-box .hambugar-icon {
    margin-right: 28px;
    position: relative;
    margin-left: 15px;
    line-height: 1;
}

.tj-header-menu-bottom .menu-search-box .hambugar-icon i {
    font-size: 35px;
    color: var(--tj-white-color);
    transition: 0.4s;
}

.tj-header-menu-bottom .menu-search-box .hambugar-icon i:hover {
    color: var(--tj-primary-color);
}

.tj-header-menu-bottom .menu-search-box .hambugar-icon::before {
    position: absolute;
    content: "";
    top: 4px;
    left: -20px;
    width: 1px;
    height: 43px;
    background: rgba(223, 223, 223, 0.55);
}

.tj-header-menu-bottom .menu-search-box .modal-icon i {
    margin-right: 28px;
    font-size: 20px;
    color: var(--tj-secondary-color);
    transition: 0.4s;
    position: relative;
    top: 4px;
}

.tj-header-menu-bottom .menu-search-box .modal-icon i:hover {
    color: var(--tj-primary-color);
}

.header-section-three {
    position: absolute;
    width: 100%;
    z-index: 9;
    padding-top: 0;
}

.header-section-three .tj-main-menu li a {
    color: var(--tj-white-color);
}

.header-section-three .tj-main-menu > ul > li.menu-item-has-children > a::before {
    color: var(--tj-white-color);
}

.header-section-three .tj-main-menu > ul > li.menu-item-has-children > a.active::before {
    color: var(--tj-primary-color);
}

.header-section-three .tj-header-menu-bottom .menu-search-box .modal-icon i {
    color: var(--tj-white-color);
}

.header-section-three .tj-header-menu-bottom .menu-search-box .modal-icon i:hover {
    color: var(--tj-primary-color);
}

.header-section-three .tj-header-menu-bottom .menu-search-box .hambugar-icon::before {
    position: absolute;
    content: "";
    top: 45%;
    transform: translateY(-50%);
    left: -20px;
    width: 1px;
    height: 32px;
    background: rgba(223, 223, 223, 0.55);
}

.section-shape {
    background: url(../images/bg/section-bg.html);
}

.section-shape2 {
    background: url(../images/bg/section-shape.html);
}

.section-shape,
.section-shape2 {
    background-position: top right;
    background-repeat: no-repeat;
}

.section-shape2 {
    background-position: 100% -135px;
}

/* ----------------------------------
    02. Hero CSS
 ------------------------------------ */
.tj-hero-section {
    position: relative;
    padding-top: 190px;
    padding-bottom: 230px;
    transition: 0.4s;
    overflow: hidden;
}

.tj-hero-section .hero-bg-1 {
    content: "";
    position: absolute;
    background: url(../images/banner/hero-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 50%;
    height: 100%;
    transition: 0.6s;
    left: 0;
    top: 0;
    transform: scale(1);
}

.tj-hero-section .hero-bg-1::before {
    width: 100%;
    position: absolute;
    content: "";
    height: 100%;
    transition: 0.6s;
    left: 0;
    top: 0;
    display: none;
    background: rgba(6, 46, 57, 0.5);
}

.tj-hero-section .hero-bg-1:hover {
    transform: scale(1.1);
}
.titles
{
        color: #fff;
    font-size: 29px;
    text-align: center;
}
.tj-hero-section .hero-bg-2 {
    content: "";
    position: absolute;
    background: url(../images/banner/hero-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
}

.tj-hero-section .hero-bg-2::before {
    width: 100%;
    position: absolute;
    content: "";
    height: 100%;
    transition: 0.6s;
    left: 0;
    top: 0;
        background: #2a55a3;
}

.tj-hero-section .hero-shape {
    position: absolute;
    z-index: 3;
    right: 8%;
    top: 20%;
    transform: translateY(-50%);
}

.tj-hero-content {
    position: relative;
    z-index: 3;
    padding-left: 70px;
}

.tj-hero-content .tj-section-heading {
    max-width: 600px;
    margin-bottom: 40px;
}

.tj-hero-content .tj-section-heading .title {
    color: var(--tj-white-color);
}

body [class^="icon-"]::before,
body [class*=" icon-"]::before {
    color: unset;
}

/* ----------------------------------
    03. Canvas CSS
 ------------------------------------ */
.tj-overlay-canvas {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #db5228b2;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.tj-offcanvas-area {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 485px;
    z-index: 9999;
    background: var(--tj-white-color);
    padding: 30px 30px 30px;
    right: -450px;
    opacity: 0;
    visibility: visible;
    overflow-y: scroll;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
}

.tj-offcanvas-area .des {
    margin-bottom: 20px;
}

.tj-offcanvas-area .offcanvas-title {
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
}

.tj-offcanvas-area .offcanvas-title:after {
    width: 70px;
    height: 2px;
    content: "";
    clear: both;
    position: absolute;
    bottom: 2px;
    left: 0px;
    background: var(--tj-primary-color);
    border-radius: 3px;
}

.tj-offcanvas-area .contact-info-list {
    margin-bottom: 30px;
}

.tj-offcanvas-area .contact-info-list .contact-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.tj-offcanvas-area .contact-info-list .contact-box.contact-box1 {
    margin-bottom: 15px;
}

.tj-offcanvas-area .contact-info-list .contact-link span {
    color: var(--tj-secondary-color);
    font-size: 20px;
}

.tj-offcanvas-area .contact-info-list .contact-link span {
    font-size: 20px;
}

.tj-offcanvas-area .contact-info-list .contact-link a {
    color: var(--tj-body-color);
    transition: 0.4s;
}

.tj-offcanvas-area .contact-info-list .contact-link a:hover {
    color: var(--tj-primary-color);
}

.tj-offcanvas-area .contact-info-list .contact-box .contact-icon {
    margin-right: 15px;
}

.tj-offcanvas-area .contact-info-list .contact-box .contact-icon i {
    font-size: 30px;
    color: var(--tj-secondary-color);
    position: relative;
    top: 4px;
}

.tj-offcanvas-area .contact-info-list .contact-box .contact-icon .fa-light.fa-location-dot {
    position: relative;
    top: -3px;
}

.tj-offcanvas-area .tj-offcanvas-header {
    padding-bottom: 10px;
    margin-bottom: 35px;
}

.tj-offcanvas-area .tj-offcanvas-header .offcanvas-title .product-title {
    font-weight: 500;
    font-size: 20px;
}

.tj-offcanvas-area .offcanvas-icon i {
    font-size: 40px;
    color: var(--tj-secondary-color);
    transition: 0.4s;
}

.tj-offcanvas-area .offcanvas-icon i:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    color: var(--tj-primary-color);
    transform: rotate(90deg);
}

.tj-offcanvas-area .tj-offcanvas-icon-list {
    margin-bottom: 50px;
}

.tj-offcanvas-area .tj-offcanvas-icon-list ul {
    padding: 0;
}

.tj-offcanvas-area .tj-offcanvas-icon-list ul li {
    display: inline-block;
    padding-right: 5px;
}
.tj-offcanvas-area .tj-offcanvas-icon-list ul li i {
    background: var(--tj-secondary-color);
    color: var(--tj-white-color);
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
}

.tj-offcanvas-area .tj-offcanvas-icon-list ul li i:hover {
    background: var(--tj-primary-color);
}

.canvas_expanded .tj-offcanvas-area {
    right: 0;
}

.canvas_expanded .tj-offcanvas-area,
.canvas_expanded .tj-overlay-canvas {
    opacity: 1;
    visibility: visible;
}

.logo-area img {
    max-width: 150px;
    width: 100%;
}

.tj-offcanvas-area .tj-search-box form input {
    border: 1px solid var(--tj-primary-color);
    width: 100%;
    padding: 13px 15px;
    border-radius: 3px;
}

.tj-offcanvas-area .tj-search-box {
    position: relative;
    margin-bottom: 30px;
}

.tj-offcanvas-area .tj-search-box form a i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 17px 20px;
    border-radius: 0px 3px 3px 0px;
    background: var(--tj-primary-color);
    font-size: 18px;
    color: var(--tj-white-color);
}

.tj-offcanvas-area .contact-map iframe {
    width: 100%;
}

.mobile-navbar-menu {
    overflow: hidden;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mobile-navbar-menu .mean-bar {
    background: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.mobile-navbar-menu .mean-bar * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.mobile-navbar-menu .mean-nav {
    background: transparent;
    overflow: hidden;
    margin-top: 15px;
    margin-bottom: 20px;
}

.mobile-navbar-menu .mean-nav > ul {
    display: block !important;
}

.mobile-navbar-menu .mean-nav ul li {
    border-top: 1px solid #e0e3ed;
}

.mobile-navbar-menu .mean-nav ul li a {
    color: var(--tj-secondary-color);
    border-top: none;
    padding: 10px 0;
}

.mean-container .mean-nav ul li li a {
    text-transform: capitalize;
}

.mobile-navbar-menu .mean-nav ul li.dropdown-opened > a {
    color: var(--tj-primary-color);
}

@-webkit-keyframes criss-cross-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}
@keyframes criss-cross-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}
@-webkit-keyframes criss-cross-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}
@keyframes criss-cross-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

/* ----------------------------------
    04. Main Menu CSS
 ------------------------------------ */
.header-content {
    width: 100%;
}

.tj-main-menu {
    margin-right: 15px;
}

.tj-main-menu > ul > li {
    padding-right: 30px;
}

.tj-main-menu > ul > li > a {
    padding-top: 19px;
    padding-bottom: 19px;
    padding-right: 15px;
    text-align: center;
}

.tj-main-menu > ul > li.current-menu-item .active {
    color: var(--tj-primary-color);
}

.tj-main-menu > ul > li.current-menu-item .active::before {
    color: var(--tj-primary-color);
}

.tj-main-menu > ul > li.menu-item-has-children > a::before {
    content: "\2b";
    font-family: "Font Awesome 6 Pro";
    font-weight: 500;
    color: var(--tj-secondary-color);
    font-size: 11px;
    position: absolute;
    top: 33px;
    transform: translateY(-50%);
    right: 32px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
}

.tj-main-menu > ul > li.menu-item-has-children > a:hover::before {
    color: var(--tj-primary-color);
}

.tj-main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.tj-main-menu li {
    display: inline-block;
    position: relative;
}

.tj-main-menu li:last-child {
    padding-right: 0;
}

.tj-main-menu > ul > li > a:last-child {
    padding-right: 0;    text-align: center;
}

.tj-main-menu li a span
{
    font-size: 14px;
}

.tj-main-menu li a {
    color: var(--tj-secondary-color);
    font-size: 17px;
    font-weight:600;
    font-family: var(--tj-ff-title);
    display: block;
    transition: 0.4s;
}

.tj-main-menu li a:hover {
    color: var(--tj-primary-color);
}

.tj-main-menu li .sub-menu-list {
    text-align: left;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--tj-white-color);
       padding: 16px 14px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    top: 130%;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    width: 220px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.tj-main-menu li .sub-menu-list::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 3px;
    background: var(--tj-primary-color);
    content: "";
    transition: 0.6s;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
}

.tj-main-menu li .sub-menu-list li {
    display: block;
    padding-bottom: 15px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    position: relative;
}

.tj-main-menu li .sub-menu-list li:last-child {
    padding-bottom: 0;
}

.tj-main-menu li .sub-menu-list li a {
    color: #666;
       font-size: 15px;
}

.tj-main-menu li .sub-menu-list li a:hover {
    color: var(--tj-primary-color);
}

.tj-main-menu li .sub-menu-list li::before {
    content: "";
    width: 0;
    height: 2px;
    background: var(--tj-primary-color);
    position: absolute;
    top: 13px;
    left: 0;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
}

.tj-main-menu li .sub-menu-list li:hover {
    padding-left: 20px;
}

.tj-main-menu li .sub-menu-list li:hover::before {
    width: 14px;
}

.tj-main-menu li:hover .sub-menu-list {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.tj-main-menu li:hover .sub-menu-list::before {
    width: 100%;
}

.logo-area a:focus,
.logo-area a {
    outline: none;
}

.tj-main-menu > ul > li > a {
    text-transform: capitalize;
}

.header-menu-select .header-language {
    max-width: 37px;
    right: 25px;
    position: relative;
    z-index: 9;
}

.header-menu-select .header-language ul.languages {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu-select .header-language ul.languages.open:before {
    transform: rotate(180deg) translateY(50%);
}

.header-menu-select .header-language ul.languages ul.lang_lists {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background-color: var(--color-white);
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu-select .header-language ul li a img {
    max-width: 37px;
}

.header-menu-select .header-language ul.languages li.activated img {
    max-width: 37px;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 13px;
}

.header-menu-select .header-language ul.languages li.activated,
.header-menu-select .header-language ul.languages ul.lang_lists li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    line-height: 14px;
    font-family: var(--tj-ff-title);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-white);
    cursor: pointer;
}

.header-menu-select .header-language ul.languages ul.lang_lists li {
    display: block;
}

.header-menu-select .header-language ul.languages ul.lang_lists li > a {
    padding-bottom: 10px;
}

.tj-slider-section {
    position: relative;
}

.tj-slider-section .slider_shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.tj-hambagur-icon a {
    cursor: pointer;
    display: block;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
}

.tj-hambagur-icon a span {
    height: 2px;
    width: 30px;
    display: block;
    background: var(--tj-secondary-color);
    cursor: pointer;
    list-style: none;
    margin: 8px 0;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    margin-left: auto;
}

.tj-hambagur-icon a span.dot3 {
    width: 25px;
}

.tj-hambagur-icon a span.dot2 {
    width: 20px;
}

.tj-hambagur-icon a:hover span {
    background: var(--tj-primary-color);
}

.tj-hambagur-icon a:hover .dot2,
.tj-hambagur-icon a:hover .dot3 {
    width: 30px;
}

.header-section-three .tj-hambagur-icon a {
    cursor: pointer;
    display: block;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
}

.header-section-three .tj-hambagur-icon a span {
    height: 2px;
    width: 30px;
    display: block;
    background: var(--tj-white-color);
    cursor: pointer;
    list-style: none;
    margin: 8px 0;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    margin-left: auto;
}

.header-section-three .tj-hambagur-icon a span.dot3 {
    width: 25px;
}

.header-section-three .tj-hambagur-icon a span.dot2 {
    width: 20px;
}

.header-section-three .tj-hambagur-icon a:hover span {
    background: var(--tj-primary-color);
}

.header-section-three .tj-hambagur-icon a:hover .dot2,
.header-section-three .tj-hambagur-icon a:hover .dot3 {
    width: 30px;
}

/* ----------------------------------
    05. Slider CSS
------------------------------------ */
.tj-slider-section .banner-shape {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 10%;
    z-index: 2;
}

/*.tj-slider-section .banner-shape::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 155%;
    top: -30%;
    left: 0;
    background: url(../images/banner/banner-shape.png);
    background-position: center left;
    background-repeat: no-repeat;
    z-index: 2;
}*/

.tj-slider-section .swiper-slide-active .banner-shape {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
}

.tj-slider-section .swiper-slide {
    position: relative;
    background-position: center;
    background-size: cover;
    padding-right: 40px;
}
.tj-slider-section .swiper-slide:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*   background: linear-gradient(261deg,#da2b3300,#0a3b85)!important;*/
}

.tj-slider-section .swiper-pagination {
    width: auto;
    right: 80px;
    left: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}

.tj-slider-section .swiper-pagination .swiper-pagination-bullet {
    display: block;
    margin: 0 0 12px;
}

.tj-slider-section .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-bottom: 0;
}

.tj-slider-section .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    opacity: 0.8;
}

.tj-slider-section .swiper-pagination-bullet-active {
    background: var(--tj-primary-color);
    border-color: var(--tj-primary-color);
    width: 20px;
    height: 20px;
    position: relative;
    opacity: 1;
}

.tj-slider-section-three {
    position: relative;
}

.tj-slider-section-three .slider_shape2 {
    position: absolute;
    bottom: -5px;
    left: -5%;
    width: 110%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.tj-slider-section-three .thumb-slider {
    position: absolute;
    bottom: 12%;
    -webkit-transform: translate(-50% 0%);
    -ms-transform: translate(-50% 0%);
    transform: translate(-50% 0%);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.tj-slider-section-three .slider-content {
    margin-top: 275px;
    max-width: 100%;
    position: relative;
    margin-bottom: 265px;
    z-index: 9;
}

.tj-slider-section-three .thumb_slide {
    width: 90px !important;
    text-align: center;
}

.tj-slider-section-three .thumb_slide:last-child {
    margin-right: 0 !important;
}

.tj-slider-section-three .tj-bg-layer {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.tj-slider-section-three .tj-bg-layer::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.tj-slider-section-three .thumb_slider img {
    max-width: 80px;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    border: 2px solid var(--tj-secondary-color);
}

.tj-slider-section-three .swiper-slide-thumb-active img {
    border: 2px solid var(--tj-primary-color);
}

.tj-slider-section-three .slider-client img {
    width: 50px;
    height: 50px;
    border-radius: 500px;
    display: inline-block;
    margin-right: -30px;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.tj-slider-section-three .slider-client {
    display: flex;
    align-items: center;
    margin-bottom: 45px;
}

.tj-slider-section-three .slider-client .client-wrapper {
    margin-right: 55px;
}

.tj-slider-section-three .slider-client .client-wrapper img {
    width: 50px;
    height: 50px;
    border-radius: 500px;
    display: inline-block;
    margin-right: -30px;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.tj-slider-section-three .slider-client .client-auother p {
    font-size: 22px;
    font-weight: 500;
    color: var(--tj-white-color);
    margin-bottom: 0;
}

.tj-slider-section-three .slider-content .slider-title {
    color: var(--tj-white-color);
    display: block;
    margin-bottom: 55px;
}
.mt--20p
{
      margin-top: -10%;
    position: absolute;
}
.slider-left-btn
{
    position: absolute;
    left: 46%;
    bottom: 13%;
}
.slider-content .slider-title {
    color: var(--tj-white-color);
    display: block;
    margin-bottom: 30px;
    font-size: 60px;
}

.slider-content .slider-desc {
    color: var(--tj-white-color);
    font-size: 17px;
    margin-bottom: 40px;
    max-width: 590px;
    display: block;
}

.tj-slider-section-three .sc-image-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    mix-blend-mode: overlay;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1700ms ease-in, -webkit-transform 8000ms ease;
    transition: opacity 1700ms ease-in, -webkit-transform 8000ms ease;
    transition: transform 8000ms ease, opacity 1700ms ease-in;
    transition: transform 8000ms ease, opacity 1700ms ease-in, -webkit-transform 8000ms ease;
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: cover !important;
}

.tj-slider-section-three .swiper-slide .slider-client,
.tj-slider-section-three .swiper-slide .slider-title,
.tj-slider-section .swiper-slide .slider-desc,
.tj-slider-section .swiper-slide .slider-title,
.tj-slider-section .swiper-slide .slider-content::before {
    opacity: 0;
    visibility: hidden;
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.tj-slider-section-three .swiper-slide .slider-content .tj-theme-button,
.tj-slider-section .swiper-slide .tj-theme-button {
    opacity: 0;
    visibility: hidden;
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
    -webkit-transition: opacity 1500ms ease, -webkit-transform 1500ms ease;
    transition: opacity 1500ms ease, -webkit-transform 1500ms ease;
    transition: transform 1500ms ease, opacity 1500ms ease;
    transition: transform 1500ms ease, opacity 1500ms ease, -webkit-transform 1500ms ease;
}

.tj-slider-section-three .swiper-slide .slider-client,
.tj-slider-section-three .swiper-slide .slider-title,
.tj-slider-section .swiper-slide .slider-title {
    -webkit-transform: translateY(-125px);
    transform: translateY(-125px);
}

.tj-slider-section-three .swiper-slide .slider-content .tj-theme-button,
.tj-slider-section .swiper-slide .tj-theme-button,
.tj-slider-section .swiper-slide .slider-desc {
    -webkit-transform: translateY(125px);
    transform: translateY(125px);
}
.tj-slider-section-three .swiper-slide.swiper-slide-active .slider-client,
.tj-slider-section-three .swiper-slide.swiper-slide-active .slider-title,
.tj-slider-section .swiper-slide.swiper-slide-active .tj-theme-button,
.tj-slider-section .swiper-slide.swiper-slide-active .slider-desc,
.tj-slider-section .swiper-slide.swiper-slide-active .slider-title,
.tj-slider-section .swiper-slide.swiper-slide-active .slider-btn {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
}

.tj-slider-section-three .swiper-slide.swiper-slide-active .slider-content .tj-theme-button,
.tj-slider-section .swiper-slide.swiper-slide-active .tj-theme-button {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
}

.slider-bg-image3 {
    background: url(../images/slider/slider-bg-image3.html);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slider-bg-image3 .container {
    padding-top: 150px;
    padding-bottom: 150px;
}

.tj-slider-section-three .select-form-box .select-bm {
    margin-top: 30px;
}

.slider-tabs.slider-tabs-two .tj-input-form {
    padding: 0;
}

.slider-tabs.slider-tabs-two .nav {
    justify-content: center;
    border-bottom: 2px solid var(--tj-secondary-color);
    margin-bottom: 25px;
    justify-content: space-between !important;
}

.slider-tabs.slider-tabs-two .nav-pills .nav-link.active {
    color: var(--tj-white-color);
    background-color: var(--tj-secondary-color);
    border-radius: 3px 3px 0px 0px;
    padding: 8px 17px 10px;
}

.slider-tabs.slider-tabs-two {
    background: var(--tj-primary-color);
    border-radius: 3px;
    padding: 35px 35px 35px;
    max-width: 550px;
    margin-left: auto;
    margin-top: -95px;
    position: relative;
    z-index: 9;
}

.slider-tabs.slider-tabs-two .select-form-box {
    background: none;
    border-radius: 0;
    padding: 0;
    max-width: 100%;
    margin-left: auto;
}

.slider-tabs.slider-tabs-two .nav-link {
    color: var(--tj-white-color);
    font-size: 17px;
    font-weight: 500;
    padding: 8px 17px 10px;
}

.slider-tabs.slider-tabs-two .nav-link i {
    font-size: 20px;
    position: relative;
    top: 5px;
    margin-right: 5px;
}

/* ----------------------------------
    06. Service CSS
------------------------------------ */
.tj-service-section {
    padding-top: 145px;
    padding-bottom: 95px;
}

.tj-service-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    min-height: 422px;
    display: flex;
    align-items: end;
    margin-bottom: 25px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.tj-service-item:before {
    background: rgba(6, 46, 57, 0.5);
    border-radius: 8px 8px 0 0;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    bottom: 0;
    -moz-transition: all 400ms ease-out 0s;
    -webkit-transition: all 400ms ease-out 0s;
    -ms-transition: all 400ms ease-out 0s;
    -o-transition: all 400ms ease-out 0s;
    transition: all 400ms ease-out 0s;
    content: "";
}

.tj-service-item .icon-box {
    position: absolute;
    top: -65px;
    right: -55px;
    background: var(--tj-white-color);
    width: 200px;
    height: 200px;
    line-height: 200px;
    text-align: center;
    border-radius: 50%;
    z-index: 3;
    transition: 0.4s;
    display: inline-block;
    border: 2px solid var(--tj-primary-color);
}

.tj-service-item .icon-box::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    right: 0;
    top: 0;
    line-height: 0;
    background: var(--tj-primary-color);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.tj-service-item:hover .icon-box {
    background-color: transparent;
    border-color: transparent;
    color: var(--tj-white-color);
}

.tj-service-item:hover .icon-box i {
    color: var(--tj-white-color);
}

.tj-service-item:hover .icon-box::before {
    opacity: 1;
    visibility: visible;
    width: 200px;
    height: 200px;
    line-height: 200px;
}

.tj-service-item .icon-box i {
    color: var(--tj-primary-color);
    font-size: 50px;
    position: relative;
    top: 20px;
    transition: 0.4s;
    right: 15px;
}

.tj-service-item .service-content {
    padding: 35px 30px;
    z-index: 3;
    transition: 0.4s;
}

.tj-service-item:hover .service-content {
    transform: translateY(-10px);
}

.tj-service-item .service-content .title-link {
    color: var(--tj-white-color);
    transition: 0.4s;
}

.tj-service-item .service-content .title-link:hover {
    color: var(--tj-primary-color);
}

.tj-service-item .service-content p {
    color: var(--tj-white-color);
    margin-bottom: 0;
}

.tj-service-section-two {
    padding-bottom: 60px;
    position: relative;
    margin-top: -85px;
}

.tj-service-section-three {
    padding-bottom: 90px;
    padding-top: 110px;
}

.service-item-two {
    padding: 20px 30px 10px;
    border: 1px solid var(--tj-gray-color3);
    position: relative;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    margin-bottom: 65px;
}

.service-item-two .service-image {
    flex: 0 0 auto;
    margin-bottom: -45px;
}

.service-item-two .service-image img {
    width: 100%;
    max-width: 230px;
    border-radius: 3px;
}

.service-item-two .service-text {
    position: relative;
    padding-left: 50px;
    padding-top: 15px;
    margin-bottom: -55px;
}

.service-item-two .services-icon {
    position: absolute;
    left: -45px;
    top: 25px;
}

.service-item-two .services-icon i {
    width: 70px;
    height: 70px;
    line-height: 65px;
    border-radius: 50%;
    background: var(--tj-secondary-color);
    border: 6px solid var(--tj-white-color);
    color: var(--tj-white-color);
    font-size: 25px;
    text-align: center;
    transition: 0.4s;
    transform: scale(1);
    display: block;
}

.service-item-two:hover .services-icon i {
    transform: scale(1.1);
}

.service-item-two .service-title {
    margin-bottom: 25px;
}

.service-item-two .service-title a {
    font-size: 26px;
    color: var(--tj-secondary-color);
    transition: 0.4s;
}

.service-item-two .service-title a:hover {
    color: var(--tj-primary-color);
}

.service-item-two .service-title a:hover {
    color: var(--tj-primary-color);
}

.service-item-two .des {
    margin-bottom: 25px;
}

.service-item-two:hover .services-icon i {
    background-color: var(--tj-primary-color);
}

.tj-service-section-four {
    padding-top: 60px;
    padding-bottom: 95px;
}

.tj-service-section-four.tj-service-page {
    padding-top: 110px;
}

.service-item-three {
    position: relative;
    margin-bottom: 25px;
}

.service-item-three .service-image {
    position: relative;
    overflow: hidden;
}

.service-item-three .service-image img {
    border-radius: 3px;
    transition: 0.4s;
    transform: scale(1);
}

.service-item-three:hover .service-image img {
    transform: scale(1.1);
}

.service-item-three .service-content {
    position: absolute;
    bottom: 0;
    right: 100px;
    background: var(--tj-white-color);
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.1);
    padding: 25px 20px 20px 25px;
}

.service-item-three .service-content::before {
    z-index: 1;
    top: -1px;
    right: -68px;
    width: 70px;
    height: 157px;
    position: absolute;
    clear: both;
    display: block;
    content: "";
    background: var(--tj-white-color);
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.1);
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    transition: 0.4s;
}

.service-item-three .service-content .title {
    color: var(--tj-secondary-color);
    transition: 0.4s;
}

.service-item-three .service-content .title:hover {
    color: var(--tj-primary-color);
}

.service-item-three .service-icon {
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: 9;
}

.service-item-three .service-icon i {
    width: 70px;
    height: 70px;
    line-height: 78px;
    font-size: 30px;
    text-align: center;
    display: inline-block;
    background: var(--tj-secondary-color);
    border-radius: 50%;
    color: var(--tj-white-color);
    transition: 0.4s;
    transform: scale(1);
}

.service-item-three:hover .service-icon i {
    background-color: var(--tj-primary-color);
    color: var(--tj-white-color);
    transform: scale(1.1);
}

.tj-service-icon-box {
    position: absolute;
    right: 140px;
    bottom: -35px;
    background: #062e39;
    z-index: 9;
    border-radius: 4px;
}

.tj-service-icon-box ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.tj-service-icon-box ul li {
    display: inline-block;
    padding: 65px 30px 20px;
    text-align: center;
    position: relative;
    min-width: 216px;
    cursor: pointer;
    transition: 0.4s;
}

.tj-service-icon-box ul li::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    right: -2px;
    top: 0;
    background: rgba(255, 255, 255, 0.05);
}

.tj-service-icon-box ul li:last-child:before {
    display: none;
}

.tj-service-icon-box ul .br-none:before {
    display: none;
}

.tj-service-icon-box ul li .tj-service-icon {
    transform: translateY(0px);
    transition: 0.4s;
    margin-bottom: 10px;
}

.tj-service-icon-box ul li:hover .tj-service-icon {
    transform: translateY(-30px);
}

.tj-service-icon-box ul li .service-item .service-arrow {
    transform: translateY(0px);
    transition: 0.4s;
}

.tj-service-icon-box ul li:hover .service-item .service-arrow {
    transform: translateY(-25px);
}

.tj-service-icon-box ul li .service-item .service-arrow i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--tj-white-color);
    color: #062e39;
    display: inline-block;
    transform: rotate(-35deg);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.tj-service-icon-box ul li .service-item .service-arrow i:hover {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.tj-service-icon-box ul li:hover .service-item .service-arrow i {
    color: var(--tj-secondary-color);
    opacity: 1;
    visibility: visible;
}

.tj-service-icon-box ul li:hover {
    background-color: var(--tj-primary-color);
}

.tj-service-icon-box ul li:nth-child(1):hover {
    border-radius: 3px 0 0 3px;
}

.tj-service-icon-box ul li:nth-child(3):hover {
    border-radius: 0 3px 3px 0;
}

.tj-service-icon-box ul li .service-item .service-icon {
    line-height: 1;
}

.tj-service-icon-box ul li:hover .service-icon i {
    color: var(--tj-white-color);
    line-height: 1;
}

.tj-service-icon-box ul li .service-item.service-icon {
    font-size: 70px;
    color: var(--tj-primary-color);
    line-height: 1;
}

.tj-service-icon-box ul li .service-item .service-icon {
    font-size: 70px;
    color: var(--tj-primary-color);
}

.tj-service-icon-box ul li .service-item .sub-title span {
    color: var(--tj-white-color);
    font-family: var(--tj-ff-title);
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    display: block;
    margin-bottom: 10px;
}

.tj-service-icon-box ul li:hover .sub-title span {
    color: var(--tj-white-color);
}

.tj-service-icon-box2 {
    position: static;
    background: var(--tj-white-color);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
    z-index: 9;
}

.tj-service-icon-box2 ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.sub-title
{
        color: #000;
}

.tj-hero-section .hero-bg-2::before {
    width: 100%;
    position: absolute;
    content: "";
    height: 100%;
    transition: 0.6s;
    left: 0;
    top: 0;
    background: #2a55a3;
}

.tj-hero-section .hero-bg-2 {
    content: "";
    position: absolute;
    /* background: url(../images/banner/hero-2.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
}
.tj-service-icon-box2 ul li {
    display: block;
    text-align: center;
    position: relative;
    transition: 0.4s;
    padding: 17px 15px 17px;
    width: 20%;
    border-left: 1px solid #cccccc73;
    border-bottom: 1px solid #cccccc73;
}


/* ----------------------------------
    07. Cta CSS
------------------------------------ */
.tj-cta-section {
    background-color: var(--tj-secondary-color);
    background-size: 27.5% 100%;
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
}

.tj-cta-section:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../images/banner/cta-shape.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}

.tj-cta-section .cta-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    background-size: cover;
    height: 100%;
    background-position: center;
}

.cta-content-area {
    background: var(--tj-secondary-color);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 76px 0;
    position: relative;
}

.cta-content {
    display: flex;
    align-items: center;
    padding-left: 75px;
    position: relative;
    z-index: 9;
}

.cta-content .cta-icon {
    background: var(--tj-primary-color);
    min-width: 120px;
    height: 120px;
    line-height: 136px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    left: 0;
    transform: translateX(-50%);
    position: absolute;
}

.cta-content .cta-icon i {
    color: var(--tj-white-color);
    font-size: 50px;
}

.cta-content .cta-text {
    padding-left: 80px;
    max-width: 850px;
}

.cta-content .cta-text .title {
    color: var(--tj-white-color);
    margin-bottom: 30px;
    font-size: 45px;
}

.cta-content .cta-text .desc {
    color: var(--tj-white-color);
    font-size: 18px;
    margin-bottom: 0;
}

.tj-cta-section .tj-theme-button {
    position: absolute;
    z-index: 9;
    right: 0;
    top: 50%;
    transform: translateY(-300%);
}

.tj-cta-section-two {
    position: relative;
    padding: 60px 0;
}

.tj-cta-section-two .tj_cta_image {
    content: "";
    position: absolute;
    background: url(../images/cta/cta-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
}

.tj-cta-section-two .tj_cta_image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.tj-cta-section-two .tj_cta_image1 {
    content: "";
    position: absolute;
    background: url(../images/cta/cta-3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
}

.tj-cta-section-two .tj_cta_image1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.tj-cta-section-two .tj-cta-content .tj-section-heading {
    margin-bottom: 25px;
    max-width: 450px;
}

.tj-cta-content {
    position: relative;
    z-index: 3;
}

.tj-cta-content2 {
    padding-left: 110px;
}

.tj-cta-content .tj-section-heading .sub-title {
    font-size: 18px;
    font-weight: 500;
}

.tj-cta-content .tj-section-heading .title {
    color: var(--tj-white-color);
    font-size: 35px;
    margin-top: 5px;
}

.tj-cta-section-three {
    background: url(../images/banner/cta-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.tj-cta-section-three::before {
    width: 100%;
    position: absolute;
    content: "";
    height: 100%;
    transition: 0.6s;
    left: 0;
    top: 0;
    background: rgba(6, 46, 57, 0.5);
}

.tj-cta-left-content {
    position: relative;
    z-index: 3;
}

.tj-cta-left-content h3 {
    color: var(--tj-white-color);
    margin-bottom: 25px;
}

.tj-cta-left-content p {
    color: var(--tj-white-color);
    margin-bottom: 45px;
}

.tj-cta-section-three .cta-counter-box {
    position: relative;
    z-index: 3;
}

.tj-cta-section-three .cta-counter-box ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tj-cta-section-three .cta-counter-box ul li {
    position: relative;
    transition: 0.4s;
    margin-bottom: 35px;
    padding: 20px 0 0 18px;
    margin-right: 60px;
}

.tj-cta-section-three .cta-counter-box ul li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 70px;
    height: 116px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.55);
    transition: 0.4s;
}

.tj-cta-section-three .cta-counter-box ul li:hover::before {
    background: var(--tj-primary-color);
}

.tj-cta-section-three .cta-counter-box .list-one li:nth-child(1) {
    margin-top: 0;
    margin-bottom: 100px;
    margin-left: 50px;
}

.tj-cta-section-three .cta-counter-box .list-one li:nth-child(2) {
    margin-top: -30px;
    margin-right: 0;
}

.tj-cta-section-three .cta-counter-box .list-one li:nth-child(4) {
    margin-top: 35px;
    margin-right: 0;
}

.tj-cta-section-three .cta-counter-box ul .tj-count {
    font-size: 35px;
    font-weight: 700;
    color: var(--tj-white-color);
    line-height: 1;
    font-family: var(--tj-ff-title);
    letter-spacing: 4px;
}

.tj-cta-section-three .cta-counter-box .sub-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--tj-white-color);
    font-family: var(--tj-ff-title);
    position: relative;
    z-index: 3;
}

/* ----------------------------------
    13. About CSS
------------------------------------ */
.tj-about-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.tj-about-section .tj-section-heading {
    margin-bottom: 0px;
}

.tj-about-section .tj-section-heading .title {
    margin-bottom: 15px;
}

.about-content-one .tj-icon-box {
    margin-bottom: 15px;
}

.about-content-one .tj-icon-box .ab-text {
    margin-bottom: 10px;
}

.about-content-one .tj-icon-box .ab-text .ab-icon {
    margin-right: 15px;
}

.about-content-one .ab-button-box {
    margin-top: 25px;
}

.about-content-one .ab-button-box .right-text {
    padding-left: 45px;
}

.about-content-one .ab-button-box .about-btn {
    margin-right: 45px;
}

.about-group-image {
    position: relative;
}

.about-group-image .image-box {
    width: calc(100% - 225px);
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.4s;
}

.about-group-image .image-box::before {
    content: "";
    position: absolute;
    top: 25%;
    left: 20%;
    width: 59%;
    height: 53%;
    z-index: 10;
    border: 2px dashed var(--tj-gray-color3);
    transition: 0.4s;
    transform: scale(1);
    max-width: 250px;
    max-height: 350px;
}

.about-group-image .image-box:hover::before {
    transform: scale(1.1);
}

.about-group-image .group-1 {
    margin-top: 20px;
    width: 60%;
}

.about-group-image .group-shape {
    position: absolute;
    bottom: 0;
    left: 0;
}

.about-group-image .dotted-shape {
    position: absolute;
    bottom: 32%;
    left: 45%;
    z-index: 9;
}

.tj-about-section-two {
    padding-bottom: 120px;
}

.tj-about-section-two .tj-section-heading {
    margin-bottom: 35px;
}

.tj-about-section-two .tj-section-heading .title {
    margin-bottom: 30px;
}

.about-group-image2 {
    position: relative;
}

.about-group-image2 .image-box img {
    width: 62%;
    border-radius: 3px;
}

.about-group-image2 .group-1 {
    max-width: 50%;
    width: 100%;
    position: absolute;
    top: 85px;
    right: 25px;
    border-radius: 3px;
}

.about-group-image2 .group-shape {
    position: absolute;
    top: 25px;
    left: 45px;
    max-width: 55%;
    width: 100%;
}

.about-content-two {
    padding-left: 30px;
}

.about-content-two .content-box {
    border-bottom: 1px solid var(--tj-gray-color3);
}

.about-content-two .tj-icon-box {
    margin-bottom: 25px;
    margin-right: 50px;
}

.about-content-two .tj-icon-box:last-child {
    margin-right: 0;
}

.about-content-two .tj-icon-box p {
    max-width: 245px;
}

.about-content-two .tj-icon-box .ab-text {
    margin-bottom: 10px;
}

.about-content-two .tj-icon-box .ab-text .ab-icon {
    margin-right: 15px;
}

.about-content-two .ab-auother-box {
    margin-top: 25px;
}

.about-content-two .ab-auother-box .auother-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 35px;
}

.about-content-two .ab-auother-box .auother-header .auother-image {
    margin-right: 20px;
}

.about-content-two .ab-auother-box .auother-header .auother-text h6 {
    margin-bottom: 0;
}

.tj-about-section-three {
    padding-top: 110px;
    padding-bottom: 80px;
}

.about-content-three .content-box {
    border-bottom: 1px solid rgba(221, 221, 221, 0.4);
}

.about-content-three .tj-icon-box {
    margin-bottom: 30px;
    margin-right: 50px;
}

.about-content-three .tj-icon-box:last-child {
    margin-right: 0;
}

.about-content-three .tj-icon-box p {
    max-width: 245px;
}

.about-content-three .tj-icon-box .ab-text {
    margin-bottom: 10px;
}

.about-content-three .tj-icon-box .ab-text .ab-icon {
    margin-right: 15px;
}

.about-content-three .tj-theme-button {
    margin-top: 35px;
}

.tj-icon-box2 {
    background: var(--tj-white-color);
    border-radius: 4px;
    padding: 45px 35px 20px;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    margin-right: 25px;
    position: relative;
    z-index: 10;
}

.tj-icon-box2::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 4px 4px 0 0;
    height: 4px;
    background: var(--tj-primary-color);
}

.tj-icon-box2 .number-icon {
    margin-bottom: 10px;
}

.tj-icon-box2 .number-icon {
    display: inline-block;
    background: var(--tj-blue-color);
    text-align: center;
    width: 91px;
    height: 86px;
    line-height: 98px;
    border-radius: 3px;
    transition: 0.4s;
    overflow: hidden;
}

.tj-icon-box2 .number-icon i {
    color: var(--tj-white-color);
    font-size: 45px;
    transition: 0.4s;
}

.tj-icon-box2 .about-number .tj-count {
    color: var(--tj-dark-color);
    letter-spacing: 4px;
    font-size: 35px;
    font-weight: 700;
    font-family: var(--tj-ff-title);
}

.tj-icon-box2 .about-number p {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--tj-ff-title);
}

.tj-icon-box3 {
    background: var(--tj-secondary-color);
    border: 1px solid var(--tj-primary-color);
    border-radius: 2px;
    padding: 25px 35px;
    margin-right: 20px;
    transition: 0.4s;
    margin-bottom: 25px;
    max-width: 200px;
    width: 100%;
}

.tj-icon-box3:last-child {
    margin-right: 0;
}

.tj-icon-box3 i {
    color: var(--tj-primary-color);
    font-size: 50px;
    line-height: 1.2;
    transition: 0.4s;
}

.tj-icon-box3 .title {
    color: var(--tj-white-color);
    margin-bottom: 0;
}

.tj-icon-box3:hover {
    background-color: var(--tj-primary-color);
    border-color: transparent;
}

.tj-icon-box3:hover i {
    color: var(--tj-white-color);
}

/* ----------------------------------
    20. Blog CSS
------------------------------------ */

  .blog-car-benefits {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    z-index: 9;
    position: relative;
        height: 100%;
}

.blog-car-benefits:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


.blog-content {
    padding: 15px;
}

.blog-title {
    color: var(--tj-secondary-color);
    transition: 0.4s;
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: bold;
    padding-top: 8px;
    text-align: left;
}

.blog-text {
    margin-bottom: 10px;
    color: #4e4e4e;
}
/* ----------------------------------
    25. Contact CSS
------------------------------------ */
.tj-contact-page {
    padding-top: 60px;
    padding-bottom: 60px;
}

.tj-contact-page .tj-section-heading {
    margin-bottom: 10px;
}


.tj-contact-page .contact-header span {
    display: block;
}

.eng
{
    color: var(--tj-secondary-color);
    font-size: 14px;
    font-weight: 500;
    transition: 0.4s;    margin-bottom: 0;
}

.vit
{
    color: var(--tj-primary-color);
    font-size: 14px;
    font-weight: 500;
    transition: 0.4s; margin-bottom: 0;
}

.tj-contact-box {
    margin-bottom: 55px;
}

.contact-header i {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 13px;
    text-align: center;
    display: inline-block;
    border-radius: 10%;    margin-top: -3px;
    background: var(--tj-blue-color);
    color: var(--tj-white-color);
}

.tj-contact-list 
{
    margin-top: 10px;
}
.tj-contact-page .tj-contact-list:hover .contact-icon i {
    background-color: var(--tj-primary-color);
    color: var(--tj-white-color);
}

.tj-contact-page .tj-contact-list .contact-header {
    padding-left: 0px;    display: inline-flex;
}

.tj-contact-page .tj-contact-list .contact-header a {
color: var(--tj-secondary-color);
    font-size: 14px;
    font-weight: 500;
    transition: 0.4s;
    text-align: left;
    padding-left: 10px;
    width: 96%;
    line-height: 17px;
}

.tj-contact-page .tj-contact-list .contact-header a:hover {
    color: var(--tj-primary-color);display: inline-flex;
}

.tj-animate-form .animate-form {
    width: 100%;
}

.tj-animate-form .form__div {
    position: relative;
    margin-bottom: 10px;
}
.tj-animate-form .form__input {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #2a55a3;
    outline: none;
    padding: 10px 15px;
    font-size: 15px;
    background: none;
    z-index: 1;
}

.tj-animate-form .form__input.textarea {
    min-height: 165px;
}

.tj-animate-form .form__label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    padding: 0 0.25rem;
    background-color: var(--tj-white-color);
    color: var(--tj-body-color);
    font-size: 15px;
    transition: 0.2s;
}

.tj-animate-form .form__input:focus + .form__label {
    top: -0.5rem;
    left: 0.8rem;
    color: var(--tj-body-color);
    font-size: 15px;
    font-weight: 500;
    z-index: 10;
}

.tj-animate-form .form__input:not(:placeholder-shown).form__input:not(:focus) + .form__label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 15px;
    font-weight: 500;
    z-index: 10;
}

.tj-animate-form .form__input:focus {
    border: 1.5px solid var(--tj-primary-color);
}

.tj-theme-button .tj-primary-btn.contact-btn {
    border: none;
    margin-top: 130px;
}

.tj-contact-page .google-map {
    padding-left: 20px;
}

.tj-contact-page .google-map iframe {
    height: 650px;
    width: 100%;
}

/* ----------------------------------
    26. Subscribe CSS
------------------------------------ */
.tj-subscribe-section {
    position: relative;
    z-index: 9;
    margin-bottom: -70px;
}

.subscribe-content-box {
    background: var(--tj-primary-color);
    padding: 10px 35px 10px 20px;
    position: relative;
    z-index: 9;
    border-radius: 10px;
}
.mail-icon img
{
        width: 90px;
}
.subscribe-content-box .subscribe-title {
    padding-left: 15px;
}

.subscribe-content-box .subscribe-title .title {
    font-size: 30px;
    color: var(--tj-white-color);
    font-weight: 700;
}

.subscribe-content-box .subscribe-form {
    position: relative;
}

.subscribe-content-box .subscribe-form .subscribe-input {
    margin-right: 20px;
}

.subscribe-content-box .subscribe-form .subscribe-input input {
    width: 280px
    background: var(--tj-white-color);
    height: 60px;
    line-height: 60px;
    border-radius: 3px;
    padding: 0 20px;
}

.tj-subscribe-section .tj-submit-btn {
    min-width: 185px;
    height: 60px;
}

/* ----------------------------------
    27. Breadcrumb CSS
------------------------------------ */
.breadcrumb-wrapper {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 200px;
    position: relative;
}

.breadcrumb-wrapper::before {
    width: 100%;
    position: absolute;
    content: "";
    height: 100%;
    transition: 0.6s;
    left: 0;
    top: 0;
    background: linear-gradient(261deg,#da2b3300,#0a3b85)!important;}

.breadcrumb-wrapper .breadcrumb-content {
    position: relative;
    z-index: 3;
}

.breadcrumb-wrapper .breadcrumb-content .breadcrumb-title {
    color: var(--tj-white-color);
    margin-bottom: 15px;
    font-size: 30px;
}

.breadcrumb-wrapper .breadcrumb-content .breadcrumb-link ul li {
    display: inline-block;
    color: var(--tj-white-color);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--tj-ff-title);
}

.breadcrumb-wrapper .hero-right-element {
    line-height: 0;
}

.breadcrumb-wrapper .breadcrumb-content .breadcrumb-link {
    background: var(--tj-primary-color);
    display: inline-block;
    color: var(--tj-white-color);
    font-size: 18px;
    font-family: var(--tj-ff-body);
    font-weight: 500;
    position: relative;
    padding: 23px 70px;
    right: -35px;
    top: 1px;
}

.breadcrumb-wrapper .breadcrumb-content .breadcrumb-link::before {
    z-index: 1;
    top: -1px;
    left: -70px;
    width: 70px;
    height: 76px;
    position: absolute;
    clear: both;
    display: block;
    content: "";
    background: var(--tj-primary-color);
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.1);
    clip-path: polygon(100% 0, 50% 100%, 100% 100%);
    -webkit-clip-path: polygon(100% 0, 50% 100%, 100% 100%);
    transition: 0.4s;
}

.breadcrumb-wrapper .breadcrumb-content .breadcrumb-link::after {
    z-index: 1;
    top: -1px;
    right: -70px;
    width: 70px;
    height: 76px;
    position: absolute;
    clear: both;
    display: block;
    content: "";
    background: var(--tj-primary-color);
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.1);
    -webkit-clip-path: polygon(0 0, 0% 100%, 50% 100%);
    clip-path: polygon(0 0, 0% 100%, 50% 100%);
    transition: 0.4s;
}

.breadcrumb-wrapper .breadcrumb-content .breadcrumb-link > span a {
    color: var(--tj-white-color);
    transition: 0.4s;
}

.breadcrumb-wrapper .breadcrumb-content .breadcrumb-link > span {
    display: inline-block;
    position: relative;
}

.breadcrumb-wrapper .breadcrumb-content .breadcrumb-link > span a:hover {
    color: var(--tj-secondary-color);
}

/* ----------------------------------
    28. Footer CSS
------------------------------------ */
.tj-footer-area {
    background-color: var(--tj-secondary-color);
    background-image: url(../images/banner/slider/slider-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 40px;
    position: relative;
}

.tj-footer-area::before {
    width: 100%;
    position: absolute;
    content: "";
    height: 100%;
    transition: 0.6s;
    left: 0;
    top: 0;
    background: rgba(6, 46, 57, 0.7);
}

.tj-footer-area .footer1_col_4,
.tj-footer-area .footer1_col_3,
.tj-footer-area .footer1_col_2 {
    margin-top: 90px;
}

.tj-footer-area .footer-title {
    margin-bottom: 35px;
    position: relative;
}

.tj-footer-area .footer-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: -30px;
    left: 0;
    background: url(../images/icon/icon-shape.svg);
    background-repeat: no-repeat;
}

.tj-footer-area .footer-title .title {
    display: block;
    color: var(--tj-white-color);
    margin-bottom: 0;    font-size: 16px;
}

.footer-widget {
    margin-bottom: 35px;
    position: relative;
    z-index: 3;
}

.footer-widget p {
    color: var(--tj-gray-color2);
    margin-top: 0px;
}

.tj-footer-area .footer1_col_2 {
    margin-bottom: 25px;
}

.tj-footer-area .footer1_col_3 {
    margin-bottom: 25px;
    padding-left: 50px;
}

.tj-footer-area .footer-contact-info {
    margin-bottom: 25px;
}

.tj-footer-area .footer-content-info {
    background: var(--tj-secondary-color);
    padding: 105px 50px 110px;
    max-width: 385px;
    margin-left: -50px;
    width: 100%;
    margin-bottom: 0;
}

.tj-footer-area .footer-content-info .footer-social-icon {
    margin-top: 35px;
}

.tj-footer-area .footer-content-info .footer-social-icon ul li {
    display: inline-block;
    margin-right: 5px;
}

.tj-footer-area .footer-content-info .footer-social-icon ul li:last-child {
    margin-right: 0;
}

.tj-footer-area .footer-content-info .footer-social-icon ul li a i {
    background: #1b1a1a;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 2px;
    display: inline-block;
    color: var(--tj-white-color);
    transition: 0.4s;
    margin-right: 5px;
}

.tj-footer-area .footer-content-info .footer-social-icon ul li a i:hover {
    background-color: var(--tj-primary-color);
    color: var(--tj-white-color);
}

.tj-footer-area .footer-content-info img {
    max-width: 170px;
    width: 100%;
}

.tj-footer-area .widget_nav_menu .widget-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tj-footer-area .widget_nav_menu .widget-menu ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.tj-footer-area .widget_nav_menu .widget-menu ul li:last-child {
    margin-bottom: 0;
}

.tj-footer-area .widget_nav_menu .widget-menu ul li a {
    color: var(--tj-gray-color2);
    transition: 0.4s;
    font-size: 17px;
    font-weight: 500;
}

.tj-footer-area .widget_nav_menu .widget-menu ul li a i {
    margin-right: 5px;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    left: 0;
}

.tj-footer-area .widget_nav_menu .widget-menu ul li a:hover {
    color: var(--tj-primary-color);
}

.tj-footer-area .footer-contact-info .footer-title {
    margin-bottom: 35px;
}

.tj-footer-area .footer-contact-info ul li {
    color: #ffffff;
    font-size: 14px;
    /* font-weight: 500; */
    margin-bottom: 14px;
    position: relative;
    padding-left: 20px;
}

.tj-footer-area .footer-contact-info ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    transition: 0.4s;
}

.tj-footer-area .footer-contact-info ul li a:hover {
    color: var(--tj-primary-color);
}

.tj-footer-area .footer-contact-info ul li:last-child {
    margin-bottom: 0;
}

.tj-footer-area .footer-contact-info ul li i {
     /* width: 40px; */
    /* height: 40px; */
    /* line-height: 42px; */
    color: var(--tj-white-color);
    /* text-align: center; */
    /* border: 1px solid var(--tj-gray-color2); */
    display: inline-block;
    /* border-radius: 50%; */
    /* font-size: 18px; */
    margin-right: 10px;
    background: transparent;
    /* transition: 0.4s; */
    /* margin-right: 0; */
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    left: 0;
}

.tj-footer-area .footer-contact-info ul li i:hover {
    background-color: var(--tj-white-color);
    color: var(--tj-primary-color);
    border-color: transparent;
}

.tj-footer-area .footer-contact-info p {
    max-width: 335px;
}

.tj-footer-v2 .widget_nav_menu .widget-menu ul li a {
    color: var(--tj-body-color);
    font-weight: 400;
    transition: 0.4s;
}

.tj-footer-v2 .widget_nav_menu .widget-menu ul li a:hover {
    color: var(--tj-primary-color);
}

.tj-footer-v2 .widget_nav_menu .widget-menu ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.tj-footer-v2 .widget_nav_menu .widget-menu ul li i {
    margin-right: 5px;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    left: 0;
}

.tj-footer-v2 .widget_nav_menu .widget-menu ul li:last-child {
    margin-bottom: 0;
}

.tj-footer-v2 .widget_recent_post .widget-post {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--tj-gray-color3);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.tj-footer-v2 .widget_recent_post .widget-post:last-child {
    border: none;
}

.tj-footer-v2 .widget_recent_post .widget-post .post-calender {
    color: var(--tj-primary-color);
}

.tj-footer-v2 .widget_recent_post .widget-post .post-img {
    margin-right: 20px;
}

.tj-footer-v2 .widget_recent_post .widget-post .post-calender span {
    color: var(--tj-body-color);
}

.tj-footer-v2 .widget_recent_post .widget-post .post-calender h6 {
    line-height: 1.2;
}

.tj-footer-v2 .widget_recent_post .widget-post .post-calender .post-title {
    color: var(--tj-secondary-color);
    transition: 0.4s;
    font-size: 18px;
}

.tj-footer-v2 .widget_recent_post .widget-post .post-calender .post-title:hover {
    color: var(--tj-primary-color);
}

.tj-footer-v2 .widget_date_menu {
    padding-left: 45px;
}

.tj-footer-v2 .widget_date_menu .widget-time ul li {
    margin-bottom: 20px;
}

.tj-footer-v2 .widget_date_menu .widget-time ul li:last-child {
    margin-bottom: 0;
}

.tj-footer-v2 {
    background: var(--tj-dark-color2);
    padding-top: 90px;
    position: relative;
}

.tj-footer-v2 .footer-title {
    margin-bottom: 35px;
    position: relative;
}

.tj-footer-v2 .footer-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: -40px;
    left: 0;
    background: url(../images/icon/icon-shape.svg);
    background-repeat: no-repeat;
}

.tj-footer-v2 .footer-title .title {
    color: var(--tj-dark-color);
    font-weight: 700;
    display: block;
    margin-bottom: 0;
}

.tj-footer-v2 .footer-content-info img {
    max-width: 196px;
    width: 100%;
    margin-bottom: 10px;
}

.tj-footer-v2 .footer-content-info p {
    color: var(--tj-body-color);
}

.tj-footer-v2 .footer-content-info .footer-social-icon {
    margin-top: 25px;
}

.tj-footer-v2 .footer-content-info .footer-social-icon ul li {
    display: inline-block;
    margin-right: 5px;
}

.tj-footer-v2 .footer-content-info .footer-social-icon ul li:last-child {
    margin-right: 0;
}

.tj-footer-v2 .footer-content-info .footer-social-icon ul li a i {
    background: #1b1a1a;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 2px;
    display: inline-block;
    color: var(--tj-white-color);
    transition: 0.4s;
    margin-right: 5px;
}

.tj-footer-v2 .footer-content-info .footer-social-icon ul li a i:hover {
    background-color: var(--tj-primary-color);
    color: var(--tj-white-color);
}

.copyright-bottom {
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 0;
    margin-top: 25px;
    background: #cb243e;
    position: relative;

}

.footer-copyright-area {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright-area .copyright-target p {
    color: #fff;
    margin-bottom: 0;
}

.footer-copyright-area .copyright-target a {
    color: #fff;
    transition: 0.4s;
}

.footer-copyright-area .copyright-target a:hover {
    color: #fff;
}

.footer-copyright-area .copyright-menu ul li {
     display: inline-block;
    margin-right: 20px;
    border-right: 1px solid #fff;
    padding-right: 18px;
}

.footer-copyright-area .copyright-menu ul li a {
     color: #fff;
    transition: 0.4s;
}

.footer-copyright-area .copyright-menu ul li a:hover {
    color: #fff;
}

.footer-copyright-two {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.copyright-bottom-two {
    border-top: 1px solid var(--tj-gray-color3);
    padding: 25px 0;
}

.footer-copyright-two .copyright-target p {
    color: var(--tj-body-color);
    margin-bottom: 0;
}

.footer-copyright-two .copyright-target a {
    color: var(--tj-body-color);
    transition: 0.4s;
}

.footer-copyright-two .copyright-target a:hover {
    color: var(--tj-primary-color);
}

.footer-copyright-two .copyright-menu ul li {
    display: inline-block;
    margin-right: 20px;
}

.footer-copyright-two .copyright-menu ul li a {
    color: var(--tj-body-color);
    transition: 0.4s;
}

.footer-copyright-two .copyright-menu ul li a:hover {
    color: var(--tj-primary-color);
}

.tj-footer-v3 {
    background: url(../images/banner/footer-bg2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 110px;
    position: relative;
}

.tj-footer-v3 .copyright_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding: 27px 0;
}

.footer-contact-box {
    margin-bottom: 30px;
}

.footer-subscribe-box {
    margin-bottom: 50px;
}

.footer-contact-box .footer-logo {
    margin-bottom: 40px;
}

.footer-contact-box .footer-logo img {
    max-width: 196px;
    width: 100%;
}

.footer-contact-box p {
    color: var(--tj-white-color);
    max-width: 500px;
    margin-bottom: 50px;
}

.footer-contact-list .contact-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 35px;
    margin-bottom: 20px;
}

.footer-contact-list .contact-box:last-child {
    margin-right: 0;
}

.footer-contact-list .contact-box .contact-icon {
    margin-right: 20px;
}

.footer-contact-list .contact-box .contact-icon i {
    width: 70px;
    height: 70px;
    line-height: 76px;
    background: var(--tj-white-color);
    font-size: 25px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    color: var(--tj-primary-color);
}
.footer-contact-list .contact-box .contact-link .sub-title {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--tj-white-color);
    font-family: var(--tj-ff-title);
}

.footer-contact-list .contact-box .contact-link a {
    color: var(--tj-white-color);
    font-size: 18px;
    font-weight: 500;
    transition: 0.4s;
}

.footer-contact-list .contact-box .contact-link a:hover {
    color: var(--tj-primary-color);
}

.footer-subscribe-box {
    position: relative;
    padding-left: 45px;
}

.footer-subscribe-box::before {
    position: absolute;
    content: "";
    top: 25px;
    left: -25px;
    width: 1px;
    height: 250px;
    background: rgba(232, 232, 232, 0.5);
}

.footer-subscribe-box .title {
    font-size: 40px;
    color: var(--tj-white-color);
    display: block;
    margin-bottom: 30px;
}

.footer-subscribe-box p {
    color: var(--tj-white-color);
    max-width: 510px;
    margin-bottom: 35px;
}

.footer-subscribe-box .footer-form input {
    background: var(--tj-white-color);
    width: 365px;
    height: 62px;
    line-height: 62px;
    padding: 0 20px;
    border-radius: 3px;
    border: 1px solid rgba(234, 24, 38, 0.25);
}

.footer-subscribe-box .footer-form {
    position: relative;
    margin-bottom: 33px;
}

.footer-subscribe-box .footer-form .tj-theme-button {
    position: absolute;
    right: 0;
    top: 0;
}

.footer-subscribe-box .footer-social-box {
    display: flex;
    align-items: center;
}

.footer-subscribe-box .footer-social-box .social-title {
    margin-right: 20px;
}

.footer-subscribe-box .footer-social-box .social-title h5 {
    color: var(--tj-white-color);
}

.footer-subscribe-box .social-list {
    position: relative;
    top: -4px;
}

.footer-subscribe-box .social-list ul li {
    margin-right: 15px;
    display: inline-block;
}

.footer-subscribe-box .social-list ul li:last-child {
    margin-right: 0;
}

.footer-subscribe-box .social-list ul li a {
    color: var(--tj-white-color);
    transition: 0.4s;
}

.footer-subscribe-box .social-list ul li a:hover {
    color: var(--tj-primary-color);
}

/* ----------------------------------
    29. Button CSS
------------------------------------ */
.tj-header-button {
    height: 60px;
    position: relative;
}

.tj-header-button:hover:before {
    border-bottom: 27px solid rgba(255, 255, 255, 0.05);
}

.tj-header-btn {
    display: inline-block;
    height: 60px;
    line-height: 60px;
    padding: 0 30px;
    font-family: var(--tj-ff-title);
    color: var(--tj-white-color);
    font-size: 18px;
    background-color: var(--tj-blue-color);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tj-header-btn:after {
    position: absolute;
    left: 8px;
    bottom: 6px;
    border-right: 27px solid transparent;
    border-bottom: 27px solid transparent;
    content: "";
    z-index: 2;
}

.tj-header-btn:hover::after {
    border-bottom: 27px solid rgba(255, 255, 255, 0.05);
}

.tj-header-btn:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--tj-secondary-color);
    transition: all 0.3s;
    z-index: -1;
}

.tj-header-btn:hover {
    color: var(--tj-white-color);
}

.tj-header-btn:hover:before {
    width: 100%;
}

.tj-header-btn i {
    font-size: 17px;
    color: var(--tj-white-color);
    font-weight: 500;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    transition: 0.4s;
    position: relative;
    top: 3px;
}

.tj-header-btn:hover i {
    transform: rotate(0deg);
}
.pt-65
{
    padding-top: 65px;
}

.ptb-100
{
    padding: 100px 0px;
}
/* tj-primary-btn */

.tj-primary-btn {
    display: inline-block;
    padding: 17px 26px;
    border-radius: 3px;
    font-family: var(--tj-ff-title);
    color: var(--tj-white-color);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.4s;
    position: relative;
    background-color: var(--tj-blue-color);
    overflow: hidden;
    z-index: 1;
    line-height: 1;
    border: none;
}

.tj-primary-btn::after {
    position: absolute;
    left: 8px;
    bottom: 8px;
    border-right: 24px solid transparent;
    border-bottom: 24px solid #084ba0;
    content: "";
    z-index: 2;
}

.tj-primary-btn:hover::after {
    border-bottom: 27px solid rgba(255, 255, 255, 0.05);
}

.tj-primary-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--tj-secondary-color);
    transition: all 0.3s;
    border-radius: 3px;
    z-index: -1;
}

.tj-primary-btn:hover {
    color: var(--tj-white-color);
}

.tj-primary-btn:hover:before {
    width: 100%;
}

.tj-primary-btn i {
    font-size: 17px;
    color: var(--tj-white-color);
    font-weight: 500;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    transition: 0.4s;
    position: relative;
    top: 3px;
}

.tj-primary-btn:hover i {
    transform: rotate(0deg);
}

.tj-primary-btn.price-button {
    width: 100%;
    border: none;
    padding: 23px 26px;
}

.tj-primary-btn.submit-btn {
    border: none;
    padding: 20px 26px;
}

.tj-transparent-btn.submit-btn2 {
    border: none;
    padding: 22px 26px !important;
}

/* tj-tranparent-btn */

.tj-transparent-btn {
    display: inline-block;
    padding: 17px 26px;
    text-align: center;
    border-radius: 3px;
    font-family: var(--tj-ff-title);
    color: var(--tj-white-color);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    background-color: var(--tj-primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    line-height: 1;
    border: none;
}

.tj-transparent-btn::after {
    position: absolute;
    left: 8px;
    bottom: 8px;
    border-right: transparent;
    border-bottom: 25px solid #000000;
    content: "";
    z-index: 2;
}

.tj-transparent-btn:hover:after {
    border-bottom: 27px solid var(--tj-gray-color5);
}

.tj-transparent-btn:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--tj-white-color);
    transition: all 0.3s;
    border-radius: 3px;
    z-index: -1;
}

.tj-transparent-btn:hover {
    color: var(--tj-secondary-color);
}

.tj-transparent-btn:hover:before {
    width: 100%;
}

.tj-transparent-btn i {
    font-size: 17px;
    color: var(--tj-white-color);
    font-weight: 500;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    transition: 0.4s;
    position: relative;
    top: 3px;
}

.tj-transparent-btn:hover i {
    transform: rotate(0deg);
    color: var(--tj-secondary-color);
}

/* tj-tranparent-btn2 */

.tj-transparent-btn-two {
    display: inline-block;
    padding: 17px 26px;
    text-align: center;
    border-radius: 3px;
    font-family: var(--tj-ff-title);
    color: var(--tj-secondary-color);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    background: var(--tj-white-color);
    border: 1px solid var(--tj-gray-color3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    line-height: 1;
}

.tj-transparent-btn-two:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-color: var(--tj-primary-color);
    background-color: var(--tj-primary-color);
    transition: all 0.3s;
    border-radius: 3px;
    z-index: -1;
}

.tj-transparent-btn-two:hover {
    color: var(--tj-white-color);
}

.tj-transparent-btn-two:hover:before {
    width: 100%;
}

.tj-transparent-btn-two i {
    font-size: 17px;
    color: var(--tj-secondary-color);
    font-weight: 500;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    transition: 0.4s;
    position: relative;
    top: 3px;
}

.tj-transparent-btn-two:hover i {
    transform: rotate(0deg);
    color: var(--tj-white-color);
}

/* submit button */

.tj-submit-btn {
    display: inline-block;
    padding: 17px 26px;
    text-align: center;
    border-radius: 3px;
    font-family: var(--tj-ff-title);
    color: var(--tj-white-color);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    background-color: var(--tj-secondary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    line-height: 1;
    border: none;
}

.tj-submit-btn::after {
    position: absolute;
    left: 8px;
    bottom: 8px;
    border-right: 25px solid transparent;
    border-bottom: 27px solid rgba(255, 255, 255, 0.05);
    content: "";
    z-index: 2;
}

.tj-submit-btn:hover:after {
    border-bottom: 27px solid var(--tj-gray-color5);
}

.tj-submit-btn:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--tj-white-color);
    transition: all 0.3s;
    border-radius: 3px;
    z-index: -1;
}

.tj-submit-btn:hover {
    color: var(--tj-secondary-color);
}

.tj-submit-btn:hover:before {
    width: 100%;
}

.tj-submit-btn i {
    font-size: 17px;
    color: var(--tj-white-color);
    font-weight: 500;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 5px;
    transition: 0.4s;
    position: relative;
    top: 3px;
}

.tj-submit-btn:hover i {
    transform: rotate(0deg);
    color: var(--tj-secondary-color);
}

.tj-theme-button.price-button {
    width: 100%;
}

.tj-theme-button.price-button .tj-primary-btn::after {
    background-color: var(--tj-secondary-color);
}

.tj-theme-button.price-button .tj-primary-btn::before {
    background-color: var(--tj-primary-color);
}

.tj-price-item-active .tj-theme-button.price-button .tj-primary-btn::before {
    width: 100%;
}

.tj-theme-button.price-button::before {
    bottom: 6px;
    border-bottom: 27px solid rgba(255, 255, 255, 0.05);
}

.tj-theme-button.price-button .tj-primary-btn {
    border: none;
    width: 100%;
}

.tj-theme-button .tj-transparent-btn.submit-btn:after {
    background-color: var(--tj-secondary-color);
}

.tabs-button {
    border: none;
    width: 316px;
    padding: 23px 26px;
}

/* modal css */
.search_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--tj-secondary-color);
    z-index: 100;
    padding-top: 70px;
    padding-bottom: 100px;
    opacity: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-transform: translateY(calc(-100% - 80px));
    -ms-transform: translateY(calc(-100% - 80px));
    transform: translateY(calc(-100% - 80px));
    -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.header_searce button {
    background-color: transparent;
    border: none;
    position: relative;
    top: 3px;
    padding-right: 25px;
}

.header_searce button i {
    color: var(--tj-secondary-color);
    transition: 0.4s;
    font-size: 25px;
    font-weight: 700;
}

.header-section-three .header_searce button i {
    color: var(--tj-white-color);
    transition: 0.4s;
    font-size: 25px;
    font-weight: 600;
}

.header_searce button i:hover {
    color: var(--tj-primary-color);
}

/*Pulse Border Animation*/

@keyframes circle-ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 84, 33, 0.3), 0 0 0 1em rgba(255, 84, 33, 0.3), 0 0 0 3em rgba(255, 84, 33, 0.3),
            0 0 0 5em rgba(255, 84, 33, 0.3);
    }
    100% {
        box-shadow: 0 0 0 1em rgba(255, 84, 33, 0.3), 0 0 0 3em rgba(255, 84, 33, 0.3), 0 0 0 5em rgba(255, 84, 33, 0.3),
            0 0 0 8em rgba(255, 84, 33, 0);
    }
}
@-webkit-keyframes circle-ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 84, 33, 0.3), 0 0 0 1em rgba(255, 84, 33, 0.3), 0 0 0 3em rgba(255, 84, 33, 0.3),
            0 0 0 5em rgba(255, 84, 33, 0.3);
    }
    100% {
        box-shadow: 0 0 0 1em rgba(255, 84, 33, 0.3), 0 0 0 3em rgba(255, 84, 33, 0.3), 0 0 0 5em rgba(255, 84, 33, 0.3),
            0 0 0 8em rgba(255, 84, 33, 0);
    }
}
.up-down {
    animation: up-down 4s alternate infinite;
    -webkit-animation: up-down 4s alternate infinite;
}

.up-down-new {
    animation: up-down 8s alternate infinite;
    -webkit-animation: up-down 8s alternate infinite;
}

@keyframes up-down {
    0% {
        transform: translateY(30px);
        -webkit-transform: translateY(0);
    }
    50% {
        transform: translateY(-50px);
        -webkit-transform: translateY(-50px);
    }
    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}
@-webkit-keyframes up-down {
    0% {
        transform: translateY(30px);
        -webkit-transform: translateY(0);
    }
    50% {
        transform: translateY(-50px);
        -webkit-transform: translateY(-50px);
    }
    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}
.left-right {
    animation: left-right 5s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
    -webkit-animation: left-right 5s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
}

.left-right-new {
    animation: left-right 8s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
    -webkit-animation: left-right 8s cubic-bezier(0.41, 0.04, 0.03, 1.1) infinite;
}

@keyframes left-right {
    0% {
        transform: translatex(0);
        -webkit-transform: translatex(0);
    }
    50% {
        transform: translateY(-50px);
        -webkit-transform: translatex(-50px);
    }
    100% {
        transform: translatex(0);
        -webkit-transform: translatex(0);
    }
}
@-webkit-keyframes left-right {
    0% {
        transform: translatex(0);
        -webkit-transform: translatex(0);
    }
    50% {
        transform: translatex(-50px);
        -webkit-transform: translatex(-50px);
    }
    100% {
        transform: translatex(0);
        -webkit-transform: translatex(0);
    }
}
.spine {
    animation: spine 5s linear infinite;
    -webkit-animation: spine 5s linear infinite;
}

@keyframes spine {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
@-webkit-keyframes spine {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
.spine-r {
    animation: spine-r 5s linear infinite;
    -webkit-animation: spine-r 5s linear infinite;
}

@keyframes spine-r {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}
@-webkit-keyframes spine-r {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}
.spine2 {
    animation: spine 8s linear infinite;
}

@keyframes spine2 {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    from {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
@-webkit-keyframes spine2 {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    from {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
@keyframes pre_rotate {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}
/*Pulse Border Animation*/
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
@-webkit-keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
/*Pulse Border Animation*/
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
@-webkit-keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
    }
}
@-moz-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
    }
}
@-o-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -o-transform: translateY(0);
    }
    40% {
        -o-transform: translateY(-30px);
    }
    60% {
        -o-transform: translateY(-15px);
    }
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* -----------------------
    17. modal CSS
--------------------------*/
body .search-modal .modal-content {
    background: transparent;
    position: initial;
    border: 0;
    position: relative;
}

body .search-modal .search-block input {
    height: 60px;
    line-height: 60px;
    padding: 0;
    background: transparent;
    border-width: 0 0 1px 0;
    border-radius: 0;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
    color: var(--tj-white-color);
    font-weight: 600;
    font-size: 18px;
}

body .search-modal button {
    background: none;
    border: none;
    border: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99;
}

body .search-modal button svg {
    background-color: transparent;
}

body .search-modal button svg path {
    fill: var(--tj-primary-color);
    opacity: 1;
    outline: none;
    transition: 0.4s;
    font-size: 24px;
}

body .modal-backdrop {
    opacity: 0.95 !important;
}

.shake-y {
    -webkit-animation: shakeY 5s ease-in-out infinite;
    animation: shakeY 5s ease-in-out infinite;
}

.pulse {
    -webkit-animation: pulse 3s ease-in-out infinite;
    animation: pulse 3s ease-in-out infinite;
}

.skew-spin {
    -webkit-animation: skewSpin 5s linear infinite;
    animation: skewSpin 5s linear infinite;
}

.left-right-rotate {
    animation: rotated-style3 2s infinite alternate;
}

/***********************************
PAGE LOAD ANIMATION
***********************************/
.preloader {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: default;
    position: fixed;
    z-index: 9999999;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--tj-primary-color2);
}

.preloader .tj-primary-btn {
    position: absolute;
    top: 15px;
    right: 15px;
}

.preloader .animation-preloader {
    z-index: 1000;
}

.preloader .animation-preloader .spinner {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid #ebebec;
    border-radius: 50%;
    text-align: center;
    line-height: 94px;
}
.preloader .animation-preloader .spinner::before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--tj-primary-color);
    border-radius: 50%;
    animation: loaderspin 1.8s infinite ease-in-out;
    -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}

@media (max-width: 767px) {
    .preloader .animation-preloader .spinner {
        width: 7.5em;
        height: 7.5em;
        margin: 0 auto 1.5em auto;
    }
}
.preloader .animation-preloader .txt-loading {
    font-size: 80px;
    line-height: 118px;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 700;
    margin-top: 170px;
}

@media (max-width: 767px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 50px;
        line-height: 77px;
    }
}
@media (max-width: 575px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 36px;
        line-height: 58px;
    }
}

@media (max-width: 991px) {
    .preloader .animation-preloader .text-loading {
        font-size: 25px;
        line-height: 38px;
    }
    .preloader .animation-preloader .spinner {
        line-height: 80px;
    }
    .preloader .animation-preloader .spinner {
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100px;
        height: 100px;
        border: 3px solid #ebebec;
        border-radius: 50%;
        text-align: center;
        line-height: 94px;
    }
}

.preloader .animation-preloader .txt-loading .letters-loading {
    color: #0b0f28;
    position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
    -webkit-animation: letters-loading 4s infinite;
    animation: letters-loading 4s infinite;
    color: var(--tj-primary-color);
    content: attr(data-text-preloader);
    left: 1px;
    opacity: 0;
    position: absolute;
    top: -11px;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
}

.preloader p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #243342;
}

/*-- logiland-scroll-top start --*/
.logiland-scroll-top {
    position: fixed;
    right: 30px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: block;
    border-radius: 100%;
    box-shadow: inset 0 0 0 0.1rem rgba(128, 130, 134, 0.25);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.75rem);
    transition: all 0.2s linear, margin-right 0s;
}

.logiland-scroll-top.progress-done {
    visibility: visible;
    transform: translateY(0);
}

.logiland-scroll-top-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--tj-primary-color);
}

.logiland-scroll-top > svg path {
    fill: none;
}

.logiland-scroll-top > svg.progress-circle path {
    stroke: var(--tj-primary-color);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

@media (min-width: 1px) {
    .logiland-scroll-top.progress-done {
        opacity: 1;
    }
}

/*-- logiland-scroll-top end --*/
@-webkit-keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}
@keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}
@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@-webkit-keyframes shakeY {
    0% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}
@keyframes shakeY {
    0% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}
@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@-webkit-keyframes skewSpin {
    0% {
        -webkit-transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(0);
        transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(0);
    }
    100% {
        -webkit-transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(360deg);
        transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(360deg);
    }
}
@keyframes skewSpin {
    0% {
        -webkit-transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(0);
        transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(0);
    }
    100% {
        -webkit-transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(360deg);
        transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(360deg);
    }
}
@keyframes rotated-style3 {
    0% {
        transform: rotate(-10deg);
        -webkit-transform: rotate(-10deg);
    }
    100% {
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
    }
}


.venus
{
        background: #c9233d;
    padding: 6px 8px;
    border-radius: 4px;
}


.tj-service-icon-box2 ul li .service-item .service-icon i
{
        color: #2a55a3;
    font-size: 37px;
}

.text-red
{
    color: #c9233d !important;
}

.f-35
{
    font-size: 31px;
}

.tj-project-item .tj-project-content .title-link span
{
        font-size: 14px;
}

.team-item-three .tj-project-content .title-link span{font-size: 15px;}

.f-23
{
    font-size: 23px;
}

.tj-blog-item-three .blog-text-box .blog-header .title-link .text-red
{
    font-size: 15px;
}


.footer-copyright-area .copyright-menu ul li a
{
        font-size: 14px;
}

.banner-punchline
{
        font-size: 13px;
}
.hanoi:hover
{
    color:#2a55a3;
}
.hanoi
{
color: #2a55a3;
    font-size: 18px;
    background-color: #fff;
    padding: 5px 31px;
    border-radius: 4px;
    text-align: center;

}
.speakers-list {
	position: relative;
	background: var(--tj-white-color);

	padding: 20px 10px;
	border-radius: 20px;

	min-height: 310px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
border: 1px solid #cfcfcf;
}


.speakers-list img {
	width: 130px;
	border-radius: 75px;
	border: 2px dotted #c9233d;
	padding: 2px;
}

.speakers-list p {
	color: #3a3a3a;
	font-size: 14px;
}

.speakers-list h6 {
	font-weight: 700;
	font-size: 17px;
	padding-top: 10px;
	margin-bottom: 0;
}

.text-blue {
	color: #2a55a3 !important;
	font-weight: 500;
}
@media only screen and (min-width: 320px) and (max-width: 767px)


{

    .slider-mobile-btn-1
{
            position: absolute;
        z-index: 99999;
        bottom: 64px;
        left: 24%;
}
    .slider-mobile-btn
    {

    width: 100%;
    position: absolute !important;
    top: 42%;
    left: 23%;
    }
    
    .hanoi

    {
    margin: 0px auto;
    margin-bottom: 10px;
    }
}


      .icon-1 img
      {
         margin-bottom: 10px;    border-radius: 4px;
      }
.speakers
{
   padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
    margin-bottom: 20px;
    border-bottom: 2px solid #c9233d;

} .speakers ul li{color: #4a4a4a;
   font-size: 14px;}
.speakers p
{
   color: #4a4a4a;
    font-size: 15px;
    margin-top: 10px;
}
.speakers span
{
   color: #2a55a3;
    font-weight: 500;
    line-height: 20px;
    padding-bottom: 10px;
}
.speakers h3
{
   color: #c9233d;
   font-size: 24px;  
}


.mediapartnr img {
	background: #fff;
	padding: 8px;
	border: 1px solid #cccccc80;
	border-radius: 4px;
	margin-bottom: 10px;
}

.tj-slider-section .swiper-slide:after {
	background: transparent;
}


.banner-punchline {
	color: #ffff00 !important;
}

.banner-punchline span {
	font-weight: 500;
	padding: 0px 8px;
	color: #ffff00 !important;
}

.vieatcargoo {
	height: 690px;
	background-image: url(assets/images/banner24.png?=V11);

}

.cstm-gallery img {
	background-color: #fff;
	border-radius: 4px;
	padding: 6px;
	text-align: center;
	transition: all ease 0.5s;
	overflow: hidden;
	margin-top: 10px;
	margin-bottom: 10px;
	border: 2px solid #237ece;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 266px;
	flex-wrap: wrap;
	flex-direction: column;
}

.Exhibitors-logo {
	border: 1px solid #c9233d;
	padding: 10px;
	border-radius: 4px;
    margin-bottom: 10px;
}

.Exhibitors-logo:hover {

	border: 1px solid #062e39;
}

.fixed {
	position: absolute;
	bottom: 25%;
	left: 8%;
}

.tj-slider-section .swiper-pagination {
	display: none;
}


.tj-project-gallery .tj-project-item {
	margin-bottom: 0;
}

.tj-project-gallery .owl-nav {
	text-align: center;
}

.tj-project-gallery .owl-prev {
	display: inline-block;
	padding: 9px 12px 4px;
	font-family: var(--tj-ff-title);
	color: var(--tj-white-color);
	font-size: 15px;
	background-color: var(--tj-blue-color);
	font-weight: 500;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	border: 0;
	margin-right: 7px;
	border-radius: 4px;
	transform: rotate(-180deg);
}

.tj-project-gallery .owl-next {
	display: inline-block;
	padding: 9px 12px 4px;
	font-family: var(--tj-ff-title);
	color: var(--tj-white-color);
	font-size: 15px;
	background-color: var(--tj-blue-color);
	font-weight: 500;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	border: 0;
	margin-right: 7px;
	border-radius: 4px;
}


.tj-project-gallery .tj-project-item::before {
	background: none;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 767px) {



	.vieatcargoo {
		background-image: url(assets/images/banner24-mob.jpg?=V17);
		background-size: contain !important;
		background-repeat: no-repeat;
		margin-top: 90px;
		width: 100% !important;

	}

	.m-mt-140 {
		margin-top: 37%;
		height: auto;
	}
}

   .tj-slider-section .swiper-slide
   {
          padding-right: 0;
   }
      .coundown {
	background: #2a55a3;
	border-radius: 12px;
	text-align: center;
	;
}

.counter-footer {
	display: block;
	background: #c9233d;
	color: #fff;
	font-weight: bold;
	border-radius: 0px 0px 12px 12px;
	line-height: 40px;
}

.coundown span {
    line-height: 60px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: bold;

}

.absolate {
	position: absolute;
	z-index: 2;
	right: 4%;
	top: 75%;
}


.sticky {
	position: relative !important;
}

@media (min-width: 320px) and (max-width: 767px) {

	.absolate {
		position: relative;
		z-index: 2;
		right: 0%;
		margin-top: 34px;
		margin-bottom: 34px;
	}

	.coundown {
		border: 1px solid #ff2d16;
	}
}



.video-section-2 {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}

.video-section-2 video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -2;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

/* Black overlay */
.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgb(0 0 0 / 60%);
	z-index: -1;
}

/* Content on video */
.video-content {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	text-align: left;
	color: #fff;
	padding: 20px;
	padding-left: 50px;
        margin-top: 6%;
}

.video-content h1 {
	font-size: 40px;
	color: #fff;
	margin-bottom: 20px;
}

.video-content p {
	font-size: 18px;

	margin-bottom: 20px;
}

.video-content h5 span {
	background: #c9233d;
	padding: 4px 7px;
	border-radius: 4px;
	margin-right: 7px;
}


@media (min-width: 320px) and (max-width: 767px) {
	.video-content {
		padding-left: 15px;
	}

	.video-content h1 {
		font-size: 29px;
	}

	.video-section-2 {
		height: 85vh;
	}
    .video-content
    {
            margin-top: 0%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
	.video-content {
		padding-left: 40px;
	}

	.video-section-2 {
		height: 55vh;
	}
}


.pt-50
{
    padding-top: 50px;
}

.pb-50
{
    padding-bottom: 50px;
}


  .modal-2-btn-1 {
    position: absolute;
    bottom: 12px;
    left: 24px;
}
.modal-2-btn-1 a {
        padding: 7px 15px;
    font-family: "Fira Sans";
    font-weight: 500;
    color: #fff;
    background:#2a55a2;
    display: inline-block;
    border-radius: 30px;
    position: relative;
        font-family: var(--tj-ff-title);
    z-index: 1;
    overflow: hidden;
    font-size: 14px;
    animation: blinkColor 1s infinite;
}
.bg-blue {
  background:#cb3749 !important;
}
.modal-backdrop.show {
  background-color: #00000096 !important; /* Light white overlay */
}

@media only screen and (max-width: 767px) {
    .modal-2-btn-1 {
        bottom: 0;
        left: 5px;
    }
    .modal-2-btn-1 a {
        padding: 8px 13px;
        font-size: 13px;
    }
}

    .text-color
         {
            color: #c9233d;
         }
         .agenda-table td, th {
    font-size: 15px;
    line-height: 26px;
}

.tj-choose-us-section-two::before {
    width: 100%;
    position: absolute;
    content: "";
    height: 100%;
    transition: 0.6s;
    left: 0;
    top: 0;
    background: rgb(181 18 32 / 88%);
}

.tj-choose-us-section-two {
    background: url(../images/slider/slider-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 55px;
    padding-bottom: 55px;
    position: relative;
}

  .exhibition-categories {
    background-image: url(https://vietcargoexpo.com/assets/images/banner/step-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}
.exhibitor-list
{
    background-color: var(--tj-white-color);
    box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.1);
    padding: 7px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.4s 
ease;
    transform: translateY(0);
    cursor: pointer;
    margin-bottom: 0;
    height: 100%;
}

.exhibitor-list img
{
    border-radius: 4px;
    transition: all 0.4s ease;     /* Img smooth animate */
}

.exhibitor-list h6
{
    font-size: 16px;
    padding-top: 15px;
    margin-bottom: 11px;
    transition: color 0.4s 
ease;
}

/* Hover Effects */
.exhibitor-list:hover
{
    background-color: #cb3749;
    transform: translateY(-6px);   /* Lift movement while hover */
 

}

.exhibitor-list:hover h6
{
    color: #fff;
}

 @media only screen and (max-width: 767px) {
    .service-item-two .service-image img {
        max-width: 50%;
        margin-bottom: 20px;
    }
}
.service-item-two .service-image
{
        margin-bottom: 0;
}
.service-item-two .service-title a
{
   font-size: 22px;
}
.service-item-two .service-title
{
margin-bottom: 0px;
}
.service-item-two .service-text
{
       padding-left: 15px;
    padding-top: 0;
}
.service-text h6
{
       font-size: 18px;
    color: #c9233d;
}
.service-item-two

{border-radius: 20px;
           margin-bottom: 20px;
    border: 1.5px dotted #c9233d;
}
.service-item-two .service-text
{
   margin-bottom: 0;
}
.tj-service-section-three
{
       padding-bottom: 60px;
    padding-top: 60px;
}

.service-item-two p{font-size:14px;}

.hotel {
    background-color: #fff;
    box-shadow: 0px 10px 31px rgb(169 177 193 / 41%);
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 10px;
}

 .text-color
         {
            color: #c9233d;
         }
         .agenda-table td, th {
    font-size: 15px;
    line-height: 26px;
}

.read-more-btn{
    display:inline-flex;
    align-items:center;
    gap:5px;
    font-weight:600;
    margin-top:10px;
    color:#cb3749;
    text-decoration:none;
    transition:0.3s;
}

.read-more-btn .arrow{
    font-size:18px;
    transition:0.3s;
}

.read-more-btn:hover{
    color:#000;
}

.read-more-btn:hover .arrow{
    transform: translateX(4px);
}

.h-260
{
        min-height: 250px;
    height: 100%;
}
  .blog-car-benefits {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.read-more-btn {
    margin-top: auto;
    align-self: baseline;
    display: inline-flex;
    align-items: baseline;
}
 @media only screen and (max-width: 767px) {
.h-260
{
        min-height: auto;
  
}
 }

 .speaker-card{
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);transition: transform 0.3s ease;
   
    border-bottom: 2px solid #044bb5;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.speaker-card:hover{
    transform: translateY(-5px);
}

.profile
{
    color: #c9233d;
    font-size: 17px;
}
.speaker-card:hover::before{
    opacity:1;
    animation:borderRun 2s linear infinite;
}

@keyframes borderRun{
    0%{background-position:0% 50%;}
    100%{background-position:100% 50%;}
}

/* Image */
.speaker-img img{

    border-radius:14px;

}

.speaker-content h5
{
       font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
}

  .related-blogs {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.rb-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #f7941d;
    padding-bottom: 6px;
}

.rb-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.rb-item img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: 4px;
}

.rb-content h6 {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
    color: #000;
}
.rb-content span {
    font-size: 13px;
    color: #f7941d;
}

.share-box {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
    margin-top: 20px;
}

.share-box p {
    font-weight: bold;
    color: #f7941d;
}

.share-box a {
    margin-right: 10px;
    font-size: 18px;
    color: #333;
}
 .blog-list {
    background-color: #fff;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-radius: 8px;
    position: relative;
}
.blog-list img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.fixed-date {
position: absolute;
    color: #fff;
    padding: 6px 10px;
    right: 10px;
    top: 10px;
    border-radius: 4px;
    z-index: 999999;
    background-image: linear-gradient(to right, #f11f22 0%, #f18618 100%);
}
.fixed-date h4
{
        color: #fff;
    font-size: 12px;
    margin: 0;
}


.blog-list h6
{
        font-size: 18px;
 
    font-weight: 500;
}

.pd-20
{    padding: 20px;}

.pd-10
{    padding: 10px;}