

@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
    /**
     @Font-Family Declaration
   */
    --tj-ff-body: 'DM Sans', sans-serif;
    --tj-ff-heading: 'Archivo', serif;
    --tj-ff-fontawesome: "Font Awesome 6 Pro";
    /**
     @Font-weight Declaration
   */
    --tj-fw-normal: normal;
    --tj-fw-thin: 100;
    --tj-fw-elight: 200;
    --tj-fw-light: 300;
    --tj-fw-regular: 400;
    --tj-fw-medium: 500;
    --tj-fw-sbold: 600;
    --tj-fw-bold: 700;
    --tj-fw-ebold: 800;
    --tj-fw-black: 900;
    /**
     @Font-Size Declaration
   */
    --tj-fs-body: 16px;
    --tj-fs-h1: 74px;
    --tj-fs-h2: 48px;
    --tj-fs-h3: 38px;
    --tj-fs-h4: 24px;
    --tj-fs-h5: 20px;
    --tj-fs-h6: 16px;
    /**
     @Color Declaration
   */
    --tj-color-common-white: #ffffff;
    --tj-color-common-black: #000000;
    --tj-color-heading-primary: #373A3F;
    --tj-color-text-body: #696969;
    --tj-color-theme-primary: #077CEA;
    --tj-color-theme-secondary: #FEDB5C;
    --tj-color-grey-1: #373A3F;
    --tj-color-grey-2: #c5c5c5;
    --tj-color-grey-3: #ECF1F5;
    --tj-color-border-1: #ededed;
    --tj-color-border-2: #D8DDE1;
    --tj-color-border-3: #535353;
}

/**----------------------------------------
START: Animation CSS
----------------------------------------*/

@-webkit-keyframes play-btn {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    }
}

@keyframes play-btn {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    }
}

@-webkit-keyframes moving {
    0% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
    20% {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    50% {
        -webkit-transform: translatey(-20px);
        transform: translatey(-20px);
    }
    100% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
}

@keyframes moving {
    0% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
    20% {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    50% {
        -webkit-transform: translatey(-20px);
        transform: translatey(-20px);
    }
    100% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
}

@-webkit-keyframes bounce-thum-1 {
    0% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes bounce-thum-1 {
    0% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@-webkit-keyframes bounce-thum-2 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounce-thum-2 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes bounce-thum-3 {
    0% {
        -webkit-transform: rotate(8deg);
        transform: rotate(8deg);
    }
    100% {
        -webkit-transform: rotate(-8deg);
        transform: rotate(-8deg);
    }
}

@keyframes bounce-thum-3 {
    0% {
        -webkit-transform: rotate(8deg);
        transform: rotate(8deg);
    }
    100% {
        -webkit-transform: rotate(-8deg);
        transform: rotate(-8deg);
    }
}

@-webkit-keyframes circle-animation {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes circle-animation {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes borderanimate2 {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.8);
        transform: translate(-50%, -50%) scale(0.8);
    }
    60% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(2.5);
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@keyframes borderanimate2 {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.8);
        transform: translate(-50%, -50%) scale(0.8);
    }
    60% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(2.5);
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@-webkit-keyframes animate-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7), 0 0 0 0 rgba(255, 255, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7), 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.7);
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    80% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
        box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
    }
}

@keyframes animate-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7), 0 0 0 0 rgba(255, 255, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7), 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.7);
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    80% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
        box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
    }
}

@-webkit-keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@-webkit-keyframes spinAround {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(90deg);
    }
}

@keyframes spinAround {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(90deg);
    }
}

@-webkit-keyframes spinAround-360deg {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spinAround-360deg {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

/* !END: Animation CSS */

/**----------------------------------------
START: back to top CSS
----------------------------------------*/

.back-to-top-wrapper {
    position: fixed;
    right: 50px;
    bottom: 0;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .back-to-top-wrapper {
        right: 25px;
        bottom: 25px;
    }
}

.back-to-top-wrapper.back-to-top-btn-show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .back-to-top-wrapper.back-to-top-btn-show {
        bottom: 25px;
    }
}

.back-to-top-btn {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: var(--tj-color-theme-primary);
    -webkit-box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
    box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
    color: var(--tj-color-common-white);
    border-radius: 50%;
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
}

.back-to-top-btn svg {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.back-to-top-btn:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}

/* !END: back to top CSS */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body,
html,
.site-main {
    position: relative;
    overflow-x: hidden;
}

/**
  Typography CSS
*/

body {
    font-family: var(--tj-ff-body);
    font-size: var(--tj-fs-body);
    font-weight: normal;
    color: var(--tj-color-text-body);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tj-ff-heading);
    color: var(--tj-color-heading-primary);
    margin-top: 0px;
    font-weight: var(--tj-fw-sbold);
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

h1 {
    font-size: var(--tj-fs-h1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h1 {
        font-size: 55px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 45px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    h1 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 38px;
    }
}

h2 {
    font-size: var(--tj-fs-h2);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h2 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    h2 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 30px;
    }
}

h3 {
    font-size: var(--tj-fs-h3);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    h3 {
        font-size: 28px;
    }
}

h4 {
    font-size: var(--tj-fs-h4);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    h4 {
        font-size: 22px;
    }
}

h5 {
    font-size: var(--tj-fs-h5);
}

h6 {
    font-size: var(--tj-fs-h6);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
    display: block;
}

ul {
    margin: 0px;
    padding: 0px;
}

a,
.btn,
button,
p,
input,
select,
textarea,
img,
svg path,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

button:focus,
button:focus:not(:focus-visible) {
    outline: 0;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

::-webkit-scrollbar {
    height: 4px;
    width: 4px;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--tj-color-theme-primary);
    -webkit-border-radius: 1ex;
    -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

*::-moz-selection {
    background: var(--tj-color-common-black);
    color: var(--tj-color-common-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--tj-color-common-black);
    color: var(--tj-color-common-white);
    text-shadow: none;
}

::selection {
    background: var(--tj-color-common-black);
    color: var(--tj-color-common-white);
    text-shadow: none;
}

*::-webkit-input-placeholder {
    color: var(--tj-color-common-black);
    font-size: var(--tj-fs-body);
    opacity: 1;
}

*::-moz-placeholder {
    color: var(--tj-color-common-black);
    font-size: var(--tj-fs-body);
    opacity: 1;
}

*:-ms-input-placeholder {
    color: var(--tj-color-common-black);
    font-size: var(--tj-fs-body);
    opacity: 1;
}

*::-ms-input-placeholder {
    color: var(--tj-color-common-black);
    font-size: var(--tj-fs-body);
    opacity: 1;
}

*::placeholder {
    color: var(--tj-color-common-black);
    font-size: var(--tj-fs-body);
    opacity: 1;
}

/**
 	Common Classes CSS
*/

img {
    max-width: 100%;
}

.w-img img {
    width: 100%;
}

.m-img img {
    max-width: 100%;
}

.fix {
    overflow: hidden;
}

select,
.nice-select,
input:not([type=submit]):not([type=radio]):not([type=checkbox]),
textarea {
    outline: none;
    background-color: --tj-color-common-white;
    height: auto;
    width: 100%;
    font-size: var(--tj-fs-body);
    border: 1px solid transparent;
    color: var(--tj-color-common-black);
}

select:focus,
.nice-select:focus,
input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
textarea:focus {
    border: 1px solid var(--tj-color-theme-primary);
}

input[type=color] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
}

input[type=color]:focus {
    border: 1px solid var(--tj-color-theme-primary);
}

/**----------------------------------------
START: Button CSS
----------------------------------------*/

.tj-header-btn {
    background: var(--tj-color-theme-secondary);
    color: var(--tj-color-grey-1);
    padding: 24px 67px;
    display: inline-block;
    margin-left: 100px;
    border-radius: 0 0 26px 0;
    font-weight: var(--tj-fw-bold);
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-header-btn {
        margin-left: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-header-btn {
        margin-left: 70px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-header-btn {
        margin-left: 30px;
    }
}

.tj-header-btn i {
    margin-left: 3px;
}

.tj-header-btn:hover {
    color: var(--tj-color-common-white);
    background-color: var(--tj-color-theme-primary);
}

.tj-header-btn .icon_box {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    padding: 0 4px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tj-header-btn .icon_box i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

.tj-header-btn .icon_box .icon_first {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    color: var(--tj-color-heading-primary);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tj-header-btn .icon_box .icon_second {
    position: absolute;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    color: var(--tj-color-common-white);
}

.tj-header-btn .tj-arrow-btn:hover .icon_box .icon_first {
    -webkit-transform: translateX(150%);
    -ms-transform: translateX(150%);
    transform: translateX(150%);
}

.tj-header-btn .tj-arrow-btn:hover .icon_box .icon_second {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.tj-primary-btn {
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
    font-weight: var(--tj-fw-sbold);
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 30px;
    padding: 20px 30px;
    line-height: 1;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    -webkit-transition: background 0.7s ease-in;
    transition: background 0.7s ease-in;
}

.tj-primary-btn span {
    gap: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: var(--tj-color-common-white);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tj-primary-btn:hover {
    color: var(--tj-color-heading-primary);
    background-color: var(--tj-color-theme-secondary);
}

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

.tj-secondary-btn {
    background: var(--tj-color-theme-secondary);
    color: var(--tj-color-heading-primary);
    font-weight: var(--tj-fw-bold);
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 30px;
    padding: 20px 30px;
    line-height: 1;
    position: relative;
    z-index: 1;
    -webkit-transition: background 0.7s ease-in;
    transition: background 0.7s ease-in;
}

.tj-secondary-btn span {
    gap: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: var(--tj-color-heading-primary);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tj-secondary-btn:hover span {
    color: var(--tj-color-theme-primary);
}

.tj-white-btn {
    background: var(--tj-color-common-white);
    color: var(--tj-color-theme-primary);
    font-weight: var(--tj-fw-bold);
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 30px;
    padding: 20px 30px;
    line-height: 1;
    position: relative;
    z-index: 1;
    -webkit-transition: background 0.7s ease-in;
    transition: background 0.7s ease-in;
}

.tj-white-btn span {
    gap: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tj-square-btn {
    background: transparent;
    color: var(--tj-color-theme-primary);
    display: block;
    text-align: center;
    padding: 18px;
    font-weight: var(--tj-fw-bold);
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 1px solid #D8DDE1;
    border-radius: 8px;
    -webkit-transition: background 0.7s ease-in;
    transition: background 0.7s ease-in;
    line-height: 1;
}

.tj-square-btn.active {
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
    border: none;
    padding: 19px 18px;
}

.tj-square-btn.tj-hover-btn:hover .tj-hover-btn-circle-dot {
    width: 720px;
    height: 720px;
}

.tj-round-btn {
    background: transparent;
    color: var(--tj-color-theme-primary);
    font-weight: var(--tj-fw-bold);
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 17px 23px;
    line-height: 1;
    display: inline-block;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-round-btn i {
    margin-left: 4px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-round-btn::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(7, 124, 234, 0.16);
    border-radius: 50px;
    -webkit-transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.tj-contact-btn {
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 21px 62px;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-blog-btn {
    font-weight: var(--tj-fw-bold);
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--tj-color-theme-primary);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-blog-btn i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

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

.tj-hover-btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.tj-hover-btn-circle-dot {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 0;
    height: 0;
    -webkit-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    line-height: 20px;
    border-radius: 50%;
    background-color: var(--tj-color-theme-secondary);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.tj-hover-btn:hover {
    background: var(--tj-color-theme-secondary);
    color: var(--tj-color-heading-primary);
}

.tj-hover-btn:hover .tj-hover-btn-circle-dot {
    width: 520px;
    height: 520px;
}

.icon_box {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    padding: 0 4px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.icon_box i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

.icon_box .icon_first {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.icon_box .icon_second {
    position: absolute;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tj-arrow-btn:hover .icon_box .icon_first {
    -webkit-transform: translateX(150%);
    -ms-transform: translateX(150%);
    transform: translateX(150%);
}

.tj-arrow-btn:hover .icon_box .icon_second {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

/* !END: Button CSS */

/**----------------------------------------
START: Header CSS
----------------------------------------*/

.tj-header-area {
    position: relative;
    z-index: 3;
}

.tj-header-absolute {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.tj-header-top {
    background: var(--tj-color-theme-primary);
    padding: 12px 190px;
    border-radius: 0 0 30px 30px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tj-header-top {
        padding: 12px 30px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-header-top {
        padding: 12px 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-header-top {
        padding: 12px 15px;
        border-radius: 0 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-header-top {
        padding: 12px 0;
        border-radius: 0 0;
    }
}

.tj-header-top-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-header-top-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.tj-header-top-logo {
    max-width: 210px;
}

.tj-header-top-logo a {
    display: inline-block;
}

.tj-header-top-information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tj-header-top-information-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    margin-right: 85px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-header-top-information-item {
        margin-right: 60px;
    }
}

.tj-header-top-information-item::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 40px;
    top: 50%;
    right: -43px;
    background: var(--tj-color-common-white);
    opacity: 0.25;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-header-top-information-item::before {
        right: -31px;
    }
}

.tj-header-top-information-item:last-child {
    margin-right: 0;
}

.tj-header-top-information-item:last-child::before {
    display: none;
}

.tj-header-top-information-icon {
    color: var(--tj-color-common-white);
    margin-right: 12px;
}

.tj-header-top-information-icon i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    font-size: 38px;
}

.tj-header-top-information-title {
    color: var(--tj-color-common-white);
    font-size: 18px;
    margin-bottom: 2px;
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
}

.tj-header-top-information-call {
    font-size: 14px;
    color: var(--tj-color-common-white);
    font-family: var(--tj-ff-heading);
    position: relative;
    display: block;
}

.tj-header-top-information-call::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    right: 0;
    background: var(--tj-color-common-white);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-header-top-information-call:hover {
    color: var(--tj-color-common-white);
}

.tj-header-top-information-call:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.tj-header-top-information-address {
    font-size: 14px;
    line-height: 171%;
    color: var(--tj-color-common-white);
    font-family: var(--tj-ff-heading);
}

.tj-header-top-social ul li {
    list-style: none;
    display: inline-block;
    margin-right: 6px;
}

.tj-header-top-social ul li:last-child {
    margin-right: 0;
}

.tj-header-top-social ul li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    line-height: 1;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--tj-color-common-white);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.tj-header-top-social ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    background: var(--tj-color-theme-secondary);
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    border-radius: 50%;
}

.tj-header-top-social ul li a:hover {
    color: var(--tj-color-heading-primary);
    border-color: var(--tj-color-theme-secondary);
}

.tj-header-top-social ul li a:hover::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.tj-header-bottom-row {
    background: var(--tj-color-common-white);
    border-radius: 0 0 30px 30px;
    padding-left: 110px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-header-bottom-row {
        padding-left: 35px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-header-bottom-row {
        padding: 10px 40px 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-header-bottom-row {
        padding: 10px 40px 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-header-bottom-row {
        padding: 10px 15px;
    }
}

.tj-header-bottom-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 575px) {
    .tj-header-bottom-wrapper {
        margin: 0 15px;
    }
}

.tj-header-bottom-mobile-logo img {
    max-width: 160px;
}

.tj-header-bottom-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tj-header-bottom-mobile-btn {
    margin-left: 35px;
    font-size: 22px;
    color: var(--tj-color-common-black);
    display: inline-block;
}

.tj-header-bottom-mobile-btn:hover {
    color: var(--tj-color-theme-primary);
}

.tj-header-search {
    color: var(--tj-color-grey-1);
    font-size: 22px;
    margin-right: 20px;
    display: inline-block;
}

.tj-header-search i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

.tj-header-search:hover {
    color: var(--tj-color-theme-primary);
}

.tj-header-cart {
    color: var(--tj-color-grey-1);
    font-size: 22px;
    position: relative;
    display: inline-block;
}

.tj-header-cart i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

.tj-header-cart::before {
    content: "1";
    position: absolute;
    top: 2px;
    right: -15px;
    width: 17px;
    height: 17px;
    background: var(--tj-color-theme-secondary);
    border-radius: 50%;
    color: var(--tj-color-grey-1);
    font-size: 12px;
    font-weight: var(--tj-fw-regular);
}

.tj-header-cart:hover {
    color: var(--tj-color-theme-primary);
}

.tj-header-cart:hover::before {
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
}

.tj-header-2-area {
    z-index: 11;
}

.tj-header-2-top {
    background: var(--tj-color-theme-primary);
    padding: 12px 0;
}

.tj-header-2-top-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tj-header-2-top-information ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tj-header-2-top-information ul li {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: 1px solid rgba(216, 221, 225, 0.5);
    padding-right: 30px;
    font-size: 14px;
    padding-left: 30px;
}

.tj-header-2-top-information ul li:first-child {
    padding-left: 0;
}

.tj-header-2-top-information ul li:last-child {
    border-right: none;
}

.tj-header-2-top-information ul li span {
    color: var(--tj-color-common-white);
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-medium);
}

.tj-header-2-top-information ul li a {
    color: var(--tj-color-common-white);
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-medium);
    display: block;
}

.tj-header-2-top-information ul li i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
    margin-right: 10px;
    font-size: 18px;
}

.tj-header-2-top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tj-header-2-top-social {
    margin-left: 36px;
    position: relative;
    z-index: 1;
}

.tj-header-2-top-social::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    top: 50%;
    left: -18px;
    background: rgba(216, 221, 225, 0.5);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.tj-header-2-top-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tj-header-2-top-social ul li {
    list-style: none;
    margin-right: 12px;
}

.tj-header-2-top-social ul li:last-child {
    margin-right: 0;
}

.tj-header-2-top-social ul li a {
    font-size: 14px;
    color: var(--tj-color-common-white);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-header-2-bottom {
        background: var(--tj-color-common-white);
    }
}

.tj-header-2-bottom.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    width: 100%;
    z-index: 999;
    background-color: var(--tj-color-common-white);
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    -webkit-animation: 0.65s ease 0s normal forwards 1 running fadeInDown;
    animation: 0.65s ease 0s normal forwards 1 running fadeInDown;
    display: block !important;
}

.tj-header-2-bottom.sticky .tj-header-2-bottom-row {
    padding-left: 0;
    padding-right: 0;
}

.tj-header-2-bottom-row {
    background: var(--tj-color-common-white);
    border-radius: 50px;
    padding: 0 35px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tj-header-2-bottom-row {
        border-radius: 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-header-2-bottom-row {
        border-radius: 0;
        padding: 0 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-header-2-bottom-row {
        padding: 10px 0;
    }
}

.tj-header-2-bottom-logo {
    max-width: 207px;
    width: 100%;
}

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

.tj-header-2-bottom-logo img {
    width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-header-3-bottom {
        padding: 12px 0;
    }
}

.tj-header-3-bottom.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    width: 100%;
    z-index: 999;
    background-color: var(--tj-color-common-white);
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    -webkit-animation: 0.65s ease 0s normal forwards 1 running fadeInDown;
    animation: 0.65s ease 0s normal forwards 1 running fadeInDown;
    display: block !important;
}

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

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-header-3-bottom-wrapper {
        padding: 0 0;
    }
}

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

.tj-header-3-bottom-logo img {
    max-width: 220px;
    width: 100%;
}

@media (max-width: 575px) {
    .tj-header-3-bottom-logo img {
        right: -31px;
    }
}

.tj-header-3-call-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-header-3-call-button {
        display: none;
    }
}

.tj-header-3-call-icon a {
    font-size: 38px;
    color: var(--tj-color-theme-primary);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    margin-right: 25px;
}

.tj-header-3-call-icon a i {
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
}

.tj-header-3-call-number {
    font-family: var(--tj-ff-heading);
    font-weight: 600;
    font-size: 24px;
    color: var(--tj-color-grey-1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-header-3-call-number {
        font-size: 20px;
    }
}

.tj-header-3-call-text {
    font-size: 14px;
    margin-bottom: 0;
}

.h1-header-infos ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.h1-header-infos ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--tj-color-common-white);
    font-family: var(--tj-ff-heading);
    position: relative;
    border-right: 1px solid rgba(216, 221, 225, 0.5);
    margin-right: 40px;
    padding-right: 45px;
}

.h1-header-infos ul li:last-child {
    margin-right: 0px;
    padding-right: 0px;
    border: none;
}

.h1-header-infos ul li i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 38px;
    color: var(--tj-color-common-white);
    line-height: 1;
}

.h1-header-infos ul li span {
    display: block;
    color: var(--tj-color-common-white);
    font-size: 18px;
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-medium);
}

.h1-header-infos ul li a {
    font-size: 14px;
    color: var(--tj-color-common-white);
    font-family: var(--tj-ff-heading);
    position: relative;
    display: block;
    z-index: 1;
}

.h1-header-infos ul li a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    right: 0;
    background: var(--tj-color-common-white);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.h1-header-infos ul li a:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.h1-header-infos ul li .text {
    font-size: 14px;
    color: var(--tj-color-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .h1-header-infos ul li {
        margin-right: 25px;
        padding-right: 30px;
    }
}

.mainmenu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 34px;
    -moz-column-gap: 34px;
    column-gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mainmenu ul {
        -webkit-column-gap: 25px;
        -moz-column-gap: 25px;
        column-gap: 25px;
    }
}

.mainmenu ul>li {
    position: relative;
    z-index: 4;
    display: inline-block;
}

.mainmenu ul>li>a {
    display: block;
    position: relative;
    z-index: 1;
    padding: 22px 0;
    padding-right: 0px;
    font-weight: var(--tj-fw-sbold);
    font-size: 16px;
    text-transform: uppercase;
    color: var(--tj-color-grey-1);
    font-family: var(--tj-ff-heading);
}

.mainmenu ul>li.has-dropdown>a {
    padding-right: 12px;
}

.mainmenu ul>li.has-dropdown>a::after {
    position: absolute;
    content: "+";
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0px;
    z-index: 2;
    font-weight: var(--tj-fw-sbold);
}

.mainmenu ul>li.has-dropdown .sub-menu {
    position: absolute;
    width: 260px;
    background: var(--tj-color-common-white);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    border-top: 6px solid var(--tj-color-theme-primary);
    padding: 20px 0;
    visibility: hidden;
    opacity: 0;
    top: 100%;
    left: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 9;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.mainmenu ul>li.has-dropdown .sub-menu>li {
    display: block;
}

.mainmenu ul>li.has-dropdown .sub-menu>li.current-menu-item>.submenu,
.mainmenu ul>li.has-dropdown .sub-menu>li:hover>.submenu {
    visibility: visible;
    opacity: 1;
    left: 100%;
}

.mainmenu ul>li.has-dropdown .sub-menu>li.current-menu-item>a,
.mainmenu ul>li.has-dropdown .sub-menu>li:hover>a {
    color: var(--tj-color-theme-primary);
    margin-left: 10px;
}

.mainmenu ul>li.has-dropdown .sub-menu>li.current-menu-item>a::before,
.mainmenu ul>li.has-dropdown .sub-menu>li:hover>a::before {
    width: 10px;
}

.mainmenu ul>li.has-dropdown .sub-menu>li>a {
    padding: 7px 0px 7px 25px;
    margin: 0px 0 0 0;
    display: block;
    text-transform: capitalize;
    font-weight: var(--tj-fw-sbold);
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.5;
    color: var(--tj-color-grey-1);
    position: relative;
}

.mainmenu ul>li.has-dropdown .sub-menu>li>a::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    background: var(--tj-color-theme-primary);
    left: 8px;
    bottom: 18px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.mainmenu ul>li.has-dropdown .sub-menu>li>a:hover {
    color: var(--tj-color-theme-primary);
    margin-left: 10px;
}

.mainmenu ul>li.has-dropdown .sub-menu>li>a:hover::before {
    width: 10px;
}

.mainmenu ul>li.has-dropdown .sub-menu>li>.submenu {
    left: 120%;
    top: 25px;
    opacity: 0;
    visibility: hidden;
}

.mainmenu ul>li.has-dropdown .sub-menu>li>.submenu>li:hover .submenu {
    visibility: visible;
    opacity: 1;
}

.mainmenu ul>li.has-dropdown .sub-menu>li>.submenu>li:hover>a {
    color: var(--tj-color-theme-primary);
}

.mainmenu ul>li.has-dropdown .sub-menu>li>.submenu>li>.submenu {
    visibility: hidden;
    opacity: 0;
}

.mainmenu ul>li.current-menu-ancestor>a,
.mainmenu ul>li.current-menu-item>a,
.mainmenu ul>li:hover>a {
    color: var(--tj-color-theme-primary);
}

.mainmenu ul>li.current-menu-ancestor>a::after,
.mainmenu ul>li.current-menu-item>a::after,
.mainmenu ul>li:hover>a::after {
    color: var(--tj-color-theme-primary);
    -webkit-animation: none;
    animation: none;
}

.mainmenu ul>li:hover>.sub-menu {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

.mainmenu ul>li:hover>.sub-menu>li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mainmenu-sticky ul {
        -webkit-column-gap: 22px;
        -moz-column-gap: 22px;
        column-gap: 22px;
    }
}

.mainmenu-sticky ul>li>a {
    display: block;
    position: relative;
    z-index: 1;
    padding: 34px 0;
    padding-right: 0px;
    font-weight: var(--tj-fw-sbold);
    font-size: 16px;
    text-transform: uppercase;
    color: var(--tj-color-grey-1);
    font-family: var(--tj-ff-heading);
}

.mainmenu-2 ul li a {
    padding: 37px 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mainmenu-3 ul {
        -webkit-column-gap: 22px;
        -moz-column-gap: 22px;
        column-gap: 22px;
    }
}

.mainmenu-3 ul li a {
    padding: 25px 0;
}

.tj-header-sticky {
    display: none;
    padding: 0 180px;
}

@media only screen and (min-width: 1601px) and (max-width: 1700px) {
    .tj-header-sticky {
        padding: 0 70px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-header-sticky {
        padding: 0 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-header-sticky {
        padding: 10px 8px;
    }
}

.tj-header-sticky-mobile-logo {
    max-width: 210px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-header-sticky-mobile-logo {
        max-width: 150px;
    }
}

.tj-header-sticky-button {
    margin-left: 80px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-header-sticky-button {
        margin-left: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-header-sticky-button {
        margin-left: 30px;
    }
}

.tj-header-sticky.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    width: 100%;
    z-index: 999;
    background-color: var(--tj-color-common-white);
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    -webkit-animation: 0.65s ease 0s normal forwards 1 running fadeInDown;
    animation: 0.65s ease 0s normal forwards 1 running fadeInDown;
    display: block !important;
}

.tj-header-2-top-nice-select .nice-select {
    background: transparent;
    color: var(--tj-color-common-white);
    padding-left: 0;
    padding-right: 0;
    line-height: 1;
    width: 60px;
    margin-top: 2px;
    float: inherit;
}

.tj-header-2-top-nice-select .nice-select::before {
    content: "\f078";
    position: absolute;
    top: 50%;
    right: 0;
    font-family: var(--tj-ff-fontawesome);
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    font-size: 12px;
}

.tj-header-2-top-nice-select .nice-select::after {
    display: none;
}

.tj-header-2-top-nice-select .nice-select .list {
    background-color: var(--tj-color-common-white);
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-top: 21px;
}

.tj-header-2-top-nice-select .nice-select .list .option {
    color: var(--tj-color-grey-1);
}

.tj-header-2-top-nice-select .nice-select .list .option:hover {
    background-color: transparent;
}

.tj-header-2-top-nice-select .nice-select .current {
    position: relative;
    z-index: 1;
}

.tj-header-2-top-nice-select .nice-select .current::before {
    content: "\f103";
    position: absolute;
    font-family: flaticon_cleannes;
    color: var(--tj-color-common-white);
    -webkit-transition: 0.6s;
    transition: 0.6s;
    left: -25px;
    top: 3px;
}

.tj-header-3-bottom.sticky .mainmenu-3 ul li.has-dropdown .sub-menu {
    top: 120%;
}

.h1-header-infos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.infos-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    padding-right: 40px;
    margin-right: 40px;
}

.infos-item::before {
    position: absolute;
    content: "";
    height: 75%;
    width: 1px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.infos-item:last-child {
    padding-right: 0px;
    margin-right: 0px;
}

.infos-item:last-child::before {
    display: none;
}

.infos-item .infos-icon {
    font-size: 38px;
    color: var(--tj-color-common-white);
}

.infos-item .infos-icon i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

.infos-item .infos-content .label {
    display: block;
    color: var(--tj-color-common-white);
    font-size: 18px;
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-medium);
}

.infos-item .infos-content a {
    display: block;
    font-size: 14px;
    color: var(--tj-color-common-white);
    font-family: var(--tj-ff-heading);
    position: relative;
    z-index: 1;
}

.infos-item .infos-content a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    right: 0;
    background: var(--tj-color-common-white);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.infos-item .infos-content a:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.infos-item .infos-content .location {
    display: block;
    font-size: 14px;
    color: var(--tj-color-common-white);
    font-family: var(--tj-ff-heading);
}

.menu-bar {
    border: none;
    padding: 0;
    background-color: transparent;
    height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    margin-left: 35px;
    cursor: pointer;
    -webkit-transition: -webkit-transform 300ms ease;
    transition: -webkit-transform 300ms ease;
    transition: transform 300ms ease;
    transition: transform 300ms ease, -webkit-transform 300ms ease;
}

.menu-bar span {
    height: 3px;
    width: 28px;
    display: block;
    background: var(--tj-color-theme-primary);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    margin-left: auto;
}

.menu-bar span:nth-child(2) {
    width: 36px;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.menu-bar span:nth-child(3) {
    width: 28px;
}

.menu-bar span:nth-child(4) {
    position: absolute;
    top: -8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: 3px;
    height: 0;
    -webkit-transition: height 400ms;
    transition: height 400ms;
}

/* !END: Header CSS */

/**----------------------------------------
START: Footer CSS
----------------------------------------*/

.tj-footer-area {
    background: #0D56D6;
    padding: 74px 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.tj-footer-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(5%, 3%);
    -ms-transform: translate(5%, 3%);
    transform: translate(5%, 3%);
    z-index: -1;
}

.tj-footer-top-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-footer-top-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-column-gap: 25px;
        -moz-column-gap: 25px;
        column-gap: 25px;
        row-gap: 25px;
    }
}

.tj-footer-top-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tj-footer-top-wrap .tj-footer-top-wrap-icon span {
    width: 50px;
    height: 50px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--tj-color-theme-primary);
    border-radius: 50%;
    font-size: 24px;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}

.tj-footer-top-wrap .tj-footer-top-wrap-icon span i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
}

.tj-footer-top-wrap-content .sub-title {
    font-size: 14px;
    color: var(--tj-color-common-white);
    display: block;
}

.tj-footer-top-wrap-content .location {
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    color: var(--tj-color-common-white);
    font-size: 24px;
}

@media (max-width: 575px) {
    .tj-footer-top-wrap-content .location {
        font-size: 20px;
    }
}

.tj-footer-top-wrap-content a {
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 24px;
    color: var(--tj-color-common-white);
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-footer-top-wrap-content a {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .tj-footer-top-wrap-content a {
        font-size: 20px;
    }
}

.tj-footer-top-wrap-content a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    right: 0;
    background: var(--tj-color-common-white);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-footer-top-wrap-content a:hover {
    color: var(--tj-color-common-white);
}

.tj-footer-top-wrap-content a:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-footer-top-wrap {
        max-width: 350px;
        width: 100%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-footer-top-wrap {
        width: 100% !important;
    }
}

.tj-footer-bottom {
    padding-top: 60px;
}

.tj-footer-bottom-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 60px;
}

@media (max-width: 575px) {
    .tj-footer-col-1 {
        margin-bottom: 60px;
    }
}

.tj-footer-col-2 {
    margin-left: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-footer-col-2 {
        margin-left: 30px;
        margin-bottom: 80px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-footer-col-2 {
        margin-bottom: 80px;
    }
}

@media (max-width: 575px) {
    .tj-footer-col-2 {
        margin-left: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .tj-footer-col-3 {
        margin-bottom: 60px;
    }
}

.tj-footer-col-4 {
    margin-left: 17px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-footer-col-4 {
        margin-left: -15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-footer-col-4 {
        margin-left: 35px;
    }
}

@media (max-width: 575px) {
    .tj-footer-col-4 {
        margin-left: 0;
        margin-bottom: 0px;
    }
}

.tj-footer-widget-logo {
    max-width: 207px;
    margin-bottom: 28px;
}

.tj-footer-widget-paragraph {
    color: var(--tj-color-common-white);
    max-width: 308px;
    width: 100%;
    margin-bottom: 24px;
}

@media (max-width: 575px) {
    .tj-footer-widget-paragraph {
        max-width: 100%;
    }
}

.tj-footer-widget-socail ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tj-footer-widget-socail ul li {
    list-style: none;
    margin-right: 11px;
}

.tj-footer-widget-socail ul li:last-child {
    margin-right: 0;
}

.tj-footer-widget-socail ul li a {
    width: 40px;
    height: 40px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--tj-color-common-white);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.tj-footer-widget-socail ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    background: var(--tj-color-theme-secondary);
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    border-radius: 50%;
}

.tj-footer-widget-socail ul li a:hover {
    color: var(--tj-color-heading-primary);
    background: var(--tj-color-theme-secondary);
    border-color: var(--tj-color-theme-secondary);
}

.tj-footer-widget-socail ul li a:hover::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.tj-footer-widget-title {
    font-weight: 600;
    font-size: 20px;
    color: var(--tj-color-common-white);
    margin-bottom: 30px;
}

.tj-footer-widget-title.two {
    text-align: left;
    margin-left: 33px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-footer-widget-title.two {
        margin-left: 0;
    }
}

.tj-footer-widget.widget_nav_menu ul li {
    list-style: none;
    margin-bottom: 8px;
}

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

.tj-footer-widget.widget_nav_menu ul li:hover a {
    margin-left: 10px;
    opacity: 1;
}

.tj-footer-widget.widget_nav_menu ul li a {
    color: var(--tj-color-common-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    opacity: 0.8;
}

.tj-footer-widget.widget_nav_menu ul li a span i {
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tj-footer-widget-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.tj-footer-widget-post:last-child {
    margin-bottom: 0;
}

.tj-footer-widget-post-thumb {
    max-width: 80px;
    width: 100%;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.tj-footer-widget-post-thumb a {
    display: inline-block;
}

.tj-footer-widget-post-thumb a img {
    width: 100%;
    height: 80px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.tj-footer-widget-post-date span {
    font-size: 14px;
    letter-spacing: 0.02em;
    color: var(--tj-color-common-white);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.tj-footer-widget-post-title {
    font-size: 16px;
    color: var(--tj-color-common-white);
    line-height: 1.62;
    margin-bottom: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-footer-widget-post-title {
        font-size: 14px;
    }
}

.tj-footer-widget-post-title:hover {
    color: var(--tj-color-theme-secondary);
}

.tj-footer-widget-post:hover .tj-footer-widget-post-thumb a img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

.tj-footer-copyright-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-footer-copyright-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-footer-copyright-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.tj-footer-copyright {
    padding: 20px 0 20px;
}

.tj-footer-copyright-paragraph {
    color: var(--tj-color-common-white);
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-footer-copyright-paragraph {
        margin-bottom: 10px;
        text-align: center;
    }
}

.tj-footer-copyright-paragraph a {
    position: relative;
    z-index: 1;
}

.tj-footer-copyright-paragraph a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background: var(--tj-color-theme-secondary);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    visibility: hidden;
    opacity: 0;
}

.tj-footer-copyright-paragraph a:hover {
    color: var(--tj-color-theme-secondary);
}

.tj-footer-copyright-paragraph a:hover::before {
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.tj-footer-copyright-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-footer-copyright-menu ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.tj-footer-copyright-menu ul li {
    list-style: none;
    margin-right: 40px;
    position: relative;
    z-index: 1;
}

.tj-footer-copyright-menu ul li:last-child {
    margin-right: 0;
}

.tj-footer-copyright-menu ul li:last-child::before {
    display: none;
}

.tj-footer-copyright-menu ul li::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 18px;
    top: 4px;
    right: -20px;
    background: var(--tj-color-common-white);
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
}

.tj-footer-copyright-menu ul li a {
    color: var(--tj-color-common-white);
}

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

.tj-footer-2-area {
    background: var(--tj-color-heading-primary);
    padding-top: 0;
    position: relative;
    z-index: 1;
}

.tj-footer-2-bg-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-footer-2-col-1 {
        margin-bottom: 40px;
    }
}

.tj-footer-2-col-2 {
    margin-left: -40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-footer-2-col-2 {
        margin-left: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-footer-2-col-2 {
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .tj-footer-2-col-2 {
        margin-top: 40px;
        margin-left: 0;
    }
}

.tj-footer-2-col-3 {
    margin-left: 17px;
    margin-right: 21px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-footer-2-col-3 {
        margin-left: -10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-footer-2-col-3 {
        margin-left: 0;
        margin-right: 100px;
        margin-top: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-footer-2-col-3 {
        margin-left: 0;
        margin-right: 30px;
        margin-top: 60px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-footer-2-col-3 {
        margin-left: 0;
        margin-right: 0;
        margin-top: 60px;
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .tj-footer-2-col-3 {
        margin-left: 0;
        margin-right: 0;
        margin-top: 40px;
        max-width: 375px;
    }
}

.tj-footer-2-col-4 {
    text-align: right;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-footer-2-col-4 {
        text-align: left;
        margin-top: 60px;
        margin-right: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-footer-2-col-4 {
        text-align: left;
        margin-top: 60px;
        margin-right: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-footer-2-col-4 {
        text-align: left;
        margin-top: 60px;
        margin-right: 0;
        max-width: 270px;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .tj-footer-2-col-4 {
        text-align: left;
        margin-right: 0;
        margin-top: 60px;
    }
}

.tj-footer-2-top-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(13, 86, 214, 0.15);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-footer-2-top-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding-top: 25px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-footer-2-top-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 40px;
        padding: 0px 0px;
    }
}

@media (max-width: 575px) {
    .tj-footer-2-top-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 40px;
        padding-top: 25px;
    }
}

.tj-footer-2-top-wrap {
    background: var(--tj-color-theme-primary);
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    width: 400px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 0;
}

.tj-footer-2-top-wrap .tj-footer-top-wrap-icon a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    line-height: 1;
    font-size: 25px;
    color: var(--tj-color-theme-primary);
    background-color: var(--tj-color-common-white);
    border-radius: 50%;
}

.tj-footer-2-top-wrap .tj-footer-top-wrap-icon i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

.tj-footer-2-top-wrap .tj-footer-top-wrap-content span {
    display: block;
    color: var(--tj-color-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-footer-2-top-wrap {
        width: 340px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-footer-2-top-wrap {
        width: 250px;
    }
}

.tj-footer-2-top-form-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-footer-2-top-form-wrap {
        padding-right: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-footer-2-top-form-wrap {
        padding: 0 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-footer-2-top-form-wrap {
        height: auto;
        padding: 35px 30px 0px 30px;
        padding-top: 35px;
        display: block;
    }
}

@media (max-width: 575px) {
    .tj-footer-2-top-form-wrap {
        height: auto;
        padding: 0 20px;
        display: block;
    }
}

.tj-footer-2-top-form-title {
    font-size: 30px;
    color: var(--tj-color-common-white);
    margin-bottom: 0;
    margin-right: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-footer-2-top-form-title {
        font-size: 24px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-footer-2-top-form-title {
        margin-bottom: 20px;
        margin-right: 0;
        text-align: center;
    }
}

.tj-footer-2-top-form .form-input {
    position: relative;
    z-index: 1;
}

.tj-footer-2-top-form .form-input input {
    background: #ECF1F5;
    padding: 14px 158px 14px 20px;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
}

.tj-footer-2-top-form-btn {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
    height: 56px;
    line-height: 1;
    padding: 0 34px;
    border-radius: 0 5px 5px 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-footer-2-top-form-btn {
        position: initial;
        text-align: center;
        margin-top: 20px;
        width: 100%;
        border-radius: 5px;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.tj-footer-2-bottom {
    padding-top: 80px;
}

.tj-footer-2-gallery a {
    margin-bottom: 10px;
    margin-right: 12px;
    display: inline-block;
    max-width: 80px;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-footer-2-gallery a {
        max-width: 76px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-footer-2-gallery a {
        max-width: 60px;
    }
}

.tj-footer-2-gallery a:nth-child(3) {
    margin-right: 0;
}

.tj-footer-2-gallery a:nth-child(6) {
    margin-right: 0;
}

.tj-footer-2-gallery a img {
    width: 100%;
}

.tj-footer-2-gallery a:hover img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    border-radius: 5px;
}

@media (max-width: 575px) {
    .tj-footer-2-gallery {
        max-width: 375px;
        width: 100%;
    }
}

.tj-footer-2-working ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tj-footer-2-working ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: var(--tj-color-common-white);
    margin-bottom: 8px;
}

.tj-footer-2-widget-socail ul li a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--tj-color-common-white);
}

.tj-footer-2-widget-socail ul li a:hover {
    background: var(--tj-color-theme-secondary);
    color: var(--tj-color-heading-primary);
}

.tj-footer-3-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.tj-footer-3-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(13, 86, 214, 0.1);
    z-index: -1;
}

.tj-footer-3-top-wrapper {
    border-bottom: 1px solid rgba(55, 58, 63, 0.1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-footer-3-top-wrapper {
        -webkit-column-gap: 80px;
        -moz-column-gap: 80px;
        column-gap: 80px;
        row-gap: 35px;
    }
    .tj-footer-3-top-wrapper .tj-footer-top-wrap {
        max-width: 100%;
        width: auto;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-footer-3-top-wrapper {
        -webkit-column-gap: 80px;
        -moz-column-gap: 80px;
        column-gap: 80px;
        row-gap: 35px;
    }
    .tj-footer-3-top-wrapper .tj-footer-top-wrap {
        max-width: 100%;
        width: auto;
    }
}

@media (max-width: 575px) {
    .tj-footer-3-top-wrapper {
        -webkit-column-gap: 25px;
        -moz-column-gap: 25px;
        column-gap: 25px;
        row-gap: 25px;
    }
    .tj-footer-3-top-wrapper .tj-footer-top-wrap {
        max-width: 100%;
        width: auto;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-footer-3-top-form .form-input input {
        padding: 14px 155px 14px 14px;
    }
}

.tj-footer-3-logo img {
    max-width: 271px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-footer-3-logo img {
        max-width: 200px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-footer-3-top-form {
        padding-right: 0;
    }
}

.tj-footer-3-col-2 {
    margin-left: -20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-footer-3-col-2 {
        margin-left: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .tj-footer-3-col-2 {
        margin-left: 0;
        margin-bottom: 30px;
    }
}

.tj-footer-3-col-3 {
    margin-left: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-footer-3-col-3 {
        margin-left: -25px;
    }
}

@media (max-width: 575px) {
    .tj-footer-3-col-3 {
        margin-left: 0;
        margin-bottom: 30px;
    }
}

.tj-footer-3-col-4 {
    margin-left: 48px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-footer-3-col-4 {
        margin-left: -30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-footer-3-col-4 {
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .tj-footer-3-col-4 {
        margin-left: 0;
    }
}

.tj-footer-3-bottom-row {
    border-bottom: 1px solid rgba(55, 58, 63, 0.1);
    padding-bottom: 60px;
}

.tj-footer-3-widget-socail ul li a {
    background: transparent;
    color: var(--tj-color-heading-primary);
    border: 1px solid rgba(55, 58, 63, 0.4);
}

.tj-footer-3-widget-socail ul li a:hover {
    color: var(--tj-color-common-white);
    background: var(--tj-color-heading-primary);
    border-color: var(--tj-color-theme-primary);
}

.tj-footer-3-widget-socail ul li a::before {
    background: var(--tj-color-theme-primary);
}

.tj-footer-3-widget-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.tj-footer-3-widget-contact-icon {
    margin-right: 22px;
}

.tj-footer-3-widget-contact-icon span {
    width: 35px;
    height: 35px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    border: 1px solid var(--tj-color-theme-primary);
    border-radius: 50%;
    color: var(--tj-color-theme-primary);
}

.tj-footer-3-widget-contact-icon a {
    width: 35px;
    height: 35px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    border: 1px solid var(--tj-color-theme-primary);
    border-radius: 50%;
    color: var(--tj-color-theme-primary);
}

.tj-footer-3-widget-contact-icon a:hover {
    color: var(--tj-color-common-white);
    background: var(--tj-color-theme-primary);
    border-color: var(--tj-color-theme-primary);
}

.tj-footer-3-widget-contact-text .link {
    color: var(--tj-color-heading-primary);
    display: block;
    margin-bottom: 4px;
}

.tj-footer-3-widget-contact-text .link:hover {
    color: var(--tj-color-theme-primary);
}

.tj-footer-3-widget-title {
    color: var(--tj-color-heading-primary);
}

.tj-footer-3-widget-menu ul li a {
    color: var(--tj-color-heading-primary) !important;
}

.tj-footer-3-widget-menu ul li a span {
    color: var(--tj-color-theme-primary);
}

.tj-footer-3-working ul li {
    color: var(--tj-color-heading-primary);
}

.tj-footer-3-copyright-paragraph {
    color: var(--tj-color-heading-primary);
}

.tj-footer-3-copyright-paragraph a::before {
    background: var(--tj-color-theme-primary);
}

.tj-footer-3-copyright-paragraph a:hover {
    color: var(--tj-color-theme-primary);
}

.tj-footer-3-copyright-menu ul li::before {
    background: var(--tj-color-heading-primary);
}

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

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

/* !END: Footer CSS */

/**----------------------------------------
START: Section Title CSS
----------------------------------------*/

.tj-section-wrapper {
    margin-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-section-wrapper {
        margin-bottom: 40px;
    }
}

.tj-section-subtitle {
    color: var(--tj-color-theme-primary);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.tj-section-subtitle span.one {
    font-size: 16px;
    margin-right: 5px;
}

.tj-section-subtitle span.two {
    font-size: 16px;
    margin-left: 5px;
}

.tj-section-title {
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 0;
}

.tj-section-paragraph {
    line-height: 1.62;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-section-title {
        margin-bottom: 0px;
    }
}

/* !END: Section Title CSS */

/**----------------------------------------
START: Search CSS
----------------------------------------*/

.search_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--tj-color-heading-primary);
    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;
    z-index: 9999;
}

.search_popup.search-opened {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.search_popup.search-opened .search_form .search_input {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.search_popup.search-opened .search_form .search_input::after {
    width: 100%;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

@media (max-width: 575px) {
    .search_popup {
        padding-top: 50px;
        padding-bottom: 70px;
    }
}

.search_wrapper .search_top {
    margin-bottom: 80px;
}

.search_wrapper .search_top .search_logo {
    max-width: 180px;
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .search_wrapper .search_top .search_logo {
        max-width: 150px;
    }
}

.search_wrapper .search_top .search_logo a {
    display: block;
}

.search_wrapper .search_top .search_close .search_close_btn {
    font-size: 25px;
    color: var(--tj-color-common-white);
}

.search_wrapper .search_top .search_close .search_close_btn svg {
    width: 30px;
    height: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .search_wrapper .search_top .search_close .search_close_btn svg {
        width: 25px;
        height: 25px;
    }
}

.search_wrapper .search_top .search_close .search_close_btn:hover {
    color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .search_wrapper .search_top {
        margin-bottom: 25px;
    }
}

.search_wrapper .search_form .search_input {
    position: relative;
    height: 80px;
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    opacity: 0;
}

.search_wrapper .search_form .search_input::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.search_wrapper .search_form .search_input input {
    width: 100%;
    height: 100% !important;
    background-color: transparent !important;
    border: 0 !important;
    outline: 0;
    font-size: 20px;
    color: var(--tj-color-common-white) !important;
    border-bottom: 1px solid transparent !important;
    padding: 0 !important;
    padding-right: 30px !important;
}

.search_wrapper .search_form .search_input input::-webkit-input-placeholder {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.search_wrapper .search_form .search_input input::-moz-placeholder {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.search_wrapper .search_form .search_input input:-ms-input-placeholder {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.search_wrapper .search_form .search_input input::-ms-input-placeholder {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.search_wrapper .search_form .search_input input::placeholder {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.search_wrapper .search_form .search_input input~.search-focus-border {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--tj-color-common-white);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.search_wrapper .search_form .search_input input:focus~.search-focus-border {
    width: 100%;
    left: 0;
    right: auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .search_wrapper .search_form .search_input input {
        font-size: 20px;
    }
    .search_wrapper .search_form .search_input input::-webkit-input-placeholder {
        font-size: 20px;
    }
    .search_wrapper .search_form .search_input input::-moz-placeholder {
        font-size: 20px;
    }
    .search_wrapper .search_form .search_input input:-ms-input-placeholder {
        font-size: 20px;
    }
    .search_wrapper .search_form .search_input input::-ms-input-placeholder {
        font-size: 20px;
    }
    .search_wrapper .search_form .search_input input::placeholder {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .search_wrapper .search_form .search_input input {
        font-size: 18px;
    }
    .search_wrapper .search_form .search_input input::-webkit-input-placeholder {
        font-size: 18px;
    }
    .search_wrapper .search_form .search_input input::-moz-placeholder {
        font-size: 18px;
    }
    .search_wrapper .search_form .search_input input:-ms-input-placeholder {
        font-size: 18px;
    }
    .search_wrapper .search_form .search_input input::-ms-input-placeholder {
        font-size: 18px;
    }
    .search_wrapper .search_form .search_input input::placeholder {
        font-size: 18px;
    }
}

.search_wrapper .search_form .search_input button {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--tj-color-common-white);
}

.search-popup-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--tj-color-theme-primary);
    z-index: 99;
    opacity: 0.7;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
    -webkit-transform: translateY(calc(-100% - 80px));
    -ms-transform: translateY(calc(-100% - 80px));
    transform: translateY(calc(-100% - 80px));
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.search-popup-overlay.search-popup-overlay-open {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/* !END: Search CSS */

.loader-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.8s 1s ease;
    transition: 0.8s 1s ease;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--tj-color-common-white);
}

.loader-wrapper .closeLoader {
    position: absolute;
    top: 30px;
    right: 30px;
}

.loader {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--tj-color-theme-secondary);
    position: relative;
}

.loader:before,
.loader:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 0;
    background: var(--tj-color-theme-primary);
    -webkit-transform: rotate(0deg) translate(30px);
    -ms-transform: rotate(0deg) translate(30px);
    transform: rotate(0deg) translate(30px);
    -webkit-animation: rotate 1s ease infinite;
    animation: rotate 1s ease infinite;
}

.loader:after {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg) translate(30px);
        transform: rotate(360deg) translate(30px);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg) translate(30px);
        transform: rotate(360deg) translate(30px);
    }
}

/**----------------------------------------
START: Cartmini CSS
----------------------------------------*/

.cartmini__top-title {
    padding: 20px 0;
    border-bottom: 1px solid var(--tj-color-border-primary);
}

.cartmini__top-title h4 {
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.cartmini__close {
    position: absolute;
    top: 17px;
    right: 20px;
}

.cartmini__close-btn {
    background: transparent;
    color: var(--tj-color-common-black);
    font-size: 22px;
}

.cartmini__close-btn:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.cartmini__shipping {
    padding: 15px 0;
    border-bottom: 1px solid var(--tj-color-border-primary);
}

.cartmini__shipping .progress {
    height: 10px;
    border-radius: 0;
}

.cartmini__shipping .progress-bar {
    background-color: var(--tj-color-theme-primary);
}

.cartmini__shipping p {
    margin-bottom: 5px;
}

.cartmini__shipping p span {
    font-weight: var(--tj-fw-sbold);
}

.cartmini__content a {
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: var(--tj-fw-medium);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cartmini__content a:hover {
    color: var(--tj-color-theme-primary);
}

.cartmini__widget {
    height: 100%;
}

.cartmini__widget-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    padding-right: 35px;
    border-bottom: 1px solid rgba(129, 129, 129, 0.2);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.cartmini__widget-item:last-child {
    border-bottom: 0;
}

.cartmini__thumb {
    margin-right: 15px;
}

.cartmini__thumb img {
    width: 70px;
    height: 90px;
    -o-object-fit: cover;
    object-fit: cover;
}

.cartmini__title {
    font-weight: var(--tj-fw-medium);
    padding: 20px 20px;
    border-bottom: 1px solid rgba(129, 129, 129, 0.2);
    -webkit-box-shadow: 0 0 10px 0 rgba(129, 129, 129, 0.2);
    box-shadow: 0 0 10px 0 rgba(129, 129, 129, 0.2);
}

.cartmini__title h4 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.cartmini__del {
    position: absolute;
    top: 15px;
    right: 10px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    color: var(--tj-color-common-black);
    font-size: 14px;
}

.cartmini__del:hover {
    color: var(--tj-color-theme-primary);
}

.cartmini__checkout {
    padding: 20px;
    padding-bottom: 85px;
    width: 100%;
    background: var(--tj-color-common-white);
    border-top: 2px solid rgba(129, 129, 129, 0.2);
}

.cartmini__checkout-title h4 {
    font-size: 18px;
    display: inline-block;
    margin-bottom: 0;
    color: var(--tj-color-common-black);
}

.cartmini__checkout-title span {
    float: right;
    font-size: 20px;
    font-weight: var(--tj-fw-sbold);
    color: var(--tj-color-theme-primary);
}

.cartmini__price {
    font-size: 14px;
    font-weight: var(--tj-fw-medium);
    color: var(--tj-color-theme-primary);
}

.cartmini__quantity {
    font-size: 12px;
    font-weight: var(--tj-fw-medium);
    color: var(--tj-color-theme-primary);
}

.cartmini__checkout-title {
    margin-bottom: 30px;
}

.cartmini__empty {
    margin-top: 150px;
}

.cartmini__empty img {
    margin-bottom: 30px;
}

.cartmini__empty p {
    font-size: 16px;
    color: var(--tj-color-common-black);
    margin-bottom: 15px;
}

.cartmini-btn {
    display: inline-block;
    font-size: 16px;
    color: var(--tj-color-common-white);
    background: var(--tj-color-common-black);
    text-align: center;
    padding: 10px 30px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
    overflow: hidden;
    letter-spacing: -0.02em;
    border: 1px solid var(--tj-color-common-black);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.cartmini-btn:hover {
    border: 1px solid rgba(129, 129, 129, 0.2);
    color: var(--tj-color-common-black);
    background: transparent;
}

.cartmini-btn-border {
    display: inline-block;
    font-weight: var(--tj-fw-medium);
    color: var(--tj-color-common-black);
    border: 1px solid rgba(129, 129, 129, 0.2);
    text-align: center;
    padding: 10px 30px;
    font-size: 15px;
    text-transform: capitalize;
}

.cartmini-btn-border:hover {
    background: var(--tj-color-common-black);
    border: 1px solid var(--tj-color-common-black);
    color: var(--tj-color-common-white);
}

.cartmini__area {
    position: fixed;
    right: 0;
    top: 0;
    width: 360px;
    height: 100%;
    -webkit-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    background: var(--tj-color-common-white) none repeat scroll 0 0;
    -webkit-transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
    transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
    z-index: 9999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

.cartmini__area.cartmini-opened {
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.cartmini__wrapper {
    position: relative;
    min-height: 100%;
}

.cartmini-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2222;
    width: 100%;
    height: 100%;
    background: rgb(24, 24, 24);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.45s ease-in-out;
    transition: 0.45s ease-in-out;
}

.cartmini-overlay.openeds {
    opacity: 1;
    visibility: visible;
    opacity: 0.7;
}

.cartmini-item-count {
    top: -10px;
    right: -9px;
    display: inline-block;
    font-size: 12px;
    font-weight: var(--tj-fw-bold);
    color: var(--tj-color-common-white);
    background-color: var(--tj-color-theme-primary);
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
}

/* !END: Cartmini CSS */

/**----------------------------------------
START: Hamburger CSS
----------------------------------------*/

.hamburger-area {
    position: fixed;
    right: -490px;
    top: 0;
    width: 450px;
    height: 100%;
    -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    z-index: 9999;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background: var(--tj-color-heading-primary);
    overflow-y: scroll;
}

.hamburger-area::-webkit-scrollbar {
    display: none;
}

.hamburger-area.opened {
    right: 0px;
}

@media (max-width: 575px) {
    .hamburger-area {
        width: 320px;
    }
}

.hamburger_bg {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--tj-color-theme-bg-2);
    z-index: -1;
    -webkit-backdrop-filter: blur(37px);
    backdrop-filter: blur(37px);
}

.hamburger_wrapper {
    position: relative;
    padding: 45px 45px 90px 45px;
    overflow: auto;
    height: 100%;
}

@media (max-width: 575px) {
    .hamburger_wrapper {
        padding: 20px;
    }
}

.hamburger_top {
    margin-bottom: 40px;
}

.hamburger_close_btn {
    display: inline-block;
    font-size: 35px;
    line-height: 1;
    color: var(--tj-color-common-white);
}

@media (max-width: 575px) {
    .hamburger_close_btn {
        font-size: 30px;
    }
}

.hamburger_close_btn:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    color: var(--tj-color-theme-primary);
}

.hamburger_search {
    position: relative;
    margin-bottom: 30px;
}

.hamburger_search select,
.hamburger_search .nice-select,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.hamburger_search input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 25px;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid var(--tj-color-border-3);
    font-size: 18px;
    color: var(--tj-color-common-white);
}

.hamburger_search select::-ms-input-placeholder,
.hamburger_search .nice-select::-ms-input-placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder,
.hamburger_search input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hamburger_search select::-webkit-input-placeholder,
.hamburger_search .nice-select::-webkit-input-placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder,
.hamburger_search input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hamburger_search select::-moz-placeholder,
.hamburger_search .nice-select::-moz-placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder,
.hamburger_search input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hamburger_search select:-ms-input-placeholder,
.hamburger_search .nice-select:-ms-input-placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder,
.hamburger_search input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hamburger_search select::-ms-input-placeholder,
.hamburger_search .nice-select::-ms-input-placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder,
.hamburger_search input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hamburger_search select::placeholder,
.hamburger_search .nice-select::placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.hamburger_search input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hamburger_search button {
    position: absolute;
    top: 50%;
    inset-inline-start: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--tj-color-common-white);
}

.hamburger_menu {
    overflow: hidden;
}

.hamburger_menu .mean-container .mean-bar {
    background: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.hamburger_menu .mean-container .mean-bar * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.hamburger_menu .mean-nav {
    background: transparent;
    margin-top: 0;
    overflow: hidden;
}

.hamburger_menu .mean-nav>ul {
    display: block !important;
}

.hamburger_menu .mean-nav>ul>li:first-child>a {
    border-top: none;
}

.hamburger_menu .mean-nav ul li {
    position: relative;
}

.hamburger_menu .mean-nav ul li a {
    color: var(--tj-color-common-white);
    width: 100%;
    padding: 18px 0;
    border-top: none;
    border-bottom: 1px solid #535353;
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 16px;
    line-height: 1;
    letter-spacing: 1px;
}

.hamburger_menu .mean-nav ul li a:hover {
    color: var(--tj-color-theme-primary);
}

.hamburger_menu .mean-nav ul li a.mean-expand {
    padding: 0;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    position: absolute;
    right: 0;
    top: 10px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.hamburger_menu .mean-nav ul li a.mean-expand:hover {
    color: var(--tj-color-theme-primary);
}

.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked {
    color: var(--tj-color-theme-primary);
}

.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.hamburger_menu .mean-nav ul li .sub-menu li {
    padding-left: 25px;
    position: relative;
}

.hamburger_menu .mean-nav ul li .sub-menu li a {
    width: 100%;
    padding: 18px 0;
    text-transform: capitalize;
}

.hamburger_menu .mean-nav ul li .sub-menu li a.mean-expand {
    padding: 0;
    width: 30px;
}

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

.hamburger-title {
    color: var(--tj-color-common-white);
    font-size: 22px;
    margin-bottom: 20px;
}

.hamburger-infos {
    border-top: 1px solid var(--tj-color-border-3);
    padding-top: 40px;
    margin-bottom: 40px;
}

.hamburger-infos .contact-item {
    max-width: 300px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.hamburger-infos .contact-item:last-child {
    margin-bottom: 0;
}

.hamburger-infos .contact-item .contact-icon span {
    width: 50px;
    height: 50px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
    border-radius: 50%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
}

.hamburger-infos .contact-item .contact-text span {
    color: var(--tj-color-grey-3);
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-light);
}

.hamburger-infos .contact-item .contact-text .text {
    color: var(--tj-color-common-white);
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-bold);
    font-size: 20px;
}

.hamburger-infos .contact-item .contact-text .text a {
    color: var(--tj-color-common-white);
}

.hamburger-infos .contact-item .contact-text .text a:hover {
    color: var(--tj-color-theme-secondary);
}

.hamburger-socials {
    border-top: 1px solid var(--tj-color-border-3);
    padding-top: 40px;
}

.hamburger-socials ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.hamburger-socials ul li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--tj-color-common-white);
    background: transparent;
    font-size: 16px;
    line-height: 1;
    border: 1.5px solid var(--tj-color-common-white);
    position: relative;
    z-index: 1;
}

.hamburger-socials ul li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    background: var(--tj-color-theme-primary);
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    border-radius: 50%;
}

.hamburger-socials ul li a:hover {
    border-color: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
}

.hamburger-socials ul li a:hover i {
    color: var(--tj-color-common-white);
}

.hamburger-socials ul li a:hover::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.hamburger_logo .mobile_logo {
    display: inline-block;
}

.hamburger_logo .mobile_logo img {
    max-width: 180px;
    width: 100%;
}

.menu-bar button {
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    cursor: pointer;
    -webkit-transition: -webkit-transform 300ms ease;
    transition: -webkit-transform 300ms ease;
    transition: transform 300ms ease;
    transition: transform 300ms ease, -webkit-transform 300ms ease;
}

.menu-bar button span {
    height: 3px;
    width: 35px;
    display: block;
    background: var(--tj-color-common-white);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    margin-left: auto;
}

.menu-bar button span:nth-child(2) {
    width: 40px;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.menu-bar button span:nth-child(3) {
    width: 30px;
}

.menu-bar button span:nth-child(4) {
    position: absolute;
    top: -8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: 3px;
    height: 0;
    -webkit-transition: height 400ms;
    transition: height 400ms;
}

.menu-bar.style-2 button span {
    background: var(--tj-color-theme-secondary);
}

.menu-bar.menu-bar-toggeled button {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}

.menu-bar.menu-bar-toggeled button span:nth-child(1) {
    width: 0;
}

.menu-bar.menu-bar-toggeled button span:nth-child(3) {
    width: 0;
}

.menu-bar.menu-bar-toggeled button span:nth-child(4) {
    height: 40px;
    -webkit-transition: height 200ms ease;
    transition: height 200ms ease;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.body-overlay {
    background-color: var(--tj-color-heading-primary);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.body-overlay.opened {
    opacity: 0.7;
    visibility: visible;
}

.tj-overlay-canvas {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(13, 87, 215, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.offcanvas-area {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 485px;
    z-index: 9999;
    background: var(--tj-color-theme-bg-2);
    padding: 30px 30px 30px;
    right: -450px;
    opacity: 0;
    visibility: visible;
    overflow-y: scroll;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.offcanvas-area .offcanvas-title {
    color: var(--tj-color-common-white);
    font-size: 25px;
    font-weight: var(--tj-fw-bold);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    padding-bottom: 5px;
}

.offcanvas-area .offcanvas-title::before {
    width: 70px;
    height: 2px;
    content: "";
    clear: both;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-primary)), to(var(--tj-color-theme-secondary)));
    background: linear-gradient(90deg, var(--tj-color-theme-primary) 0%, var(--tj-color-theme-secondary) 100%);
    border-radius: 3px;
}

.offcanvas-area .offcanvas-wrapper {
    margin-bottom: 40px;
}

.offcanvas-area .offcanvas-wrapper .canvas-logo {
    max-width: 165px;
    width: 100%;
}

.offcanvas-area .offcanvas-wrapper .canvas-logo a {
    display: inline-block;
}

.offcanvas-area .offcanvas-wrapper .canvas-logo a img {
    width: 100%;
}

.offcanvas-area .offcanvas-wrapper .offcanvas-icon .close-icon {
    font-size: 40px;
    color: var(--tj-color-common-white);
    line-height: 1;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

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

.offcanvas-area .search-box {
    margin-bottom: 40px;
}

.offcanvas-area .search-box form {
    position: relative;
    z-index: 1;
}

.offcanvas-area .search-box form input[type=text] {
    font-size: 16px;
    color: var(--tj-color-heading-primary);
    font-family: var(--tj-ff-heading);
    background: var(--tj-color-common-white);
    border: 1px solid var(--tj-color-theme-primary);
    letter-spacing: 0.32px;
    padding: 14px 85px 14px 20px;
    border-radius: 5px;
}

.offcanvas-area .search-box form input[type=text]::-ms-input-placeholder {
    color: var(--tj-color-text-body);
    letter-spacing: 0.32px;
    font-size: 16px;
}

.offcanvas-area .search-box form input[type=text]::-webkit-input-placeholder {
    color: var(--tj-color-text-body);
    letter-spacing: 0.32px;
    font-size: 16px;
}

.offcanvas-area .search-box form input[type=text]::-moz-placeholder {
    color: var(--tj-color-text-body);
    letter-spacing: 0.32px;
    font-size: 16px;
}

.offcanvas-area .search-box form input[type=text]:-ms-input-placeholder {
    color: var(--tj-color-text-body);
    letter-spacing: 0.32px;
    font-size: 16px;
}

.offcanvas-area .search-box form input[type=text]::placeholder {
    color: var(--tj-color-text-body);
    letter-spacing: 0.32px;
    font-size: 16px;
}

.offcanvas-area .search-box form button {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 13px 20px;
    border-radius: 0px 3px 3px 0px;
    background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-primary)), to(var(--tj-color-theme-secondary)));
    background: linear-gradient(90deg, var(--tj-color-theme-primary) 0%, var(--tj-color-theme-secondary) 100%);
    font-size: 18px;
    color: var(--tj-color-common-white);
}

.offcanvas-area .desc {
    color: var(--tj-color-common-white);
    letter-spacing: 0.32px;
    margin-bottom: 30px;
}

.offcanvas-area .desc p:last-child {
    margin-bottom: 0;
}

.offcanvas-area .contact-infos {
    margin-bottom: 30px;
}

.offcanvas-area .contact-infos .contact-item {
    max-width: 300px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.offcanvas-area .contact-infos .contact-item:last-child {
    margin-bottom: 0;
}

.offcanvas-area .contact-infos .contact-item .contact-icon {
    position: relative;
    max-width: 40px;
    height: 55px;
    width: 100%;
    -webkit-mask-image: url(../images/shapes/vector-1.svg);
    mask-image: url(../images/shapes/vector-1.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: -webkit-gradient(linear, left top, left bottom, from(var(--tj-color-theme-primary)), to(var(--tj-color-theme-secondary)));
    background: linear-gradient(180deg, var(--tj-color-theme-primary) 0%, var(--tj-color-theme-secondary) 100%);
    z-index: 1;
}

.offcanvas-area .contact-infos .contact-item .contact-icon span {
    position: absolute;
    top: 60%;
    left: 50%;
    line-height: 1;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: var(--tj-color-common-white);
    font-size: 18px;
    z-index: 2;
}

.offcanvas-area .contact-infos .contact-item .contact-text span {
    color: var(--tj-color-grey-3);
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-light);
}

.offcanvas-area .contact-infos .contact-item .contact-text .text {
    color: var(--tj-color-common-white);
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-bold);
    font-size: 20px;
}

.offcanvas-area .contact-infos .contact-item .contact-text .text a {
    color: var(--tj-color-common-white);
}

.offcanvas-area .contact-infos .contact-item .contact-text .text a:hover {
    color: var(--tj-color-theme-secondary);
}

.offcanvas-area .canvas-share {
    margin-bottom: 40px;
}

.offcanvas-area .canvas-share ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.offcanvas-area .canvas-share ul li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: var(--tj-color-common-white);
    background: transparent;
    font-size: 14px;
    line-height: 1;
    border: 1.5px solid var(--tj-color-common-white);
}

.offcanvas-area .canvas-share ul li a i {
    color: var(--tj-color-common-white);
}

.offcanvas-area .canvas-share ul li a:hover {
    background-color: var(--tj-color-theme-secondary);
    border-color: var(--tj-color-theme-secondary);
    color: var(--tj-color-common-white);
}

.offcanvas-area .canvas-share ul li a:hover i {
    color: var(--tj-color-common-white);
}

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

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

/* !END: Hamburger CSS */

/**----------------------------------------
START: Breadcrumb CSS
----------------------------------------*/

.tj-breadcrumb-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 280px 0 120px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.tj-breadcrumb-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(7, 124, 234, 0.5);
    z-index: -2;
}

.tj-breadcrumb-area::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(1, 15, 52, 0.3);
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-breadcrumb-area {
        padding: 200px 0 100px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-breadcrumb-area {
        padding: 180px 0 80px;
    }
}

@media (max-width: 575px) {
    .tj-breadcrumb-area {
        padding: 180px 0 80px;
    }
}

.tj-breadcrumb-bg-shape {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(4%, -30%);
    -ms-transform: translate(4%, -30%);
    transform: translate(4%, -30%);
    z-index: -1;
}

.tj-breadcrumb-title {
    color: var(--tj-color-common-white);
    font-weight: var(--tj-fw-bold);
    margin-bottom: 12px;
}

.tj-breadcrumb-body {
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-medium);
    font-size: 18px;
    color: var(--tj-color-common-white);
    margin-bottom: 0;
}

.tj-breadcrumb-body .spacing {
    margin: 0 10px 0;
}

/* !END: Breadcrumb CSS */

/**----------------------------------------
START: Slider CSS
----------------------------------------*/

.tj-slider-area {
    position: relative;
    z-index: 2;
}

.tj-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 9000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 9000ms ease;
    transition: transform 9000ms ease, opacity 1500ms ease-in;
    transition: transform 9000ms ease, opacity 1500ms ease-in, -webkit-transform 9000ms ease;
    z-index: -1;
}

.tj-slider-bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 58%;
    height: 100%;
    -webkit-mask-image: url(../images/slider/slider-bg-shape-1-mark.svg);
    mask-image: url(../images/slider/slider-bg-shape-1-mark.svg);
    background: -webkit-gradient(linear, left top, right top, from(#2946b8), to(rgba(0, 21, 29, 0.5)));
    background: linear-gradient(90deg, #2946b8 0%, rgba(0, 21, 29, 0.5) 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center right;
    mask-position: center right;
    -webkit-mask-size: cover;
    mask-size: cover;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-slider-bg-shape-1 {
        height: 100%;
        -webkit-mask-position: center right;
        mask-position: center right;
        -webkit-mask-size: cover;
        mask-size: cover;
    }
}

.tj-slider-bg-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-slider-bg-shape-2 {
        display: none;
    }
}

.tj-slider-bg-shape-3 {
    position: absolute;
    bottom: -2px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 130px;
    -webkit-mask-image: url(../images/slider/slider-bg-shape-3-mark.svg);
    mask-image: url(../images/slider/slider-bg-shape-3-mark.svg);
    background: var(--tj-color-common-white);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center top;
    mask-position: center top;
    -webkit-mask-size: cover;
    mask-size: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-bg-shape-3 {
        height: 85px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-bg-shape-3 {
        height: 70px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-slider-bg-shape-3 {
        height: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-slider-bg-shape-3 {
        height: 40px;
    }
}

.tj-slider-content {
    padding: 290px 0 265px;
}

@media only screen and (min-width: 1601px) and (max-width: 1700px) {
    .tj-slider-content {
        padding: 260px 0 200px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-content {
        padding: 290px 0 160px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-content {
        padding: 250px 0 190px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-slider-content {
        padding: 240px 0 45px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-slider-content {
        padding: 160px 0 45px;
    }
}

@media (max-width: 575px) {
    .tj-slider-content {
        padding: 155px 0 30px;
    }
}

.tj-slider-title-box {
    margin-bottom: 36px;
}

@media (max-width: 575px) {
    .tj-slider-title-box {
        margin-bottom: 30px;
    }
}

.tj-slider-sub-title {
    font-size: 20px;
    color: var(--tj-color-common-white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tj-slider-sub-title span {
    font-size: 16px;
    margin-right: 8px;
}

.tj-slider-title {
    color: var(--tj-color-common-white);
    font-weight: var(--tj-fw-bold);
    line-height: 1.14;
    margin-bottom: 16px;
}

.tj-slider-paragraph {
    font-size: 18px;
    line-height: 150%;
    color: var(--tj-color-grey-3);
    max-width: 600px;
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-paragraph {
        max-width: 460px;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .tj-slider-paragraph {
        font-size: 16px;
    }
}

.tj-slider-btn-box {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 575px) {
    .tj-slider-btn-box {
        display: inherit;
    }
}

.tj-slider-btn-box .tj-primary-btn {
    margin-right: 30px;
}

@media (max-width: 575px) {
    .tj-slider-btn-box .tj-primary-btn {
        margin-bottom: 20px;
        margin-bottom: 20px;
        padding: 18px 20px;
    }
}

.tj-slider-call-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tj-slider-call-btn:hover .tj-slider-call-icon {
    color: var(--tj-color-heading-primary);
    background-color: var(--tj-color-theme-secondary);
}

.tj-slider-call-icon {
    width: 55px;
    height: 55px;
    line-height: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background: rgba(255, 255, 255, 0.12);
    color: var(--tj-color-common-white);
    border-radius: 50%;
    font-size: 24px;
    position: relative;
    z-index: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.tj-slider-call-icon i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

.tj-slider-call-text a {
    font-weight: var(--tj-fw-sbold);
    font-size: 24px;
    font-family: var(--tj-ff-heading);
    color: var(--tj-color-common-white);
    margin-left: 12px;
    position: relative;
    z-index: 1;
}

.tj-slider-call-text a:hover {
    color: var(--tj-color-common-white);
}

.tj-slider-thumb {
    position: relative;
    z-index: 1;
    margin-left: 65px;
}

@media only screen and (min-width: 1601px) and (max-width: 1700px),
only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-slider-thumb {
        margin-left: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-thumb {
        margin-left: -190px;
    }
}

.tj-slider-thumb img {
    max-width: 151%;
}

@media only screen and (min-width: 1601px) and (max-width: 1700px),
only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tj-slider-thumb img {
        max-width: 130%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-thumb img {
        max-width: 120%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-thumb img {
        max-width: 550px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-slider-thumb img {
        max-width: 100%;
    }
}

.tj-slider-2-area {
    position: relative;
    z-index: 1;
}

.tj-slider-2-area .tj-portfolio-slide-dot {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-slider-2-area .tj-portfolio-slide-dot {
        display: block;
        position: absolute;
        bottom: 25px;
        z-index: 2;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-top: 0;
    }
    .tj-slider-2-area .tj-portfolio-slide-dot .swiper-pagination-bullet {
        background: var(--tj-color-common-white);
    }
    .tj-slider-2-area .tj-portfolio-slide-dot .swiper-pagination-bullet::before {
        border: 2px solid var(--tj-color-common-white);
    }
}

.tj-slider-2-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 320px;
    -webkit-mask-image: url(../images/slider/slider-2-bg-shape-1.png);
    mask-image: url(../images/slider/slider-2-bg-shape-1.png);
    background: var(--tj-color-common-white);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    bottom: -1px;
    left: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 2;
}

@media only screen and (min-width: 1801px) and (max-width: 1899px) {
    .tj-slider-2-area::before {
        bottom: -9px;
    }
}

@media only screen and (min-width: 1701px) and (max-width: 1800px) {
    .tj-slider-2-area::before {
        bottom: -17px;
    }
}

@media only screen and (min-width: 1601px) and (max-width: 1700px) {
    .tj-slider-2-area::before {
        bottom: -25px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tj-slider-2-area::before {
        bottom: -40px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-2-area::before {
        bottom: -56px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-2-area::before {
        bottom: -100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-slider-2-area::before {
        bottom: -90px;
    }
}

.tj-slider-2-area:hover .tj-slider-2-arrow-box button {
    visibility: visible;
    opacity: 1;
}

.tj-slider-2-area:hover .tj-slider-2-arrow-box button.slider-prev {
    left: 104px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-2-area:hover .tj-slider-2-arrow-box button.slider-prev {
        left: 80px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-2-area:hover .tj-slider-2-arrow-box button.slider-prev {
        left: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-slider-2-area:hover .tj-slider-2-arrow-box button.slider-prev {
        display: none;
    }
}

.tj-slider-2-area:hover .tj-slider-2-arrow-box button.slider-next {
    right: 104px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-2-area:hover .tj-slider-2-arrow-box button.slider-next {
        right: 80px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-2-area:hover .tj-slider-2-arrow-box button.slider-next {
        right: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-slider-2-area:hover .tj-slider-2-arrow-box button.slider-next {
        display: none;
    }
}

.tj-slider-2-height {
    padding: 315px 0 320px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-2-height {
        padding: 290px 0 300px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-2-height {
        padding: 250px 0 250px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-slider-2-height {
        padding: 160px 0 80px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-slider-2-height {
        padding: 160px 0 80px;
    }
}

@media (max-width: 575px) {
    .tj-slider-2-height {
        padding: 165px 0 110px;
    }
}

.tj-slider-2-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 9000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 9000ms ease;
    transition: transform 9000ms ease, opacity 1500ms ease-in;
    transition: transform 9000ms ease, opacity 1500ms ease-in, -webkit-transform 9000ms ease;
}

.tj-slider-2-overlay::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(7, 124, 234, 0.5);
    z-index: 3;
}

.tj-slider-2-overlay::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--tj-color-heading-primary);
    z-index: 4;
    opacity: 0.3;
}

.tj-slider-2-shape-1 {
    position: absolute;
    left: 0;
    bottom: 172px;
    max-width: 655px;
    opacity: 0.4;
}

.tj-slider-2-shape-2 {
    position: absolute;
    top: 52%;
    left: 49%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 555px;
    opacity: 0.4;
}

.tj-slider-2-shape-3 {
    position: absolute;
    bottom: 217px;
    right: 0;
    max-width: 512px;
    opacity: 0.4;
}

.tj-slider-2-content {
    position: relative;
    z-index: 11;
    max-width: 762px;
    margin: auto;
}

.tj-slider-2-sub-title {
    color: var(--tj-color-common-white);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tj-slider-2-sub-title img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.tj-slider-2-sub-title img.shape-1 {
    margin-right: 6px;
}

.tj-slider-2-sub-title img.shape-2 {
    margin-left: 6px;
}

.tj-slider-2-title {
    color: var(--tj-color-common-white);
    font-size: 74px;
    font-weight: var(--tj-fw-bold);
    line-height: 1.14;
    margin-bottom: 18px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-2-title {
        font-size: 71px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-slider-2-title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-slider-2-title {
        font-size: 50px;
    }
}

@media (max-width: 575px) {
    .tj-slider-2-title {
        font-size: 34px;
        font-weight: var(--tj-fw-bold);
    }
}

.tj-slider-2-title span {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.tj-slider-2-title span::before {
    content: "";
    position: absolute;
    width: 166px;
    height: 14.48px;
    -webkit-mask-image: url(../images/slider/slider-2-title-shape.svg);
    mask-image: url(../images/slider/slider-2-title-shape.svg);
    background: var(--tj-color-theme-secondary);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    bottom: 0;
    left: 5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-slider-2-title span::before {
        bottom: -6px;
        width: 112px;
    }
}

.tj-slider-2-paragraph {
    font-size: 18px;
    line-height: 150%;
    color: var(--tj-color-common-white);
    max-width: 570px;
    margin: auto;
    margin-bottom: 32px;
}

@media (max-width: 575px) {
    .tj-slider-2-paragraph {
        font-size: 16px;
    }
}

.tj-slider-2-arrow-box button {
    width: 60px;
    height: 60px;
    line-height: 1;
    font-size: 24px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: var(--tj-color-common-white);
    background-color: rgba(55, 58, 63, 0.8);
    position: absolute;
    left: 60px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 9;
    visibility: hidden;
    opacity: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-2-arrow-box button {
        left: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-2-arrow-box button {
        left: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-slider-2-arrow-box button {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-slider-2-arrow-box button {
        width: 45px;
        height: 45px;
        font-size: 20px;
        top: auto;
        bottom: 25px;
        border: 1px solid var(--tj-color-common-white);
        background-color: transparent;
    }
}

.tj-slider-2-arrow-box button.slider-next {
    margin-bottom: 10px;
    left: auto;
    right: 60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-2-arrow-box button.slider-next {
        right: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-2-arrow-box button.slider-next {
        right: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-slider-2-arrow-box button.slider-next {
        right: 20px;
    }
}

@media (max-width: 575px) {
    .tj-slider-2-arrow-box button.slider-next {
        right: 10px;
    }
}

.tj-slider-2-arrow-box button {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-slider-2-arrow-box button:hover {
    background: var(--tj-color-common-white);
    color: var(--tj-color-common-black);
}

.tj-slider-2-title-box {
    opacity: 0;
    z-index: 3;
    position: relative;
    -webkit-transform: translateY(-150px);
    -ms-transform: translateY(-150px);
    transform: translateY(-150px);
}

.tj-slider-2-btn-box {
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
    opacity: 0;
}

.tj-slider-2-wrapper .swiper-slide.swiper-slide-active .tj-slider-2-bg {
    -webkit-transform: scale(1.35);
    -ms-transform: scale(1.35);
    transform: scale(1.35);
}

.tj-slider-2-wrapper .swiper-slide.swiper-slide-active .tj-slider-2-title-box {
    opacity: 1;
    -webkit-transform: translatey(0px);
    -ms-transform: translatey(0px);
    transform: translatey(0px);
    -webkit-transition: all 2500ms ease;
    transition: all 2500ms ease;
}

.tj-slider-2-wrapper .swiper-slide.swiper-slide-active .tj-slider-2-btn-box {
    opacity: 1;
    -webkit-transform: translatey(0px);
    -ms-transform: translatey(0px);
    transform: translatey(0px);
    -webkit-transition: all 2500ms ease;
    transition: all 2500ms ease;
}

.tj-slider-3-content {
    max-width: 646px;
    padding: 250px 0 200px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-3-content {
        padding: 200px 0 150px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-3-content {
        padding: 280px 0 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-slider-3-content {
        padding: 165px 0 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-slider-3-content {
        padding: 165px 0 50px;
    }
}

.tj-slider-3-sub-title {
    color: var(--tj-color-theme-primary);
    text-transform: uppercase;
}

.tj-slider-3-title {
    color: var(--tj-color-heading-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-3-title {
        font-size: 70px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-slider-3-title {
        font-size: 50px;
    }
}

.tj-slider-3-title span {
    color: var(--tj-color-theme-primary);
}

.tj-slider-3-paragraph {
    color: var(--tj-color-heading-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-3-paragraph {
        font-size: 17px;
    }
}

.tj-slider-3-play-icon a {
    font-size: 16px;
    height: 40px;
    width: 40px;
    line-height: 1;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 10px;
    background-color: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
    position: relative;
}

.tj-slider-3-play-icon a::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 70%;
    height: 70%;
    background-color: rgba(7, 124, 234, 0.3);
    -webkit-animation: borderanimate2 2s linear infinite;
    animation: borderanimate2 2s linear infinite;
    z-index: -1;
    border-radius: 50%;
}

.tj-slider-3-play-icon a::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 90%;
    height: 90%;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-animation: borderanimate2 2s linear infinite;
    animation: borderanimate2 2s linear infinite;
    border-radius: 50%;
}

.tj-slider-3-play-icon a i {
    display: inline-block;
    padding-left: 3px;
}

.tj-slider-3-play-text span {
    margin-left: 22px;
    font-family: var(--tj-ff-heading);
    color: var(--tj-color-heading-primary);
    font-weight: var(--tj-fw-sbold);
}

.tj-slider-3-thumb {
    margin-left: -23px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-slider-3-thumb {
        text-align: center;
    }
}

.tj-slider-3-thumb-bg {
    width: 560px;
    height: 560px;
    position: absolute;
    top: 50%;
    left: 52%;
    background: var(--tj-color-theme-primary);
    z-index: -1;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--tj-color-theme-primary);
    padding: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-slider-3-thumb-bg {
        width: 460px;
        height: 460px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-3-thumb-bg {
        width: 360px;
        height: 360px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-slider-3-thumb-bg {
        width: 460px;
        height: 460px;
    }
}

@media (max-width: 575px) {
    .tj-slider-3-thumb-bg {
        width: 360px;
        height: 360px;
    }
}

.tj-slider-3-thumb-bg::before {
    content: "";
    position: absolute;
    width: 92%;
    height: 100%;
    top: -29px;
    left: 50%;
    border: 3px dashed rgba(236, 241, 245, 0.4);
    border-radius: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.tj-slider-3-thumb-bg-border {
    -webkit-animation: spinAround-360deg 35s linear infinite;
    animation: spinAround-360deg 35s linear infinite;
    position: relative;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.tj-slider-3-thumb-bg-border::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 448px;
    -webkit-mask-image: url(../images/slider/slider-3-border-left.svg);
    mask-image: url(../images/slider/slider-3-border-left.svg);
    background: var(--tj-color-theme-primary);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    top: 50%;
    left: -60px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: -1;
    rotate: -3deg;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-3-thumb-bg-border::before {
        width: 94px;
        height: 310px;
    }
}

@media (max-width: 575px) {
    .tj-slider-3-thumb-bg-border::before {
        display: none;
    }
}

.tj-slider-3-thumb-bg-border::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 448px;
    -webkit-mask-image: url(../images/slider/slider-3-border-right.svg);
    mask-image: url(../images/slider/slider-3-border-right.svg);
    background: var(--tj-color-theme-primary);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    top: 50%;
    right: -50px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: -1;
    rotate: 5deg;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-slider-3-thumb-bg-border::after {
        width: 94px;
        height: 310px;
    }
}

@media (max-width: 575px) {
    .tj-slider-3-thumb-bg-border::after {
        display: none;
    }
}

.tj-slider-3-bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.tj-slider-3-bg-shape-2 {
    position: absolute;
    top: 270px;
    left: 110px;
    z-index: -1;
    opacity: 0.2;
    -webkit-animation: moving 8s linear infinite;
    animation: moving 8s linear infinite;
}

.tj-slider-3-bg-shape-3 {
    position: absolute;
    left: 375px;
    bottom: 0;
    z-index: -1;
    opacity: 0.2;
    -webkit-animation: bounce-thum-2 5.5s infinite;
    animation: bounce-thum-2 5.5s infinite;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-slider-3-bg-shape-3 {
        left: 50px;
    }
}

.tj-slider-3-bg-shape-4 {
    position: absolute;
    bottom: 290px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    z-index: -1;
    opacity: 0.2;
    -webkit-animation: bounce-thum-1 3s forwards infinite alternate;
    animation: bounce-thum-1 3s forwards infinite alternate;
}

.tj-slider-3-bg-shape-5 {
    position: absolute;
    top: 235px;
    left: 57%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    opacity: 0.2;
    z-index: -1;
    -webkit-animation: bounce-thum-3 1s ease-in-out 0.1s forwards infinite alternate;
    animation: bounce-thum-3 1s ease-in-out 0.1s forwards infinite alternate;
}

.tj-slider-3-bg-shape-6 {
    position: absolute;
    top: 295px;
    right: 100px;
    z-index: -1;
    opacity: 0.2;
    -webkit-animation: moving 8s linear infinite;
    animation: moving 8s linear infinite;
}

.tj-slider-3-bg-shape-7 {
    position: absolute;
    right: 153px;
    bottom: 55px;
    z-index: -1;
    opacity: 0.2;
    -webkit-animation: bounce-thum-1 4s forwards infinite alternate;
    animation: bounce-thum-1 4s forwards infinite alternate;
}

/* !END: Slider CSS */

/**----------------------------------------
START: Feature CSS
----------------------------------------*/

.tj-feature-2-area {
    margin-top: -220px;
    position: relative;
    z-index: 3;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-feature-2-area {
        margin-top: -160px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-feature-2-area {
        margin-top: 0;
        padding-top: 80px;
    }
}

.tj-feature-2-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tj-feature-2-wrap {
    max-width: 308px;
    background: var(--tj-color-heading-primary);
    text-align: center;
    padding: 28px 30px 28px;
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-feature-2-wrap {
        max-width: 258px;
        padding: 28px 15px 28px;
    }
}

@media (max-width: 575px) {
    .tj-feature-2-wrap {
        margin-bottom: 30px;
        padding: 28px 15px;
    }
}

.tj-feature-2-wrap:nth-child(1) {
    border-radius: 5px 0 0 5px;
}

@media (max-width: 575px) {
    .tj-feature-2-wrap:nth-child(1) {
        border-radius: 5px;
    }
}

.tj-feature-2-wrap:nth-child(1) .tj-feature-2-btn:hover {
    color: var(--tj-color-common-white);
}

.tj-feature-2-wrap:nth-child(2) {
    background: var(--tj-color-theme-primary);
}

@media (max-width: 575px) {
    .tj-feature-2-wrap:nth-child(2) {
        border-radius: 5px;
    }
}

.tj-feature-2-wrap:nth-child(2) .tj-feature-2-btn:hover {
    color: var(--tj-color-common-white);
}

.tj-feature-2-wrap:nth-child(3) {
    background: var(--tj-color-theme-secondary);
    border-radius: 0 5px 5px 0;
}

@media (max-width: 575px) {
    .tj-feature-2-wrap:nth-child(3) {
        border-radius: 5px;
    }
}

.tj-feature-2-wrap:nth-child(3) .tj-feature-2-icon span {
    color: var(--tj-color-heading-primary);
}

.tj-feature-2-wrap:nth-child(3) .tj-feature-2-title {
    color: var(--tj-color-heading-primary);
}

.tj-feature-2-wrap:nth-child(3) .tj-feature-2-paragraph {
    color: var(--tj-color-heading-primary);
}

.tj-feature-2-wrap:nth-child(3) .tj-feature-2-btn {
    color: var(--tj-color-heading-primary);
}

.tj-feature-2-wrap:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.tj-feature-2-icon span {
    color: var(--tj-color-common-white);
    font-size: 60px;
    line-height: 1;
    margin-bottom: 8px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.tj-feature-2-title {
    color: var(--tj-color-common-white);
    margin-bottom: 18px;
}

.tj-feature-2-paragraph {
    line-height: 162%;
    color: var(--tj-color-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-feature-2-paragraph {
        font-size: 14px;
    }
}

.tj-feature-2-btn {
    color: var(--tj-color-common-white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* !END: Feature CSS */

/**----------------------------------------
START: About CSS
----------------------------------------*/

.tj-about-area {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    z-index: 1;
}

.tj-about-area .tj-section-wrapper .tj-section-title {
    margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .tj-about-area .column_1 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .tj-about-area .column_1 .tj-about-thumb {
        margin-top: 50px;
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .tj-about-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .tj-about-area .column_1 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .tj-about-area .column_1 .tj-about-thumb {
        margin-top: 10px;
        margin-bottom: 0;
    }
}

.tj-about-bg-shape-1 {
    position: absolute;
    top: 52%;
    left: 145px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: -1;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-bg-shape-1 {
        display: none;
    }
}

.tj-about-bg-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    -webkit-animation: bounce-thum-1 4s forwards infinite alternate;
    animation: bounce-thum-1 4s forwards infinite alternate;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-bg-shape-2 {
        max-width: 200px;
    }
}

@media (max-width: 575px) {
    .tj-about-bg-shape-2 {
        max-width: 120px;
    }
}

.tj-about-bg-shape-3 {
    position: absolute;
    right: 0;
    bottom: 56px;
    z-index: -1;
    -webkit-animation: moving 8s linear infinite;
    animation: moving 8s linear infinite;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-bg-shape-3 {
        max-width: 140px;
    }
}

@media (max-width: 575px) {
    .tj-about-bg-shape-3 {
        display: none;
    }
}

.tj-about-wrapper {
    margin-left: 10px;
    margin-right: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-about-wrapper {
        margin-right: 0;
    }
}

.tj-about-wrapper .tj-section-paragraph {
    max-width: 581px;
}

.tj-about-thumb {
    position: relative;
    z-index: 1;
}

.tj-about-thumb-shape-1 {
    position: absolute;
    bottom: 64px;
    right: 74px;
    z-index: -2;
    -webkit-animation: moving 8s linear infinite;
    animation: moving 8s linear infinite;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-about-thumb-shape-1 {
        right: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-thumb-shape-1 {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-thumb {
        margin-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .tj-about-thumb {
        margin-bottom: 40px;
    }
}

.tj-about-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--tj-color-common-white);
    -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--tj-color-theme-primary);
    border-radius: 10px;
    padding: 25px 30px 25px 25px;
    margin-bottom: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-box {
        padding: 25px 15px 25px 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-box {
        padding: 25px 10px 25px;
    }
}

@media (max-width: 575px) {
    .tj-about-box {
        display: inherit;
        padding: 25px 15px 25px;
    }
}

.tj-about-box-thumb {
    position: relative;
    z-index: 1;
    margin-right: 30px;
    border-radius: 10px;
}

.tj-about-box-thumb img {
    border-radius: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-about-box-thumb {
        margin-right: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-box-thumb {
        margin-right: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-box-thumb {
        margin-right: 15px;
    }
}

.tj-about-thumb-paly-btn {
    position: absolute;
    top: 50%;
    left: 37%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

@media (max-width: 575px) {
    .tj-about-thumb-paly-btn {
        left: 23%;
    }
}

.tj-about-thumb-paly-btn a {
    width: 30px;
    height: 30px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    color: var(--tj-color-common-white);
    -webkit-animation: play-btn 1s linear infinite;
    animation: play-btn 1s linear infinite;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: var(--tj-color-theme-primary);
    font-size: 8px;
    z-index: 44;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tj-about-thumb-paly-btn a i {
    margin-left: 2px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

@media (max-width: 575px) {
    .tj-about-box-thumb-list {
        margin-top: 20px;
    }
}

.tj-about-box-thumb-list ul li {
    list-style: none;
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    margin-bottom: 6px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-about-box-thumb-list ul li {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .tj-about-box-thumb-list ul li {
        font-size: 16px;
    }
}

.tj-about-box-thumb-list ul li span {
    margin-right: 4px;
    color: var(--tj-color-theme-primary);
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 18px;
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
}

.tj-about-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 575px) {
    .tj-about-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

.tj-about-btn {
    margin-right: 20px;
}

@media (max-width: 575px) {
    .tj-about-btn {
        margin-bottom: 20px;
        margin-right: 0px;
    }
}

.tj-about-member-details-img {
    border: 1px solid var(--tj-color-theme-secondary);
    margin-right: 15px;
    border-radius: 50%;
    padding: 5px;
}

.tj-about-member-details-img img {
    width: 48px;
    height: 48px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.tj-about-member-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tj-about-member-tittle {
    font-weight: 600;
    margin-bottom: 6px;
}

.tj-about-member-paragraph {
    font-size: 14px;
    margin-bottom: 0;
}

.tj-about-2-area {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-2-area .tj-section-wrapper {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-about-2-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .tj-about-2-area .tj-section-wrapper {
        margin-bottom: 30px;
    }
    .tj-about-2-area .column_6 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

.tj-about-2-area .tj-about-2-tabs-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.tj-about-2-area .tj-about-2-bottom {
    max-width: 535px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
}

.tj-about-2-area .tj-about-2-bottom .about_feature {
    max-width: 320px;
    gap: 15px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-2-area .tj-about-2-bottom .about_feature {
        max-width: 268px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-2-area .tj-about-2-bottom {
        max-width: 460px;
    }
}

@media (max-width: 575px) {
    .tj-about-2-area .tj-about-2-bottom {
        max-width: 285px;
    }
}

.tj-about-2-left-wrapper {
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-2-left-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-about-2-left-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 40px;
        margin-bottom: 0;
    }
}

.tj-about-2-left-thumb {
    border: 2px solid var(--tj-color-theme-secondary);
    border-radius: 50%;
    padding: 30px;
    max-width: 590px;
    position: relative;
    z-index: 1;
}

.tj-about-2-left-thumb::before {
    content: "";
    position: absolute;
    width: 226px;
    height: 30px;
    top: -4px;
    left: 50%;
    background: var(--tj-color-common-white);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.tj-about-2-left-thumb::after {
    content: "";
    position: absolute;
    width: 226px;
    height: 30px;
    bottom: -4px;
    left: 50%;
    background: var(--tj-color-common-white);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

@media (max-width: 575px) {
    .tj-about-2-left-thumb {
        margin-top: 60px;
        margin-bottom: 0px;
    }
}

.tj-about-2-left-thumb>img {
    width: 100%;
    background-color: var(--tj-color-theme-primary);
    padding: 7px;
    display: inline-block;
    border-radius: 50%;
}

.tj-about-2-left-thumb-shape-1 {
    position: absolute;
    max-width: 338px;
    height: 338px;
    top: 50%;
    left: -130px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-about-2-left-thumb-shape-1 {
        left: -60px;
    }
}

.tj-about-2-left-thumb-shape-1::before {
    content: "";
    position: absolute;
    width: 327px;
    height: 173px;
    border-top-left-radius: 180px;
    border-top-right-radius: 180px;
    border: 7px solid var(--tj-color-theme-primary);
    border-bottom: 0;
    top: 24%;
    left: -71px;
    z-index: 2;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.tj-about-2-left-thumb-shape-1::after {
    content: "";
    position: absolute;
    width: 125px;
    height: 325px;
    -webkit-mask-image: url(../images/about/about-2-border-shape.svg);
    mask-image: url(../images/about/about-2-border-shape.svg);
    background: var(--tj-color-theme-primary);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    top: 50%;
    right: -12px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 2;
}

.tj-about-2-left-thumb-shape-1>img {
    border: 12px solid var(--tj-color-common-white);
    background-color: var(--tj-color-common-white);
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tj-about-2-left-thumb-shape-1 {
        left: -35px;
        max-width: 310px;
        height: 310px;
    }
    .tj-about-2-left-thumb-shape-1::before {
        width: 315px;
        height: 165px;
        top: 23%;
        left: -78px;
    }
    .tj-about-2-left-thumb-shape-1::after {
        width: 115px;
        height: 265px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-about-2-left-thumb-shape-1 {
        left: -25px;
        max-width: 250px;
        height: 250px;
    }
    .tj-about-2-left-thumb-shape-1::before {
        width: 260px;
        height: 140px;
        left: -65px;
        top: 22%;
    }
    .tj-about-2-left-thumb-shape-1::after {
        width: 90px;
        height: 240px;
        right: -10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-2-left-thumb-shape-1 {
        left: 0;
        max-width: 195px;
        height: 195px;
    }
    .tj-about-2-left-thumb-shape-1::before {
        width: 205px;
        height: 105px;
        left: -55px;
    }
    .tj-about-2-left-thumb-shape-1::after {
        width: 70px;
        height: 140px;
        right: -10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-about-2-left-thumb-shape-1 {
        left: 0;
        max-width: 195px;
        height: 195px;
    }
    .tj-about-2-left-thumb-shape-1::before {
        width: 205px;
        height: 105px;
        left: -55px;
    }
    .tj-about-2-left-thumb-shape-1::after {
        width: 65px;
        height: 190px;
        right: -2px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-2-left-thumb-shape-1 {
        max-width: 275px;
        height: 275px;
        left: -15px;
    }
    .tj-about-2-left-thumb-shape-1::before {
        width: 280px;
        height: 144px;
    }
    .tj-about-2-left-thumb-shape-1::after {
        width: 100px;
        height: 260px;
    }
}

@media (max-width: 575px) {
    .tj-about-2-left-thumb-shape-1 {
        max-width: 150px;
        height: 150px;
        left: 0px;
    }
    .tj-about-2-left-thumb-shape-1::before {
        display: none;
    }
    .tj-about-2-left-thumb-shape-1::after {
        display: none;
    }
    .tj-about-2-left-thumb-shape-1 img {
        border-color: var(--tj-color-theme-primary);
        border-width: 7px;
        padding: 7px;
    }
}

.tj-about-2-left-thumb-shape-2 {
    position: absolute;
    top: 24px;
    right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-about-2-left-thumb-shape-2 {
        right: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-2-left-thumb-shape-2 {
        top: 0px;
        right: -26px;
    }
}

@media (max-width: 575px) {
    .tj-about-2-left-thumb-shape-2 {
        top: 0px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-about-2-left-thumb {
        max-width: 520px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-2-left-thumb {
        max-width: 400px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-about-2-left-thumb {
        max-width: 500px;
    }
}

.tj-about-2-left-experience {
    background: -webkit-gradient(linear, left top, right top, from(#0d57d7), to(#4d8eff));
    background: linear-gradient(90deg, #0d57d7 0%, #4d8eff 100%);
    width: 198px;
    height: 198px;
    -ms-flex-line-pack: center;
    align-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.tj-about-2-left-experience-title {
    font-weight: var(--tj-fw-bold);
    font-size: 64px;
    color: var(--tj-color-common-white);
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-2-left-experience-title {
        font-size: 55px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-about-2-left-experience-title {
        font-size: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-about-2-left-experience-title {
        font-size: 45px;
    }
}

.tj-about-2-left-experience-paragraph {
    font-size: 14px;
    color: var(--tj-color-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-2-left-experience {
        width: 165px;
        height: 165px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-about-2-left-experience {
        width: 160px;
        height: 160px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-2-left-experience {
        width: 155px;
        height: 155px;
    }
}

@media (max-width: 575px) {
    .tj-about-2-left-experience {
        width: 150px;
        height: 150px;
    }
}

.tj-about-2-wrapper {
    margin-left: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-2-wrapper {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-about-2-wrapper {
        margin-left: 0;
    }
}

.tj-about-2-wrapper .tj-section-paragraph {
    margin-bottom: 60px;
    margin-top: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-about-2-wrapper .tj-section-paragraph {
        margin-bottom: 30px;
    }
}

.tj-about-2-tabs-btn {
    margin-bottom: 36px;
    margin-right: 76px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-about-2-tabs-btn {
        margin-right: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-2-tabs-btn {
        margin-right: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-about-2-tabs-btn {
        margin-right: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-2-tabs-btn {
        margin-right: 0;
    }
}

@media (max-width: 575px) {
    .tj-about-2-tabs-btn {
        margin-right: 0;
    }
}

.tj-about-2-nav-tabs {
    border-bottom: none !important;
}

.tj-about-2-nav-item {
    position: relative;
}

.tj-about-2-nav-item::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 25px;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: rgba(55, 58, 63, 0.2);
}

.tj-about-2-nav-item:last-child::before {
    display: none;
}

@media (max-width: 575px) {
    .tj-about-2-nav-item {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 85px;
        flex-basis: 85px;
    }
}

.tj-about-2-nav-link {
    background: var(--tj-color-grey-3);
    border-radius: 0 !important;
    border: none !important;
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    text-transform: capitalize;
    color: var(--tj-color-heading-primary);
    padding: 12px 46px;
    border-top: 2px solid transparent !important;
}

@media (max-width: 575px) {
    .tj-about-2-nav-link {
        padding: 12px 20px;
        width: 100%;
    }
}

.tj-about-2-nav-link.active {
    border: none !important;
    background: var(--tj-color-grey-3) !important;
    border-top: 2px solid var(--tj-color-theme-secondary) !important;
}

.tj-about-2-nav-link:hover {
    color: var(--tj-color-heading-primary);
    isolation: inherit !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-2-nav-link {
        padding: 12px 30px;
    }
}

.tj-about-2-list-item li {
    list-style: none;
    float: left;
    width: 50%;
    line-height: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: 20px;
    gap: 10px;
}

@media (max-width: 575px) {
    .tj-about-2-list-item li {
        width: 100%;
    }
}

.tj-about-2-list-item li i {
    color: var(--tj-color-theme-primary);
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
}

.tj-about-2-tab-pane {
    -webkit-animation: fadeInUp 0.6s ease-in-out 0s;
    animation: fadeInUp 0.6s ease-in-out 0s;
}

.tj-about-2-bottom-member-list {
    max-width: 175px;
    width: 100%;
}

.tj-about-2-bottom-member-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tj-about-2-bottom-member-list ul li {
    list-style: none;
    margin-left: -28px;
    -webkit-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
    border-radius: 50%;
}

.tj-about-2-bottom-member-list ul li img {
    max-width: 55px;
    width: 100%;
    border-radius: 50%;
}

.tj-about-2-bottom-member-list ul li:first-child {
    margin-left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-2-bottom-member-list ul li {
        margin-left: -25px;
    }
    .tj-about-2-bottom-member-list ul li img {
        max-width: 48px;
    }
}

.tj-about-2-bottom-member-list ul:hover li:first-child {
    margin-left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-2-bottom-member-list {
        max-width: 150px;
    }
}

.tj-about-2-bottom-title {
    color: var(--tj-color-theme-primary);
    font-size: var(--tj-fs-h4);
    margin-bottom: 0;
}

.tj-about-2-bottom-paragraph {
    font-size: 14px;
    margin-bottom: 0;
}

.tj-about-3-area {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-3-area .column_3 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .tj-about-3-area .column_3 .tj-about-3-thumb {
        margin-top: 50px;
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-3-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .tj-about-3-area .column_3 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .tj-about-3-area .column_3 .tj-about-3-thumb {
        margin-top: 50px;
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .tj-about-3-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .tj-about-3-area .column_3 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .tj-about-3-area .column_3 .tj-about-3-thumb {
        margin-top: 20px;
        margin-bottom: 0;
    }
}

.tj-about-3-thumb {
    position: relative;
    z-index: 1;
    margin-left: auto;
    max-width: 622px;
    margin-right: 30px;
    margin-top: 23px;
    height: 570px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-about-3-thumb {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-about-3-thumb {
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        margin-bottom: 60px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-3-thumb {
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .tj-about-3-thumb {
        max-width: 100%;
        margin-bottom: 40px;
        margin-top: 0px;
        margin-left: auto;
        margin-right: auto;
    }
}

.tj-about-3-thumb-1 {
    max-width: 65%;
    border-radius: 10px;
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 575px) {
    .tj-about-3-thumb-1 {
        max-width: 100%;
        top: 0px;
    }
}

.tj-about-3-thumb-2 {
    position: absolute;
    left: -6px;
    bottom: 0;
    width: 100%;
    max-width: 60%;
    border-radius: 10px;
    overflow: hidden;
    border: 6px solid var(--tj-color-common-white);
    height: auto;
}

.tj-about-3-thumb-2>img {
    width: 100%;
    border-radius: 5px;
}

.tj-about-3-thumb-3 {
    position: absolute;
    bottom: 0;
    right: 60px;
    max-width: 50%;
    border: 6px solid var(--tj-color-common-white);
    border-radius: 0 10px 10px 0;
    height: auto;
}

.tj-about-3-thumb-3>img {
    width: 100%;
    border-radius: 10px;
}

.tj-about-3-thumb-4 {
    position: absolute;
    top: 30px;
    left: 87px;
    z-index: -1;
    -webkit-animation: moving 8s linear infinite;
    animation: moving 8s linear infinite;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-3-thumb-4 {
        left: -95px;
    }
}

.tj-about-3-wrapper {
    margin-left: 26px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-about-3-wrapper {
        margin-left: 0;
    }
}

.tj-about-3-wrapper .tj-section-wrapper {
    margin-bottom: 28px;
}

.tj-about-3-wrapper .tj-section-paragraph {
    margin-top: 15px;
}

.tj-about-3-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-right: 80px;
    border-bottom: 1px solid rgba(55, 58, 63, 0.2);
    padding-bottom: 24px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-3-box {
        padding-right: 0;
    }
}

@media (max-width: 575px) {
    .tj-about-3-box {
        padding-right: 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .tj-about-3-list {
        margin-bottom: 30px;
    }
}

.tj-about-3-list ul li {
    list-style: none;
    margin-bottom: 10px;
}

.tj-about-3-list ul li i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--tj-color-theme-primary);
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
    margin-right: 6px;
}

.tj-about-3-experience {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #F5F7FA;
    border-radius: 5px;
    padding: 13px 24px;
}

.tj-about-3-experience-title {
    font-weight: var(--tj-fw-bold);
    font-size: 48px;
    color: var(--tj-color-theme-primary);
    margin-bottom: 0;
    margin-right: 20px;
}

.tj-about-3-experience-paragraph {
    margin-bottom: 0;
    font-size: 14px;
}

.tj-about-3-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 34px;
}

@media (max-width: 575px) {
    .tj-about-3-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 15px;
    }
}

.tj-about-3-wrap-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 40px;
}

.tj-about-3-wrap-item:last-child {
    margin-right: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-about-3-wrap-item {
        margin-right: 20px;
    }
}

.tj-about-3-wrap-icon span {
    font-size: 60px;
    color: var(--tj-color-theme-primary);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    margin-right: 28px;
}

.tj-about-3-wrap-icon span i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-about-3-wrap-icon span {
        font-size: 50px;
        margin-right: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-about-3-wrap-icon span {
        font-size: 50px;
        margin-right: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-3-wrap-icon span {
        font-size: 45px;
        margin-right: 15px;
    }
}

@media (max-width: 575px) {
    .tj-about-3-wrap-icon span {
        font-size: 28px;
        margin-right: 12px;
    }
}

.tj-about-3-wrap-title {
    margin-bottom: 0;
    line-height: 1.42;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-about-3-wrap-title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .tj-about-3-wrap-title {
        font-size: 15px;
    }
}

/* !END: About CSS */

/**----------------------------------------
START: Service CSS
----------------------------------------*/

.tj-service-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0 120px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-area {
        padding: 80px 0 80px;
    }
}

.tj-service-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ECF1F5;
    opacity: 0.91;
    z-index: -1;
}

.tj-service-bg-top-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
}

.tj-service-center-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 21px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-center-row .col {
        margin-bottom: 30px;
    }
}

.tj-service-wrapper {
    background: var(--tj-color-common-white);
    border-radius: 5px;
    padding: 30px 28px 20px;
    position: relative;
    z-index: 1;
    max-width: 243px;
    width: 100%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-service-wrapper {
        max-width: 206px;
        padding: 25px 15px 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-service-wrapper {
        max-width: 206px;
        padding: 25px 15px 25px;
    }
}

@media (max-width: 575px) {
    .tj-service-wrapper {
        max-width: 165px;
        padding: 25px 15px 25px;
    }
}

.tj-service-icon span {
    font-size: 60px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    color: var(--tj-color-theme-primary);
    margin-bottom: 14px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-service-icon span i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

@media (max-width: 575px) {
    .tj-service-icon span {
        font-size: 40px;
    }
}

.tj-service-title {
    line-height: 1.5;
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-title {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .tj-service-title {
        font-size: 14px;
    }
}

.tj-service-bottom-row {
    background: -webkit-gradient(linear, left top, right top, from(#0d57d7), to(#4d8eff));
    background: linear-gradient(90deg, #0d57d7 0%, #4d8eff 100%);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.tj-service-bottom-bg-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.tj-service-bottom-wrapper {
    max-width: 542px;
    padding: 53px 0 40px 58px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-service-bottom-wrapper {
        padding: 30px 0 30px 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-service-bottom-wrapper {
        max-width: 100%;
        padding: 35px 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-service-bottom-wrapper {
        max-width: inherit;
        padding: 35px 15px;
    }
}

@media (max-width: 575px) {
    .tj-service-bottom-wrapper {
        padding: 35px 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-service-bottom-thumb>img {
        height: 510px;
    }
}

.tj-service-bottom-title {
    font-size: 30px;
    color: var(--tj-color-common-white);
    margin-bottom: 14px;
}

.tj-service-bottom-paragraph {
    font-weight: 400;
    line-height: 162%;
    color: #D8DDE1;
    margin-bottom: 60px;
}

.tj-service-bottom-amount {
    position: relative;
    z-index: 1;
    margin-bottom: 64px;
}

.tj-service-bottom-amount::before {
    content: "";
    position: absolute;
    width: 136px;
    height: 148px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-image: url(../images/service/service-price-bg.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.tj-service-bottom-amount-title {
    color: var(--tj-color-common-white);
    font-weight: var(--tj-fw-bold);
    font-size: 48px;
    margin-bottom: 0;
}

.tj-service-bottom-amount-title span {
    font-weight: var(--tj-fw-sbold);
    font-size: 18px;
}

.tj-service-bottom-amount-paragraph {
    color: #D8DDE1;
}

.tj-service-bottom-thumb {
    text-align: right;
    position: relative;
    z-index: 1;
    max-width: 650px;
    width: 100%;
    height: 500px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-service-bottom-thumb {
        height: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-service-bottom-thumb {
        max-width: 100%;
        height: 400px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-bottom-thumb {
        max-width: 100%;
        height: 335px;
    }
}

.tj-service-bottom-thumb>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-mask-image: url("../images/service/service-tab-shape-mask.svg");
    mask-image: url("../images/service/service-tab-shape-mask.svg");
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: left center;
    mask-position: left center;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-bottom-thumb>img {
        -webkit-mask: none;
        mask: none;
    }
}

.tj-service-bottom-thumb-shape-1 {
    position: absolute;
    top: 50%;
    left: -140px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

@media (max-width: 575px) {
    .tj-service-bottom-thumb-shape-1 {
        display: none;
    }
}

.tj-service-bottom-thumb-shape-2 {
    position: absolute;
    bottom: 45px;
    left: -60px;
    -webkit-animation: moving 8s linear infinite;
    animation: moving 8s linear infinite;
}

@media (max-width: 575px) {
    .tj-service-bottom-thumb-shape-2 {
        display: none;
    }
}

.tj-service-bottom-thumb-shape-3 {
    position: absolute;
    bottom: 70px;
    left: -80px;
    z-index: 2;
    -webkit-animation: circle-animation 45s forwards infinite alternate;
    animation: circle-animation 45s forwards infinite alternate;
    width: 115px;
}

@media (max-width: 575px) {
    .tj-service-bottom-thumb-shape-3 {
        display: none;
    }
}

.tj-service-btn .tj-secondary-btn:hover {
    color: var(--tj-color-theme-primary);
}

.tj-service-btn .tj-hover-btn-circle-dot {
    background-color: var(--tj-color-common-white);
}

.tj-service-2-area {
    background: var(--tj-color-grey-3);
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-2-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.tj-service-2-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 300px;
    -webkit-mask-image: url(../images/service/section-top-reduis.svg);
    mask-image: url(../images/service/section-top-reduis.svg);
    background: var(--tj-color-common-white);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    -webkit-mask-size: cover;
    mask-size: cover;
    top: 0;
    left: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 2;
}

@media only screen and (min-width: 1801px) and (max-width: 1899px) {
    .tj-service-2-area::before {
        top: -71px;
    }
}

@media only screen and (min-width: 1701px) and (max-width: 1800px) {
    .tj-service-2-area::before {
        top: -72px;
    }
}

@media only screen and (min-width: 1601px) and (max-width: 1700px) {
    .tj-service-2-area::before {
        top: -77px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tj-service-2-area::before {
        top: -86px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-service-2-area::before {
        top: -96px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-service-2-area::before {
        top: -104px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-service-2-area::before {
        top: -115px;
        left: -1px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-service-2-area::before {
        height: 179px;
    }
}

@media (max-width: 575px) {
    .tj-service-2-area::before {
        height: 160px;
    }
}

.tj-service-2-section-wrapper .tj-section-wrapper {
    margin-bottom: 52px;
}

.tj-service-2-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-2-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.tj-service-2-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-service-2-item {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .tj-service-2-item {
        max-width: 100%;
        display: grid;
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-service-2-item:nth-child(2) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

.tj-service-2-item:nth-child(3) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-service-2-item:nth-child(3) {
        -webkit-box-orient: inherit;
        -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
        flex-direction: inherit;
    }
}

.tj-service-2-item:nth-child(4) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.tj-service-2-item:nth-child(7) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.tj-service-2-item:nth-child(8) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.tj-service-2-item:hover .tj-service-2-number span {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: var(--tj-color-theme-primary);
    -webkit-text-stroke-width: 1px;
}

.tj-service-2-item:hover .tj-service-2-thumb img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.tj-service-2-thumb {
    overflow: hidden;
}

.tj-service-2-thumb img {
    max-width: 324px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    height: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-service-2-thumb img {
        max-width: 280px;
        height: 100%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-service-2-thumb img {
        max-width: 234px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-service-2-thumb img {
        max-width: 249px;
    }
}

@media (max-width: 575px) {
    .tj-service-2-thumb img {
        max-width: 100%;
        width: 100%;
    }
}

.tj-service-2-box {
    background: var(--tj-color-common-white);
    max-width: 324px;
    padding: 30px 40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-service-2-box {
        max-width: 279px;
        padding: 15px 20px 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-service-2-box {
        max-width: 235px;
        padding: 17px 14px 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-service-2-box {
        padding: 30px 15px;
    }
}

@media (max-width: 575px) {
    .tj-service-2-box {
        max-width: 100%;
        padding: 30px 15px;
    }
}

.tj-service-2-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tj-service-2-icon span {
    font-size: 60px;
    color: var(--tj-color-theme-primary);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    margin-bottom: 14px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-service-2-icon span {
        font-size: 48px;
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-service-2-icon span {
        font-size: 46px;
    }
}

.tj-service-2-number span {
    font-weight: var(--tj-fw-sbold);
    font-size: 36px;
    opacity: 0.2;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 1px;
}

.tj-service-2-title {
    margin-bottom: 14px;
}

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

.tj-service-2-paragraph {
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-service-2-paragraph {
        margin-bottom: 8px;
        font-size: 13px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-service-2-paragraph {
        margin-bottom: 0;
        font-size: 14px;
    }
}

.tj-service-2-btn {
    font-weight: var(--tj-fw-bold);
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--tj-color-theme-primary);
}

.tj-service-2-btn i {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.tj-service-2-btn:hover {
    color: var(--tj-color-theme-primary);
}

.tj-service-2-bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.tj-service-2-bottom-button {
    text-align: center;
    margin-top: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-2-bottom-button {
        margin-top: 15px;
    }
}

.tj-service-3-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-3-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.tj-service-3-bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.tj-service-3-bg-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.tj-service-3-bg-shape-3 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.tj-service-3-wrapper {
    background: var(--tj-color-common-white);
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.tj-service-3-wrapper:hover .tj-service-3-content::after {
    background: var(--tj-color-theme-primary);
}

.tj-service-3-wrapper:hover .tj-service-3-button {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 575px) {
    .tj-service-3-wrapper {
        padding: 30px 15px;
    }
}

.tj-service-3-thumb {
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    max-width: 263px;
}

.tj-service-3-thumb a {
    display: inline-block;
}

@media (max-width: 575px) {
    .tj-service-3-thumb {
        max-width: 100%;
    }
}

.tj-service-3-content {
    position: absolute;
    top: 50%;
    right: 30px;
    max-width: 422px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border-radius: 10px;
    background: transparent;
    -webkit-filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.06));
    filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.06));
    padding: 30px 30px 30px 70px;
    z-index: 1;
    -webkit-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
}

@media (max-width: 575px) {
    .tj-service-3-content {
        position: relative;
        padding: 30px 15px 20px 55px;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        left: 0;
        bottom: 0;
        top: auto;
        margin-top: -75px;
    }
}

.tj-service-3-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%, 12% 0);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%, 12% 0);
    background: var(--tj-color-common-white);
    z-index: -1;
    -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    border-radius: 2px 0 0 10px;
}

.tj-service-3-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -8px;
    left: 0;
    background: rgba(7, 124, 234, 0.2);
    border-radius: 10px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%, 12% 0);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%, 12% 0);
    z-index: -2;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.tj-service-3-title {
    font-size: 30px;
    font-weight: var(--tj-fw-sbold);
    margin-bottom: 18px;
    -webkit-transition: 0.1s;
    transition: 0.1s;
}

.tj-service-3-title:hover {
    color: var(--tj-color-theme-primary);
}

@media (max-width: 575px) {
    .tj-service-3-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
}

.tj-service-3-paragraph {
    color: var(--tj-color-heading-primary);
}

.tj-service-3-button {
    -webkit-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
    margin-top: -26px;
    opacity: 0;
    visibility: hidden;
}

.tj-service-3-btn {
    font-weight: var(--tj-fw-bold);
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--tj-color-heading-primary);
}

.tj-service-3-btn .icon_box {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    padding: 0 4px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tj-service-3-btn .icon_box i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

.tj-service-3-btn .icon_box .icon_first {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    color: var(--tj-color-heading-primary);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tj-service-3-btn .icon_box .icon_second {
    position: absolute;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
    color: var(--tj-color-theme-primary);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tj-service-3-btn .tj-arrow-btn:hover .icon_box .icon_first {
    -webkit-transform: translateX(150%);
    -ms-transform: translateX(150%);
    transform: translateX(150%);
}

.tj-service-3-btn .tj-arrow-btn:hover .icon_box .icon_second {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.tj-service-3-btn:hover {
    color: var(--tj-color-theme-primary);
}

.tj-service-3-bottom-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-3-bottom-button {
        margin-top: 10px;
    }
}

.tj-service-inner-page-area {
    padding: 120px 0 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-inner-page-area {
        padding: 80px 0 80px;
    }
}

.tj-service-inner-page-box {
    background: var(--tj-color-common-white);
    max-width: 324px;
    padding: 30px 40px;
    -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
}

.tj-service-details-area {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-details-area {
        padding-top: 80px;
        padding-bottom: 55px;
    }
}

.tj-service-details-wrapper {
    margin-bottom: 30px;
}

.tj-service-details-image {
    margin-bottom: 30px;
}

.tj-service-details-image img {
    width: 100%;
    border-radius: 10px;
}

.tj-service-details-title {
    font-size: 30px;
    color: var(--tj-color-heading-primary);
    margin-bottom: 16px;
}

.tj-service-details-desc p {
    line-height: 162%;
    margin-bottom: 22px;
}

.tj-service-details-center-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.tj-service-details-center-image img {
    border-radius: 10px;
    max-width: 415px;
    width: 100%;
}

.tj-service-details-center-image.details {
    margin-top: 34px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-service-details-center-image img {
        max-width: 355px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-service-details-center-image img {
        max-width: 300px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-service-details-center-image img {
        max-width: 345px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-details-center-image {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .tj-service-details-center-image img {
        max-width: 100%;
    }
}

.tj-service-details-check {
    margin-bottom: 60px;
}

.tj-service-details-check-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-details-check-content {
        display: grid;
    }
}

.tj-service-details-check-images img {
    border-radius: 10px;
    max-width: 424px;
    width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-service-details-check-images img {
        max-width: 380px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-service-details-check-images img {
        max-width: 260px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-service-details-check-images img {
        max-width: 324px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-details-check-images img {
        max-width: 100%;
    }
}

.tj-service-details-check-list ul {
    margin: 0;
    padding: 0;
}

.tj-service-details-check-list ul li {
    color: var(--tj-color-heading-primary);
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-bold);
    font-size: 15px;
    position: relative;
    z-index: 2;
    list-style: none;
    padding-left: 30px;
    margin-bottom: 20px;
}

.tj-service-details-check-list ul li:last-child {
    margin-bottom: 0;
}

.tj-service-details-check-list ul li span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    line-height: 1;
    border-radius: 50%;
    font-size: 10px;
    color: var(--tj-color-common-white);
    background: var(--tj-color-theme-primary);
    position: absolute;
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
    left: 0;
}

.tj-service-widget {
    background: rgb(236, 241, 245);
    margin-bottom: 24px;
    padding: 30px;
    position: relative;
    z-index: 3;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-service-widget {
        padding: 30px 10px;
    }
}

.tj-service-widget::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 75px;
    left: 0;
    background: var(--tj-color-heading-primary);
    opacity: 0.2;
}

.tj-service-widget:last-child::before {
    display: none;
}

.tj-service-widget-title {
    font-size: 30px;
    color: var(--tj-color-heading-primary);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.tj-service-widget-title::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    bottom: -10px;
    left: 0;
    background: var(--tj-color-theme-primary);
}

.tj-service-widget.style-2 {
    background: var(--tj-color-theme-primary);
    padding-bottom: 32px;
}

.tj-service-widget-contact-title {
    font-size: 30px;
    text-align: center;
    color: var(--tj-color-common-white);
    margin-bottom: 17px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-widget-contact-title {
        font-size: 25px;
    }
}

.tj-service-widget-contact-icon span {
    color: var(--tj-color-common-white);
    font-size: 58px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    margin-bottom: 10px;
}

.tj-service-widget-contact-bottom-content span {
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-common-white);
    display: block;
}

.tj-service-widget-contact-bottom-content .link {
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 30px;
    color: var(--tj-color-common-white);
    display: inline-block;
    margin-bottom: 28px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-service-widget-contact-bottom-content .link {
        font-size: 25px;
        margin-bottom: 15px;
    }
}

.tj-service-widget-contact-desc {
    margin-bottom: 28px;
}

.tj-service-widget-contact-desc p {
    color: var(--tj-color-common-white);
}

.tj-service-widget-contact-btn {
    background: transparent;
    color: var(--tj-color-common-white);
    padding: 13px 28px;
    border: 1px solid var(--tj-color-common-white);
    border-radius: 25px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.tj-service-widget-contact-btn:hover {
    border: 1px solid var(--tj-color-theme-secondary);
}

.tj-service-widget-contact-btn i {
    margin-left: 8px;
}

.service__tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    list-style: none;
    margin-bottom: 45px;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-bottom: 25px;
    scrollbar-color: var(--tj-color-theme-primary) var(--tj-color-grey-2);
    scrollbar-width: thin;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .service__tab {
        margin-bottom: 25px;
    }
}

.service__tab .service-filter-btn {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
}

.service__tab .service-filter-btn.active .tj-service-wrapper {
    background-color: var(--tj-color-theme-primary);
}

.service__tab .service-filter-btn.active .tj-service-title {
    color: var(--tj-color-common-white);
}

.service__tab .service-filter-btn.active .tj-service-icon span {
    color: var(--tj-color-common-white);
}

.service__tab .service-filter-btn:hover .tj-service-wrapper {
    background-color: var(--tj-color-theme-primary);
}

.service__tab .service-filter-btn:hover .tj-service-title {
    color: var(--tj-color-common-white);
}

.service__tab .service-filter-btn:hover .tj-service-icon span {
    color: var(--tj-color-common-white);
}

.single-service {
    visibility: hidden;
    display: none;
    opacity: 0;
    -webkit-animation: fadeInUp 0.6s ease-in-out 0s;
    animation: fadeInUp 0.6s ease-in-out 0s;
}

.single-service.active {
    visibility: visible;
    display: block;
    opacity: 1;
}

.service_list {
    background: rgb(236, 241, 245);
    margin-bottom: 34px;
    padding: 30px;
    position: relative;
    z-index: 3;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .service_list {
        padding: 30px 15px;
    }
}

.service_list::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 75px;
    left: 0;
    background: var(--tj-color-heading-primary);
    opacity: 0.2;
}

.service_list:last-child::before {
    display: none;
}

.service_list-title {
    font-size: 30px;
    color: var(--tj-color-heading-primary);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.service_list-title::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    bottom: -10px;
    left: 0;
    background: var(--tj-color-theme-primary);
}

.service_list nav ul li {
    font-size: 16px;
    font-weight: var(--tj-fw-bold);
    border-bottom: 1px solid rgba(55, 58, 63, 0.2);
    position: relative;
    z-index: 1;
    list-style: none;
}

.service_list nav ul li:hover {
    border-bottom: 1px solid transparent;
}

.service_list nav ul li.active {
    border-bottom: 1px solid transparent;
}

.service_list nav ul li.active a {
    background: -webkit-gradient(linear, left top, right top, from(#0d57d7), to(#4d8eff));
    background: linear-gradient(90deg, #0d57d7 0%, #4d8eff 100%);
    color: var(--tj-color-common-white);
}

.service_list nav ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 14px 26px;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 10px;
    width: 100%;
}

.service_list nav ul li a span {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.service_list nav ul li a span i {
    font-size: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.service_list nav ul li a:hover {
    color: var(--tj-color-common-white);
    background: -webkit-gradient(linear, left top, right top, from(#0d57d7), to(#4d8eff));
    background: linear-gradient(90deg, #0d57d7 0%, #4d8eff 100%);
}

.service_list nav ul li a:hover i {
    color: var(--tj-color-common-white);
}

.service_list.style-2 {
    background: var(--tj-color-theme-primary);
    padding-bottom: 52px;
}

.service_list-contact-title {
    font-size: 30px;
    text-align: center;
    color: var(--tj-color-common-white);
    margin-bottom: 32px;
}

.service_list-contact-icon {
    margin-bottom: 36px;
}

.service_list-contact-bottom-content span {
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-common-white);
    display: block;
}

.service_list-contact-bottom-content .link {
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 30px;
    color: var(--tj-color-common-white);
    display: inline-block;
    margin-bottom: 28px;
}

.service_list-contact-desc {
    margin-bottom: 34px;
}

.service_list-contact-desc p {
    color: var(--tj-color-common-white);
}

.service_list-contact-btn {
    background: transparent;
    color: var(--tj-color-border-1);
    padding: 13px 28px;
    border: 1px solid var(--tj-color-common-white);
    border-radius: 25px;
}

.service_list-contact-btn:hover {
    background: var(--tj-color-theme-secendary);
    color: var(--tj-color-heading-primary);
}

.service_list-contact-btn i {
    margin-left: 8px;
}

.service_list.stander nav ul li a span {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

/* !END: Service CSS */

/**----------------------------------------
START: Counter CSS
----------------------------------------*/

.tj-counter-2-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 45px 0 32px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-counter-2-area {
        padding: 45px 0 12px;
    }
}

.tj-counter-2-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--tj-color-theme-primary);
    opacity: 0.7;
    z-index: -1;
}

.tj-counter-2-area::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--tj-color-heading-primary);
    opacity: 0.7;
    z-index: -1;
}

.tj-counter-2-bg-shape {
    position: relative;
    z-index: 1;
}

.tj-counter-2-bg-shape::before {
    content: "";
    position: absolute;
    width: 101%;
    height: 230px;
    -webkit-mask-image: url(../images/service/section-bottom-reduis.svg);
    mask-image: url(../images/service/section-bottom-reduis.svg);
    background: var(--tj-color-common-white);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    -webkit-mask-size: cover;
    mask-size: cover;
    bottom: -32px;
    left: -1px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: -1;
}

@media only screen and (min-width: 1801px) and (max-width: 1899px) {
    .tj-counter-2-bg-shape::before {
        bottom: -118px;
    }
}

@media only screen and (min-width: 1701px) and (max-width: 1800px) {
    .tj-counter-2-bg-shape::before {
        bottom: -121px;
        left: -3px;
    }
}

@media only screen and (min-width: 1601px) and (max-width: 1700px) {
    .tj-counter-2-bg-shape::before {
        bottom: -132px;
        left: -2px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tj-counter-2-bg-shape::before {
        bottom: -165px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-counter-2-bg-shape::before {
        bottom: -150px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-counter-2-bg-shape::before {
        bottom: -156px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-counter-2-bg-shape::before {
        height: 194px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-counter-2-bg-shape::before {
        height: 177px;
        left: -4px;
    }
}

@media (max-width: 575px) {
    .tj-counter-2-bg-shape::before {
        height: 158px;
    }
}

.tj-counter-2-bg-shape-2 {
    position: absolute;
    top: 30px;
    left: 182px;
}

.tj-counter-2-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: center;
    align-content: center;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-counter-2-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .tj-counter-2-wrapper {
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.tj-counter-2-wrap {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.tj-counter-2-wrap::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 90px;
    top: 50%;
    right: -45px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: var(--tj-color-common-white);
    z-index: -1;
    opacity: 0.3;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-counter-2-wrap::before {
        right: -20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-counter-2-wrap::before {
        right: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-counter-2-wrap::before {
        display: none;
    }
}

.tj-counter-2-wrap:last-child::before {
    display: none;
}

@media (max-width: 575px) {
    .tj-counter-2-wrap {
        margin-bottom: 10px;
    }
}

.tj-counter-2-title {
    color: var(--tj-color-theme-secondary);
    font-size: 64px;
    font-weight: var(--tj-fw-bold);
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-counter-2-title {
        font-size: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-counter-2-title {
        font-size: 45px;
    }
}

@media (max-width: 575px) {
    .tj-counter-2-title {
        font-size: 45px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.tj-counter-2-title span {
    color: var(--tj-color-common-white);
}

.tj-counter-2-paragraph {
    font-size: 18px;
    color: var(--tj-color-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-counter-2-paragraph {
        font-size: 16px;
    }
}

.tj-counter-3-area {
    padding: 120px 0 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-counter-3-area {
        padding: 80px 0 80px;
    }
}

.tj-counter-3-area .tj-counter-3-content .tj-section-paragraph {
    margin-bottom: 35px;
    margin-top: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-counter-3-content {
        margin-bottom: 40px;
    }
}

.tj-counter-3-main-wrapper {
    margin-left: 142px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-counter-3-main-wrapper {
        margin-left: 0;
    }
}

.tj-counter-3-main-wrapper .col-xl-6:nth-child(1) {
    margin-top: 30px;
}

@media (max-width: 575px) {
    .tj-counter-3-main-wrapper .col-xl-6:nth-child(1) {
        margin-top: 0;
    }
}

.tj-counter-3-main-wrapper .col-xl-6:nth-child(3) {
    margin-top: 30px;
}

@media (max-width: 575px) {
    .tj-counter-3-main-wrapper .col-xl-6:nth-child(3) {
        margin-top: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-counter-3-main-wrapper .tj-counter-3-btn {
        margin-top: 35px;
    }
}

@media (max-width: 575px) {
    .tj-counter-3-main-wrapper .tj-counter-3-btn {
        margin-top: 15px;
    }
}

.tj-counter-3-wrapper {
    background: rgba(7, 124, 234, 0.2);
    padding: 24px 30px;
    text-align: center;
    border-radius: 10px;
}

@media (max-width: 575px) {
    .tj-counter-3-wrapper {
        margin-bottom: 30px;
    }
}

.tj-counter-3-wrapper.two {
    background: rgba(254, 219, 92, 0.2);
}

.tj-counter-3-wrapper.three {
    background: rgba(47, 198, 171, 0.2);
}

.tj-counter-3-wrapper.four {
    background: rgba(253, 183, 183, 0.2);
}

.tj-counter-3-title {
    font-weight: var(--tj-fw-bold);
    font-size: 64px;
}

@media (max-width: 575px) {
    .tj-counter-3-title {
        font-size: 50px;
    }
}

.tj-counter-3-title .odometer.odometer-auto-theme {
    font-family: var(--tj-ff-heading);
}

.tj-counter-3-paragraph {
    font-size: 18px;
    color: var(--tj-color-heading-primary);
    margin-bottom: 0;
}

/* !END: Counter CSS */

/**----------------------------------------
START: Team CSS
----------------------------------------*/

.tj-team-area {
    padding-top: 120px;
    padding-bottom: 90px;
}

.tj-team-area .tj-section-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-team-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.tj-team-area.style-2 {
    padding-top: 0;
}

.tj-team-top-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-team-top-button {
        display: inherit;
        margin-bottom: 0px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.tj-team-section-wrapper .tj-section-wrapper {
    margin-bottom: 53px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-team-section-wrapper .tj-section-wrapper {
        margin-bottom: 40px;
    }
}

.tj-team-wrapper {
    background: rgba(7, 124, 234, 0.17);
    padding: 30px 20px 20px;
    border-radius: 9px;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin-bottom: 30px;
}

.tj-team-wrapper::before {
    content: "";
    position: absolute;
    width: 410px;
    height: 321px;
    border-radius: 100%;
    top: -173px;
    left: -3px;
    background: #ECF1F5;
    z-index: -1;
}

.tj-team-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: var(--tj-color-theme-primary);
    -webkit-transition: 0.7s;
    transition: 0.7s;
    z-index: -2;
}

.tj-team-wrapper:hover::after {
    height: 100%;
}

.tj-team-wrapper:hover .tj-team-icon {
    top: 165%;
    opacity: 1;
}

.tj-team-wrapper:hover .tj-team-title {
    color: var(--tj-color-common-white);
}

.tj-team-wrapper:hover .tj-team-title a {
    color: var(--tj-color-common-white);
}

.tj-team-wrapper:hover .tj-team-paragraph {
    color: var(--tj-color-common-white);
}

.tj-team-wrapper:hover .tj-team-call-btn {
    color: var(--tj-color-common-white);
}

.tj-team-wrapper:hover .tj-team-button {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tj-team-wrapper:hover .tj-team-btn button {
    background: var(--tj-color-theme-secondary);
    color: var(--tj-color-heading-primary);
}

.tj-team-thumb {
    width: 182px;
    height: 182px;
    margin: auto;
    margin-bottom: 22px;
}

.tj-team-thumb a {
    display: inline-block;
}

.tj-team-thumb a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--tj-color-common-white);
}

.tj-team-title {
    margin-bottom: 4px;
}

.tj-team-title a {
    display: inline-block;
}

.tj-team-paragraph {
    color: var(--tj-color-theme-primary);
    margin-bottom: 12px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-team-button {
    border-top: 1px solid rgba(55, 58, 63, 0.2);
    padding: 14px 0 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-team-call-btn {
    font-family: var(--tj-ff-heading);
    font-weight: 600;
    display: inline-block;
    font-size: 20px;
    color: var(--tj-color-theme-primary);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-team-call-btn i {
    font-size: 14px;
    margin-right: 5px;
    display: inline-block;
}

.tj-team-social {
    position: absolute;
    top: 30px;
    right: 20px;
}

.tj-team-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: auto;
    padding: 15px 0;
    text-align: center;
    opacity: 0;
    background: var(--tj-color-theme-secondary);
    -webkit-transition: all 0.5s 0s ease-out;
    transition: all 0.5s 0s ease-out;
    border-radius: 20px 0;
}

.tj-team-icon a {
    display: block;
    font-size: 10px;
    color: var(--tj-color-common-black);
}

.tj-team-icon a:not(:last-of-type) {
    margin-bottom: 14px;
}

.tj-team-icon a:hover {
    color: var(--tj-color-theme-primary);
}

.tj-team-btn button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 35px;
    width: 35px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    color: var(--tj-color-common-white);
    background: var(--tj-color-theme-primary);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    border-radius: 50% 50% 0 50%;
    z-index: 11;
    position: relative;
}

.tj-team-2-area {
    padding-top: 120px;
    padding-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-team-2-area {
        padding-top: 80px;
        padding-bottom: 30px;
    }
}

.tj-team-2-section-wrapper .tj-section-wrapper {
    margin-bottom: 50px;
}

.tj-team-2-wrapper {
    margin-bottom: 50px;
    text-align: center;
}

.tj-team-2-wrapper:hover .tj-team-2-social ul li {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}

.tj-team-2-wrapper:hover .tj-team-2-social ul li button {
    color: var(--tj-color-heading-primary);
    background-color: var(--tj-color-theme-secondary);
}

.tj-team-2-wrapper:hover .tj-team-2-thumb a img {
    border-color: var(--tj-color-theme-secondary);
}

.tj-team-2-thumb {
    width: 308px;
    height: 308px;
    margin-bottom: 25px;
    position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-team-2-thumb {
        width: 270px;
        height: 270px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-team-2-thumb {
        margin: auto;
        margin-bottom: 25px;
    }
}

.tj-team-2-thumb a {
    display: inline-block;
}

.tj-team-2-thumb a img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 575px) {
    .tj-team-2-thumb a img {
        width: inherit;
    }
}

.tj-team-2-title {
    margin-bottom: 5px;
}

.tj-team-2-title:hover {
    color: var(--tj-color-theme-primary);
}

.tj-team-details-area {
    padding: 120px 0 90px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-team-details-area {
        padding: 80px 0 50px;
    }
}

.tj-team-details-thumb img {
    border-radius: 10px;
    width: 100%;
    max-width: 566px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-team-details-thumb {
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-team-details-thumb img {
        max-width: 100%;
    }
}

.tj-team-details-title {
    font-weight: var(--tj-fw-bold);
    font-size: 48px;
    color: var(--tj-color-theme-primary);
    margin-bottom: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-team-details-title {
        font-size: 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-team-details-title {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .tj-team-details-title {
        font-size: 35px;
    }
}

.tj-team-details-subtitle {
    font-weight: var(--tj-fw-bold);
    font-size: 18px;
    color: var(--tj-color-heading-primary);
    margin-bottom: 20px;
}

.tj-team-details-paragraph {
    letter-spacing: 0.02em;
    margin-bottom: 25px;
}

.tj-team-details-list {
    overflow: hidden;
}

.tj-team-details-list ul li {
    width: 44% !important;
    padding-left: 20px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-team-details-list ul li {
        width: 50% !important;
        font-size: 16px !important;
    }
}

@media (max-width: 575px) {
    .tj-team-details-list ul li {
        width: 100% !important;
    }
}

.tj-team-details-list ul li span {
    width: 10px;
    height: 10px;
    -webkit-transform: translateY(9px) !important;
    -ms-transform: translateY(9px) !important;
    transform: translateY(9px) !important;
}

.tj-team-details-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 14px;
    margin-bottom: 34px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tj-team-details-address-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 70px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-team-details-address-item {
        margin-right: 50px;
    }
}

.tj-team-details-address-item:last-child {
    margin-right: 0;
}

.tj-team-details-address-icon a {
    width: 40px;
    height: 40px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--tj-color-theme-primary);
    border-radius: 50%;
    font-size: 18px;
    color: var(--tj-color-common-white);
    margin-right: 14px;
}

.tj-team-details-address-icon a i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

.tj-team-details-address-content span {
    font-size: 14px;
    display: block;
}

.tj-team-details-address-content a {
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 18px;
    color: var(--tj-color-heading-primary);
}

.tj-team-details-address-social {
    margin-bottom: 35px;
}

.tj-team-details-address-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tj-team-details-address-social ul li {
    list-style: none;
}

.tj-team-details-address-social ul li a {
    width: 30px;
    height: 30px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--tj-color-heading-primary);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 12px;
    color: var(--tj-color-heading-primary);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.tj-team-details-address-social ul li a:hover {
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
    border-color: var(--tj-color-theme-primary);
}

.tj-team-details-progress-wrapper {
    margin-right: 85px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-team-details-progress-wrapper {
        margin-right: 0px;
    }
}

.tj-team-details-progress-title {
    font-size: 30px;
    color: var(--tj-color-heading-primary);
    margin-bottom: 24px;
}

.tj-team-details-progress-wrap {
    overflow: hidden;
    margin-bottom: 30px;
}

.tj-team-details-progress-label {
    font-family: var(--tj-color-heading-primary);
    font-weight: var(--tj-fw-sbold);
    font-size: 16px;
    color: var(--tj-color-heading-primary);
}

.tj-team-details-progress {
    overflow: visible;
    margin-top: 10px;
    height: 10px;
    background: var(--tj-color-heading-primary);
    border-radius: 10px;
    margin-bottom: 6px;
}

.tj-team-details-progress-bar {
    overflow: visible;
    text-align: right;
    background-color: var(--tj-color-theme-primary);
    height: 10px;
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 16px;
    color: var(--tj-color-heading-primary);
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.tj-team-details-progress-bar::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    right: 0;
    background: #F1F6FF;
    border-radius: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.tj-team-details-progress-bar::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    right: 5px;
    background: var(--tj-color-theme-primary);
    border-radius: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.tj-team-details-progress-bar span {
    position: relative;
    -webkit-transform: translateY(-26px);
    -ms-transform: translateY(-26px);
    transform: translateY(-26px);
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    color: var(--tj-color-heading-primary);
}

.tj-team-2-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tj-team-2-social ul li {
    position: absolute;
    bottom: 20px;
    right: 40px;
}

.tj-team-2-social ul li:nth-child(2) {
    bottom: 20%;
    right: 3px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    visibility: hidden;
    opacity: 0;
}

.tj-team-2-social ul li:nth-child(3) {
    bottom: 37%;
    right: -16px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    visibility: hidden;
    opacity: 0;
}

.tj-team-2-social ul li:nth-child(4) {
    bottom: 54.5%;
    right: -15px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    visibility: hidden;
    opacity: 0;
}

.tj-team-2-social ul li:nth-child(5) {
    bottom: 70%;
    right: 6px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    visibility: hidden;
    opacity: 0;
}

.tj-team-2-social ul li:nth-child(6) {
    bottom: 82%;
    right: 42px;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    visibility: hidden;
    opacity: 0;
}

.tj-team-2-social ul li:nth-child(7) {
    bottom: 91%;
    right: 88px;
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    visibility: hidden;
    opacity: 0;
}

.tj-team-2-social ul li:nth-child(8) {
    bottom: 92%;
    right: 46%;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    visibility: hidden;
    opacity: 0;
}

.tj-team-2-social ul li:nth-child(9) {
    bottom: 89%;
    right: 63%;
    -webkit-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    visibility: hidden;
    opacity: 0;
}

.tj-team-2-social ul li:nth-child(10) {
    bottom: 80%;
    right: 77%;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    visibility: hidden;
    opacity: 0;
}

.tj-team-2-social ul li a,
.tj-team-2-social ul li button {
    width: 40px;
    height: 40px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--tj-color-common-black);
    color: var(--tj-color-common-white);
    border-radius: 50%;
    font-size: 14px;
}

.tj-team-2-social ul li a i,
.tj-team-2-social ul li button i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tj-team-2-social ul li a:hover {
    background-color: var(--tj-color-theme-primary);
}

/* !END: Team CSS */

/**----------------------------------------
START: Award CSS
----------------------------------------*/

.tj-award-3-area {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-award-3-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-award-3-area {
        padding-top: 80px;
        padding-bottom: 50px;
    }
}

.tj-award-3-section-wrapper .tj-section-wrapper {
    margin-bottom: 50px;
}

.tj-award-3-crest-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-award-3-crest-wrapper {
        margin-bottom: 40px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .tj-award-3-crest-wrapper {
        margin-bottom: 40px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 30px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.tj-award-3-crest-thumb {
    margin-right: 53px;
    -webkit-animation: bounce-thum-1 2s forwards infinite alternate;
    animation: bounce-thum-1 2s forwards infinite alternate;
}

@media (max-width: 575px) {
    .tj-award-3-crest-thumb {
        margin-right: 0;
    }
}

.tj-award-3-crest-title {
    font-size: 36px;
    color: var(--tj-color-theme-primary);
    margin-bottom: 24px;
}

.tj-award-3-crest-paragraph {
    font-size: 18px;
    color: var(--tj-color-heading-primary);
}

.tj-award-3-crest-rating {
    margin-bottom: 22px;
}

.tj-award-3-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-award-3-wrap {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .tj-award-3-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: left;
        -ms-flex-pack: left;
        justify-content: left;
    }
}

.tj-award-3-item {
    text-align: center;
    padding: 0 30px 40px;
    margin-right: 50px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-award-3-item {
        padding: 0 20px 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-award-3-item {
        padding: 0 13px 40px;
    }
}

@media (max-width: 575px) {
    .tj-award-3-item {
        margin-right: 0;
        margin-bottom: 30px;
        width: 100%;
    }
}

.tj-award-3-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 91%, 50% 100%, 0 91%);
    clip-path: polygon(0 0, 100% 0, 100% 91%, 50% 100%, 0 91%);
    background: rgba(7, 124, 234, 0.1);
    z-index: -1;
}

.tj-award-3-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: rgba(7, 124, 234, 0.1);
    -webkit-clip-path: polygon(47% 0, 100% 0, 100% 91%, 48% 100%, 0 100%, 50% 100%, 50% 0);
    clip-path: polygon(47% 0, 100% 0, 100% 91%, 48% 100%, 0 100%, 50% 100%, 50% 0);
}

.tj-award-3-item:last-child {
    margin-right: 0;
}

.tj-award-3-item:last-child::before {
    background: rgba(254, 219, 92, 0.08);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 91%, 50% 100%, 0 91%);
    clip-path: polygon(0 0, 100% 0, 100% 91%, 50% 100%, 0 91%);
}

.tj-award-3-item:last-child::after {
    background: rgba(254, 219, 92, 0.12);
    -webkit-clip-path: polygon(47% 0, 100% 0, 100% 91%, 48% 100%, 0 100%, 50% 100%, 50% 0);
    clip-path: polygon(47% 0, 100% 0, 100% 91%, 48% 100%, 0 100%, 50% 100%, 50% 0);
}

.tj-award-3-item:last-child .tj-award-3-number span {
    background: var(--tj-color-theme-secondary);
    color: var(--tj-color-heading-primary);
}

.tj-award-3-item:last-child .tj-award-3-title-award {
    color: var(--tj-color-heading-primary);
}

.tj-award-3-item:last-child .tj-award-3-title-award::before {
    background: var(--tj-color-theme-secondary);
}

.tj-award-3-number {
    margin-bottom: 24px;
}

.tj-award-3-number span {
    width: 60px;
    height: 60px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -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-color-theme-primary);
    color: var(--tj-color-common-white);
    font-family: var(--tj-ff-heading);
    font-weight: 600;
    font-size: 36px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);
    clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);
}

.tj-award-3-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.55;
    margin-bottom: 20px;
}

.tj-award-3-title-award {
    font-weight: 600;
    font-size: 18px;
    line-height: 156%;
    text-transform: uppercase;
    color: var(--tj-color-common-white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.tj-award-3-title-award::before {
    position: absolute;
    content: "";
    width: 282px;
    height: 40px;
    top: 50%;
    left: 50%;
    background: var(--tj-color-theme-primary);
    z-index: -1;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-award-3-title-award::before {
        width: 255px;
    }
}

.tj-award-3-years span {
    font-weight: 700;
    text-align: center;
    color: var(--tj-color-heading-primary);
    font-size: 48px;
}

/* !END: Award CSS */

/**----------------------------------------
START: Process CSS
----------------------------------------*/

.tj-process-3-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 90px;
    position: relative;
    z-index: 1;
}

.tj-process-3-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(7, 124, 234, 0.2);
    z-index: -1;
}

.tj-process-3-area .tj-section-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-process-3-area {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    .tj-process-3-area .tj-section-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        gap: 20px;
    }
}

.tj-process-3-top-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-process-3-top-content {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.tj-process-3-top-paragraph {
    margin-bottom: 0;
    max-width: 384px;
}

.tj-process-3-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 160px;
    row-gap: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-process-3-wrapper {
        gap: 100px;
    }
}

.tj-process-3-item {
    max-width: 298px;
    text-align: center;
}

.tj-process-3-item:first-child .tj-process-3-thumb-border::before {
    background: var(--tj-color-theme-primary);
}

.tj-process-3-item:last-child .tj-process-3-thumb-border::after {
    width: 10px;
    height: 10px;
    background: var(--tj-color-theme-primary);
    border-radius: 50%;
    border-width: 0;
}

.tj-process-3-item:hover .tj-process-3-thumb {
    border: 4px solid var(--tj-color-theme-secondary);
}

.tj-process-3-item:hover .tj-process-3-icon {
    top: 35px;
}

.tj-process-3-item:hover .tj-process-3-icon span {
    color: var(--tj-color-heading-primary);
}

.tj-process-3-item:hover .tj-process-3-icon span::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-process-3-item {
        max-width: 224px;
    }
}

.tj-process-3-thumb {
    width: 298px;
    height: 298px;
    border-radius: 50%;
    border: 4px solid var(--tj-color-theme-primary);
    padding: 16px;
    margin: auto;
    margin-bottom: 24px;
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
}

.tj-process-3-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-process-3-thumb {
        width: 260px;
        height: 260px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-process-3-thumb {
        width: 224px;
        height: 224px;
    }
}

.tj-process-3-icon {
    position: absolute;
    top: 45px;
    right: -7px;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.tj-process-3-icon span {
    width: 50px;
    height: 50px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
    border-radius: 50%;
    font-family: var(--tj-ff-heading);
    font-weight: 600;
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.tj-process-3-icon span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    background: var(--tj-color-theme-secondary);
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    border-radius: 50%;
}

.tj-process-3-thumb-border {
    position: absolute;
    width: 164%;
    height: 2px;
    top: 50%;
    left: 50%;
    background: var(--tj-color-theme-primary);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-process-3-thumb-border {
        display: none;
    }
}

.tj-process-3-thumb-border::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    left: 0;
    background: transparent;
    border-radius: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-process-3-thumb-border::before {
        background: var(--tj-color-theme-primary);
    }
}

.tj-process-3-thumb-border::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent #077CEA;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.tj-process-3-content {
    max-width: 276px;
    margin: auto;
}

/* !END: Process CSS */

/**----------------------------------------
START: Call-To-Action CSS
----------------------------------------*/

.tj-cta-3-area {
    background: rgba(7, 124, 234, 0.09);
    padding: 70px 0 80px;
    position: relative;
    z-index: 1;
}

.tj-cta-3-bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.tj-cta-3-bg-shape-2 {
    position: absolute;
    bottom: 0;
    left: 140px;
    z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-cta-3-bg-shape-2 {
        left: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-cta-3-bg-shape-2 {
        left: 0;
        width: 30%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-cta-3-bg-shape-2 {
        display: none;
    }
}

.tj-cta-3-bg-shape-3 {
    position: absolute;
    right: 100px;
    bottom: 0;
    z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-cta-3-bg-shape-3 {
        right: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-cta-3-bg-shape-3 {
        right: 0;
        width: 30%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-cta-3-bg-shape-3 {
        display: none;
    }
}

.tj-cta-3-button {
    margin-top: -10px;
}

/* !END: Call-To-Action CSS */

/**----------------------------------------
START: Before-After CSS
----------------------------------------*/

.tj-before-after-area {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-before-after-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.tj-before-after-area .tj-section-subtitle {
    color: var(--tj-color-common-white);
}

.tj-before-after-area .tj-section-subtitle img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.tj-before-after-area .tj-section-title {
    color: var(--tj-color-common-white);
}

.tj-before-after-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 620px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.tj-before-after-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(7, 124, 234, 0.85);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-before-after-bg {
        height: 510px;
    }
}

@media (max-width: 575px) {
    .tj-before-after-bg {
        height: 480px;
    }
}

.tj-before-after-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.tj-before-after-wrapper::before {
    content: "Before";
    position: absolute;
    top: 50%;
    left: 50px;
    color: var(--tj-color-common-white);
    z-index: 2;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    background: var(--tj-color-theme-primary);
    padding: 3px 22px;
    border-radius: 5px;
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 18px;
    cursor: pointer;
}

.tj-before-after-wrapper::after {
    content: "After";
    position: absolute;
    top: 50%;
    right: 50px;
    color: var(--tj-color-common-white);
    z-index: 1;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    background: var(--tj-color-theme-primary);
    padding: 3px 22px;
    border-radius: 5px;
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 18px;
    cursor: pointer;
}

.tj-before-after-wrapper img {
    max-width: inherit;
    height: 570px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-before-after-wrapper img {
        height: 480px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-before-after-wrapper img {
        height: 375px;
    }
}

@media (max-width: 575px) {
    .tj-before-after-wrapper img {
        height: 320px;
    }
}

.tj-before-after-wrapper div:nth-of-type(3) div div {
    background: var(--tj-color-theme-primary) !important;
}

.tj-before-after-wrapper div:nth-of-type(3) div div span {
    position: relative;
    z-index: 1;
}

.tj-before-after-wrapper div:nth-of-type(3) div div span::before {
    content: "\f0de";
    position: absolute;
    top: 80%;
    left: -32px;
    font-family: var(--tj-ff-fontawesome);
    color: var(--tj-color-common-white);
    font-size: 24px;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    font-weight: bold;
    rotate: 90deg;
}

.tj-before-after-wrapper div:nth-of-type(3) div div span::after {
    content: "\f0dd";
    position: absolute;
    top: 81%;
    left: 20px;
    font-family: var(--tj-ff-fontawesome);
    color: var(--tj-color-common-white);
    rotate: 90deg;
    -webkit-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    transform: translate(0, 50%);
    font-size: 24px;
    font-weight: bold;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-before-after-wrapper::before {
        left: 30px;
    }
    .tj-before-after-wrapper::after {
        right: 30px;
    }
}

@media (max-width: 575px) {
    .tj-before-after-wrapper::before {
        left: 15px;
        font-size: 16px;
        padding: 3px 15px;
    }
    .tj-before-after-wrapper::after {
        right: 15px;
        font-size: 16px;
        padding: 3px 15px;
    }
}

.tj-before-after-bg-shape-after-1 {
    position: absolute;
    top: -2px;
    left: 0;
    z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-before-after-bg-shape-after-1 {
        max-width: 500px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-before-after-bg-shape-after-1 {
        max-width: 380px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-before-after-bg-shape-after-1 {
        max-width: 280px;
    }
}

@media (max-width: 575px) {
    .tj-before-after-bg-shape-after-1 {
        display: none;
    }
}

.tj-before-after-bg-shape-after-2 {
    position: absolute;
    top: -2px;
    right: 0;
    z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-before-after-bg-shape-after-2 {
        max-width: 500px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-before-after-bg-shape-after-2 {
        max-width: 380px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-before-after-bg-shape-after-2 {
        max-width: 280px;
    }
}

@media (max-width: 575px) {
    .tj-before-after-bg-shape-after-2 {
        display: none;
    }
}

/* !END: Before-After CSS */

/**----------------------------------------
START: Choose-Us CSS
----------------------------------------*/

.tj-choose-us-area {
    padding-bottom: 120px;
}

.tj-choose-us-area .tj-section-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tj-choose-us-area .tj-section-wrapper .sec-text {
    max-width: 635px;
    width: 100%;
}

.tj-choose-us-area .tj-section-wrapper .desc {
    max-width: 425px;
    width: 100%;
}

.tj-choose-us-area .tj-section-wrapper .desc p:last-child {
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-choose-us-area .tj-section-wrapper .sec-text {
        max-width: 475px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-area {
        padding-bottom: 80px;
    }
    .tj-choose-us-area .tj-section-wrapper .sec-text {
        max-width: 100%;
    }
}

.tj-choose-us-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1520px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.tj-choose-us-wrapper .tj-choose-us-inner {
    position: relative;
    left: -120px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding-top: 40px;
    max-width: 850px;
    width: 100%;
    z-index: -1;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tj-choose-us-wrapper .tj-choose-us-inner {
        left: -95px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-choose-us-wrapper .tj-choose-us-inner {
        max-width: 650px;
        padding-top: 150px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-wrapper .tj-choose-us-inner {
        padding-top: 0px;
        left: 0px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-choose-us-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-wrapper {
        max-width: 480px;
    }
}

.tj-choose-us-left-thumb {
    position: relative;
    left: -20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 650px;
    height: 625px;
    -webkit-mask-image: url(../images/choose-us/choose-us-thumb-mark.svg);
    mask-image: url(../images/choose-us/choose-us-thumb-mark.svg);
    background: var(--tj-color-common-black);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-choose-us-left-thumb {
        left: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-choose-us-left-thumb {
        margin-left: 0;
        margin-bottom: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-choose-us-left-thumb {
        margin-left: 0;
        margin-bottom: 50px;
        height: 520px;
        left: 0;
        max-width: 535px;
    }
}

@media (max-width: 575px) {
    .tj-choose-us-left-thumb {
        left: 0;
        height: 350px;
        width: 360px;
        margin-bottom: 30px;
    }
}

.tj-choose-us-left-thumb img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.tj-choose-us-center-thumb {
    max-width: 500px;
    width: 100%;
    height: 500px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 3px solid var(--tj-color-theme-primary);
    border-radius: 50%;
    padding: 20px;
}

.tj-choose-us-center-thumb img {
    max-width: 75%;
    width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-choose-us-center-thumb {
        height: 380px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-choose-us-center-thumb {
        max-width: 400px;
        height: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-choose-us-center-thumb {
        max-width: 400px;
        height: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-choose-us-center-thumb {
        max-width: 380px;
        height: 380px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .tj-choose-us-center-thumb {
        max-width: 300px;
        height: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

.tj-choose-us-wrap {
    margin-top: -40px;
    margin-left: -50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-choose-us-wrap {
        margin-top: 0px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-choose-us-wrap {
        margin-top: 0px;
        margin-left: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-wrap {
        margin-top: 0px;
        margin-left: 20px;
    }
}

.tj-choose-us-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 50px;
}

.tj-choose-us-item .tj-choose-us-paragraph {
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-choose-us-item {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-choose-us-item {
        max-width: 100%;
        margin-bottom: 25px;
    }
}

@media (max-width: 575px) {
    .tj-choose-us-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .tj-choose-us-item .tj-choose-us-icon {
        margin-bottom: 15px;
    }
    .tj-choose-us-item .tj-choose-us-icon span {
        margin-right: 0;
    }
}

.tj-choose-us-item:nth-child(1) {
    margin-left: -130px;
    max-width: 435px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-choose-us-item:nth-child(1) {
        margin-left: -85px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-choose-us-item:nth-child(1) {
        margin-left: 0px;
        max-width: 360px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-item:nth-child(1) {
        max-width: 100%;
        margin-left: 0;
    }
}

.tj-choose-us-item:nth-child(2) {
    margin-left: -28px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-choose-us-item:nth-child(2) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-item:nth-child(2) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-choose-us-item:nth-child(3) {
        margin-left: 0px;
    }
}

.tj-choose-us-item:hover .tj-choose-us-icon span i {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.tj-choose-us-icon span {
    width: 90px;
    height: 90px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 50px;
    background: var(--tj-color-common-white);
    color: var(--tj-color-theme-primary);
    border-radius: 50%;
    border: 3px solid var(--tj-color-theme-primary);
    margin-right: 25px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 575px) {
    .tj-choose-us-icon span {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}

.tj-choose-us-icon span i {
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.tj-choose-us-title {
    font-weight: 600;
    font-size: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-choose-us-title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-choose-us-paragraph {
        font-size: 14px;
    }
}

.tj-choose-us-bottom-row {
    background: var(--tj-color-theme-primary);
    padding: 60px 70px;
    border-radius: 25px;
    margin-top: -115px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-choose-us-bottom-row {
        margin-top: -40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-choose-us-bottom-row {
        padding: 60px 30px;
        margin-top: -40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-bottom-row {
        margin-top: 0;
        padding: 35px 15px;
    }
}

.tj-choose-us-bottom-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-bottom-button {
        display: inherit;
        text-align: center;
    }
}

.tj-choose-us-bottom-title {
    font-size: 36px;
    color: var(--tj-color-common-white);
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-choose-us-bottom-title {
        font-size: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-bottom-title {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: center;
    }
}

.tj-choose-us-bottom-bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.tj-choose-us-3-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0 90px;
    position: relative;
    z-index: 1;
}

.tj-choose-us-3-area .tj-section-wrapper {
    margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-3-area .tj-section-wrapper .tj-section-subtitle {
        color: var(--tj-color-common-white);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-3-area {
        padding: 80px 0 50px;
    }
}

.tj-choose-us-3-area::before {
    content: "";
    position: absolute;
    width: 48%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-mask-image: url(../images/choose-us/choose-us-left-thumb-after.svg);
    mask-image: url(../images/choose-us/choose-us-left-thumb-after.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    z-index: -1;
    background: -webkit-gradient(linear, left top, left bottom, from(#077cea), to(#fee766));
    background: linear-gradient(180deg, #077cea 0%, #fee766 100%);
}

@media only screen and (min-width: 1701px) and (max-width: 1800px) {
    .tj-choose-us-3-area::before {
        width: 52%;
        left: -62px;
    }
}

@media only screen and (min-width: 1601px) and (max-width: 1700px) {
    .tj-choose-us-3-area::before {
        width: 56%;
        left: -105px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tj-choose-us-3-area::before {
        left: -210px;
        width: 66%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-choose-us-3-area::before {
        left: -300px;
        width: 76%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-choose-us-3-area::before {
        left: 0;
        width: 90%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-3-area::before {
        left: 0px;
        width: 100%;
        -webkit-mask-image: initial;
        mask-image: initial;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-3-wrapper .tj-section-title {
        color: var(--tj-color-common-white);
    }
}

.tj-choose-us-3-thumb-wrapper {
    position: absolute;
    top: 0;
    left: -15px;
    width: 47%;
    height: 100%;
    -webkit-mask-image: url(../images/choose-us/choose-us-3-left-img.svg);
    mask-image: url(../images/choose-us/choose-us-3-left-img.svg);
    background: -webkit-gradient(linear, left top, left bottom, from(#077cea), to(#fee766));
    background: linear-gradient(180deg, #077cea 0%, #fee766 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-3-thumb-wrapper::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: var(--tj-color-common-black);
        opacity: 0.4;
    }
}

@media only screen and (min-width: 1701px) and (max-width: 1800px) {
    .tj-choose-us-3-thumb-wrapper {
        left: -76px;
        width: 52%;
    }
}

@media only screen and (min-width: 1601px) and (max-width: 1700px) {
    .tj-choose-us-3-thumb-wrapper {
        left: -120px;
        width: 56%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tj-choose-us-3-thumb-wrapper {
        left: -210px;
        width: 64%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-choose-us-3-thumb-wrapper {
        left: -300px;
        width: 74%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-choose-us-3-thumb-wrapper {
        left: 0;
        width: 88%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-choose-us-3-thumb-wrapper {
        left: 0px;
        width: 100%;
        background-image: none !important;
    }
    .tj-choose-us-3-thumb-wrapper::before {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-3-thumb-wrapper {
        width: 100%;
        left: 0px;
        background-image: none !important;
    }
    .tj-choose-us-3-thumb-wrapper::before {
        display: none;
    }
}

.tj-choose-us-3-thumb-wrapper img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.tj-choose-us-3-wrapper {
    margin-left: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-3-wrapper {
        position: relative;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-3-wrapper {
        position: relative;
        margin-left: 15px;
    }
}

.tj-choose-us-3-wrap-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 560px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.tj-choose-us-3-wrap-item::before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    bottom: -55px;
    left: 33px;
    border: 1px dashed var(--tj-color-theme-primary);
    z-index: -1;
}

.tj-choose-us-3-wrap-item:last-child::before {
    display: none;
}

.tj-choose-us-3-wrap-item:hover .tj-choose-us-3-wrap-icon span i {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.tj-choose-us-3-wrap-icon span {
    width: 70px;
    height: 70px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 36px;
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
    border-radius: 50%;
    margin-right: 30px;
}

.tj-choose-us-3-wrap-icon span i {
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.tj-choose-us-3-wrap-title {
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-choose-us-3-wrap-title {
        color: var(--tj-color-common-white);
    }
}

.tj-choose-us-3-wrap-paragraph {
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-choose-us-3-wrap-paragraph {
        color: var(--tj-color-common-white);
    }
}

@media (max-width: 575px) {
    .tj-choose-us-3-wrap-paragraph {
        color: var(--tj-color-common-white);
        font-size: 14px;
    }
}

/* !END: Choose-Us CSS */

/**----------------------------------------
START: Pricing CSS
----------------------------------------*/

.tj-pricing-area {
    padding: 0 0 90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-pricing-area {
        padding: 0 0 50px;
    }
}

.tj-pricing-wrapper {
    background: var(--tj-color-common-white);
    border: 1px solid #D8DDE1;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.tj-pricing-wrapper.active .tj-pricing-icon span {
    color: var(--tj-color-common-black);
}

.tj-pricing-wrapper.active .tj-pricing-icon span::before {
    height: 100%;
}

.tj-pricing-wrapper.active .tj-pricing-price {
    background: var(--tj-color-theme-primary);
}

.tj-pricing-wrapper.active .tj-pricing-price::before {
    background: var(--tj-color-theme-primary);
}

.tj-pricing-wrapper.active .tj-pricing-price-subtitle {
    color: var(--tj-color-common-white);
}

.tj-pricing-wrapper.active .tj-pricing-price-title {
    color: var(--tj-color-common-white);
}

.tj-pricing-price {
    background: #ECF1F5;
    padding: 38px 0 28px;
    border-radius: 8px 8px 0 0;
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-pricing-price::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 45px;
    -webkit-mask-image: url(../images/pricing/pricing-shape.svg);
    mask-image: url(../images/pricing/pricing-shape.svg);
    background: #ECF1F5;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    -webkit-mask-size: cover;
    mask-size: cover;
    bottom: -38px;
    left: 0;
    z-index: -1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-pricing-price-subtitle {
    margin-bottom: 10px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-pricing-price-title {
    font-weight: var(--tj-fw-bold);
    margin-bottom: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-pricing-bottom {
    padding: 60px 42px 42px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-pricing-bottom {
        padding: 35px 15px;
    }
}

.tj-pricing-list {
    margin-bottom: 55px;
}

.tj-pricing-list ul li {
    list-style: none;
    margin-bottom: 8px;
}

.tj-pricing-list ul li.inactive {
    color: var(--tj-color-grey-2);
}

.tj-pricing-list ul li.inactive span {
    color: var(--tj-color-grey-2);
}

.tj-pricing-list ul li:last-child {
    margin-bottom: 0;
}

.tj-pricing-list ul li span {
    margin-right: 4px;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    display: inline-block;
    color: var(--tj-color-theme-primary);
}

.tj-pricing-list ul li span i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
}

.tj-pricing-icon {
    position: absolute;
    top: 0;
    left: 40px;
}

.tj-pricing-icon span {
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
    padding: 16px 6px 6px;
    border-radius: 0 0 30px 30px;
    font-size: 45px;
    display: inline-block;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.tj-pricing-icon span::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--tj-color-theme-secondary);
    z-index: -1;
    border-radius: 0 0 30px 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.tj-pricing-button .tj-square-btn:hover {
    border-color: var(--tj-color-theme-secondary);
}

.tj-pricing-2-area {
    background: var(--tj-color-grey-3);
    padding: 120px 0 90px;
    padding-top: 120px;
    padding-bottom: 90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-pricing-2-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.tj-pricing-2-top-wrapper {
    margin-bottom: 30px;
    max-width: 645px;
    width: 100%;
}

.tj-pricing-2-top-section-wrapper {
    margin-bottom: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-pricing-2-top-section-wrapper .tj-section-title {
        font-size: 45px;
    }
}

.tj-pricing-2-top-paragraph {
    margin-bottom: 34px;
}

.tj-pricing-2-switcher {
    background: var(--tj-color-common-white);
    border-radius: 30px;
    overflow: hidden;
    display: inline-block;
    margin-bottom: 28px;
}

@media (max-width: 575px) {
    .tj-pricing-2-switcher {
        margin-bottom: 15px;
    }
}

.tj-pricing-2-switcher span {
    cursor: pointer;
}

.tj-pricing-2-switcher-btn {
    padding: 5px 30px;
    font-size: 18px;
    border-radius: 30px;
    display: inline-block;
}

.tj-pricing-2-switcher-btn.active {
    background: var(--tj-color-theme-secondary);
    color: var(--tj-color-heading-primary);
}

.tj-pricing-2-wrapper {
    background: var(--tj-color-common-white);
    text-align: center;
    padding: 10px 16px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.tj-pricing-2-wrapper.active::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    -o-border-image: linear-gradient(to bottom left, #FCFCFC 8%, #016DD2 42%, #FCFCFC) 1;
    border-image: -webkit-gradient(linear, right top, left bottom, color-stop(8%, #FCFCFC), color-stop(42%, #016DD2), to(#FCFCFC)) 1;
    border-image: linear-gradient(to bottom left, #FCFCFC 8%, #016DD2 42%, #FCFCFC) 1;
    border-top: 2px solid;
    border-left: 2px solid;
    border-radius: 50em;
}

.tj-pricing-2-wrapper.active::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 70px;
    height: 70px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
    border-radius: 10px 0 10px 0;
    -o-border-image: linear-gradient(to bottom left, #FCFCFC 8%, #016DD2 42%, #FCFCFC) 1;
    border-image: -webkit-gradient(linear, right top, left bottom, color-stop(8%, #FCFCFC), color-stop(42%, #016DD2), to(#FCFCFC)) 1;
    border-image: linear-gradient(to bottom left, #FCFCFC 8%, #016DD2 42%, #FCFCFC) 1;
    z-index: -1;
}

.tj-pricing-2-wrapper.active .tj-pricing-2-button .tj-primary-btn {
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
    border: 1px solid var(--tj-color-theme-primary);
}

.tj-pricing-2-wrapper.active .tj-pricing-2-button .tj-primary-btn:hover {
    border: 1px solid var(--tj-color-theme-secondary) !important;
    color: var(--tj-color-heading-primary);
}

.tj-pricing-2-item {
    position: relative;
    z-index: 1;
}

.tj-pricing-2-item.active::before {
    position: absolute;
    content: "";
    top: -10px;
    right: -16px;
    width: 70px;
    height: 70px;
    border-top: 2px solid var(--tj-color-theme-primary);
    border-right: 2px solid var(--tj-color-theme-primary);
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
    z-index: -1;
    -o-border-image: linear-gradient(to bottom right, #FCFCFC 8%, #016DD2 42%, #FCFCFC) 1;
    border-image: -webkit-gradient(linear, left top, right bottom, color-stop(8%, #FCFCFC), color-stop(42%, #016DD2), to(#FCFCFC)) 1;
    border-image: linear-gradient(to bottom right, #FCFCFC 8%, #016DD2 42%, #FCFCFC) 1;
}

.tj-pricing-2-item.active::after {
    position: absolute;
    content: "";
    bottom: -10px;
    left: -17px;
    width: 70px;
    height: 70px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
    -o-border-image: linear-gradient(to bottom right, #FCFCFC 8%, #016DD2 42%, #FCFCFC) 1;
    border-image: -webkit-gradient(linear, left top, right bottom, color-stop(8%, #FCFCFC), color-stop(42%, #016DD2), to(#FCFCFC)) 1;
    border-image: linear-gradient(to bottom right, #FCFCFC 8%, #016DD2 42%, #FCFCFC) 1;
    z-index: -1;
}

.tj-pricing-2-wrap {
    background: rgba(7, 124, 234, 0.1);
    border-radius: 300px;
    padding: 50px 80px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-pricing-2-wrap {
        padding: 50px 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-pricing-2-wrap {
        padding: 50px 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-pricing-2-wrap {
        padding: 50px 42px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-pricing-2-wrap {
        padding: 50px 130px;
    }
}

@media (max-width: 575px) {
    .tj-pricing-2-wrap {
        padding: 50px 50px;
    }
}

.tj-pricing-2-title {
    margin-bottom: 0;
}

.tj-pricing-2-paragraph {
    margin-bottom: 34px;
}

.tj-pricing-2-percent {
    color: var(--tj-color-common-white);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--tj-ff-heading);
    border-radius: 100px;
    padding: 29px 0;
    margin: 0 43px 40px;
    position: relative;
    z-index: 1;
}

.tj-pricing-2-percent::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    -webkit-mask-image: url(../images/pricing/pricing-2-bg.svg);
    mask-image: url(../images/pricing/pricing-2-bg.svg);
    background: var(--tj-color-theme-primary);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: -1;
}

.tj-pricing-2-percent .price-number {
    display: block;
    line-height: 1;
    color: var(--tj-color-common-white);
    font-weight: var(--tj-fw-bold);
    font-size: 48px;
    margin-bottom: -5px;
}

.tj-pricing-2-percent .price-number .dolar {
    font-size: 20px;
}

.tj-pricing-2-percent.active::before {
    background: var(--tj-color-heading-primary);
}

.tj-pricing-2-list {
    margin-bottom: 40px;
}

.tj-pricing-2-list ul li {
    list-style: none;
    text-align: left;
    margin-bottom: 10px;
}

.tj-pricing-2-list ul li:last-child {
    margin-bottom: 0;
}

.tj-pricing-2-list ul li span {
    margin-right: 2px;
    color: var(--tj-color-theme-primary);
}

.tj-pricing-2-list ul li.inactive {
    color: var(--tj-color-grey-2);
}

.tj-pricing-2-list ul li.inactive span {
    color: var(--tj-color-grey-2);
}

.tj-pricing-2-button .tj-primary-btn {
    padding: 17px 58px;
    background: transparent;
    color: var(--tj-color-theme-primary);
    border: 1px solid var(--tj-color-theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-pricing-2-button .tj-primary-btn {
        padding: 17px 57px;
    }
}

@media (max-width: 575px) {
    .tj-pricing-2-button .tj-primary-btn {
        padding: 17px 55px;
    }
}

.tj-pricing-2-button .tj-primary-btn:hover {
    border: 1px solid var(--tj-color-theme-secondary);
    color: var(--tj-color-heading-primary);
}

.tj-pricing-3-area {
    padding-top: 120px;
    padding-bottom: 90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-pricing-3-area {
        padding-top: 80px;
        padding-bottom: 50px;
    }
}

.tj-pricing-3-wrapper {
    background: #F5F7FA;
    padding: 40px 50px 42px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-pricing-3-wrapper {
        padding: 40px 30px 42px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-pricing-3-wrapper {
        padding: 35px 15px;
    }
}

.tj-pricing-3-wrapper.active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(7, 124, 234, 0.1);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.6;
}

.tj-pricing-3-wrapper.active::after {
    content: "";
    position: absolute;
    width: 136px;
    height: 100%;
    top: 0;
    right: 0;
    background-image: url(../images/pricing/pricing-3-wrapper-shape.png);
    z-index: -1;
}

.tj-pricing-3-title {
    font-size: 30px;
    margin-bottom: 12px;
}

.tj-pricing-3-paragraph {
    margin-bottom: 24px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-pricing-3-paragraph {
        font-size: 14px;
    }
}

.tj-pricing-3-price-title {
    margin-bottom: 30px;
}

.tj-pricing-3-button {
    margin-bottom: 42px;
}

.tj-pricing-3-button .tj-square-btn {
    background: var(--tj-color-heading-primary);
    color: var(--tj-color-common-white);
    padding: 20px 0;
    border: none;
}

.tj-pricing-3-button .tj-square-btn:hover {
    color: var(--tj-color-heading-primary);
}

.tj-pricing-3-button.active .tj-square-btn {
    background: var(--tj-color-theme-primary);
}

.tj-pricing-3-list {
    margin-bottom: 0;
}

/* !END: Pricing CSS */

/**----------------------------------------
START: Portfolio CSS
----------------------------------------*/

.tj-portfolio-area {
    background: var(--tj-color-grey-3);
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
}

.tj-portfolio-area .tj-section-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-portfolio-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.tj-portfolio-bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.08;
}

.tj-portfolio-bg-shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-portfolio-section-wrapper .tj-section-wrapper {
        margin-bottom: 0;
    }
}

.tj-portfolio-top-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-portfolio-top-button {
        display: inherit;
    }
}

.tj-portfolio-active .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tj-portfolio-wrapper:hover .tj-portfolio-wrap {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.tj-portfolio-thumb {
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

.tj-portfolio-thumb img {
    border-radius: 10px;
}

.tj-portfolio-wrap {
    position: absolute;
    bottom: -148px;
    left: 0;
    right: 0;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 1;
    padding: 0 40px 20px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    width: 100%;
    height: 148px;
    -webkit-mask-image: url(../images/portfolio/portfolio-box-shape.svg);
    mask-image: url(../images/portfolio/portfolio-box-shape.svg);
    background: var(--tj-color-theme-primary);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center top;
    mask-position: center top;
    -webkit-mask-size: cover;
    mask-size: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-portfolio-wrap {
        bottom: -55px;
        padding: 0 20px 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-portfolio-wrap {
        padding: 0 20px 30px;
    }
}

@media (max-width: 575px) {
    .tj-portfolio-wrap {
        bottom: -23px;
        padding: 0 15px 30px;
    }
}

.tj-portfolio-content {
    margin-top: 70px;
}

.tj-portfolio-title {
    font-size: 22px;
    color: var(--tj-color-common-white);
    margin-bottom: 6px;
}

.tj-portfolio-title:hover {
    color: var(--tj-color-theme-secondary);
}

.tj-portfolio-paragraph {
    font-weight: var(--tj-fw-sbold);
    font-size: 14px;
    color: var(--tj-color-common-white);
    font-family: var(--tj-ff-heading);
    margin-bottom: 0;
}

.tj-portfolio-pluse-button {
    margin-top: 70px;
}

.tj-portfolio-pluse-btn {
    width: 50px;
    height: 50px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -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-color-theme-secondary);
    color: var(--tj-color-common-black);
    font-size: 18px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.tj-portfolio-pluse-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    background: var(--tj-color-common-white);
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    border-radius: 50%;
}

.tj-portfolio-pluse-btn i {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tj-portfolio-pluse-btn:hover {
    color: var(--tj-color-heading-primary);
}

.tj-portfolio-pluse-btn:hover::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.tj-portfolio-pluse-btn:hover i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.tj-portfolio-slide-dot {
    margin-top: 60px;
}

.tj-portfolio-slide-dot .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--tj-color-theme-primary);
    margin: 0 8px 0;
    position: relative;
    z-index: 1;
    opacity: 1;
}

.tj-portfolio-slide-dot .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: transparent;
    border-radius: 50%;
    border: 2px solid var(--tj-color-theme-primary);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

.tj-portfolio-slide-dot .swiper-pagination-bullet button {
    display: none;
}

.tj-portfolio-slide-dot .swiper-pagination-bullet-active::before {
    visibility: visible;
    opacity: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-portfolio-slide-dot {
        margin-top: 35px;
    }
}

.tj-portfolio-2-area {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-portfolio-2-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.tj-portfolio-2-section-wrapper .tj-section-wrapper {
    margin-bottom: 50px;
}

.tj-portfolio-2-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-portfolio-2-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.tj-portfolio-2-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.tj-portfolio-2-wrap:hover .tj-portfolio-2-thumb img {
    width: 420px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-portfolio-2-wrap:hover .tj-portfolio-2-thumb img {
        width: 370px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-portfolio-2-wrap:hover .tj-portfolio-2-thumb img {
        width: 415px;
    }
}

.tj-portfolio-2-wrap.active .tj-portfolio-2-thumb img {
    width: 420px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-portfolio-2-wrap.active .tj-portfolio-2-thumb img {
        width: 370px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-portfolio-2-wrap.active .tj-portfolio-2-thumb img {
        width: 415px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-portfolio-2-wrap.active .tj-portfolio-2-thumb img {
        width: 100%;
    }
}

.tj-portfolio-2-wrap.active .tj-portfolio-2-default-title {
    opacity: 0;
    visibility: hidden;
}

.tj-portfolio-2-wrap.active .tj-portfolio-2-box {
    visibility: visible;
    opacity: 1;
    bottom: 0;
    border-radius: 5px;
}

.tj-portfolio-2-thumb img {
    width: 195px;
    height: 528px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-portfolio-2-thumb img {
        width: 166px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-portfolio-2-thumb img {
        width: 110px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-portfolio-2-thumb img {
        max-width: 338px;
        width: auto;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-portfolio-2-thumb img {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .tj-portfolio-2-thumb img {
        width: 100%;
    }
}

.tj-portfolio-2-default-content {
    position: absolute;
    bottom: 106px;
    left: -62px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-portfolio-2-default-content {
        bottom: 85px;
        left: -62px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
    .tj-portfolio-2-default-content {
        display: none;
    }
}

.tj-portfolio-2-default-title {
    background: var(--tj-color-common-white);
    color: var(--tj-color-theme-primary);
    padding: 11px 25px;
    margin-bottom: 0;
    border-radius: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-portfolio-2-default-title {
        font-size: 20px;
    }
}

.tj-portfolio-2-box {
    text-align: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -180px;
    z-index: 1;
}

.tj-portfolio-2-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 180px;
    -webkit-mask-image: url(../images/portfolio/portfolio-2-box-shape.svg);
    mask-image: url(../images/portfolio/portfolio-2-box-shape.svg);
    background: var(--tj-color-theme-primary);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center top;
    mask-position: center top;
    -webkit-mask-size: cover;
    mask-size: cover;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: -1;
    border-radius: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-portfolio-2-box::before {
        bottom: -14px;
        width: 382px;
        height: 188px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-portfolio-2-box::before {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .tj-portfolio-2-box {
        visibility: visible;
        opacity: 1;
        bottom: 0;
    }
}

.tj-portfolio-2-icon a {
    width: 50px;
    height: 50px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--tj-color-theme-secondary);
    color: var(--tj-color-heading-primary);
    border-radius: 50%;
    margin-bottom: 25px;
    font-size: 20px;
}

.tj-portfolio-2-icon a i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.tj-portfolio-2-icon a:hover {
    background: var(--tj-color-common-white);
    color: var(--tj-color-heading-primary);
}

.tj-portfolio-2-icon a:hover i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.tj-portfolio-2-title {
    color: var(--tj-color-common-white);
    margin-bottom: 0;
}

.tj-portfolio-2-paragraph {
    color: var(--tj-color-common-white);
    margin-bottom: 25px;
}

.tj-portfolio-3-area {
    padding-top: 120px;
}

.tj-portfolio-3-area .portfolio-row {
    margin-bottom: 90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-portfolio-3-area {
        padding-top: 80px;
    }
    .tj-portfolio-3-area .portfolio-row {
        margin-bottom: 50px;
    }
}

.tj-portfolio-3-filter-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
}

.tj-portfolio-3-filter-menu .filter {
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 18px;
    color: var(--tj-color-heading-primary);
    margin-right: 50px;
}

@media (max-width: 575px) {
    .tj-portfolio-3-filter-menu .filter {
        font-size: 15px;
        margin-right: 20px;
    }
}

.tj-portfolio-3-filter-menu .filter.active {
    color: var(--tj-color-theme-primary);
}

.tj-portfolio-3-wrapper {
    width: 32.33%;
    padding: 0 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-portfolio-3-wrapper {
        width: inherit;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-portfolio-3-wrapper {
        width: inherit;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-portfolio-3-thumb img {
        width: 100%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-portfolio-3-thumb img {
        width: 100%;
    }
}

.tj-portfolio-3-inner {
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.tj-portfolio-3-inner:hover .tj-portfolio-3-wrap {
    bottom: 20px;
}

.tj-portfolio-3-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    bottom: -120px;
    left: 0;
    right: 0;
    margin: 0 20px;
    background: var(--tj-color-common-white);
    padding: 26px 22px;
    border-radius: 5px;
    z-index: 1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-portfolio-3-wrap {
        bottom: -155px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-portfolio-3-wrap {
        bottom: -150px;
    }
}

@media (max-width: 575px) {
    .tj-portfolio-3-wrap {
        bottom: -150px;
    }
}

.tj-portfolio-3-wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/portfolio/portfolio-3-wrap-shadow.png);
    z-index: -1;
}

.tj-portfolio-3-subtitle {
    font-family: var(--tj-ff-body);
    font-weight: var(--tj-fw-regular);
    line-height: 162%;
    text-transform: uppercase;
    color: var(--tj-color-theme-primary);
}

.tj-portfolio-3-title {
    font-weight: 600;
    font-size: 20px;
    color: var(--tj-color-heading-primary);
}

.tj-portfolio-3-icon span {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
    display: inline-block;
}

.tj-portfolio-3-icon span img {
    -webkit-transform: translateY(-12px);
    -ms-transform: translateY(-12px);
    transform: translateY(-12px);
}

.tj-portfolio-inner-page-area {
    padding-top: 120px;
    padding-bottom: 90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-portfolio-inner-page-area {
        padding-top: 80px;
        padding-bottom: 50px;
    }
}

.tj-portfolio-inner-page-wrapper {
    margin-bottom: 30px;
    overflow: hidden;
}

.tj-portfolio-inner-page-wrapper:hover .tj-portfolio-inner-page-thumb::before {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.tj-portfolio-inner-page-wrapper:hover .tj-portfolio-inner-page-wrap {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.tj-portfolio-inner-page-thumb {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 10px;
}

.tj-portfolio-inner-page-thumb::before {
    content: "";
    position: absolute;
    width: 102%;
    height: 420px;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(430px);
    -ms-transform: translateY(430px);
    transform: translateY(430px);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(7, 124, 234, 0)), to(#0769c6));
    background: linear-gradient(180deg, rgba(7, 124, 234, 0) 0%, #0769c6 100%);
    z-index: 1;
    border-radius: 0 0 10px 10px;
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
}

.tj-portfolio-inner-page-thumb a {
    border-radius: 10px;
}

.tj-portfolio-inner-page-thumb a img {
    width: 100%;
}

.tj-portfolio-inner-page-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 50px 45px 38px;
    z-index: 3;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-portfolio-inner-page-wrap {
        margin: 0 20px 45px 30px;
    }
}

@media (max-width: 575px) {
    .tj-portfolio-inner-page-wrap {
        margin: 0 30px 45px 30px;
    }
}

.tj-portfolio-inner-page-wrap:hover .tj-portfolio-inner-page-icon a {
    -webkit-transform: rotate(176deg);
    -ms-transform: rotate(176deg);
    transform: rotate(176deg);
}

.tj-portfolio-inner-page-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
}

.tj-portfolio-inner-page-title {
    color: var(--tj-color-common-white);
    font-size: 22px;
    margin-bottom: 8px;
}

.tj-portfolio-inner-page-title:hover {
    color: var(--tj-color-theme-secondary);
}

.tj-portfolio-inner-page-paragraph {
    color: var(--tj-color-common-white);
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 14px;
    margin-bottom: 0;
}

.tj-portfolio-inner-page-icon a {
    font-size: 26px;
    color: var(--tj-color-common-white);
    -webkit-transform: rotate(125deg);
    -ms-transform: rotate(125deg);
    transform: rotate(125deg);
    display: inline-block;
}

.tj-portfolio-inner-page-icon a:hover {
    color: var(--tj-color-theme-secondary);
}

.tj-portfolio-details-area {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-portfolio-details-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.tj-portfolio-details-top-content {
    margin-bottom: 28px;
}

.tj-portfolio-details-top-thumb {
    margin-bottom: 32px;
}

.tj-portfolio-details-top-thumb img {
    width: 100%;
    border-radius: 10px;
}

.tj-portfolio-details-top-title {
    font-size: 30px;
    margin-bottom: 18px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-portfolio-details-top-title {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .tj-portfolio-details-bottom-list {
        margin-bottom: 40px;
    }
}

.tj-portfolio-details-bottom-list ul li {
    float: left;
    width: 47%;
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 18px;
    margin-bottom: 9px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-portfolio-details-bottom-list ul li {
        width: 50%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-portfolio-details-bottom-list ul li {
        width: 50%;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .tj-portfolio-details-bottom-list ul li {
        width: 100%;
    }
}

.tj-portfolio-details-bottom-list ul li:last-child {
    margin-bottom: 9px;
}

.tj-portfolio-details-bottom-list ul li span {
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
}

.tj-portfolio-details-bottom-image {
    margin-top: 140px;
}

.tj-portfolio-details-sideber {
    background: #ECF1F5;
    padding: 30px;
    border-radius: 10px;
    margin-top: 7px;
}

.tj-portfolio-details-sideber>ul>li {
    list-style: none;
    border-bottom: 1px solid rgba(55, 58, 63, 0.2);
    padding: 0 0 14px;
    margin-bottom: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 77px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-portfolio-details-sideber>ul>li {
        gap: 45px;
    }
}

@media (max-width: 575px) {
    .tj-portfolio-details-sideber>ul>li {
        gap: 50px;
        font-size: 15px;
    }
}

.tj-portfolio-details-sideber>ul>li:last-child {
    border-bottom: none;
}

.tj-portfolio-details-sideber>ul>li>span {
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 18px;
    color: var(--tj-color-heading-primary);
    min-width: 100px;
}

.tj-portfolio-details-sideber-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tj-portfolio-details-sideber-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tj-portfolio-details-sideber-social ul li {
    list-style: none;
}

.tj-portfolio-details-sideber-social ul li a {
    width: 26px;
    height: 26px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--tj-color-heading-primary);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 12px;
    color: var(--tj-color-heading-primary);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.tj-portfolio-details-sideber-social ul li a i {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.tj-portfolio-details-sideber-social ul li a:hover {
    background: -webkit-gradient(linear, left top, right top, from(#0d57d7), to(#4d8eff));
    background: linear-gradient(90deg, #0d57d7 0%, #4d8eff 100%);
    border-color: var(--tj-color-theme-primary);
}

.tj-portfolio-details-sideber-social ul li a:hover i {
    color: var(--tj-color-common-white);
}

/* !END: Portfolio CSS */

/**----------------------------------------
START: Faq CSS
----------------------------------------*/

.tj-faq-2-area {
    background: var(--tj-color-grey-3);
    position: relative;
    z-index: 1;
}

.tj-faq-2-area .tj-faq-2-bg {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 875px;
    width: 100%;
    z-index: -1;
}

.tj-faq-2-area .tj-faq-2-bg img {
    width: 100%;
}

.tj-faq-2-area .tj-section-wrapper {
    margin-bottom: 30px;
}

.tj-faq-2-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.tj-faq-2-wrapper {
    background: var(--tj-color-common-white);
    margin: 110px 78px 110px 0;
    border-radius: 10px;
    padding: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-faq-2-wrapper {
        margin: 120px 40px 120px 0;
        padding: 50px 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-faq-2-wrapper {
        margin: 120px 0px 120px 0px;
        padding: 35px 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-faq-2-wrapper {
        margin: 80px 0 50px 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-faq-2-wrapper {
        margin: 80px 0 50px 0;
        padding: 50px 20px;
    }
}

@media (max-width: 575px) {
    .tj-faq-2-wrapper {
        margin: 80px 0 40px;
        padding: 30px 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-faq-2-accordion.two {
        margin-bottom: 60px;
    }
}

.tj-faq-2-accordion-item {
    padding: 30px 25px 15px;
    margin-bottom: 22px;
    border: 1px solid #D8DDE1 !important;
    border-radius: 5px !important;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-faq-2-accordion-item {
        padding: 20px 15px 10px;
    }
}

.tj-faq-2-accordion-item:last-child {
    margin-bottom: 0;
}

.tj-faq-2-accordion-title {
    color: var(--tj-color-heading-primary);
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 20px;
    border-bottom: 1px solid transparent !important;
    padding-bottom: 15px;
    padding-right: 25px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-faq-2-accordion-title {
        font-size: 18px;
        padding-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .tj-faq-2-accordion-title {
        font-size: 18px;
        padding-bottom: 10px;
    }
}

.tj-faq-2-accordion-title::before {
    position: absolute;
    content: "\f06e";
    font-family: "Font Awesome 6 Pro";
    right: 0;
    color: var(--tj-color-heading-primary);
    -webkit-transition: 0.6s;
    transition: 0.6s;
    opacity: 0;
    visibility: hidden;
    font-weight: 400;
}

.tj-faq-2-accordion-title::after {
    position: absolute;
    content: "\f070";
    font-family: "Font Awesome 6 Pro";
    right: 0;
    color: var(--tj-color-heading-primary);
    -webkit-transition: 0.6s;
    transition: 0.6s;
    font-weight: 400;
}

.tj-faq-2-accordion-title:not(.collapsed) {
    border-bottom: 1px solid #D8DDE1 !important;
}

.tj-faq-2-accordion-title:not(.collapsed)::before {
    opacity: 1;
    visibility: visible;
    color: var(--tj-color-theme-primary);
}

.tj-faq-2-accordion-title:not(.collapsed)::after {
    opacity: 0;
    visibility: hidden;
}

.tj-faq-2-accordion-pera {
    padding: 20px 0;
}

@media (max-width: 575px) {
    .tj-faq-2-accordion-pera {
        font-size: 15px;
    }
}

.tj-faq-2-thumb {
    margin-left: -50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-faq-2-thumb {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-faq-2-thumb {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .tj-faq-2-thumb {
        margin-left: 0;
        text-align: center;
    }
}

.tj-faq-2-thumb img {
    max-width: 698px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-faq-2-thumb img {
        max-width: 535px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-faq-2-thumb img {
        max-width: 500px;
    }
}

@media (max-width: 575px) {
    .tj-faq-2-thumb img {
        max-width: 300px;
    }
}

/* !END: Faq CSS */

/**----------------------------------------
START: Contact CSS
----------------------------------------*/

/* !END: Contact CSS */

.tj-contact-area {
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-contact-area .tj-submit-button {
        text-align: center;
    }
    .tj-contact-area .tj-submit-button .tj-contact-btn {
        width: 100%;
    }
}

.tj-contact-bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.tj-contact-bg-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-contact-bg-shape-2 {
        z-index: -1;
    }
}

.tj-contact-bg-shape-3 {
    position: absolute;
    right: 0;
    top: 53%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: -1;
    opacity: 0.09;
}

.tj-contact-section-wrapper .tj-section-wrapper {
    margin-bottom: 48px;
}

.tj-contact-thumb {
    margin-left: 55px;
    position: relative;
    z-index: 1;
}

.tj-contact-thumb-shape-1 {
    position: absolute;
    bottom: 45%;
    right: 80px;
    max-width: 90px;
    width: 100%;
    z-index: -1;
}

.tj-contact-thumb-shape-1 img {
    width: 100%;
}

.tj-contact-thumb-shape-2 {
    position: absolute;
    top: 200px;
    left: -64px;
    z-index: -1;
    -webkit-animation: moving 4s linear infinite;
    animation: moving 4s linear infinite;
}

.tj-contact-thumb-shape-3 {
    position: absolute;
    top: 305px;
    left: -216px;
    z-index: -1;
    -webkit-animation: moving 8s linear infinite;
    animation: moving 8s linear infinite;
}

.tj-contact-thumb-shape-4 {
    position: absolute;
    bottom: 195px;
    left: -80px;
    z-index: -1;
    -webkit-animation: moving 6s linear infinite;
    animation: moving 6s linear infinite;
}

.tj-contact-thumb-shape-5 {
    position: absolute;
    left: -245px;
    bottom: 120px;
    z-index: -1;
    -webkit-animation: moving 6s linear infinite;
    animation: moving 6s linear infinite;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-contact-thumb {
        margin-left: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-contact-thumb {
        text-align: center;
        margin-left: 0px;
    }
}

.tj-contact-form-wrapper {
    padding: 120px 0 120px 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-contact-form-wrapper {
        padding: 120px 0 120px 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-contact-form-wrapper {
        padding: 120px 0 120px 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-contact-form-wrapper {
        padding: 50px 0 80px 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-contact-form-wrapper {
        padding: 50px 0 80px;
    }
}

.tj-contact-form-wrapper .form-input input {
    background: var(--tj-color-grey-3);
    padding: 18px 20px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.tj-contact-form-wrapper .form-input input::-webkit-input-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-form-wrapper .form-input input::-moz-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-form-wrapper .form-input input:-ms-input-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-form-wrapper .form-input input::-ms-input-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-form-wrapper .form-input input::placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-form-wrapper .form-input textarea {
    background: #ECF1F5;
    padding: 16px 20px;
    margin-bottom: 27px;
    resize: none;
    height: 190px;
    border-radius: 5px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-contact-form-wrapper .form-input textarea {
        margin-top: 30px;
    }
}

.tj-contact-form-wrapper .form-input textarea::-webkit-input-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-form-wrapper .form-input textarea::-moz-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-form-wrapper .form-input textarea:-ms-input-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-form-wrapper .form-input textarea::-ms-input-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-form-wrapper .form-input textarea::placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-form-wrapper .form-input .nice-select {
    background: #ECF1F5;
    padding: 11px 20px;
    border-radius: 5px;
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-form-wrapper .form-input .nice-select::after {
    border-bottom: 2px solid #696969;
    border-right: 2px solid #696969;
    height: 8px;
    right: 20px;
    width: 8px;
}

.tj-contact-form-wrapper .form-input .nice-select .list {
    width: 100%;
    background: var(--tj-color-common-white);
    -webkit-box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}

.tj-contact-2-area {
    background: var(--tj-color-theme-primary);
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
}

.tj-contact-2-area .tj-section-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tj-contact-2-area .tj-section-wrapper .sec-text {
    max-width: 525px;
    width: 100%;
}

.tj-contact-2-area .tj-section-wrapper .sec-text .tj-section-subtitle {
    color: var(--tj-color-common-white);
}

.tj-contact-2-area .tj-section-wrapper .sec-text .tj-section-title {
    color: var(--tj-color-common-white);
}

.tj-contact-2-area .tj-section-wrapper .desc {
    max-width: 395px;
    width: 100%;
    color: var(--tj-color-common-white);
}

.tj-contact-2-area .tj-section-wrapper .desc p:last-child {
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-contact-2-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .tj-contact-2-area .tj-section-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
    .tj-contact-2-area .tj-section-wrapper .desc {
        max-width: 100%;
    }
}

.tj-contact-2-top-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    margin: 0 0 45px;
    padding-bottom: 7px;
}

.tj-contact-2-section-wrapper .tj-section-subtitle {
    color: var(--tj-color-common-white);
}

.tj-contact-2-section-wrapper .tj-section-subtitle img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.tj-contact-2-section-wrapper .tj-section-title {
    color: var(--tj-color-common-white);
}

.tj-contact-2-top-paragraph {
    color: var(--tj-color-common-white);
    margin-top: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-contact-2-top-paragraph {
        font-size: 14px;
    }
}

.tj-contact-2-form-wrapper .form-input input {
    background: var(--tj-color-common-white);
    padding: 18px 20px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.tj-contact-2-form-wrapper .form-input input::-webkit-input-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-2-form-wrapper .form-input input::-moz-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-2-form-wrapper .form-input input:-ms-input-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-2-form-wrapper .form-input input::-ms-input-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-2-form-wrapper .form-input input::placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-2-form-wrapper .form-input input:focus {
    border: 1px solid var(--tj-color-theme-secondary) !important;
}

.tj-contact-2-form-wrapper .form-input textarea {
    background: #ECF1F5;
    padding: 16px 20px;
    margin-bottom: 27px;
    resize: none;
    height: 190px;
    border-radius: 5px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-contact-2-form-wrapper .form-input textarea {
        margin-top: 30px;
    }
}

.tj-contact-2-form-wrapper .form-input textarea::-webkit-input-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-2-form-wrapper .form-input textarea::-moz-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-2-form-wrapper .form-input textarea:-ms-input-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-2-form-wrapper .form-input textarea::-ms-input-placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-2-form-wrapper .form-input textarea::placeholder {
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-2-form-wrapper .form-input .nice-select {
    background: var(--tj-color-common-white);
    padding: 11px 20px;
    border-radius: 5px;
    font-family: var(--tj-ff-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj-contact-2-form-wrapper .form-input .nice-select::after {
    border-bottom: 2px solid #696969;
    border-right: 2px solid #696969;
    height: 8px;
    right: 20px;
    width: 8px;
}

.tj-contact-2-form-wrapper .form-input .nice-select .list {
    width: 100%;
    background: var(--tj-color-common-white);
    -webkit-box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
    margin-top: 0;
}

.tj-contact-2-form-wrapper .form-input .nice-select:focus {
    border: 1px solid var(--tj-color-theme-secondary) !important;
}

@media (max-width: 575px) {
    .tj-contact-2-form-wrapper .form-input .nice-select {
        margin-bottom: 30px;
    }
}

.tj-contact-2-btn {
    background: var(--tj-color-theme-secondary);
    color: var(--tj-color-heading-primary);
    display: block;
    width: 100%;
    padding: 21px 0;
    font-weight: var(--tj-fw-bold);
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 5px;
}

.tj-contact-2-bg-shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.tj-contact-2-bg-shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.tj-contact-2-button .tj-hover-btn-circle-dot {
    background: var(--tj-color-common-white);
}

.tj-contact-2-button:hover .tj-hover-btn-circle-dot {
    width: 900px;
    height: 900px;
}

.tj-contact-inner-page-area {
    padding: 120px 0 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-contact-inner-page-area {
        padding: 80px 0 80px;
    }
}

.tj-contact-inner-page-info-box {
    margin-left: 26px;
    margin-top: -25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-contact-inner-page-info-box {
        margin-left: 0;
    }
}

.tj-contact-inner-page-info-title {
    font-size: 30px;
    margin-bottom: 50px;
}

.tj-contact-inner-page-info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    min-width: 245px;
}

.tj-contact-inner-page-info-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 90px;
    -moz-column-gap: 90px;
    column-gap: 90px;
    row-gap: 50px;
    margin-bottom: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-contact-inner-page-info-list {
        -webkit-column-gap: 26px;
        -moz-column-gap: 26px;
        column-gap: 26px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-contact-inner-page-info-list {
        -webkit-column-gap: 0;
        -moz-column-gap: 0;
        column-gap: 0;
    }
}

.tj-contact-inner-page-info-list li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tj-contact-inner-page-info-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    line-height: 1;
    font-size: 30px;
    color: var(--tj-color-common-white);
    background: -webkit-gradient(linear, left top, right top, from(#0d57d7), to(#4d8eff));
    background: linear-gradient(90deg, #0d57d7 0%, #4d8eff 100%);
    border-radius: 5px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-contact-inner-page-info-icon {
        width: 60px;
        height: 60px;
    }
}

.tj-contact-inner-page-info-icon i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

.tj-contact-inner-page-info-number {
    font-size: 18px;
    margin-bottom: 5px;
}

.tj-contact-inner-page-info-link a {
    display: block;
}

.tj-contact-inner-page-info-link a:hover {
    color: var(--tj-color-theme-primary);
}

.tj-contact-inner-page-info-link span {
    display: block;
}

.tj-contact-inner-page-media-title {
    margin-bottom: 10px;
}

.tj-contact-inner-page-media-paragraph {
    color: var(--tj-color-heading-primary);
    margin-bottom: 28px;
}

.tj-contact-inner-page-media-socials ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 0;
}

.tj-contact-inner-page-media-socials ul li {
    list-style: none;
}

.tj-contact-inner-page-media-socials ul li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    line-height: 1;
    color: var(--tj-color-heading-primary);
    background: var(--tj-color-grey-3);
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.tj-contact-inner-page-media-socials ul li a:hover {
    color: var(--tj-color-common-white);
    background: var(--tj-color-theme-primary);
}

.tj-contact-inner-page-form {
    max-width: 600px;
    width: 100%;
    margin-left: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-contact-inner-page-form {
        max-width: inherit;
        margin-left: inherit;
        margin-bottom: 80px;
    }
}

.tj-contact-inner-page-form-title {
    color: var(--tj-color-heading-primary);
    margin-bottom: 40px;
}

.tj-contact-inner-page-form form .form-input {
    margin-bottom: 20px;
}

.tj-contact-inner-page-form form .form-input textarea,
.tj-contact-inner-page-form form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.tj-contact-inner-page-form form .form-input input[type=email],
.tj-contact-inner-page-form form .form-input input[type=text] {
    color: var(--tj-color-text-body);
    font-family: var(--tj-ff-heading);
    font-size: 14px;
    background: transparent;
    border: 1px solid rgba(105, 105, 105, 0.1);
    letter-spacing: 0.32px;
    padding: 17px 25px;
    border-radius: 7px;
}

.tj-contact-inner-page-form form .form-input textarea::-ms-input-placeholder,
.tj-contact-inner-page-form form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder,
.tj-contact-inner-page-form form .form-input input[type=email]::-ms-input-placeholder,
.tj-contact-inner-page-form form .form-input input[type=text]::-ms-input-placeholder {
    color: var(--tj-color-text-body);
    letter-spacing: 0.32px;
    font-size: 14px;
}

.tj-contact-inner-page-form form .form-input textarea::-webkit-input-placeholder,
.tj-contact-inner-page-form form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder,
.tj-contact-inner-page-form form .form-input input[type=email]::-webkit-input-placeholder,
.tj-contact-inner-page-form form .form-input input[type=text]::-webkit-input-placeholder {
    color: var(--tj-color-text-body);
    letter-spacing: 0.32px;
    font-size: 14px;
}

.tj-contact-inner-page-form form .form-input textarea::-moz-placeholder,
.tj-contact-inner-page-form form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder,
.tj-contact-inner-page-form form .form-input input[type=email]::-moz-placeholder,
.tj-contact-inner-page-form form .form-input input[type=text]::-moz-placeholder {
    color: var(--tj-color-text-body);
    letter-spacing: 0.32px;
    font-size: 14px;
}

.tj-contact-inner-page-form form .form-input textarea:-ms-input-placeholder,
.tj-contact-inner-page-form form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder,
.tj-contact-inner-page-form form .form-input input[type=email]:-ms-input-placeholder,
.tj-contact-inner-page-form form .form-input input[type=text]:-ms-input-placeholder {
    color: var(--tj-color-text-body);
    letter-spacing: 0.32px;
    font-size: 14px;
}

.tj-contact-inner-page-form form .form-input textarea::-ms-input-placeholder,
.tj-contact-inner-page-form form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder,
.tj-contact-inner-page-form form .form-input input[type=email]::-ms-input-placeholder,
.tj-contact-inner-page-form form .form-input input[type=text]::-ms-input-placeholder {
    color: var(--tj-color-text-body);
    letter-spacing: 0.32px;
    font-size: 14px;
}

.tj-contact-inner-page-form form .form-input textarea::placeholder,
.tj-contact-inner-page-form form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.tj-contact-inner-page-form form .form-input input[type=email]::placeholder,
.tj-contact-inner-page-form form .form-input input[type=text]::placeholder {
    color: var(--tj-color-text-body);
    letter-spacing: 0.32px;
    font-size: 14px;
}

.tj-contact-inner-page-form form .form-input textarea:focus,
.tj-contact-inner-page-form form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.tj-contact-inner-page-form form .form-input input[type=email]:focus,
.tj-contact-inner-page-form form .form-input input[type=text]:focus {
    border: 1px solid var(--tj-color-theme-primary);
}

.tj-contact-inner-page-form form .form-input textarea {
    min-height: 125px;
    resize: none;
}

.tj-contact-inner-page-form .submit-button {
    margin-top: 35px;
}

.tj-contact-inner-page-form .submit-button .tj-primary-btn {
    width: 100%;
    border-radius: 7px;
}

.tj-contact-inner-page-form .submit-button .tj-primary-btn.tj-hover-btn:hover {
    background: inherit;
    color: inherit;
}

.tj-contact-inner-page-form .submit-button .tj-primary-btn.tj-hover-btn:hover .tj-hover-btn-circle-dot {
    width: 1500px;
    height: 1000px;
}

.tj-contact-inner-page-form .submit-button .tj-primary-btn::before {
    border-radius: 7px;
}

.tj-contact-inner-page-form .submit-button .tj-primary-btn:hover {
    color: var(--tj-color-heading-primary);
}

/**----------------------------------------
START: Map CSS
----------------------------------------*/

.tj-map-area {
    overflow: hidden;
}

.tj-map-wrapper {
    position: relative;
    top: 10px;
}

.tj-map-wrapper iframe {
    width: 100%;
    min-height: 715px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-map-wrapper iframe {
        width: 100%;
        min-height: 450px;
    }
}

/* !END: Map CSS */

/**----------------------------------------
START: Testimonial CSS
----------------------------------------*/

.tj-testimonial-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0 120px;
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-testimonial-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.tj-testimonial-section-title {
    max-width: 460px;
    margin: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-testimonial-section-title {
        max-width: 450px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-testimonial-section-title {
        max-width: 444px;
    }
}

.tj-testimonial-bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.tj-testimonial-bg-shape-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    height: 100%;
}

.tj-testimonial-wrapper {
    background: var(--tj-color-common-white);
    border-radius: 50px 0;
    padding: 38px 34px 32px 40px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.tj-testimonial-wrapper::before {
    content: "";
    position: absolute;
    width: 171px;
    height: 157px;
    -webkit-mask-image: url(../images/testimonial/testimonial-box-shape.svg);
    mask-image: url(../images/testimonial/testimonial-box-shape.svg);
    background: var(--tj-color-theme-primary);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    top: 0;
    left: 0;
    z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-testimonial-wrapper {
        padding: 35px 20px 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-testimonial-wrapper {
        padding: 30px 15px;
    }
}

.tj-testimonial-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .tj-testimonial-top {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

.tj-testimonial-top-member-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 575px) {
    .tj-testimonial-top-member-details {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

.tj-testimonial-top-member-img {
    width: 90px;
    height: 90px;
    margin-right: 26px;
}

.tj-testimonial-top-member-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--tj-color-common-white);
}

@media (max-width: 575px) {
    .tj-testimonial-top-member-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.tj-testimonial-top-member-title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 0;
}

.tj-testimonial-top-member-paragraph {
    font-size: 14px;
    color: var(--tj-color-heading-primary);
    margin-bottom: 0;
}

.tj-testimonial-top-quate-icon span {
    font-size: 60px;
    color: var(--tj-color-theme-primary);
    opacity: 0.2;
}

@media (max-width: 575px) {
    .tj-testimonial-top-quate-icon span {
        font-size: 45px;
    }
}

.tj-testimonial-bottom-paragraph {
    font-style: italic;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-testimonial-bottom-paragraph {
        font-size: 17px;
    }
}

.tj-testimonial-slide-dot {
    margin-top: 60px;
}

.tj-testimonial-slide-dot .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--tj-color-theme-primary);
    margin: 0 8px 0;
    position: relative;
    z-index: 1;
    opacity: 1;
}

.tj-testimonial-slide-dot .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: transparent;
    border-radius: 50%;
    border: 2px solid var(--tj-color-theme-primary);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

.tj-testimonial-slide-dot .swiper-pagination-bullet button {
    display: none;
}

.tj-testimonial-slide-dot .swiper-pagination-bullet-active::before {
    visibility: visible;
    opacity: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-testimonial-slide-dot {
        margin-top: 35px;
    }
}

.tj-testimonial-2-area {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-testimonial-2-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.tj-testimonial-2-main-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-testimonial-2-main-wrapper {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.tj-testimonial-2-active {
    max-width: 845px;
    width: 100%;
    padding: 5px 30px 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-testimonial-2-active {
        max-width: 760px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-testimonial-2-active {
        max-width: 730px;
        padding: 5px 30px 5px 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-testimonial-2-active {
        max-width: 536px;
        padding: 5px 10px 5px;
    }
}

@media (max-width: 575px) {
    .tj-testimonial-2-active {
        max-width: 356px;
        padding: 5px 10px 5px;
    }
}

.tj-testimonial-2-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--tj-color-common-white);
    -webkit-box-shadow: 0px 0px 9px 0px rgba(3, 4, 26, 0.1);
    box-shadow: 0px 0px 9px 0px rgba(3, 4, 26, 0.1);
    border-radius: 10px;
    overflow: hidden;
    padding-right: 36px;
    position: relative;
    max-width: 785px;
    width: 100%;
    z-index: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-testimonial-2-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 30px;
        padding: 40px 35px 15px;
    }
}

.tj-testimonial-2-thumb {
    margin-right: 40px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-testimonial-2-thumb {
        margin-right: 0;
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }
}

.tj-testimonial-2-thumb img {
    max-width: 255px;
    border-radius: 10px 0 0 10px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-testimonial-2-thumb img {
        border-left: none;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.tj-testimonial-2-quate-icon span {
    font-size: 60px;
    color: var(--tj-color-theme-primary);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-bottom: 26px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-testimonial-2-quate-icon span {
        font-size: 32px;
        position: absolute;
        top: 29px;
        left: 110px;
    }
}

.tj-testimonial-2-main-paragraph {
    font-style: italic;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 28px;
}

@media (max-width: 575px) {
    .tj-testimonial-2-main-paragraph {
        font-size: 16px;
    }
}

.tj-testimonial-2-rating span {
    margin-bottom: 10px;
    display: inline-block;
}

.tj-testimonial-2-title {
    margin-bottom: 6px;
}

.tj-testimonial-2-arrow-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border-radius: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-testimonial-2-arrow-box.mobile-device {
        display: none;
    }
}

.tj-testimonial-2-arrow-box button {
    position: relative;
    color: var(--tj-color-common-white);
    font-size: 30px;
    height: 385px;
    width: 225px;
    border-radius: 10px;
    z-index: 1;
}

.tj-testimonial-2-arrow-box button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(7, 124, 234, 0.8);
    border-radius: 10px;
    z-index: 1;
}

.tj-testimonial-2-arrow-box button img {
    border-radius: 10px;
}

.tj-testimonial-2-arrow-box button i {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-testimonial-2-arrow-box button {
        width: 138px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-testimonial-2-arrow-box button {
        width: 90px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-testimonial-2-arrow-box button {
        display: none;
    }
}

.tj-testimonial-2-arrow-thumb img {
    -o-object-fit: cover;
    object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.tj-testimonial-2-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.tj-testimonial-2-shape img {
    max-width: 164px;
}

.tj-testimonial-2-arrow button {
    width: 60px;
    height: 60px;
    line-height: 1;
    font-size: 24px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--tj-color-common-white);
    background-color: var(--tj-color-theme-primary);
    position: absolute;
    left: -30px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 3;
}

.tj-testimonial-2-arrow button.slider-next {
    margin-bottom: 10px;
    left: auto;
    right: 5px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-testimonial-2-arrow button.slider-next {
        right: -8px;
    }
}

@media (max-width: 575px) {
    .tj-testimonial-2-arrow button.slider-next {
        right: -5px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-testimonial-2-arrow button {
        width: 45px;
        height: 45px;
        left: -8px;
    }
}

@media (max-width: 575px) {
    .tj-testimonial-2-arrow button {
        width: 40px;
        height: 40px;
        font-size: 20px;
        left: -5px;
    }
}

.tj-testimonial-3-area {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 120px;
}

.tj-testimonial-3-area .tj-section-wrapper .tj-section-paragraph {
    margin-top: 15px;
    margin-bottom: 35px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-testimonial-3-area {
        padding-top: 80px;
        padding-bottom: 0px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-testimonial-3-section-wrapper {
        margin-bottom: 60px;
    }
}

.tj-testimonial-3-bottom-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.tj-testimonial-3-active {
    height: 570px;
    padding-left: 171px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-testimonial-3-active {
        padding-left: 115px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-testimonial-3-active {
        padding-left: 0;
    }
}

@media (max-width: 575px) {
    .tj-testimonial-3-active {
        height: 620px;
        padding-left: 0;
    }
}

.tj-testimonial-3-active .swiper-slide.swiper-slide-active {
    margin-left: -110px;
    border-left: 5px solid rgb(7, 124, 234);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-testimonial-3-active .swiper-slide.swiper-slide-active {
        margin-left: 0;
    }
}

.tj-testimonial-3-active .swiper-slide.swiper-slide-active .tj-testimonial-3-quote-icon span {
    opacity: 1;
}

.tj-testimonial-3-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: var(--tj-color-common-white);
    -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 20px 20px 18px 24px;
    border-left: 5px solid rgba(7, 124, 234, 0.15);
    max-width: 572px;
    height: 170px !important;
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
}

@media (max-width: 575px) {
    .tj-testimonial-3-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 20px;
        height: auto !important;
    }
}

.tj-testimonial-3-thumb {
    margin-right: 30px;
}

.tj-testimonial-3-thumb img {
    max-width: 110px;
    border-radius: 50%;
    height: 110px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-testimonial-3-thumb img {
        max-width: 90px;
    }
}

@media (max-width: 575px) {
    .tj-testimonial-3-thumb {
        margin-right: 0px;
    }
    .tj-testimonial-3-thumb img {
        max-width: 75px;
        height: 75px;
    }
}

.tj-testimonial-3-quote-icon span {
    font-size: 40px;
    color: var(--tj-color-theme-primary);
    opacity: 0.15;
}

.tj-testimonial-3-paragraph {
    font-style: italic;
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-testimonial-3-paragraph {
        font-size: 14px;
    }
}

.star-ratings {
    unicode-bidi: bidi-override;
    font-size: 20px;
    letter-spacing: 4px;
    line-height: 1;
    position: relative;
    margin: 0;
    padding: 0;
    -webkit-text-stroke: 1px var(--tj-color-theme-secondary);
    margin-bottom: 10px;
}

.star-ratings .fill-ratings {
    color: var(--tj-color-theme-secondary);
    padding: 0;
    position: absolute;
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    overflow: hidden;
}

.star-ratings .fill-ratings span {
    display: inline-block;
}

.star-ratings .empty-ratings {
    padding: 0;
    display: block;
    z-index: 0;
    color: var(--tj-color-common-white);
}

/* !END: Testimonial CSS */

/**----------------------------------------
START: Blog CSS
----------------------------------------*/

.tj-blog-area {
    padding-top: 120px;
    padding-bottom: 90px;
}

.tj-blog-area .tj-section-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-blog-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.tj-blog-wrapper {
    background: var(--tj-color-common-white);
    -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.tj-blog-wrapper:hover .tj-blog-thumb img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

.tj-blog-wrapper:hover .tj-blog-wrapper-shape {
    bottom: 0;
}

.tj-blog-wrapper-shape {
    position: absolute;
    bottom: -135px;
    left: -1px;
    z-index: -1;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.tj-blog-wrapper-shape img {
    width: 100%;
}

.tj-blog-thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.tj-blog-thumb img {
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.tj-blog-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 18px;
}

.tj-blog-meta span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1;
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-medium);
    font-size: 14px;
    border-right: 1px solid #D8DDE1;
    padding-right: 20px;
    margin-right: 20px;
}

.tj-blog-meta span:last-child {
    border-right: none;
    padding-right: 0px;
    margin-right: 0px;
}

.tj-blog-meta span i {
    color: var(--tj-color-theme-primary);
    margin-right: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

.tj-blog-meta span a {
    padding-left: 4px;
}

.tj-blog-meta span a:hover {
    color: var(--tj-color-theme-primary);
}

.tj-blog-content {
    padding: 30px 30px 30px 35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-blog-content {
        padding: 30px 20px;
    }
}

@media (max-width: 575px) {
    .tj-blog-content {
        padding: 30px 15px;
    }
}

.tj-blog-title {
    line-height: 1.42;
    margin-bottom: 14px;
}

.tj-blog-title a:hover {
    color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-blog-paragraph {
        font-size: 14px;
    }
}

.tj-blog-date {
    position: absolute;
    top: 30px;
    left: 30px;
    border-radius: 0px 40px 40px 40px;
    width: 70px;
    height: 70px;
    background: var(--tj-color-theme-primary);
    line-height: 1.1;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    z-index: 1;
}

.tj-blog-date span {
    text-align: center;
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 30px;
    color: var(--tj-color-common-white);
    margin-bottom: 0;
    display: block;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.tj-blog-date span.two {
    font-size: 14px;
}

.tj-blog-2-area {
    padding: 120px 0 90px;
    padding-top: 120px;
    padding-bottom: 90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-blog-2-area {
        padding-top: 80px;
        padding-bottom: 50px;
    }
}

.tj-blog-2-section-wrapper .tj-section-wrapper {
    margin-bottom: 50px;
}

.tj-blog-2-wrapper {
    padding: 25px 30px;
    border: 1px solid var(--tj-color-border-2);
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-blog-2-wrapper {
        padding: 25px 21px;
    }
}

.tj-blog-2-wrapper.event .tj-blog-2-thumb img {
    border-radius: 200px 200px 0 0;
}

.tj-blog-2-thumb {
    border-radius: 10px 10px 200px 200px;
    overflow: hidden;
}

.tj-blog-2-thumb a {
    display: inline-block;
}

.tj-blog-2-thumb img {
    width: 100%;
    border-radius: 0 0 200px 200px;
    -webkit-transition: 1s;
    transition: 1s;
}

.tj-blog-2-content {
    padding: 24px 0 0;
}

.tj-blog-3-area {
    padding-top: 120px;
    padding-bottom: 90px;
}

.tj-blog-3-area .tj-section-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-blog-3-area {
        padding-top: 80px;
        padding-bottom: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-blog-3-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.tj-blog-3-wrapper {
    background: var(--tj-color-common-white);
    -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    padding: 28px 42px 24px;
    border-radius: 10px;
    margin-bottom: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-blog-3-wrapper {
        padding: 28px 22px 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-blog-3-wrapper {
        padding: 28px 20px 24px;
    }
}

@media (max-width: 575px) {
    .tj-blog-3-wrapper {
        padding: 28px 20px 24px;
    }
}

.tj-blog-3-wrapper:hover .tj-blog-3-thumb img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.tj-blog-3-content {
    padding: 0;
}

.tj-blog-3-title {
    margin-bottom: 26px;
}

.tj-blog-3-thumb {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
}

.tj-blog-3-thumb img {
    border-radius: 10px;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-blog-3-thumb img {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.tj-blog-3-center-wrapper:hover .tj-blog-3-center-button {
    top: 50%;
    visibility: visible;
    opacity: 1;
}

.tj-blog-3-center-wrapper:hover .tj-blog-3-center-thumb img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

.tj-blog-3-center-thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
}

.tj-blog-3-center-thumb img {
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    border-radius: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj-blog-3-center-thumb img {
        height: 480px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-blog-3-center-thumb img {
        width: 100%;
        margin-bottom: 30px;
        height: 476px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-blog-3-center-thumb img {
        width: 100%;
        margin-bottom: 30px;
    }
}

.tj-blog-3-center-button {
    position: absolute;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.tj-blog-3-center-button .tj-blog-btn {
    background: var(--tj-color-common-white);
    padding: 12px 25px;
    display: inline-block;
    border-radius: 5px;
}

.tj-blog-2-area .tj-blog-2-wrapper:hover .tj-blog-2-thumb img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

.tj-blog-2-area .col-md-6:nth-child(even) .tj-blog-2-wrapper .tj-blog-2-thumb {
    border-radius: 200px 200px 10px 10px;
}

/* !END: Blog CSS */

/**----------------------------------------
START: Blog-Details CSS
----------------------------------------*/

.blog-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 10px;
    margin-bottom: 15px;
}

.blog-meta>span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: var(--tj-fw-medium);
    color: var(--tj-color-text-body);
}

.blog-meta>span a {
    color: inherit;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.blog-meta>span a:hover {
    color: var(--tj-color-theme-primary);
}

.blog-meta>span i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 15px;
    line-height: 1;
    color: var(--tj-color-theme-primary);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-meta {
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
    .blog-meta span i {
        font-size: inherit;
    }
}

.tj-blog-page,
.tj-blog-details {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-blog-page,
    .tj-blog-details {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

.tj-blog-page .blog-section-shape .shape-1,
.tj-blog-details .blog-section-shape .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
}

.tj-blog-page .blog-section-shape .shape-2,
.tj-blog-details .blog-section-shape .shape-2 {
    position: absolute;
    top: 15%;
    right: 30px;
}

.tj-blog-page .blog-section-shape .shape-3,
.tj-blog-details .blog-section-shape .shape-3 {
    position: absolute;
    top: 18%;
    right: -80px;
}

.tj-blog-page .blog-section-shape .shape-4,
.tj-blog-details .blog-section-shape .shape-4 {
    position: absolute;
    bottom: 15%;
    left: -50px;
}

.tj-blog-page .blog-section-shape .shape-5,
.tj-blog-details .blog-section-shape .shape-5 {
    position: absolute;
    bottom: 10%;
    left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-blog-page .blog-section-shape,
    .tj-blog-details .blog-section-shape {
        display: none;
    }
}

.tj-post-wrapper {
    position: relative;
    z-index: 1;
}

.tj-post-wrapper .tj-post-navigation button {
    position: absolute;
    top: 46%;
    color: var(--tj-color-common-white);
    font-size: 16px;
    z-index: 1;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background: transparent;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 25px 0;
    border: 2px solid var(--tj-color-common-white);
}

.tj-post-wrapper .tj-post-navigation button:hover {
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
    border: 2px solid var(--tj-color-theme-primary);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-post-wrapper .tj-post-navigation button {
        width: 50px;
        height: 50px;
        margin: 0;
    }
}

.tj-post-wrapper .blog-thumb-image {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.tj-post-wrapper .blog-thumb-image a {
    display: inline-block;
}

.tj-post-wrapper .blog-thumb-image img {
    border-radius: 10px;
}

.tj-post-wrapper .blog-thumb-image .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.tj-post-wrapper .blog-thumb-image .video-play a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    font-size: 35px;
    line-height: 1;
    border-radius: 50%;
    background: var(--tj-color-theme-primary);
    background-size: 150%;
    -webkit-animation: animate-pulse 3s linear infinite;
    animation: animate-pulse 3s linear infinite;
}

.tj-post-wrapper .blog-thumb-image .video-play a:hover {
    background-size: 100%;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-post-wrapper .blog-thumb-image .video-play a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.tj-post-wrapper .blog-thumb-image .video-play a i {
    color: var(--tj-color-common-white);
}

.tj-post-wrapper .blog-thumb-image iframe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    border: none;
}

.tj-post-wrapper .blog-thumb-image .tj-post__gallery .owl-nav button {
    width: 50px;
    height: 50px;
    background-color: var(--tj-color-common-white);
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    color: var(--tj-color-common-black);
    position: absolute;
    top: 50%;
    left: 25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.tj-post-wrapper .blog-thumb-image .tj-post__gallery .owl-nav button i {
    color: var(--tj-color-common-black);
}

.tj-post-wrapper .blog-thumb-image .tj-post__gallery .owl-nav button.owl-next {
    left: auto;
    right: 25px;
}

.tj-post-wrapper .blog-thumb-image .tj-post__gallery .owl-nav button:hover {
    background-color: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
}

.tj-post-wrapper .blog-thumb-image .tj-post__gallery .owl-nav button:hover i {
    color: var(--tj-color-common-white);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-post-wrapper .blog-thumb-image img {
        min-height: 250px;
        height: auto;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .tj-post-wrapper .blog-thumb-image iframe {
        height: 250px;
    }
    .tj-post-wrapper .blog-thumb-image .tj-post__gallery .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
        left: 10px;
    }
    .tj-post-wrapper .blog-thumb-image .tj-post__gallery .owl-nav button.owl-next {
        left: auto;
        right: 10px;
    }
}

.tj-post-wrapper .details-title {
    margin-bottom: 15px;
}

.tj-post-wrapper .details-title .title {
    font-size: 30px;
    margin-bottom: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-post-wrapper .details-title .title {
        font-size: 22px;
    }
}

.tj-post-wrapper .blog-video-area {
    margin-bottom: 50px;
}

.tj-post-wrapper .blog-video-area .video-title {
    margin-bottom: 26px;
}

.tj-post-wrapper .blog-video-area .video-title p {
    margin-bottom: 0;
}

.tj-post-wrapper .blog-video-area .video-box {
    margin-bottom: 15px;
}

.tj-post-wrapper .blog-video-area p {
    margin-bottom: 0;
}

.tj-post-wrapper .tj-tags-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(7, 124, 234, 0.1);
    border-bottom: 1px solid rgba(7, 124, 234, 0.1);
    padding: 20px 0 20px;
    margin: 50px 0 55px;
}

.tj-post-wrapper .tj-tags-post .tj-tag {
    width: calc(100% - 250px);
    gap: 10px;
}

.tj-post-wrapper .tj-tags-post.no-social-share .tj-tag {
    width: 100%;
}

.tj-post-wrapper .tj-tags-post .post-share {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tj-post-wrapper .tj-tags-post .post-share ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tj-post-wrapper .tj-tags-post .post-share ul li {
    list-style: none;
}

.tj-post-wrapper .tj-tags-post .post-share ul li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    line-height: 1;
    border-radius: 50%;
    background: transparent;
    color: var(--tj-color-text-body);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-size: 12px;
    border: 1px solid var(--tj-color-heading-primary);
}

.tj-post-wrapper .tj-tags-post .post-share ul li a:hover {
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
    border-color: var(--tj-color-theme-primary);
}

.tj-post-wrapper .tj-tags-post .post-share .tag__title {
    margin-right: 10px;
    font-family: var(--tj-ff-heading);
    font-size: 24px;
    color: var(--tj-color-heading-primary);
    font-weight: var(--tj-fw-sbold);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-post-wrapper .tj-tags-post {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .tj-post-wrapper .tj-tags-post .tj-tag {
        width: 100%;
    }
    .tj-post-wrapper .tj-tags-post .post-share {
        margin-left: 0;
    }
}

.video-image {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.video-image::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: -1;
}

.video-image img {
    width: 100%;
}

.video-image a {
    display: inline-block;
}

.video-image .popup-videos-button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    line-height: 1;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-secondary)), to(var(--tj-color-theme-primary)));
    background-image: linear-gradient(90deg, var(--tj-color-theme-secondary) 0%, var(--tj-color-theme-primary) 100%);
    font-size: 30px;
    color: var(--tj-color-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .video-image .popup-videos-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.video-image .popup-videos-button i {
    line-height: 1;
}

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

.check-list ul li {
    color: var(--tj-color-light-3);
    font-weight: var(--tj-fw-sbold);
    font-family: var(--tj-ff-body);
    position: relative;
    z-index: 1;
    padding-left: 25px;
}

.check-list ul li:not(:last-child) {
    margin-bottom: 10px;
}

.check-list ul li i {
    width: 18px;
    height: 18px;
    line-height: 1;
    font-size: 12px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: var(--tj-fw-sbold);
    color: var(--tj-color-common-white);
    background: var(--tj-color-light-3);
    position: absolute;
    left: 0;
    top: 4px;
}

.tj-entry__content .wp-block-quote,
.tj-entry__content blockquote {
    margin-bottom: 30px;
}

.tj-entry__content .check-list ul {
    padding-left: 0;
}

.tj-entry__content .check-list ul li {
    padding-top: 0;
}

.tj-blog-details {
    padding-bottom: 90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-blog-details {
        padding-bottom: 100px;
    }
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-blog-details {
        padding-bottom: 80px;
    }
}

.blog-details__pagination {
    padding-top: 31px;
    padding-bottom: 30px;
    border-top: 1px solid var(--tj-color-light-7);
    border-bottom: 1px solid var(--tj-color-light-7);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}

.blog-details__pagination .tj_pagination-post {
    max-width: 48%;
    width: 100%;
    min-height: 145px;
    overflow: hidden;
}

.blog-details__pagination .tj_pagination-post.next {
    margin-left: auto;
}

.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner {
    padding: 35px 25px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(32, 217, 161, 0.08)), to(rgba(95, 57, 255, 0.08)));
    background: linear-gradient(90deg, rgba(32, 217, 161, 0.08) 0%, rgba(95, 57, 255, 0.08) 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner .tj-blog-img {
    max-width: 85px;
    width: 100%;
    height: 85px;
}

.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner .tj-blog-img a {
    display: inline-block;
}

.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner .tj-blog-img a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner .tj-content .post_pagination_nav {
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
    color: var(--tj-color-theme-primary);
}

.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner .tj-content .post_pagination_nav i {
    margin-right: 10px;
}

.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner .tj-content .post_pagination_title .title {
    font-weight: var(--tj-fw-medium);
    margin: 0;
    line-height: 1.4;
    word-break: break-word;
}

.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner .tj-content .post_pagination_title .title a:hover {
    color: var(--tj-color-theme-primary);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-details__pagination .tj_pagination-post .tj_pagination_post-inner {
        padding: 30px 20px;
    }
    .blog-details__pagination .tj_pagination-post .tj_pagination_post-inner .tj-content .post_pagination_nav {
        margin-bottom: 0;
    }
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details__pagination .tj_pagination-post .tj_pagination_post-inner .tj-content .post_pagination_nav {
        font-size: 14px;
    }
}

.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner.next_post {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    background: -webkit-gradient(linear, left top, right top, from(rgba(95, 57, 255, 0.08)), to(rgba(32, 217, 161, 0.08)));
    background: linear-gradient(90deg, rgba(95, 57, 255, 0.08) 0%, rgba(32, 217, 161, 0.08) 100%);
}

.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner.next_post .tj-content {
    text-align: end;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details__pagination .tj_pagination-post {
        max-width: 335px;
    }
    .blog-details__pagination .tj_pagination-post.next {
        margin-left: auto;
    }
}

@media (max-width: 575px) {
    .blog-details__pagination .tj_pagination-post {
        max-width: 100%;
    }
}

.tj-comments__container .tj-comments__wrap {
    margin-bottom: 50px;
}

.tj-comments__container .tj-comments__wrap .tj-comment__title {
    margin-bottom: 35px;
}

.tj-comments__container .tj-comments__wrap .tj-comment__title h3 {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.tj-comments__container .tj-latest__comments ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tj-comments__container .tj-latest__comments ul .tj__comment {
    padding-top: 0;
}

.tj-comments__container .tj-latest__comments ul .tj__comment .tj-comment__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--tj-color-light-7);
}

.tj-comments__container .tj-latest__comments ul .tj__comment .tj-comment__wrap .comment__avatar {
    max-width: 80px;
    width: 100%;
    height: auto;
}

.tj-comments__container .tj-latest__comments ul .tj__comment .tj-comment__wrap .comment__avatar img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.tj-comments__container .tj-latest__comments ul .tj__comment .tj-comment__wrap .comment__text {
    width: calc(100% - 100px);
}

.tj-comments__container .tj-latest__comments ul .tj__comment .tj-comment__wrap .comment__text .avatar__name {
    margin-bottom: 10px;
}

.tj-comments__container .tj-latest__comments ul .tj__comment .tj-comment__wrap .comment__text .avatar__name h5 {
    margin-bottom: 5px;
}

.tj-comments__container .tj-latest__comments ul .tj__comment .tj-comment__wrap .comment__text .avatar__name h5 a {
    font-size: 18px;
    color: var(--tj-color-theme-primary);
    font-weight: var(--tj-fw-medium);
    text-decoration: none;
}

.tj-comments__container .tj-latest__comments ul .tj__comment .tj-comment__wrap .comment__text .avatar__name>span {
    display: block;
    line-height: 1;
}

.tj-comments__container .tj-latest__comments ul .tj__comment .tj-comment__wrap .comment__text p {
    margin-bottom: 0;
}

.tj-comments__container .tj-latest__comments ul .tj__comment .tj-comment__wrap .comment__text .comment__reply {
    margin-top: 20px;
}

.tj-comments__container .tj-latest__comments ul .tj__comment .tj-comment__wrap .comment__text .comment__reply a {
    text-decoration: none;
    background: var(--tj-color-theme-primary);
    border-radius: 58px;
    -webkit-box-shadow: 15px 9px 30px 0px rgba(117, 77, 233, 0.15);
    box-shadow: 15px 9px 30px 0px rgba(117, 77, 233, 0.15);
    font-size: 12px;
    color: var(--tj-color-common-white);
    font-family: var(--tj-ff-body);
    padding: 7px 20px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-comments__container .tj-latest__comments ul .tj__comment .tj-comment__wrap .comment__text .comment__reply a:hover {
    background-color: var(--tj-color-common-black);
    color: var(--tj-color-common-white);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-comments__container .tj-latest__comments ul .tj__comment .tj-comment__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }
    .tj-comments__container .tj-latest__comments ul .tj__comment .tj-comment__wrap .comment__text {
        width: 100%;
    }
}

.tj-comments__container .tj-latest__comments ul .tj__comment .children {
    padding-left: 35px;
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
    list-style: none;
}

.tj-latest-comments ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tj-latest-comments ul .tj-comment {
    margin-bottom: 35px;
}

.tj-latest-comments ul .tj-comment .avatar-name-content-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tj-latest-comments ul .tj-comment .comment-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-avatar {
    max-width: 80px;
    width: 100%;
    margin-right: 30px;
}

@media (max-width: 575px) {
    .tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-avatar {
        max-width: 60px;
        margin-right: 15px;
        margin-bottom: 30px;
    }
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-avatar img {
    width: 100%;
    border-radius: 6px;
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .title {
    margin-bottom: 5px;
    font-size: 20px;
}

@media (max-width: 575px) {
    .tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .title {
        font-size: 18px;
    }
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .title a {
    color: var(--tj-color-heading-primary);
    font-weight: var(--tj-fw-bold);
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .title a:hover {
    color: var(--tj-color-theme-secondary);
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: var(--tj-fw-bold);
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name span i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: var(--tj-color-theme-primary);
    line-height: 1;
}

.tj-latest-comments ul .tj-comment .comment-content .comment-reply a {
    background: var(--tj-color-heading-primary);
    font-size: 14px;
    color: var(--tj-color-common-white);
    padding: 6px 20px;
    border-radius: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.tj-latest-comments ul .tj-comment .comment-content .comment-reply a:hover {
    background-color: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
}

.tj-latest-comments ul .tj-comment .desc {
    line-height: 1.9;
    letter-spacing: 0.32px;
}

.tj-latest-comments ul .tj-comment .desc p:last-child {
    margin-bottom: 0;
}

.tj-latest-comments ul .children {
    padding-left: 75px;
}

@media (max-width: 575px) {
    .tj-latest-comments ul .tj-comment .desc {
        padding-left: 0;
    }
    .tj-latest-comments ul .children {
        padding-left: 20px;
    }
}

.comments-title h3 {
    font-size: 30px;
    color: var(--tj-color-heading-primary);
    margin-bottom: 30px;
}

.tj-comment-respond {
    padding: 30px 40px 40px;
    background: var(--tj-color-grey-3);
    border-radius: 20px;
    margin-top: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-comment-respond {
        padding: 20px;
        margin-bottom: 30px;
    }
}

.tj-comment-respond .comment-header {
    margin-bottom: 20px;
}

.tj-comment-respond .comment-header .title {
    color: var(--tj-color-heading-primary);
    margin-bottom: 20px;
    font-size: 30px;
}

.tj-comment-respond .comment-header .desc {
    letter-spacing: 0.32px;
}

.tj-comment-respond .comment-header .desc p:last-child {
    margin-bottom: 0;
}

.tj-comment-respond .form-input {
    margin-bottom: 20px;
}

.tj-comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.tj-comment-respond .form-input textarea,
.tj-comment-respond .form-input input[type=email],
.tj-comment-respond .form-input input[type=text] {
    padding: 17px 20px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 7px;
}

.tj-comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder,
.tj-comment-respond .form-input textarea::-webkit-input-placeholder,
.tj-comment-respond .form-input input[type=email]::-webkit-input-placeholder,
.tj-comment-respond .form-input input[type=text]::-webkit-input-placeholder {
    color: var(--tj-color-heading-primary);
    font-size: 14px;
}

.tj-comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder,
.tj-comment-respond .form-input textarea::-moz-placeholder,
.tj-comment-respond .form-input input[type=email]::-moz-placeholder,
.tj-comment-respond .form-input input[type=text]::-moz-placeholder {
    color: var(--tj-color-heading-primary);
    font-size: 14px;
}

.tj-comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder,
.tj-comment-respond .form-input textarea:-ms-input-placeholder,
.tj-comment-respond .form-input input[type=email]:-ms-input-placeholder,
.tj-comment-respond .form-input input[type=text]:-ms-input-placeholder {
    color: var(--tj-color-heading-primary);
    font-size: 14px;
}

.tj-comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.tj-comment-respond .form-input textarea::-ms-input-placeholder,
.tj-comment-respond .form-input input[type=email]::-ms-input-placeholder,
.tj-comment-respond .form-input input[type=text]::-ms-input-placeholder {
    color: var(--tj-color-heading-primary);
    font-size: 14px;
}

.tj-comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.tj-comment-respond .form-input textarea::placeholder,
.tj-comment-respond .form-input input[type=email]::placeholder,
.tj-comment-respond .form-input input[type=text]::placeholder {
    color: var(--tj-color-heading-primary);
    font-size: 14px;
}

.tj-comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.tj-comment-respond .form-input textarea::-ms-input-placeholder,
.tj-comment-respond .form-input input[type=email]::-ms-input-placeholder,
.tj-comment-respond .form-input input[type=text]::-ms-input-placeholder {
    color: rgba(113, 113, 113, 0.6);
    font-size: 14px;
}

.tj-comment-respond .form-input textarea {
    min-height: 130px;
    resize: none;
}

.tj-comment-respond .blog-details-button .tj-primary-btn {
    width: 100%;
    font-size: 14px;
    font-weight: var(--tj-fw-bold);
    font-family: var(--tj-ff-heading);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 19px 15px;
    border-radius: 7px;
}

.tj-comment-respond .blog-details-button .tj-primary-btn::before {
    border-radius: 7px;
}

.tj-post-item {
    margin-bottom: 60px;
}

.tj-post-item.details {
    margin-bottom: 34px;
}

.tj-post-item:last-child {
    margin-bottom: 0;
}

.tj-post-item.sticky {
    padding: 40px 50px;
    border-top: 3px solid var(--tj-color-theme-primary);
    -webkit-box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
    box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tj-post-item.sticky {
        padding: 40px 30px;
    }
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-post-item.sticky {
        padding: 30px 20px;
    }
}

.tj-post-item .details-title .title {
    font-size: 30px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-post-item .details-title .title {
        font-size: 22px;
    }
}

.tj-post-item .details-title .title a {
    color: inherit;
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--tj-color-theme-primary)), to(var(--tj-color-theme-primary))), -webkit-gradient(linear, left top, left bottom, from(var(--tj-color-theme-primary)), to(var(--tj-color-theme-primary)));
    background-image: linear-gradient(var(--tj-color-theme-primary), var(--tj-color-theme-primary)), linear-gradient(var(--tj-color-theme-primary), var(--tj-color-theme-primary));
    display: inline;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.tj-post-item .details-title .title a:hover {
    color: var(--tj-color-theme-primary);
    background-size: 0% 1px, 100% 1px;
}

.tj-post-item .blog-button {
    margin-top: 36px;
}

.tj-post-item .blog-button .tj-primary-btn {
    padding: 16px 30px;
    -webkit-transition: background 0.7s ease-in;
    transition: background 0.7s ease-in;
}

.tj-post-item .blog-button .tj-primary-btn span {
    margin-left: 6px;
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
    display: inline-block;
    font-size: 17px;
    color: var(--tj-color-common-white);
}

.tj-post-item .blog-button .tj-primary-btn:hover span {
    color: var(--tj-color-heading-primary);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-post-item {
        margin-bottom: 50px;
    }
    .tj-post-item .blog-button {
        margin-top: 20px;
    }
}

.tj-post-item .blog-thumb-image {
    position: relative;
}

.tj-post-item .blog-thumb-image::after {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.tj-post-item:hover .blog-thumb-image::after {
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.tj-blog-widget {
    background: rgb(236, 241, 245);
    margin-bottom: 24px;
    padding: 30px;
    position: relative;
    z-index: 3;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-blog-widget {
        padding: 30px 15px;
    }
}

.tj-blog-widget::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 75px;
    left: 0;
    background: var(--tj-color-heading-primary);
    opacity: 0.2;
}

.tj-blog-widget:not(:last-child) {
    margin-bottom: 30px;
}

.tj-blog-widget .side-title {
    padding-bottom: 13px;
    font-size: 30px;
    color: var(--tj-color-heading-primary);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.tj-blog-widget .side-title::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    bottom: 3px;
    left: 0;
    background: var(--tj-color-theme-primary);
}

.tj-blog-widget .tagcloud a {
    font-size: 14px !important;
}

.tj-blog-widget.widget_block .wp-block-heading,
.tj-blog-widget.widget_block label,
.tj-blog-widget.widget_block.widget_search .wp-block-heading,
.tj-blog-widget.widget_block.widget_search label {
    font-size: 25px;
    line-height: 1;
    font-weight: var(--tj-fw-medium);
    color: var(--tj-color-theme-primary);
    position: relative;
    z-index: 1;
    padding-bottom: 13px;
    margin-bottom: 20px;
}

.tj-blog-widget.widget_block .wp-block-heading::before,
.tj-blog-widget.widget_block label::before,
.tj-blog-widget.widget_block.widget_search .wp-block-heading::before,
.tj-blog-widget.widget_block.widget_search label::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--tj-color-theme-primary);
}

.tj-blog-widget.widget_search {
    padding: 0 !important;
}

.tj-blog-widget.widget_search::before {
    display: none;
}

.sidebar-search form {
    position: relative;
    z-index: 1;
    width: 100%;
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-search form input:not([type=submit]):not([type=radio]):not([type=checkbox]) {
    border-radius: 8px;
    width: 100%;
    padding: 23px 110px 23px 35px;
    font-size: 16px;
    line-height: 1.4;
    background: transparent;
    border: none;
}

.sidebar-search form input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder {
    font-size: 18px;
    color: var(--tj-color-text-body);
}

.sidebar-search form input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder {
    font-size: 18px;
    color: var(--tj-color-text-body);
}

.sidebar-search form input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder {
    font-size: 18px;
    color: var(--tj-color-text-body);
}

.sidebar-search form input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder {
    font-size: 18px;
    color: var(--tj-color-text-body);
}

.sidebar-search form input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder {
    font-size: 18px;
    color: var(--tj-color-text-body);
}

.sidebar-search form input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder {
    color: var(--tj-color-text-body);
}

.sidebar-search form input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus {
    border: none !important;
}

.sidebar-search form button {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 90px;
    height: 100%;
    background-color: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
    font-size: 25px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.footer-widget .sidebar-search form {
    border-color: var(--tj-color-theme-primary);
}

.widget_categories {
    background: rgb(236, 241, 245);
    margin-bottom: 30px;
    padding: 30px;
    position: relative;
    z-index: 3;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .widget_categories {
        padding: 30px 15px;
    }
}

.widget_categories::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 75px;
    left: 0;
    background: var(--tj-color-heading-primary);
    opacity: 0.2;
}

.widget_categories:last-child::before {
    display: none;
}

.widget_categories-title {
    font-size: 30px;
    color: var(--tj-color-heading-primary);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.widget_categories-title::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    bottom: -10px;
    left: 0;
    background: var(--tj-color-theme-primary);
}

.widget_categories nav ul li {
    font-size: 16px;
    font-weight: var(--tj-fw-bold);
    border-bottom: 1px solid rgba(55, 58, 63, 0.2);
    position: relative;
    z-index: 1;
    list-style: none;
}

.widget_categories nav ul li.active {
    border-bottom: 1px solid transparent;
}

.widget_categories nav ul li.active a {
    background: -webkit-gradient(linear, left top, right top, from(#0d57d7), to(#4d8eff));
    background: linear-gradient(90deg, #0d57d7 0%, #4d8eff 100%);
    color: var(--tj-color-common-white);
}

.widget_categories nav ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 14px 26px;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 10px;
    width: 100%;
}

.widget_categories nav ul li a span {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.widget_categories nav ul li a span i {
    font-size: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.widget_categories nav ul li a:hover {
    color: var(--tj-color-theme-primary);
}

.widget_categories.style-2 {
    background: var(--tj-color-theme-primary);
    padding-bottom: 52px;
}

.widget_categories-contact-title {
    font-size: 30px;
    text-align: center;
    color: var(--tj-color-common-white);
    margin-bottom: 32px;
}

.widget_categories-contact-icon {
    margin-bottom: 36px;
}

.widget_categories-contact-bottom-content span {
    font-weight: 400;
    font-size: 16px;
    color: var(--tj-color-common-white);
    display: block;
}

.widget_categories-contact-bottom-content .link {
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 30px;
    color: var(--tj-color-common-white);
    display: inline-block;
    margin-bottom: 28px;
}

.widget_categories-contact-desc {
    margin-bottom: 34px;
}

.widget_categories-contact-desc p {
    color: var(--tj-color-common-white);
}

.widget_categories-contact-btn {
    background: transparent;
    color: var(--tj-color-border-1);
    padding: 13px 28px;
    border: 1px solid var(--tj-color-common-white);
    border-radius: 25px;
}

.widget_categories-contact-btn:hover {
    background: var(--tj-color-theme-secendary);
    color: var(--tj-color-heading-primary);
}

.widget_categories-contact-btn i {
    margin-left: 8px;
}

.widget_categories.stander nav ul li a span {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.tj-sidebar__widget.widget_block .wp-block-categories-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tj-sidebar__widget.widget_block .wp-block-categories-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
    font-weight: var(--tj-fw-medium);
    color: var(--tj-color-theme-primary);
}

.tj-sidebar__widget.widget_block .wp-block-categories-list li:not(:last-child) {
    padding-bottom: 16px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--tj-color-border-1);
}

.tj-sidebar__widget.widget_block .wp-block-categories-list li ul {
    width: 100%;
    padding-left: 20px;
    padding-top: 16px;
    margin-top: 15px;
    border-top: 1px solid var(--tj-color-border-1);
}

.tj-sidebar__widget.widget_block .wp-block-categories-list li a {
    color: var(--tj-color-text-body);
}

.tj-sidebar__widget.widget_block .wp-block-categories-list li a:hover {
    color: var(--tj-color-theme-primary);
}

.sidebar-recent-post .single-post {
    margin-bottom: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.sidebar-recent-post .single-post:last-child {
    margin-bottom: 0;
}

.sidebar-recent-post .single-post .post-image {
    max-width: 90px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.sidebar-recent-post .single-post .post-image a {
    display: inline-block;
    width: 100%;
    border-radius: 5px;
}

.sidebar-recent-post .single-post .post-image a img {
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.sidebar-recent-post .single-post .post-content .sub-title {
    font-size: 14px;
    line-height: 1;
    font-weight: var(--tj-fw-medium);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.sidebar-recent-post .single-post .post-content .sub-title i {
    color: var(--tj-color-theme-primary);
    font-size: 18px;
    line-height: 1;
}

.sidebar-recent-post .single-post .post-content .title-link {
    margin-bottom: 0;
    font-size: 18px;
    color: var(--tj-color-heading-primary);
    line-height: 1.5;
}

.sidebar-recent-post .single-post .post-content .title-link a {
    display: inline-block;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.sidebar-recent-post .single-post .post-content .title-link a:hover {
    color: var(--tj-color-theme-primary);
}

.sidebar-recent-post .single-post:hover .post-image a img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.tagcloud {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.tagcloud .tag__title {
    margin-right: 10px;
    font-family: var(--tj-ff-heading);
    font-size: 24px;
    color: var(--tj-color-heading-primary);
    font-weight: var(--tj-fw-sbold);
}

.tagcloud a {
    position: relative;
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--tj-color-common-white);
    line-height: 1;
    color: var(--tj-color-text-body);
    border-radius: 5px;
    padding: 8px 20px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 1;
    font-size: 14px;
    font-weight: var(--tj-fw-sbold);
    font-family: var(--tj-ff-heading);
}

.tagcloud a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--tj-color-theme-primary);
    border-radius: 5px;
    z-index: -1;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.tagcloud a:hover {
    background-color: transparent;
    color: var(--tj-color-common-white);
}

.tagcloud a:hover::after {
    opacity: 1;
}

.tagcloud.details a {
    background-color: rgb(236, 241, 245);
}

.wp-block-quote,
blockquote {
    background: rgb(236, 241, 245);
    border-radius: 10px;
    position: relative;
    padding: 30px 22px 30px 30px;
    margin-bottom: 60px;
    border-left: 0;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1;
}

.wp-block-quote::before,
blockquote::before {
    content: "\f111";
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 40px;
    color: var(--tj-color-common-white);
    min-width: 68px;
    height: 68px;
    background: var(--tj-color-theme-primary);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 7px;
    font-family: flaticon_cleannes !important;
}

.wp-block-quote p,
blockquote p {
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 20px;
    color: var(--tj-color-heading-primary);
    margin-bottom: 0;
    margin-left: 86px;
}

.wp-block-quote cite,
blockquote cite {
    color: var(--tj-color-common-white);
    font-family: var(--tj-ff-body);
    font-weight: var(--tj-fw-bold);
    position: relative;
    padding-left: 50px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .wp-block-quote cite,
    blockquote cite {
        padding-left: 40px;
    }
}

.wp-block-quote cite::before,
blockquote cite::before {
    position: absolute;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--tj-color-light-9);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .wp-block-quote cite::before,
    blockquote cite::before {
        width: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .wp-block-quote,
    blockquote {
        padding: 30px 15px;
    }
    .wp-block-quote::before,
    blockquote::before {
        min-width: 50px;
        height: 50px;
        font-size: 30px;
    }
    .wp-block-quote p,
    blockquote p {
        margin-left: 70px;
    }
}

.wp-block-pullquote {
    color: var(--tj-color-common-white);
    border: none;
    padding: 0;
    margin: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj__pagination {
        margin-bottom: 50px;
    }
}

.tj__pagination ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.tj__pagination ul li {
    background: var(--tj-color-theme-primary);
    border-radius: 50%;
    padding: 1px;
    overflow: hidden;
}

.tj__pagination ul li .page-numbers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--tj-color-common-white);
    color: var(--tj-color-common-black);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-sbold);
    font-size: 18px;
}

.tj__pagination ul li .page-numbers i {
    color: var(--tj-color-common-black);
}

.tj__pagination ul li .page-numbers:hover,
.tj__pagination ul li .page-numbers.current {
    background-color: transparent;
    color: var(--tj-color-common-white);
}

.tj__pagination ul li .page-numbers:hover i,
.tj__pagination ul li .page-numbers.current i {
    color: var(--tj-color-common-white);
}

/* Floating Buttons Styles */
.floating-call-btn, 
.floating-whatsapp-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-call-btn {
    right: 30px;
    bottom: 30px;
    background: #ff3b30; /* Red color for call button */
}

.floating-whatsapp-btn {
    left: 30px;
    bottom: 30px;
    background: #25D366; /* WhatsApp green color */
}

.floating-call-btn a, 
.floating-whatsapp-btn a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    border-radius: 50%;
}

.floating-call-btn:hover, 
.floating-whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Wave Animation */
.wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.floating-call-btn .wave {
    background: rgba(255, 59, 48, 0.5); /* Red wave */
}

.floating-whatsapp-btn .wave {
    background: rgba(37, 211, 102, 0.5); /* Green wave */
}

.floating-call-btn:hover .wave, 
.floating-whatsapp-btn:hover .wave {
    animation: waveAnimation 1.5s infinite;
}

@keyframes waveAnimation {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}