/*===========================
  COMMON css 
===========================*/
:root {
    --font-family: "Inter", sans-serif;
    --primary: #155bd5;
    --primary-dark: #1c3ab6;
    --primary-light: #e2f1ff;
    --accent: #00d4d7;
    --accent-dark: #00bac1;
    --accent-light: #dff9f8;
    --success: #13d527;
    --success-dark: #00ae11;
    --success-light: #eafbe7;
    --secondary: #8f15d5;
    --secondary-dark: #6013c7;
    --secondary-light: #f4e5fa;
    --info: #15b2d5;
    --info-dark: #0f8ca8;
    --info-light: #e0f5fa;
    --caution: #dbbb25;
    --caution-dark: #d58f15;
    --caution-light: #fbf9e4;
    --error: #e6185e;
    --error-dark: #bf1257;
    --error-light: #fce4eb;
    --black: #1d1d1d;
    --dark-1: #2d2d2d;
    --dark-2: #4d4d4d;
    --dark-3: #6d6d6d;
    --gray-1: #8d8d8d;
    --gray-2: #adadad;
    --gray-3: #cdcdcd;
    --gray-4: #e0e0e0;
    --light-1: #efefef;
    --light-2: #f5f5f5;
    --light-3: #fafafa;
    --white: #ffffff;
    --gradient-1: linear-gradient(180deg, #155bd5 0%, #1c3ab6 100%);
    --gradient-2: linear-gradient(180deg, #155bd5 13.02%, #00d4d7 85.42%);
    --gradient-3: linear-gradient(180deg, #155bd5 0%, #8f15d5 100%);
    --gradient-4: linear-gradient(180deg, #155bd5 0%, #13d527 100%);
    --gradient-5: linear-gradient(180deg, #155bd5 0%, #15bbd5 100%);
    --gradient-6: linear-gradient(180deg, #155bd5 0%, #dbbb25 100%);
    --gradient-7: linear-gradient(180deg, #155bd5 0%, #e6185e 100%);
    --gradient-8: linear-gradient(180deg, #1c3ab6 0%, #00bac1 100%);
    --gradient-9: linear-gradient(180deg, #00d4d7 13.02%, #155bd5 85.42%);
    --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08),
        0px 0.5px 2px rgba(96, 97, 112, 0.16);
    --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04),
        0px 2px 4px rgba(96, 97, 112, 0.16);
    --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04),
        0px 4px 8px rgba(96, 97, 112, 0.16);
    --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04),
        0px 8px 16px rgba(96, 97, 112, 0.16);
    --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04),
        0px 16px 24px rgba(96, 97, 112, 0.16);
    --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08),
        0px 20px 32px rgba(96, 97, 112, 0.24);
}

body {
    font-family: var(--font-family);
    color: var(--black);
    font-size: 16px;
}

@media (max-width: 991px) {
    body {
        font-size: 14px;
    }
}

img {
    max-width: 100%;
}

a {
    display: inline-block;
}

a,
button,
a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--black);
    margin: 0px;
}

h1,
.h1 {
    font-size: 2.75em;
    line-height: 1.25;
}

h2,
.h2 {
    font-size: 2.25em;
    line-height: 1.25;
}

h3,
.h3 {
    font-size: 1.75em;
    line-height: 1.25;
}

h4,
.h4 {
    font-size: 1.5em;
    line-height: 1.25;
}

h5,
.h5 {
    font-size: 1.25em;
    line-height: 1.25;
}

h6,
.h6 {
    font-size: 0.875em;
    line-height: 1.25;
}

.display-1 {
    font-size: 5.5em;
    line-height: 1.25;
}

.display-2 {
    font-size: 4.75em;
    line-height: 1.25;
}

.display-3 {
    font-size: 4em;
    line-height: 1.25;
}

.display-4 {
    font-size: 3.25em;
    line-height: 1.25;
}

p {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-3);
    margin: 0px;
}

.text-small {
    font-size: 0.875em;
    line-height: 1.5;
}

.text-lg {
    font-size: 1.15em;
    line-height: 1.5;
}

.bg_cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.btn {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.btn:hover {
    color: inherit;
}

.btn:focus {
    box-shadow: none;
    outline: none;
}

.btn.btn-lg {
    font-size: 1.15em;
    padding: 16px 24px;
}

.btn.btn-sm {
    padding: 8px 16px;
}

.btn.square {
    border-radius: 0px;
}

.btn.semi-rounded {
    border-radius: 12px;
}

.btn.rounded-full {
    border-radius: 50px;
}

.btn.icon-left span,
.btn.icon-left i {
    margin-right: 8px;
}

.btn.icon-right span,
.btn.icon-right i {
    margin-left: 8px;
}

.btn.icon-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    line-height: 48px;
}

.btn.icon-btn.btn-lg {
    width: 56px;
    height: 56px;
    line-height: 56px;
}

.btn.icon-btn.btn-sm {
    width: 40px;
    height: 40px;
    line-height: 40px;
}

/* ====================================================
    Gutter Code 
==================================================== */
.container,
.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}

.tinf__no-gutter>[class*='col-'] {
    /* No padding only for child columns */
    padding-right: 0;
    padding-left: 0;
}

.tinf__no-gutter-all [class*='col-'] {
    /* No padding for every columns */
    padding-right: 0;
    padding-left: 0;
}

@media (min-width: 992px) {

    /* Modify this based on column def */
    .tinf__custom-gutter {
        margin-left: -0px;
        margin-right: -0px;
    }

    .tinf__custom-gutter>[class*='col-'] {
        padding-right: 0px;
        padding-left: 0px;
    }

    .tinf__custom-gutter-all .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    .tinf__custom-gutter-all .row [class*='col-'] {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (max-width: 991px) {

    /* Modify this based on column def */
    .tinf__custom-gutter {
        margin-left: -15px;
        margin-right: -15px;
    }

    .tinf__custom-gutter>[class*='col-'] {
        padding-right: 15px;
        padding-left: 15px;
    }

    .tinf__custom-gutter-all {
        margin-left: -15px;
        margin-right: -15px;
    }

    .tinf__custom-gutter-all [class*='col-'] {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (max-width: 767px) {

    /* Modify this based on column def */
    .tinf__product-gutter .row {
        margin-left: -8px;
        margin-right: -8px;
    }

    .tinf__product-gutter [class*='col-'] {
        padding-right: 8px;
        padding-left: 8px;
    }
}

/* ----------------------------------------------------
    Normalize    0B2C3D
---------------------------------------------------- */
:root {
    --tinf__primary-color: #000000;
    --tinf__primary-color-2: #041113;
    /* Darken */
    --tinf__primary-color-3: #133236;
    /* Lighten */
    --tinf__secondary-color: #0169f7;
    --tinf__secondary-color-2: #0038ff;
    /* Darken */
    --tinf__secondary-color-3: #0038ff;
    /* Lighten */
    --tinf__heading-color: #071c1f;
    --tinf__paragraph-color: #5C727D;
    --tinf__heading-font: 'Poppins', sans-serif;
    --tinf__body-font: 'Nunito Sans', sans-serif;
    /* Footer ACD2D8 8CB2B2  */
    --tinf__color-1: #8cb2b2;
    --tinf__color-2: #ACD2D8;
    --tinf__color-3: #A3BCC0;
    --tinf__color-4: #84A2A6;
    --tinf__color-5: #5C727D;
    --tinf__color-6: #F5DFDC;
    /* Gradient Colors */
    --gradient-color-1: linear-gradient(90deg, rgba(242, 139, 194, 1) 0%, rgba(216, 177, 242, 1) 50%);
    --gradient-color-2: linear-gradient(to top, rgba(7, 28, 31, 0) 0%, rgba(7, 28, 31, 1) 90%);
    --gradient-color-3: linear-gradient(to bottom, rgba(7, 28, 31, 0) 0%, rgba(7, 28, 31, 1) 90%);
    --gradient-color-4: linear-gradient(to top, rgba(242, 246, 247, 0) 0%, rgba(242, 246, 247, 1) 90%);
    --gradient-color-5: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 70%);
    /* Background Colors ( 1, 2, 3, 4, 5 )  */
    --section-bg-1: #F2F6F7;
    /* White */
    --section-bg-2: #171B2A;
    /* Black */
    --section-bg-5: #FFF2F0;
    /* White */
    --section-bg-6: #0B2C3D;
    /* Black */
    --section-bg-7: #282b38;
    /* Black */
    /* Border Colors */
    --border-color-1: #e5eaee;
    /* White */
    --border-color-2: #1e2021;
    /* Black */
    --border-color-3: #5C617F;
    /* Black */
    --border-color-4: #eb6954;
    /* Red */
    --border-color-5: #bc3928;
    /* Red */
    --border-color-6: #103034;
    /* Black */
    --border-color-7: #d1dae0;
    /* White */
    --border-color-8: #f6f6f6;
    /* White */
    --border-color-9: #e4ecf2;
    /* White */
    --border-color-10: #ebeeee;
    /* White */
    --border-color-11: #ededed;
    /* White */
    --border-color-12: #e1e6ff;
    /* White */
    --border-color-13: #f1f8ff;
    /* White */
    /* Box Shadow Colors */
    --tinf__box-shadow-1: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
    --tinf__box-shadow-2: 0 0 4px rgba(0, 0, 0, 0.1);
    /* like border */
    --tinf__box-shadow-3: 0 1px 6px 0 rgba(32, 33, 36, .28);
    /* like border GGL */
    --tinf__box-shadow-4: 0 5px 20px 0 rgba(23, 44, 82, 0.1);
    --tinf__box-shadow-5: 0 8px 16px 0 rgba(93, 93, 93, 0.1);
    --tinf__box-shadow-6: 0 0 25px 2px rgba(93, 93, 93, 0.2);
    --tinf__box-shadow-7: 0 0 10px 0px rgba(93, 93, 93, 0.2);
    /* Common Colors */
    --black: #000000;
    --black-2: #22355B;
    --white: #fff;
    --white-2: #F2F6F7;
    --white-3: #e8edee;
    --white-4: #e6ecf0;
    --white-5: #f0f4f7;
    --white-6: #f1f1f1;
    --white-7: #F7F7F7;
    --white-8: #FAFAFA;
    --white-9: #F2F7FA;
    --white-10: #EDEDED;
    --red: #FF0000;
    --red-2: #f34f3f;
    --red-3: #DB483B;
    --silver: #C0C0C0;
    --gray: #808080;
    --maroon: #800000;
    --yellow: #FFFF00;
    --olive: #808000;
    --lime: #00FF00;
    --green: #77C720;
    --green-2: #008000;
    --aqua: #00FFFF;
    --teal: #008080;
    --blue: #0000FF;
    --navy: #000080;
    --fuchsia: #B13BFF;
    --purple: #800080;
    --pink: #FFC0CB;
    --nude: #ebc8b2;
    --orange: #ffa500;
    --ratings: #FFB800;
    /* social media colors */
    --facebook: #365493;
    --twitter: #3CF;
    --linkedin: #0077B5;
    --pinterest: #c8232c;
    --dribbble: #ea4c89;
    --behance: #131418;
    --google-plus: #dd4b39;
    --instagram: #e4405f;
    --vk: #3b5998;
    --wechat: #7bb32e;
    --youtube: #CB2027;
    --email: #F89A1E;
}

/* -------------------------------------
    Typography
------------------------------------- */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: var(--tinf__body-font);
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -moz-osx-font-smoothing: grayscale;
    /* Firefox */
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
}

body {
    color: var(--tinf__paragraph-color);
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    font-family: var(--tinf__body-font);
    line-height: 1.8;
    margin: 0 auto;
    overflow-x: hidden !important;
}

h1,
.h1 {
    font-size: 36px;
    line-height: 1.2;
}

h2,
.h2 {
    font-size: 30px;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 20px;
}

h5,
.h5 {
    font-size: 18px;
}

h6,
.h6 {
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--tinf__heading-color);
    clear: both;
    font-family: var(--tinf__heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    color: var(--tinf__paragraph-color);
    margin-bottom: 1.5em;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

a {
    color: inherit;
    text-decoration: none;
    color: var(--tinf__paragraph-color);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: inherit;
}

a:hover {
    color: var(--tinf__secondary-color);
}

button,
input,
optgroup,
select,
textarea {
    font-family: var(--tinf__body-font);
}

pre,
code,
kbd,
tt,
var,
samp {
    font-family: var(--tinf__body-font);
}

pre {
    word-break: break-word;
}

a i {
    padding: 0 2px;
}

img {
    max-width: 100%;
}

ul li,
ol li {
    /* margin-top: 1rem; */
}

/* -------------------------------------
    Custom Class
------------------------------------- */
.section-bg-1 {
    background-color: var(--section-bg-1);
}

.section-bg-1 .tinf__separate-line .separate-icon {
    background-color: var(--section-bg-1);
}

.section-bg-2,
.section-bg-6,
.section-bg-7 {
    background-color: var(--section-bg-2);
}

.section-bg-2 h1,
.section-bg-2 h2,
.section-bg-2 h3,
.section-bg-2 h4,
.section-bg-2 h5,
.section-bg-2 h6,
.section-bg-2 p,
.section-bg-2 li,
.section-bg-2 i,
.section-bg-2 span,
.section-bg-2 tr,
.section-bg-2 td,
.section-bg-6 h1,
.section-bg-6 h2,
.section-bg-6 h3,
.section-bg-6 h4,
.section-bg-6 h5,
.section-bg-6 h6,
.section-bg-6 p,
.section-bg-6 li,
.section-bg-6 i,
.section-bg-6 span,
.section-bg-6 tr,
.section-bg-6 td,
.section-bg-7 h1,
.section-bg-7 h2,
.section-bg-7 h3,
.section-bg-7 h4,
.section-bg-7 h5,
.section-bg-7 h6,
.section-bg-7 p,
.section-bg-7 li,
.section-bg-7 i,
.section-bg-7 span,
.section-bg-7 tr,
.section-bg-7 td {
    color: var(--white);
}

.section-bg-2 .tinf__separate-line .separate-icon,
.section-bg-6 .tinf__separate-line .separate-icon,
.section-bg-7 .tinf__separate-line .separate-icon {
    background-color: var(--black-2);
}

.section-bg-3 {
    position: relative;
}

.section-bg-3:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-color-1);
    opacity: 0.9;
}

.section-bg-3 h1,
.section-bg-3 h2,
.section-bg-3 h3,
.section-bg-3 h4,
.section-bg-3 h5,
.section-bg-3 h6,
.section-bg-3 p,
.section-bg-3 li,
.section-bg-3 i,
.section-bg-3 span,
.section-bg-3 tr,
.section-bg-3 td {
    color: var(--white);
}

.section-bg-3 .slick-arrow-1 .slick-arrow {
    background-color: transparent;
}

.section-bg-3 input[type="text"],
.section-bg-3 input[type="email"],
.section-bg-3 input[type="password"],
.section-bg-3 input[type="submit"] {
    border-color: var(--white);
    color: var(--white);
}

.section-bg-3 .btn-wrapper button {
    color: var(--white);
}

.section-bg-3 input::-webkit-input-placeholder {
    color: var(--white);
}

.section-bg-3 input::-moz-placeholder {
    color: var(--white);
}

.section-bg-3 input:-ms-input-placeholder {
    color: var(--white);
}

.section-bg-3 input:-moz-placeholder {
    color: var(--white);
}

.section-bg-3 .tinf__separate-line .separate-icon {
    background: var(--gradient-color-1);
}

.section-bg-3 .tinf__separate-line .separate-icon i {
    color: var(--white);
}

.section-bg-4 {
    background-color: var(--tinf__primary-color-2);
}

.section-bg-4 h1,
.section-bg-4 h2,
.section-bg-4 h3,
.section-bg-4 h4,
.section-bg-4 h5,
.section-bg-4 h6,
.section-bg-4 p,
.section-bg-4 li,
.section-bg-4 i,
.section-bg-4 span,
.section-bg-4 tr,
.section-bg-4 td {
    color: var(--white);
}

.section-bg-4 .tinf__separate-line .separate-icon {
    background-color: var(--black-2);
}

.section-bg-4 .tinf__copyright-design h6,
.section-bg-4 .tinf__copyright-design h4 {
    color: var(--tinf__color-1);
}

.section-bg-5 {
    background-color: var(--section-bg-5);
}

.section-bg-6 {
    background-color: var(--section-bg-6);
}

.section-bg-7 {
    background-color: var(--section-bg-7);
}

.text-color-white {
    color: var(--white);
}

.text-color-white h1,
.text-color-white h2,
.text-color-white h3,
.text-color-white h4,
.text-color-white h5,
.text-color-white h6,
.text-color-white p,
.text-color-white li,
.text-color-white i,
.text-color-white span,
.text-color-white tr,
.text-color-white td {
    color: var(--white);
}

.tinf__primary-color {
    color: var(--tinf__primary-color) !important;
}

.tinf__primary-color-2 {
    color: var(--tinf__primary-color-2) !important;
}

.tinf__primary-color-3 {
    color: var(--tinf__primary-color-3) !important;
}

.tinf__secondary-color {
    color: var(--tinf__secondary-color) !important;
}

.tinf__secondary-color-2 {
    color: var(--tinf__secondary-color-2) !important;
}

.tinf__secondary-color-3 {
    color: var(--tinf__secondary-color-3) !important;
}

.tinf__color-1 {
    color: var(--tinf__color-1);
}

.white-color {
    color: var(--white);
}

.white-color-im {
    color: var(--white) !important;
}

.tinf__primary-bg {
    background-color: var(--tinf__primary-color);
}

.tinf__primary-bg-2 {
    background-color: var(--tinf__primary-color-2);
}

.tinf__secondary-bg {
    background-color: var(--tinf__secondary-color);
}

.tinf__secondary-bg-2 {
    background-color: var(--tinf__secondary-color-2);
}

.white-bg {
    background-color: var(--white);
}

.gradient-color-1 {
    background: var(--gradient-color-1);
}

.gradient-color-2 {
    background: var(--gradient-color-2);
}

.gradient-color-3 {
    background: var(--gradient-color-3);
}

.gradient-color-4 {
    background: var(--gradient-color-4);
}

.gradient-color-5 {
    background: var(--gradient-color-5);
}

.before-bg-1 {
    position: relative;
}

.before-bg-1:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 34.2%;
    left: 0;
    bottom: 0;
    background-color: var(--section-bg-1);
}

.before-bg-top {
    position: relative;
}

.before-bg-top:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 72%;
    left: 0;
    top: 0;
    background-color: var(--section-bg-1);
}

.before-bg-bottom {
    position: relative;
}

.before-bg-bottom:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    left: 0;
    bottom: 0;
    background-color: var(--section-bg-2);
}

.before-bg-bottom-2 {
    position: relative;
}

.before-bg-bottom-2:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    left: 0;
    bottom: 0;
    background-color: var(--section-bg-1);
}

.before-bg-right {
    position: relative;
}

.before-bg-right:before {
    position: absolute;
    content: "";
    width: 25%;
    height: 100%;
    left: auto;
    right: 0;
    top: 0;
    background-color: var(--tinf__primary-color);
}

.before-bg-left {
    position: relative;
}

.before-bg-left:before {
    position: absolute;
    content: "";
    width: 25%;
    height: 100%;
    left: 0;
    right: auto;
    top: 0;
    background-color: var(--tinf__primary-color);
}

.box-shadow {
    -webkit-box-shadow: var(--tinf__box-shadow-2);
    box-shadow: var(--tinf__box-shadow-2);
}

.box-shadow-1 {
    -webkit-box-shadow: var(--tinf__box-shadow-1);
    box-shadow: var(--tinf__box-shadow-1);
}

.tinf__custom-icon {
    position: relative;
}

.tinf__custom-icon::before {
    content: "\f063";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
}

.tinf__border {
    border: 1px solid var(--border-color-1);
}

.tinf__border-top {
    border-top: 1px solid var(--border-color-1);
}

.border-top {
    border-top: 1px solid var(--border-color-1);
}

.border-bottom {
    border-bottom: 1px solid var(--border-color-1);
}

.border-color-3 {
    border-color: var(--border-color-3) !important;
}

mark {
    background-color: var(--tinf__primary-color);
    padding: 3px 15px;
    color: var(--white);
    border-radius: 25px;
}

hr {
    margin-top: 50px;
    margin-bottom: 50px;
    border-top: 1px solid var(--border-color-12);
}

a.text-decoration,
.text-decoration a {
    text-decoration: underline;
}

fieldset {
    padding: 30px 40px;
    border: 1px solid #eee;
}

fieldset legend {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    width: auto;
    margin-top: -9px;
    margin-bottom: 0;
    padding: 0 15px;
    text-transform: uppercase;
    color: #333;
    background-color: #fff;
}

@media (max-width: 991px) {
    .before-bg-right:before {
        width: 0;
    }

    .before-bg-left:before {
        width: 0;
    }
}

.position-relative {
    position: relative;
}

.tinf__z-index-9 {
    z-index: 9;
}

.tinf__z-index-99 {
    z-index: 99;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-black {
    background-color: var(--black) !important;
    color: var(--white) !important;
}

.bg-white {
    background-color: var(--white) !important;
    color: var(--black) !important;
}

.bg-red {
    background-color: var(--red) !important;
    color: var(--white) !important;
}

.bg-yellow {
    background-color: var(--yellow) !important;
    color: var(--white) !important;
}

.bg-green {
    background-color: var(--green) !important;
    color: var(--white) !important;
}

.bg-blue {
    background-color: var(--blue) !important;
    color: var(--white) !important;
}

.bg-orange {
    background-color: var(--orange) !important;
    color: var(--white) !important;
}

.bg-fuchsia {
    background-color: var(--fuchsia) !important;
    color: var(--white) !important;
}






/* -------------------------------------
    Transition
------------------------------------- */
/* ----------------------------------------------------
    Alignments
---------------------------------------------------- */
.alignleft {
    float: left;
    clear: both;
    margin-right: 20px;
}

.alignright {
    float: right;
    clear: both;
    margin-left: 20px;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em;
}

.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.alignwide {
    max-width: 1100px;
}

.fix {
    overflow: hidden;
}

/* ----------------------------------------------------
    Clearings
---------------------------------------------------- */
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/* ----------------------------------------------------
    Posts and pages
---------------------------------------------------- */
.sticky {
    display: block;
}

.updated:not(.published) {
    display: none;
}

.blog-pagination ul li {
    display: inline-block;
}

.blog-pagination ul li+li {
    margin: 0 5px;
}

.blog-pagination {
    display: block;
    width: 100%;
}

.blog-pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-pagination ul li a,
.blog-pagination ul li span {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #e2e2e2;
    line-height: 40px;
    text-align: center;
    font-weight: 600;
    -webkit-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    transition: .3s ease-in;
}

.blog-pagination ul li span.current,
.blog-pagination ul li a:hover {
    background-color: var(--tinf__primary-color);
    color: #fff;
}

/* ----------------------------------------------------
    Media
---------------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}

/* ----------------------------------------------------
    Captions
---------------------------------------------------- */
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    clear: both;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/* ----------------------------------------------------
    Galleries
---------------------------------------------------- */
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

/* ----------------------------------------------------
    Unit test
---------------------------------------------------- */
.wp-link-pages a {
    margin: 0 5px;
    -webkit-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    transition: .3s ease-in;
}

.wp-link-pages {
    margin-bottom: 30px;
    margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
    border: 1px solid #e2e2e2;
    padding: 5px 15px;
    display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
    background-color: var(--tinf__primary-color);
    color: #fff;
    border-color: var(--tinf__primary-color);
}

.wp-link-pages span:first-child {
    margin-right: 5px;
}

dl,
ol,
ul {
    padding-left: 20px;
}

.post-password-form input {
    display: block;
    border: 1px solid #e2e2e2;
    height: 50px;
    border-radius: 3px;
    padding: 0 20px;
}

.post-password-form label {
    font-weight: 600;
    color: #333;
}

.post-password-form input[type=submit] {
    width: 100px;
    height: 50px;
    background-color: var(--tinf__primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    -webkit-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    transition: .3s ease-in;
}

.post-password-form input[type=submit]:hover {
    background-color: #121A2F;
}

.footer-widget .table td,
.footer-widget .table th {
    padding: 0.50rem !important;
}

/* ----------------------------------------------------
    ScrollUp
---------------------------------------------------- */
#scrollUp {
    background-color: var(--section-bg-1);
    color: var(--tinf__heading-color);
    bottom: 70px;
    font-size: 20px;
    font-weight: bold;
    height: 40px;
    width: 40px;
    right: 3%;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-box-shadow: var(--tinf__box-shadow-3);
    box-shadow: var(--tinf__box-shadow-3);
}

#scrollUp i {
    line-height: 40px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#scrollUp:hover {
    background-color: var(--tinf__secondary-color);
    color: var(--white);
}

/* ----------------------------------------------------
    Owl Carousel 
---------------------------------------------------- */
.owl-dots {
    display: block;
    text-align: center;
    margin-top: 20px;
}

.owl-dots .owl-dot {
    display: inline-block;
    background-color: var(--tinf__secondary-color);
    height: 10px;
    width: 10px;
    margin-right: 30px;
    border-radius: 100%;
}

.owl-dots .owl-dot:last-child {
    margin-right: 0px;
}

.owl-dots .owl-dot:hover,
.owl-dots .owl-dot.active {
    background-color: var(--tinf__primary-color);
}

/* owl-arrow-1 */
.owl-arrow-1 .owl-nav>div {
    position: absolute;
    left: -60px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: auto;
}

.owl-arrow-1 .owl-nav>div.owl-next {
    left: auto;
    right: -60px;
}

@media only screen and (max-width: 1200px) {
    .owl-arrow-1 .owl-nav>div {
        right: auto;
        left: 0px;
    }

    .owl-arrow-1 .owl-nav>div.owl-next {
        right: 0px;
        left: auto;
    }
}

/* ----------------------------------------------------
    Slick Slider Dots, Arrow
---------------------------------------------------- */
/* Slick dots */
.slick-dots {
    margin: 0 0 30px;
    padding: 0;
    display: block;
    text-align: center;
    line-height: 1;
}

.slick-dots li {
    display: inline-block;
    list-style: none;
    display: inline-block;
    font-size: 0;
    height: 10px;
    width: 10px;
    border-radius: 100%;
    margin-right: 10px;
    background-color: var(--silver);
    cursor: pointer;
    margin-top: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.slick-dots li button {
    display: none;
}

.slick-dots li:hover,
.slick-dots li.slick-active {
    background-color: var(--tinf__secondary-color);
    height: 15px;
    width: 15px;
    margin-bottom: -2px;
}

/* slick-arrow */
.slick-arrow {
    cursor: pointer;
    z-index: 9;
}

/* slick-arrow-1 */
.slick-arrow-1 .slick-arrow {
    background-color: var(--white);
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 15px;
    right: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    line-height: 48px;
    display: block;
    border: 1px solid var(--white-4);
    border-radius: 100%;
    text-align: center;
    font-size: 20px;
    color: var(--tinf__primary-color) !important;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.slick-arrow-1 .slick-arrow:hover {
    background-color: var(--tinf__secondary-color);
    border-color: var(--tinf__secondary-color);
    color: var(--white) !important;
}

.slick-arrow-1 .slick-next {
    right: 15px;
    left: auto;
}

.slick-arrow-1:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.slick-arrow-1-inner.slick-arrow-1:hover .slick-arrow {
    left: 50px;
    right: auto;
}

.slick-arrow-1-inner.slick-arrow-1:hover .slick-next {
    right: 50px;
    left: auto;
}

@media (min-width: 1350px) {
    .slick-arrow-1:hover .slick-arrow {
        left: -50px;
        right: auto;
    }

    .slick-arrow-1:hover .slick-next {
        right: -50px;
        left: auto;
    }
}

/* slick-arrow-2 */
.slick-arrow-2 .slick-arrow {
    color: var(--tinf__primary-color) !important;
    cursor: pointer;
    position: absolute;
    bottom: -30px;
    height: 30px;
    width: 30px;
    line-height: 28px;
    display: block;
    left: 15px;
    border: 1px solid var(--border-color-1);
    text-align: center;
}

.slick-arrow-2 .slick-arrow:hover {
    background-color: var(--tinf__secondary-color);
    border-color: var(--tinf__secondary-color);
    color: var(--white) !important;
}

.slick-arrow-2 .slick-next {
    left: 60px;
}

/* slick-arrow-3 */
.slick-arrow-3 .slick-arrow {
    cursor: pointer;
    position: absolute;
    top: -120px;
    height: 60px;
    width: 60px;
    line-height: 58px;
    display: block;
    left: auto;
    right: 100px;
    border: 2px solid;
    text-align: center;
    -webkit-box-shadow: var(--tinf__box-shadow-2);
    box-shadow: var(--tinf__box-shadow-2);
}

.slick-arrow-3 .slick-arrow:hover {
    background-color: var(--tinf__secondary-color);
    border-color: var(--border-color-4);
    color: var(--white) !important;
}

.slick-arrow-3 .slick-next {
    right: 15px;
    background-color: var(--white);
    border-color: var(--white);
    color: var(--tinf__primary-color) !important;
}

.slick-arrow-3 .slick-prev {
    background-color: var(--tinf__secondary-color);
    border-color: var(--border-color-4);
    color: var(--white) !important;
}

/* slick-arrow-4 */
.slick-arrow-4 {
    margin: 0;
}

.slick-arrow-4 .slick-arrow {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    height: 50px;
    width: 50px;
    line-height: 50px;
    margin: 0 auto;
    border: 1px solid;
    border-radius: 100%;
}

.slick-arrow-4 .slick-arrow:hover {
    background-color: var(--tinf__secondary-color);
    border-color: var(--border-color-4);
    color: var(--white) !important;
}

.slick-arrow-4 .slick-next {
    right: -60px;
}

.slick-arrow-4 .slick-prev {
    left: -60px;
}

@media (max-width: 767px) {
    .slick-dots {
        margin: 0 0 15px;
    }
}

/* ----------------------------------------------------
    Background Overlay
---------------------------------------------------- */
.bg-overlay-black-10,
.bg-overlay-black-20,
.bg-overlay-black-30,
.bg-overlay-black-40,
.bg-overlay-black-50,
.bg-overlay-black-60,
.bg-overlay-black-70,
.bg-overlay-black-80,
.bg-overlay-black-90,
.bg-overlay-white-10,
.bg-overlay-white-20,
.bg-overlay-white-30,
.bg-overlay-white-40,
.bg-overlay-white-50,


.bg-overlay-white-60,
.bg-overlay-white-70,
.bg-overlay-white-80,
.bg-overlay-white-90 {
    z-index: 8;
    position: relative;
}

.bg-overlay-black-10:before,
.bg-overlay-black-20:before,
.bg-overlay-black-30:before,
.bg-overlay-black-40:before,
.bg-overlay-black-50:before,
.bg-overlay-black-60:before,
.bg-overlay-black-70:before,
.bg-overlay-black-80:before,
.bg-overlay-black-90:before,
.bg-overlay-white-10:before,
.bg-overlay-white-20:before,
.bg-overlay-white-30:before,
.bg-overlay-white-40:before,
.bg-overlay-white-50:before,
.bg-overlay-white-60:before,
.bg-overlay-white-70:before,
.bg-overlay-white-80:before,
.bg-overlay-white-90:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.bg-overlay-black-10:before {
    background: rgba(0, 0, 0, 0.1);
}

.bg-overlay-black-20:before {
    background: rgba(0, 0, 0, 0.2);
}

.bg-overlay-black-30:before {
    background: rgba(0, 0, 0, 0.3);
}

.bg-overlay-black-40:before {
    background: rgba(0, 0, 0, 0.4);
}

.bg-overlay-black-50:before {
    background: rgba(0, 0, 0, 0.5);
}

.bg-overlay-black-60:before {
    background: rgba(0, 0, 0, 0.6);
}

.bg-overlay-black-70:before {
    background: rgba(0, 0, 0, 0.7);
}

.bg-overlay-black-80:before {
    background: rgba(0, 0, 0, 0.8);
}

.bg-overlay-black-90:before {
    background: rgba(0, 0, 0, 0.9);
}

.bg-overlay-white-10:before {
    background: rgba(255, 255, 255, 0.1);
}

.bg-overlay-white-20:before {
    background: rgba(255, 255, 255, 0.2);
}

.bg-overlay-white-30:before {
    background: rgba(255, 255, 255, 0.3);
}

.bg-overlay-white-40:before {
    background: rgba(255, 255, 255, 0.4);
}

.bg-overlay-white-50:before {
    background: rgba(255, 255, 255, 0.5);
}

.bg-overlay-white-60:before {
    background: rgba(255, 255, 255, 0.6);
}

.bg-overlay-white-70:before {
    background: rgba(255, 255, 255, 0.7);
}

.bg-overlay-white-80:before {
    background: rgba(255, 255, 255, 0.8);
}

.bg-overlay-white-90:before {
    background: rgba(255, 255, 255, 0.9);
}

.bg-overlay-theme-05,
.bg-overlay-theme-10,
.bg-overlay-theme-20,
.bg-overlay-theme-30,
.bg-overlay-theme-40,
.bg-overlay-theme-50,
.bg-overlay-theme-60,
.bg-overlay-theme-70,
.bg-overlay-theme-80,
.bg-overlay-theme-90 {
    z-index: 9;
    position: relative;
}

.bg-overlay-theme-05:before,
.bg-overlay-theme-10:before,
.bg-overlay-theme-20:before,
.bg-overlay-theme-30:before,
.bg-overlay-theme-40:before,
.bg-overlay-theme-50:before,
.bg-overlay-theme-60:before,
.bg-overlay-theme-70:before,
.bg-overlay-theme-80:before,
.bg-overlay-theme-90:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.bg-overlay-theme-05:before {
    background: rgba(229, 62, 41, 0.05);
}

.bg-overlay-theme-10:before {
    background: rgba(229, 62, 41, 0.1);
}

.bg-overlay-theme-20:before {
    background: rgba(229, 62, 41, 0.2);
}

.bg-overlay-theme-30:before {
    background: rgba(229, 62, 41, 0.3);
}

.bg-overlay-theme-40:before {
    background: rgba(229, 62, 41, 0.4);
}

.bg-overlay-theme-50:before {
    background: rgba(229, 62, 41, 0.5);
}

.bg-overlay-theme-60:before {
    background: rgba(229, 62, 41, 0.6);
}

.bg-overlay-theme-70:before {
    background: rgba(229, 62, 41, 0.7);
}

.bg-overlay-theme-80:before {
    background: rgba(229, 62, 41, 0.8);
}

.bg-overlay-theme-90:before {
    background: rgba(229, 62, 41, 0.9);
}

.bg-overlay-theme-black-05,
.bg-overlay-theme-black-10,
.bg-overlay-theme-black-20,
.bg-overlay-theme-black-30,
.bg-overlay-theme-black-40,
.bg-overlay-theme-black-50,
.bg-overlay-theme-black-60,
.bg-overlay-theme-black-70,
.bg-overlay-theme-black-80,
.bg-overlay-theme-black-90 {
    z-index: 9;
    position: relative;
}

.bg-overlay-theme-black-05:before,
.bg-overlay-theme-black-10:before,
.bg-overlay-theme-black-20:before,
.bg-overlay-theme-black-30:before,
.bg-overlay-theme-black-40:before,
.bg-overlay-theme-black-50:before,
.bg-overlay-theme-black-60:before,
.bg-overlay-theme-black-70:before,
.bg-overlay-theme-black-80:before,
.bg-overlay-theme-black-90:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.bg-overlay-theme-black-05:before {
    background: rgba(7, 28, 31, 0.05);
}

.bg-overlay-theme-black-10:before {
    background: rgba(7, 28, 31, 0.1);
}

.bg-overlay-theme-black-20:before {
    background: rgba(7, 28, 31, 0.2);
}

.bg-overlay-theme-black-30:before {
    background: rgba(7, 28, 31, 0.3);
}

.bg-overlay-theme-black-40:before {
    background: rgba(7, 28, 31, 0.4);
}

.bg-overlay-theme-black-50:before {
    background: rgba(7, 28, 31, 0.5);
}

.bg-overlay-theme-black-60:before {
    background: rgba(7, 28, 31, 0.6);
}

.bg-overlay-theme-black-70:before {
    background: rgba(7, 28, 31, 0.7);
}

.bg-overlay-theme-black-80:before {
    background: rgba(7, 28, 31, 0.8);
}

.bg-overlay-theme-black-90:before {
    background: rgba(7, 28, 31, 0.9);
}

/* ----------------------------------------------
  Scrollbar
---------------------------------------------- */
.tinf__scrollbar {
    overflow-y: auto;
}

.tinf__scrollbar::-webkit-scrollbar {
    width: 2px;
    background-color: #f5f5f5;
    border-radius: 30px;
}

.tinf__scrollbar::-webkit-scrollbar-thumb {
    background-color: #ddd;
}

.mean-nav {
    overflow-y: auto;
}

.mean-nav::-webkit-scrollbar {
    width: 3px;
    background-color: var(--tinf__primary-color);
    border-radius: 30px;
}

.mean-nav::-webkit-scrollbar-thumb {
    background-color: var(--tinf__secondary-color);
}



/* ----------------------------------------------------
    Custom Height
---------------------------------------------------- */
.tinf__height-100 {
    height: 100px;
}

.tinf__height-200 {
    height: 200px;
}

.tinf__height-250 {
    height: 250px;
}

.tinf__height-300 {
    height: 300px;
}

.tinf__height-350 {
    height: 350px;
}

.tinf__height-400 {
    height: 400px;
}

.tinf__height-450 {
    height: 450px;
}

.tinf__height-500 {
    height: 500px;
}

.tinf__height-550 {
    height: 550px;
}

.tinf__height-600 {
    height: 600px;
}

.tinf__height-650 {
    height: 650px;
}

.tinf__height-700 {
    height: 700px;
}







/* ----------------------------------------------------
    Footer About Widget
---------------------------------------------------- */
@media (min-width: 992px) {
    .footer-about-widget {
        padding-right: 35px;
    }
}

/* ----------------------------------------------------
    Widget Responsive
---------------------------------------------------- */
@media (max-width: 1199px) {
    .widget {
        padding: 35px 20px 40px 20px;
    }

    .top-rated-product-img {
        max-width: 70px;
        margin-right: 15px;
    }
}

@media (max-width: 991px) {
    .tinf__right-sidebar {
        margin-top: 100px;
    }
}

@media (max-width: 767px) {
    .car-price-filter-range .price_filter .ui-state-default:last-child::after {
        display: none;
    }
}

/* ----------------------------------------------------
    END
---------------------------------------------------- */
/* ============================================================
>>> TABLE OF CONTENTS:
===============================================================
# Header
# Header Top Area
# Header Middle Area
# Header Bottom Area
# Header Feature Area
# Main Menu
# Header Options
# Mini Cart
# Header Searchbox
# Currency Menu
# Header Sticky
# Utilize Mobile Menu

============================================================= */
/* --------------------------------------------------------------
    Header
-------------------------------------------------------------- */
.tinf__header-area {
    z-index: 9999;
    position: relative;
}

/* ----------------------------------------------
    Header Top Area
---------------------------------------------- */
.tinf__header-top-area {
    border-bottom: 1px solid;
    border-color: var(--border-color-3);
}

.tinf__header-top-area .tinf__social-media ul li {
    font-size: 14px;
    margin: 0 10px 0 0;
}

.top-area-color-white {
    background-color: var(--tinf__primary-color);
}

.top-area-color-white p,
.top-area-color-white a,
.top-area-color-white li,
.top-area-color-white .welcome p,
.top-area-color-white .welcome a,
.top-area-color-white .tinf__drop-menu>ul>li>a,
.top-area-color-white .tinf__drop-menu>ul>li:hover>a {
    color: var(--white);
}

.tinf__header-top-area .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* welcome */
.welcome p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 40px;
}

.tinf__top-bar-menu>ul {
    padding: 0;
    margin: 0;
}

.tinf__top-bar-menu>ul>li {
    list-style: none;
    display: inline-block;
    margin: 0 30px 0 0;
    font-size: 14px;
    font-weight: 700;
}

.tinf__top-bar-menu>ul>li:last-child {
    margin-right: 0;
}

.tinf__top-bar-menu>ul>li>i,
.tinf__top-bar-menu>ul>li>a>i {
    margin-right: 3px;
    color: var(--tinf__secondary-color);
}

.tinf__top-bar-menu .tinf__currency-menu .active-currency {
    font-size: 14px;
    font-weight: 700;
}

.header-top-btn {
    display: inline-block;
}

.header-top-btn a {
    display: inline-block;
    padding: 0 20px;
    line-height: 40px;
    background-color: var(--tinf__secondary-color);
    color: var(--white);
}

.header-top-btn a:hover {
    background-color: var(--tinf__secondary-color-2);
}

/* ----------------------------------------------
    Header Middle Area
---------------------------------------------- */
.tinf__header-middle-area {
    z-index: 999;
}

.tinf__header-middle-area>.container-fluid>.row,
.tinf__header-middle-area>.container>.row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.tinf__header-middle-area>.container-fluid>.row>.col,
.tinf__header-middle-area>.container>.row>.col {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 1;
    position: static;
}

.site-logo {
    min-width: 185px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
}

.site-logo a {
    color: var(--tinf__primary-color);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    display: contents;
}

.site-logo i {
    color: var(--tinf__secondary-color);
    margin-right: 5px;
    font-size: 24px;
    position: relative;
    top: -2px;
}

.tinf__header-1 .tinf__header-middle-area {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* ----------------------------------------------
    Header Bottom Area (header-2)
---------------------------------------------- */
.header-bottom-area .row {
    position: relative;
}

.header-bottom-area .row .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sticky-logo {
    max-width: 200px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    height: 100%;
    float: left;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    display: none;
}

.header-menu-2 {
    text-align: center;
}

.header-menu-2 .tinf__main-menu>ul {
    display: inline-block;
}

/* ----------------------------------------------
    Header Feature Area
---------------------------------------------- */
.header-feature-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-feature-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    margin-right: 50px;
    max-width: 50%;
}

.header-feature-item:last-child {
    margin-right: 0;
}

.header-feature-item h6 {
    margin-bottom: 0;
    color: var(--tinf__body-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1;
}

.header-feature-item p {
    margin-bottom: 0;
    font-size: 16px;
    font-family: var(--tinf__heading-font);
    line-height: 1.2;
}

.header-feature-icon {
    margin-right: 10px;
    font-size: 25px;
    line-height: 1;
    color: var(--tinf__heading-color);
}

/* ----------------------------------------------
    Main Menu
---------------------------------------------- */
.header-menu-wrap,
.header-menu-column {
    position: inherit;
}

.tinf__main-menu ul {
    margin-bottom: 0;
}

.tinf__main-menu>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
}

.tinf__main-menu li {
    list-style: none;
    display: block;
    margin-top: 0;
}

.tinf__main-menu li>a {
    position: relative;
}

.tinf__main-menu>ul>li {
    display: inline-block;
    position: relative;
    margin-right: 20px;
}

.tinf__main-menu>ul>li:last-child {
    margin-right: 0px;
}

.tinf__main-menu>ul>li>a {
    font-size: 18px;
    padding: 20px 10px;
    display: inline-block;
    white-space: nowrap;
    color: var(--tinf__heading-color);
    font-weight: 600;
    font-family: var(--tinf__body-font);
}

.tinf__main-menu li:hover>a {
    color: var(--tinf__secondary-color) !important;
}

/* Submenu */
.tinf__main-menu li>ul,
.tinf__main-menu .sub-menu {
    position: absolute;
    margin: 0;
    top: 130%;
    -webkit-transition: opacity .2s ease .1s, visibility .2s ease .1s, top .2s ease .1s;
    -o-transition: opacity .2s ease .1s, visibility .2s ease .1s, top .2s ease .1s;
    transition: opacity .2s ease .1s, visibility .2s ease .1s, top .2s ease .1s;
    min-width: 230px;
    padding: 15px 0;
    -webkit-box-shadow: var(--tinf__box-shadow-4);
    box-shadow: var(--tinf__box-shadow-4);
    background-color: #fff;
    left: inherit;
    right: inherit;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    z-index: 999;
    border-top: 5px solid var(--tinf__secondary-color);
}

.tinf__main-menu li ul li,
.tinf__main-menu .sub-menu li {
    line-height: 1.3;
    padding: 12px 25px 12px 30px;
    font-size: 16px;
}

.mega-menu li ul {
    border-top: 0;
}

.mega-menu li ul li {
    padding-left: 10px;
    padding-right: 0;
}

.tinf__main-menu li:hover>ul,
.tinf__main-menu li:hover>.sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.tinf__main-menu li ul li>ul,
.tinf__main-menu .sub-menu li>.sub-menu {
    left: 100%;
}

.tinf__main-menu li ul li:hover>ul,
.tinf__main-menu .sub-menu li:hover>.sub-menu {
    top: 0;
}

.tinf__main-menu li ul li,
.tinf__main-menu .sub-menu li {
    position: relative;
}

.tinf__main-menu>ul>li:last-child ul li>ul,
.tinf__main-menu>ul>li:last-child .sub-menu li>.sub-menu,
.tinf__main-menu>ul>li:nth-last-child(2) ul li>ul,
.tinf__main-menu>ul>li:nth-last-child(2) .sub-menu li>.sub-menu,
.tinf__main-menu>ul>li:nth-last-child(3) ul li>ul,
.tinf__main-menu>ul>li:nth-last-child(3) .sub-menu li>.sub-menu {
    left: auto;
    right: 100%;
}

.tinf__main-menu li>ul.tinf__sub-menu-col-2,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-2,
.tinf__main-menu li>ul.tinf__sub-menu-col-3,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-3 {
    width: 510px;
}

.tinf__main-menu li>ul.tinf__sub-menu-col-2>li,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-2>li,
.tinf__main-menu li>ul.tinf__sub-menu-col-3>li,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-3>li {
    width: 50%;
    float: left;
    padding: 12px 20px 12px 25px;
}

.tinf__main-menu li>ul.tinf__sub-menu-col-2>li>a,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-2>li>a,
.tinf__main-menu li>ul.tinf__sub-menu-col-3>li>a,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-3>li>a {
    padding: 12px 20px 12px 20px;
    margin-left: 0;
    border-bottom: 1px dashed #ddd;
    display: block;
    font-weight: 600;
    background-color: var(--section-bg-1);
}

.tinf__main-menu li>ul.tinf__sub-menu-col-2 .sub-menu-child,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-2 .sub-menu-child,
.tinf__main-menu li>ul.tinf__sub-menu-col-3 .sub-menu-child,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-3 .sub-menu-child {
    position: inherit;
    float: left;
    width: 100%;
    left: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    z-index: inherit;
}

.tinf__main-menu li>ul.tinf__sub-menu-col-2 .sub-menu-child li,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-2 .sub-menu-child li,
.tinf__main-menu li>ul.tinf__sub-menu-col-3 .sub-menu-child li,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-3 .sub-menu-child li {
    padding: 12px 20px 12px 20px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
}

.tinf__main-menu li>ul.tinf__sub-menu-col-2 .sub-menu-child li img,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-2 .sub-menu-child li img,
.tinf__main-menu li>ul.tinf__sub-menu-col-3 .sub-menu-child li img,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-3 .sub-menu-child li img {
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 150px;
    height: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: var(--tinf__box-shadow-3);
    box-shadow: var(--tinf__box-shadow-3);
    z-index: 999;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tinf__main-menu li>ul.tinf__sub-menu-col-2 .sub-menu-child li:hover img,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-2 .sub-menu-child li:hover img,
.tinf__main-menu li>ul.tinf__sub-menu-col-3 .sub-menu-child li:hover img,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-3 .sub-menu-child li:hover img {
    bottom: -10px;
    visibility: visible;
    opacity: 1;
}

.tinf__main-menu li>ul.tinf__sub-menu-col-3,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-3 {
    width: 780px;
}

.tinf__main-menu li>ul.tinf__sub-menu-col-3>li,
.tinf__main-menu .sub-menu.tinf__sub-menu-col-3>li {
    width: 33.33%;
}

.tinf__main-menu li:hover>ul.tinf__sub-menu-col-2 .sub-menu-child,
.tinf__main-menu li:hover>.sub-menu.tinf__sub-menu-col-2 .sub-menu-child {
    opacity: 1;
    visibility: visible;
}

.menu-pages-img-show li {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
}

.menu-pages-img-show li img {
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 130px;
    height: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: var(--tinf__box-shadow-3);
    box-shadow: var(--tinf__box-shadow-3);
    z-index: 999;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.menu-pages-img-show li:hover img {
    bottom: -10px;
    visibility: visible;
    opacity: 1;
}

/* Menu Reverse */
.tinf__main-menu>ul>li:last-child,
.tinf__main-menu>ul>li:nth-last-child(2) {
    position: relative;
}

.tinf__main-menu>ul>li:last-child>ul,
.tinf__main-menu>ul>li:last-child>.sub-menu,
.tinf__main-menu>ul>li:nth-last-child(2)>ul,
.tinf__main-menu>ul>li:nth-last-child(2)>.sub-menu {
    left: auto;
    right: 0;
}



/* Menu Icon */
.menu-icon>a {
    position: relative;
}

.menu-icon>a::before {
    content: "\f067";
    font-size: 8px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'FontAwesome';
    font-weight: 900;
}



/* ----------------------------------------------
    Header Options
---------------------------------------------- */
.tinf__header-options>ul {
    padding: 0;
    margin: 0;
}

.tinf__header-options>ul>li {
    display: inline-block;
    margin-right: 15px;
    margin-top: 0;
    list-style: none;
}

.tinf__header-options>ul>li:last-child {
    margin-right: 0;
}

.tinf__header-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.tinf__header-options ul li {
    list-style: none;
}

.tinf__header-options>div {
    margin-right: 20px;
}

.tinf__header-options>div:last-child {
    margin-right: 0;
}

.tinf__header-options .tinf__drop-menu>ul>li>a {
    padding: 0;
}

.tinf__header-options .tinf__drop-menu ul {
    padding: 0;
}

.tinf__header-options .tinf__drop-menu ul li ul {
    padding: 10px 0;
}

.tinf__header-options-2>div {
    margin-right: 10px;
}

.tinf__header-options-2 .header-search-1,
.tinf__header-options-2 .tinf__drop-menu>ul>li>a,
.tinf__header-options-2 .mini-cart-icon a,
.tinf__header-options-2 .header-wishlist {
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: var(--white);
    color: var(--tinf__heading-color);
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-box-shadow: var(--tinf__box-shadow-1);
    box-shadow: var(--tinf__box-shadow-1);
}

.tinf__header-options-2 .header-search-1:hover,
.tinf__header-options-2 .tinf__drop-menu>ul>li>a:hover,
.tinf__header-options-2 .mini-cart-icon a:hover,
.tinf__header-options-2 .header-wishlist:hover {
    background: var(--tinf__secondary-color);
    color: var(--white);
}

.tinf__header-options-2 .header-search-1:hover,
.tinf__header-options-2 .tinf__drop-menu>ul>li:hover>a,
.tinf__header-options-2 .mini-cart-icon a:hover {
    background: var(--tinf__secondary-color);
    color: var(--white);
}

.tinf__header-options-2 .tinf__drop-menu.tinf__currency-menu>ul>li>a {
    height: inherit;
    width: inherit;
    line-height: inherit;
    background: inherit;
    color: inherit;
}

.tinf__header-options-2 .mobile-menu-toggle>a {
    width: 50px;
    height: 50px;
    background: var(--white);
    -webkit-box-shadow: var(--tinf__box-shadow-1);
    box-shadow: var(--tinf__box-shadow-1);
}

/* tinf__drop-menu */
.tinf__drop-menu {
    display: inline-block;
    text-align: left;
}

.tinf__drop-menu li {
    margin-top: 0;
}

.tinf__drop-menu+.tinf__drop-menu {
    margin-left: 10px;
}

.tinf__drop-menu ul {
    margin-bottom: 0;
}

.tinf__drop-menu>ul>li {
    display: inline-block;
    position: relative;
}

.tinf__drop-menu>ul>li>a {
    display: block;
    text-decoration: none;
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
}

.tinf__drop-menu ul li ul {
    position: absolute;
    min-width: 150px;
    right: 0;
    background-color: #fff;
    z-index: 999;
    -webkit-box-shadow: var(--tinf__box-shadow-4);
    box-shadow: var(--tinf__box-shadow-4);
    border-top: 1px solid #ececec;
    top: 130%;
    padding: 10px 0;
    margin: 0;
    -webkit-transition: opacity .2s ease .1s, visibility .2s ease .1s, top .2s ease .1s;
    -o-transition: opacity .2s ease .1s, visibility .2s ease .1s, top .2s ease .1s;
    transition: opacity .2s ease .1s, visibility .2s ease .1s, top .2s ease .1s;
    opacity: 0;
    visibility: hidden;
}

.tinf__drop-menu ul li ul li {
    display: block;
    padding: 5px 15px;
    font-size: 16px;
    color: var(--tinf__paragraph-color);
    font-weight: 500;
}

.tinf__drop-menu ul li ul li a {
    color: inherit;
}

.tinf__drop-menu ul li:hover>ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.tinf__drop-menu ul li:hover>a {
    color: var(--tinf__secondary-color);
}

.tinf__drop-menu>ul>li,
.header-wishlist a {
    font-size: 20px;
}

/* header-wishlist */
.header-wishlist {
    color: var(--tinf__heading-color);
}




/* ----------------------------------------
  tinf__header-logo-mobile-menu-in-mobile
---------------------------------------- */
.tinf__header-logo-mobile-menu-in-mobile {
    margin-top: 0;
}

/* ----------------------------------------------
    Header Sticky
---------------------------------------------- */
.sticky-active {
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    background-color: var(--white);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0 10px 50px 0 rgba(46, 56, 220, 0.2);
    box-shadow: 0 10px 50px 0 rgba(46, 56, 220, 0.2);
}

.tinf__header-4 .tinf__header-middle-area.sticky-active,
.tinf__header-5 .tinf__header-middle-area.sticky-active {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Sticky Background Secondary */
.sticky-active.tinf__sticky-bg-secondary {
    background-color: var(--tinf__secondary-color);
}

.sticky-active.tinf__sticky-bg-secondary .tinf__main-menu>ul>li>a,
.sticky-active.tinf__sticky-bg-secondary .header-wishlist a,
.sticky-active.tinf__sticky-bg-secondary .mini-cart-icon,
.sticky-active.tinf__sticky-bg-secondary .header-feature-item h6,
.sticky-active.tinf__sticky-bg-secondary .header-feature-item p,
.sticky-active.tinf__sticky-bg-secondary .header-feature-icon,
.sticky-active.tinf__sticky-bg-secondary .header-search-1 .search-icon,
.sticky-active.tinf__sticky-bg-secondary .tinf__header-options .tinf__drop-menu>ul>li>a {
    color: var(--white);
}

.sticky-active.tinf__sticky-bg-secondary .tinf__header-options-2 .header-search-1,
.sticky-active.tinf__sticky-bg-secondary .tinf__header-options-2 .header-search-1 i,
.sticky-active.tinf__sticky-bg-secondary .tinf__header-options-2 .tinf__drop-menu>ul>li>a,
.sticky-active.tinf__sticky-bg-secondary .tinf__header-options-2 .mini-cart-icon a,
.sticky-active.tinf__sticky-bg-secondary .tinf__header-options-2 .header-wishlist {
    background: var(--white);
    color: var(--tinf__heading-color);
}

/* Sticky Background Black */
.sticky-active.tinf__sticky-bg-black {
    background-color: var(--tinf__heading-color);
}

.sticky-active.tinf__sticky-bg-black .tinf__main-menu>ul>li>a,
.sticky-active.tinf__sticky-bg-black .header-wishlist a,
.sticky-active.tinf__sticky-bg-black .mini-cart-icon,
.sticky-active.tinf__sticky-bg-black .header-feature-item h6,
.sticky-active.tinf__sticky-bg-black .header-feature-item p,
.sticky-active.tinf__sticky-bg-black .header-feature-icon,
.sticky-active.tinf__sticky-bg-black .header-search-1 .search-icon,
.sticky-active.tinf__sticky-bg-black .tinf__header-options .tinf__drop-menu>ul>li>a {
    color: var(--white);
}

.sticky-active.tinf__sticky-bg-black .tinf__header-options-2 .header-search-1,
.sticky-active.tinf__sticky-bg-black .tinf__header-options-2 .header-search-1 i,
.sticky-active.tinf__sticky-bg-black .tinf__header-options-2 .tinf__drop-menu>ul>li>a,
.sticky-active.tinf__sticky-bg-black .tinf__header-options-2 .mini-cart-icon a,
.sticky-active.tinf__sticky-bg-black .tinf__header-options-2 .header-wishlist {
    background: var(--white);
    color: var(--tinf__heading-color);
}

/* Sticky Background White */
.sticky-active.tinf__sticky-bg-white {
    background-color: var(--white);
}

.sticky-active.tinf__sticky-bg-white .tinf__main-menu>ul>li>a,
.sticky-active.tinf__sticky-bg-white .header-wishlist a,
.sticky-active.tinf__sticky-bg-white .mini-cart-icon,
.sticky-active.tinf__sticky-bg-white .header-feature-item h6,
.sticky-active.tinf__sticky-bg-white .header-feature-item p,
.sticky-active.tinf__sticky-bg-white .header-feature-icon,
.sticky-active.tinf__sticky-bg-white .header-search-1 .search-icon,
.sticky-active.tinf__sticky-bg-white .tinf__header-options .tinf__drop-menu>ul>li>a {
    color: var(--tinf__heading-color);
}

.sticky-active.tinf__sticky-bg-white .tinf__header-options-2 .header-search-1,
.sticky-active.tinf__sticky-bg-white .tinf__header-options-2 .header-search-1 i,
.sticky-active.tinf__sticky-bg-white .tinf__header-options-2 .tinf__drop-menu>ul>li>a,
.sticky-active.tinf__sticky-bg-white .tinf__header-options-2 .mini-cart-icon a,
.sticky-active.tinf__sticky-bg-white .tinf__header-options-2 .header-wishlist {
    -webkit-box-shadow: var(--tinf__box-shadow-1);
    box-shadow: var(--tinf__box-shadow-1);
    background: var(--white);
    color: var(--tinf__heading-color);
}

.header-contact-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* tinf__header-transparent */
.tinf__header-transparent {
    position: absolute;
    width: 100%;
    z-index: 999;
    background-color: transparent;
}

.tinf__header-transparent .top-area-color-white {
    background-color: transparent;
}

/* ----------------------------------------
  Utilize Mobile Menu
---------------------------------------- */
.tinf__utilize {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: auto;
    display: block;
    overflow: hidden;
    width: 400px;
    height: 100vh;
    padding: 20px 10px 20px 30px;
    -webkit-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    background-color: var(--white);
    -webkit-box-shadow: none;
    box-shadow: none;
    z-index: 99999;
}

.tinf__utilize.tinf__utilize-mobile-menu {
    right: auto;
    left: 0;
    padding: 50px 40px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.tinf__utilize-menu-inner {
    position: relative;
    z-index: 9;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -ms-touch-action: auto;
    touch-action: auto;
    overflow-x: hidden !important;
    padding-right: 20px;
}

.tinf__utilize-menu-search-form {
    margin-bottom: 30px;
    position: relative;
}

.tinf__utilize-menu-search-form input[type="text"] {
    margin-bottom: 0;
}

.tinf__utilize-menu-search-form button {
    background-color: transparent;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 100%;
    padding: 0 15px;
}

@media (max-width: 479px) {
    .tinf__utilize {
        width: 300px;
    }

    .tinf__utilize.tinf__utilize-mobile-menu {
        padding: 50px 20px;
    }
}

.tinf__utilize-menu>ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tinf__utilize-menu>ul>li {
    position: relative;
}

.tinf__utilize-menu>ul>li .menu-expand {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 24px;
    height: 44px;
    cursor: pointer;
    background-color: transparent;
}

.tinf__utilize-menu>ul>li .menu-expand::before,
.tinf__utilize-menu>ul>li .menu-expand::after {
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 7px);
    width: 14px;
    height: 2px;
    content: "";
    -webkit-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
    background-color: #7e7e7e;
}

.tinf__utilize-menu>ul>li .menu-expand::after {
    -webkit-transform: rotate(90deg) scale(0.75);
    -ms-transform: rotate(90deg) scale(0.75);
    transform: rotate(90deg) scale(0.75);
}

.tinf__utilize-menu>ul>li.active .menu-expand::after {
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
}

.tinf__utilize-menu>ul>li>a {
    display: block;
    padding: 8px 24px 8px 0;
    text-transform: uppercase;
}

.tinf__utilize-menu>ul>li .sub-menu {
    position: static;
    top: auto;
    display: none;
    visibility: visible;
    width: 100%;
    min-width: auto;
    padding: 0;
    padding-left: 15px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    opacity: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.tinf__utilize-menu>ul>li .sub-menu li {
    line-height: inherit;
    position: relative;
    list-style: none;
}

.tinf__utilize-overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.tinf__utilize.tinf__utilize-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.tinf__utilize.tinf__utilize-mobile-menu.tinf__utilize-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mobile-menu-toggle {
    margin-right: 15px;
}

.mobile-menu-toggle>a {
    width: 24px;
    height: 32px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #333;
    margin-left: auto;
}

.mobile-menu-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 60px;
    margin-top: -2px;
    margin-left: -2px;
    cursor: pointer;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.mobile-menu-toggle svg path {
    -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
    -o-transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
    transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
    fill: none;
    stroke: #333;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    stroke-width: 30px;
}

.mobile-menu-toggle svg path#top,
.mobile-menu-toggle svg path#bottom {
    stroke-dasharray: 240px 950px;
}

.mobile-menu-toggle svg path#middle {
    stroke-dasharray: 240px 240px;
}

.mobile-menu-toggle .close svg path#top,
.mobile-menu-toggle .close svg path#bottom {
    stroke-dasharray: -650px;
    stroke-dashoffset: -650px;
}

.mobile-menu-toggle .close svg path#middle {
    stroke-dasharray: 1px 220px;
    stroke-dashoffset: -115px;
}

.tinf__utilize-menu-head {
    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: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.tinf__utilize-menu-head .tinf__utilize-menu-title {
    font-weight: 700;
}

.tinf__utilize-menu-head .tinf__utilize-close {
    background-color: transparent;
    /* font-size: 30px;
    padding: 0 15px; */
}

.tinf__utilize-buttons {
    border-top: 1px solid var(--border-color-1);
    padding: 5px 0px 20px;
    margin: 30px 0;
    border-bottom: 1px solid var(--border-color-1);
}

.tinf__utilize-buttons ul {
    padding: 0;
    margin: 0;
}

.tinf__utilize-buttons ul li {
    display: inline-block;
}

.tinf__utilize-buttons .utilize-btn-icon {
    width: 50px;
    display: inline-block;
    height: 50px;
    border: 2px solid var(--border-color-1);
    line-height: 46px;
    text-align: center;
    margin-right: 10px;
}

.tinf__utilize-buttons-2 ul li {
    display: block;
}

.menu-btn-white.mobile-menu-toggle>a {
    color: #fff;
}

.menu-btn-white.mobile-menu-toggle svg path {
    stroke: #fff;
}

.menu-btn-border a {
    width: 40px;
    height: 38px;
    border: 1px solid;
}

/* ----------------------------------------
  Responsive
---------------------------------------- */
@media (min-width: 1200px) and (max-width: 1300px) {
    .tinf__main-menu>ul>li {
        margin-right: 15px;
    }

    .tinf__main-menu>ul>li:last-child {
        margin-right: 0;
    }

    .tinf__main-menu>ul>li>a {
        font-size: 15px;
    }

    .tinf__header-6 .tinf__main-menu>ul>li {
        margin-right: 10px;
    }

    .tinf__header-6 .tinf__main-menu>ul>li:last-child {
        margin-right: 0px;
    }

    .tinf__header-6 .special-link a {
        padding: 15px 20px !important;
    }

    .tinf__header-6 .tinf__main-menu>ul>li>a {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .site-logo {
        min-width: 180px;
    }

    .tinf__main-menu>ul>li>a {
        padding: 20px 15px;
    }

    .tinf__main-menu>ul>li {
        margin-right: 10px;
    }

    .tinf__header-3 .header-feature-item {
        display: none;
    }

    .tinf__header-logo-and-mobile-menu .site-logo-wrap {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin: 10px 0 10px;
    }

    .tinf__header-logo-and-mobile-menu .tinf__header-middle-area>.container-fluid>.row>.col,
    .tinf__header-logo-and-mobile-menu .tinf__header-middle-area>.container>.row>.col {
        max-width: 65%;
    }

    .tinf__header-logo-and-mobile-menu .tinf__header-options {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
    }
}

@media (max-width: 991px) {

    .header-search-column,
    .header-menu-column {
        display: none;
    }

    /* sticky */
    .sticky-active {
        position: inherit;
    }

    .tinf__header-2 .tinf__header-middle-area>.container>.row .header-feature-column {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
        border-top: 1px solid #ddd;
    }

    .tinf__header-2 .header-feature-area {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .tinf__header-2 .header-feature-item {
        margin-right: 15px;
    }

    .tinf__header-3 .tinf__header-middle-area>.container>.row .header-search-column {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
        border-top: 1px solid #ddd;
    }

    .tinf__header-3 .header-search-2 {
        min-width: 280px;
    }

    .tinf__top-bar-menu ul li {
        margin: 0 20px 0 0;
    }
}

@media (max-width: 767px) {
    .tinf__header-top-area {
        padding: 5px 0;
        text-align: center;
    }

    .tinf__header-top-area .tinf__social-media ul li {
        font-size: 12px;
        margin: 0 5px 0 0;
    }

    .tinf__top-bar-menu .tinf__currency-menu .active-currency,
    .tinf__top-bar-menu>ul>li {
        font-size: 13px;
    }

    .tinf__drop-menu>ul>li {
        position: inherit;
    }

    .tinf__drop-menu>ul>li>a {
        height: 20px;
        line-height: 20px;
    }

    .tinf__drop-menu ul li ul {
        left: 50%;
        right: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .top-bar-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .welcome p {
        line-height: 20px;
        margin: 5px 0;
    }

    .site-logo {
        width: 150px !important;
    }

    .tinf__header-5 .top-bar-right,
    .tinf__header-4 .top-bar-right {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 5px;
    }

    .tinf__header-4 .site-logo-wrap,
    .tinf__header-5 .site-logo-wrap {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0px 0 10px;
    }

    .tinf__header-4 .tinf__header-options,
    .tinf__header-5 .tinf__header-options {
        margin-left: 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: var(--tinf__secondary-color);
    }

    .tinf__header-3 .top-bar-right {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 5px;
    }

    .tinf__header-logo-and-mobile-menu-in-mobile .site-logo-wrap {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        /* margin: 10px 0 10px; */
        width: 150px;
    }

    .tinf__header-logo-and-mobile-menu-in-mobile .tinf__header-middle-area>.container-fluid>.row>.col,
    .tinf__header-logo-and-mobile-menu-in-mobile .tinf__header-middle-area>.container>.row>.col {
        max-width: 65%;
    }

    .tinf__header-logo-and-mobile-menu-in-mobile .tinf__header-options {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
    }

    .header-top-btn a {
        padding: 0 15px;
        line-height: 25px;
    }
}

@media (max-width: 575px) {
    .site-logo a {
        font-size: 24px;
    }

    .site-logo a i {
        font-size: 20px;
    }

    .tinf__header-1 .tinf__header-middle-area>.container>.row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }

    .tinf__header-1 .site-logo {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .tinf__header-1 .tinf__header-options {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 30px;
    }

    .tinf__header-7 .site-logo {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .tinf__header-7 .tinf__header-options {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 20px;
    }

    .tinf__header-7 .tinf__header-middle-area>.container>.row .col,
    .tinf__header-7 .tinf__header-middle-area>.container-fluid>.row .col {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .tinf__header-3 .mini-cart-icon-2>a {
        min-width: auto;
    }

    .tinf__header-3 .mini-cart-icon-2>a h6 {
        display: none;
    }
}

@media (max-width: 449px) {
    .tinf__header-options>div {
        margin-right: 10px;
    }

    .header-feature-area {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }

    .header-feature-item:last-child {
        padding-top: 0;
    }

    .get-support {
        padding-left: 10px;
        margin-left: 10px;
    }

    .get-support .get-support-icon {
        font-size: 20px;
        display: none;
    }

    .get-support .get-support-info h6 {
        display: 13px;
    }

    .get-support .get-support-info h4 {
        font-size: 16px;
    }
}

@media (max-width: 370px) {
    .tinf__header-3 .tinf__header-options>ul>li {
        margin-right: 5px;
    }
}

/* ----------------------------------------
  Icon Font
---------------------------------------- */
.tinf__header-options i,
.tinf__header-top-area i {
    font-weight: bold;
}





/* ----------------------------------------------------
    Common CSS
---------------------------------------------------- */
.tinf__social-media ul {
    margin: 0;
    padding: 0;
}

.tinf__social-media ul li {
    list-style: none;
    display: inline-block;
    margin: 0 15px 0 0;
}

.tinf__social-media ul li:last-child {
    margin: 0;
}

.tinf__social-media-2 ul {
    margin: 0;
    padding: 0;
}

.tinf__social-media-2 ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}

.tinf__social-media-2 ul li a {
    background-color: var(--section-bg-1);
    color: var(--tinf__paragraph-color);
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.tinf__social-media-2 ul li a i {
    color: inherit;
}

.tinf__social-media-2 ul li:last-child {
    margin-right: 0;
}

.tinf__social-media-2 ul li:hover a {
    background-color: var(--tinf__secondary-color);
    color: var(--white);
}

.tinf__social-media-3 ul {
    margin: 0;
    padding: 0;
}

.tinf__social-media-3 ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}

.tinf__social-media-3 ul li a {
    background-color: var(--white);
    color: var(--tinf__paragraph-color);
    border: 2px solid var(--border-color-11);
    display: block;
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
}

.tinf__social-media-3 ul li a i {
    color: inherit;
}

.tinf__social-media-3 ul li:last-child {
    margin-right: 0;
}

.tinf__social-media-3 ul li:hover a {
    background-color: var(--tinf__secondary-color);
    border-color: var(--tinf__secondary-color);
    color: var(--white);
}

.bg-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-image-top {
    background-size: auto;
    background-position: top center;
    background-repeat: no-repeat;
}

.bg-image-right-before {
    position: relative;
}

.bg-image-right-before::before {
    position: absolute;
    content: "";
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/bg/21.jpg);
    height: 100%;
    width: 48%;
    left: auto;
    right: 0;
    top: 0;
}

.bg-image-left-before {
    position: relative;
}

.bg-image-left-before::before {
    position: absolute;
    content: "";
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/bg/21.jpg);
    height: 100%;
    width: 48%;
    left: 0;
    right: auto;
    top: 0;
}

.nice-select .option {
    font-weight: 400;
}

/* Responsive Device under :991px. */
@media (max-width: 991px) {
    .bg-image-top {
        background-size: inherit;
    }

    .bg-image-right-before::before,
    .bg-image-left-before::before {
        display: none;
    }
}

.tinf__social-media-4 ul {
    margin: 0;
    padding: 0;
}

.tinf__social-media-4 ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}

.tinf__social-media-4 ul li a {
    background-color: var(--tinf__primary-color-3);
    color: var(--white);
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 100%;
}

.tinf__social-media-4 ul li:last-child {
    margin-right: 0;
}

.tinf__social-media-4 ul li:hover a {
    background-color: var(--tinf__secondary-color);
    color: var(--white);
}

/* ----------------------------------------
  Section title
---------------------------------------- */
.section-title-area {
    margin-bottom: 50px;
}

.section-title-area p {
    margin-bottom: 0;
    max-width: 500px;
}

.section-title-area p+p {
    margin-top: 15px;
}

.section-title-area.text-right p {
    margin-left: auto;
}

.section-title-area.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.3;
}

.section-title span {
    color: var(--tinf__secondary-color);
}

.section-title p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--tinf__paragraph-color);
    margin-top: 20px;
}

.section-title.white .section-title {
    color: var(--white);
}

.section-title.white p {
    color: rgba(var(--white), 0.7);
}

/* tinf__separate-line */
.tinf__separate-line {
    position: relative;
    display: inline-block;
    min-width: 200px;
    margin-bottom: 3px;
    text-align: center !important;
}

.tinf__separate-line::before {
    position: absolute;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 1px;
    background: -webkit-gradient(linear, left top, right top, from(#f28bc2), color-stop(50%, #d8b1f2));
    background: -webkit-linear-gradient(left, #f28bc2 0%, #d8b1f2 50%);
    background: -o-linear-gradient(left, #f28bc2 0%, #d8b1f2 50%);
    background: linear-gradient(90deg, #f28bc2 0%, #d8b1f2 50%);
}

.tinf__separate-line .separate-icon {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 0 15px;
}

.tinf__separate-line i {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 0 -4px;
    color: var(--tinf__secondary-color);
}

/* Section Title 2 */
.tinf__section-title-2 {
    margin-bottom: 40px;
}

.tinf__section-title-2 .section-subtitle {
    margin-top: 0;
}

.tinf__section-title-2 .section-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.tinf__section-title-2 p {
    padding: 0 0 0 30px;
    border-width: 0 0 0 2px;
    border-style: solid;
    border-color: var(--tinf__secondary-color);
    max-width: 450px;
}

.tinf__section-title-2.text-right p {
    padding: 0 30px 0 0;
    border-width: 0 2px 0 0;
    margin-left: auto;
}

.tinf__section-title-2.text-center p {
    padding: 0 0 0 30px;
    border-width: 0 0 0 2px;
    margin-left: auto;
    margin-right: auto;
    text-align: left !important;
}

/* Section Title 3 */
.section-title-style-3 {
    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;
}

.section-title-style-3 .section-brief-in p {
    padding: 0 30px 0 0;
    border-width: 0 2px 0 0;
    margin-left: auto;
    margin-right: 30px;
    text-align: right;
}













/* ----------------------------------------------------
    Footer Default Style
---------------------------------------------------- */
.footer-widget .footer-title {
    font-size: 22px;
}

/* footer-2 */
.tinf__footer-2 .footer-widget .footer-title {
    font-size: 24px;
}

.tinf__footer-2 .footer-widget p,
.tinf__footer-2 .footer-widget li {
    font-size: 16px;
}

.tinf__footer-2 .footer-about-widget .footer-logo {
    position: relative;
    top: -20px;
    margin-bottom: 10px;
}

.tinf__footer-2 .footer-menu ul li {
    margin-bottom: 30px;
    font-weight: 600;
}

.tinf__footer-2 .footer-widget .tinf__blog-meta li,
.footer-widget .tinf__blog-meta li {
    font-size: 14px;
}

/* footer-color-1 */
.tinf__footer-color-1 p {
    color: var(--tinf__color-2);
}

.tinf__footer-color-1 p a {
    color: var(--white);
}

.tinf__footer-color-1 .tinf__footer-timeline-widget-1 li span {
    color: var(--tinf__color-1);
}

.tinf__footer-color-1 .tinf__footer-timeline-widget-1 li:last-child span {
    color: var(--white);
}

.tinf__footer-color-1 .footer-menu ul li {
    color: var(--tinf__color-2);
}

.tinf__footer-color-1 .tinf__footer-blog-item {
    border-color: var(--border-color-6);
}

.tinf__footer-color-1 .tinf__footer-blog-item .tinf__blog-meta li {
    color: var(--tinf__color-2);
}

.tinf__footer-color-1 .tinf__copyright-area {
    background-color: var(--tinf__primary-color-2);
}

.tinf__footer-color-1 .get-support-info h6 {
    color: var(--tinf__color-4);
}

.tinf__footer-color-1 .get-support-info h4 {
    color: var(--white);
}

.tinf__footer-color-1 .tinf__copyright-menu ul li {
    color: var(--white);
}

/* footer-color-2 */
.tinf__footer-color-2 .tinf__footer-timeline-widget-1 {
    background-color: var(--white);
}

.tinf__footer-color-2 .tinf__footer-timeline-widget-1 li {
    border-color: transparent;
}

.tinf__footer-color-2 .tinf__footer-timeline-widget-1 li:last-child span {
    color: var(--tinf__secondary-color);
}

.tinf__footer-color-2 .tinf__footer-blog-item {
    border-color: var(--border-color-7);
}

.tinf__footer-color-2 .tinf__copyright-area {
    background-color: var(--white-4);
}

/*-------------------------
    Footer Area
-------------------------*/
.footer-top-area {
    padding-top: 92px;
    padding-bottom: 20px;
}

.footer-widget {
    margin-bottom: 60px;
}

.footer-logo {
    position: relative;
    top: -10px;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
}

/* ----------------------------------------------------
    Footer About Widget
---------------------------------------------------- */
/* footer-address */
.footer-address ul {
    margin: 0;
    padding: 0;
}

.footer-address ul li {
    list-style: none;
    display: block;
    margin-top: 8px;
}

.footer-address ul li:after {
    display: block;
    clear: both;
    content: "";
}

.footer-address ul li .footer-address-icon {
    float: left;
    margin-right: 15px;
}

.footer-address ul li .footer-address-info {
    overflow: hidden;
}

.footer-address ul li .footer-address-info p {
    margin-bottom: 0;
}

/* ----------------------------------------------------
    Footer Menu Widget
---------------------------------------------------- */
/* footer-menu */
.footer-menu ul {
    margin: 0;
    padding: 0;
}

.footer-menu ul li {
    list-style: none;
    margin-top: 0px;
    margin-bottom: 15px;
    position: relative;
}

.footer-menu ul li a {
    position: relative;
}

.footer-menu ul li a::before {
    position: absolute;
    content: "//";
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
    opacity: 0;
    visibility: hidden;
    margin-left: -20px;
    color: var(--tinf__secondary-color);
}

.footer-menu ul li:hover a {
    padding-left: 20px;
}

.footer-menu ul li:hover a::before {
    opacity: 1;
    visibility: visible;
    margin-left: 0;
}

.footer-menu ul ul {
    margin-left: 15px;
}

/* footer-menu-widget-2-column */
.footer-menu-widget-2-column {
    padding-left: 30px;
}

.footer-menu-widget-2-column .footer-menu {
    width: 50%;
    float: left;
}

.footer-menu-widget-2-column .footer-menu:nth-child(odd) {
    padding-left: 20px;
}

.footer-menu-widget-2-column ul {
    margin: 0;
}

.footer-menu-widget-2-column ul li {
    font-weight: 600;
}


/* ----------------------------------------------------
    Footer Timeline Widget
---------------------------------------------------- */
.tinf__footer-timeline-widget {
    padding: 50px 50px 40px;
    border-bottom: 5px solid;
    border-color: var(--border-color-5);
    margin-top: -92px;
}

.tinf__footer-timeline-widget .footer-title {
    font-size: 36px;
}

.tinf__footer-timeline-widget ul {
    margin: 0;
    padding: 0;
}

.tinf__footer-timeline-widget ul li {
    list-style: none;
    font-family: var(--tinf__heading-font);
    font-weight: 700;
    border-bottom: 1px solid;
    border-color: var(--border-color-6);
    padding-bottom: 10px;
    margin-top: 10px;
}

.tinf__footer-timeline-widget ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.tinf__footer-timeline-widget ul li:last-child span {
    font-weight: 700;
}

.tinf__footer-timeline-widget ul li span {
    float: right;
    font-weight: 600;
}

/* ----------------------------------------------------
    Footer Blog Widget
---------------------------------------------------- */
.tinf__footer-blog-item {
    border-bottom: 1px solid;
    border-color: var(--border-color-6);
    margin-bottom: 20px;
}

.tinf__footer-blog-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.tinf__footer-blog-item .tinf__blog-meta {
    margin-bottom: 5px;
}

.tinf__footer-blog-item .tinf__blog-meta i {
    color: var(--tinf__secondary-color);
    margin-right: 5px;
}

.tinf__footer-blog-item .tinf__blog-title {
    font-size: 20px;
}

/* ----------------------------------------------------
    Copyright Area
---------------------------------------------------- */
.tinf__copyright-area {
    padding-top: 25px;
    padding-bottom: 25px;
}

.tinf__copyright-area .payment-method {
    text-align: right;
}

.tinf__copyright-design h6,
.tinf__copyright-design h4 {
    font-size: 14px;
    font-family: var(--tinf__body-font);
    font-weight: 700;
}

.tinf__copyright-design p {
    margin-bottom: 0;
}

.tinf__copyright-menu ul {
    margin: 0;
    padding: 0;
}

.tinf__copyright-menu ul li {
    list-style: none;
    display: inline-block;
    margin-top: 0;
    margin-right: 20px;
    font-size: 14px;
    font-family: var(--tinf__heading-font);
    font-weight: 600;
}

.tinf__copyright-menu ul li:last-child {
    margin-right: 0;
}

.tinf__copyright-menu ul li a {
    margin: 0;
}

/* ----------------------------------------------------
    Responsive
---------------------------------------------------- */
@media (max-width: 991px) {
    .tinf__footer-timeline-widget {
        padding: 50px 25px 40px;
    }

    .tinf__copyright-area {
        text-align: center;
    }

    .tinf__copyright-area .payment-method {
        text-align: center;
        margin-top: 15px;
    }

    .tinf__copyright-area .site-logo-wrap {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .tinf__copyright-area .tinf__copyright-menu {
        text-align: center !important;
    }

    #scrollUp {
        font-size: 16px;
        height: 30px;
        width: 30px;
        bottom: 50px;
    }

    #scrollUp i {
        line-height: 30px;
    }
}

@media (max-width: 767px) {
    .tinf__footer-timeline-widget {
        padding: 50px 25px 40px;
    }

    .footer-menu-widget-2-column {
        padding-left: 0;
    }

    .tinf__copyright-menu {
        margin-top: 25px;
    }

    .tinf__footer-2 .footer-widget p,
    .tinf__footer-2 .footer-widget li {
        font-size: 14px;
    }

    .tinf__footer-2 .footer-widget .tinf__blog-meta li,
    .footer-widget .tinf__blog-meta li {
        font-size: 12px;
    }

    .tinf__footer-2 .footer-menu ul li {
        margin-bottom: 20px;
    }

    .tinf__footer-blog-item .tinf__blog-title {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .tinf__footer-timeline-widget {
        padding: 50px 25px 40px;
    }

    .footer-menu-widget-2-column .footer-menu {
        width: 100%;
    }

    .footer-menu-widget-2-column .footer-menu:nth-child(odd) {
        padding-left: 0px;
    }

    .tinf__copyright-menu {
        margin-top: 25px;
    }
}

/* ----------------------------------------------------
    END
---------------------------------------------------- */

/* ---------------------------------------
    ## Button
--------------------------------------- */
.btn-wrapper {
    display: block;
    margin-top: 30px;
}

.btn {
    border-radius: 0;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--tinf__heading-font);
    padding: 17px 40px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    z-index: 1;
    margin-right: 15px;
}

.btn:last-child {
    margin-right: 0;
}

.theme-btn-1 {
    background-color: var(--tinf__secondary-color);
    color: var(--white);
}

.theme-btn-1:hover {
    background-color: var(--tinf__primary-color);
    color: var(--white);
}

.theme-btn-2 {
    background-color: var(--tinf__primary-color);
    color: var(--white);
}

.theme-btn-2:hover {
    background-color: var(--tinf__secondary-color);
    color: var(--white);
}

.theme-btn-3 {
    background-color: transparent;
    border: 2px solid var(--border-color-9);
}

.theme-btn-3:hover {
    background-color: var(--tinf__secondary-color);
    border-color: var(--tinf__secondary-color);
    color: var(--white);
}

.reverse-color {
    background-color: var(--tinf__secondary-color);
}

.reverse-color:hover {
    background-color: var(--tinf__primary-color);
}

.btn-white {
    background-color: var(--white);
    color: var(--tinf__primary-color);
    -webkit-box-shadow: var(--tinf__box-shadow-3);
    box-shadow: var(--tinf__box-shadow-3);
}

.btn-white:hover {
    background-color: var(--tinf__secondary-color);
    color: var(--white);
}

.btn-black {
    background-color: var(--black);
    color: var(--white);
}

.btn-black:hover {
    background-color: var(--tinf__secondary-color);
    color: var(--white);
}

.btn-transparent {
    background-color: transparent;
    -webkit-box-shadow: var(--tinf__box-shadow-3);
    box-shadow: var(--tinf__box-shadow-3);
    border-color: #ddd;
}

.btn-transparent:hover {
    background-color: var(--tinf__secondary-color);
    color: var(--white);
}

.btn-round {
    border-radius: 50px;
}

.btn-opacity-6 {
    opacity: 0.6;
}

.btn-opacity-6:hover {
    opacity: 1;
}

.btn-opacity-7 {
    opacity: 0.7;
}

.btn-opacity-7:hover {
    opacity: 1;
}

.btn-opacity-8 {
    opacity: 0.8;
}

.btn-opacity-8:hover {
    opacity: 1;
}

.btn-opacity-9 {
    opacity: 0.9;
}

.btn-opacity-9:hover {
    opacity: 1;
}

.btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-effect-1:after {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--white);
}

.btn-effect-1:hover {
    color: var(--tinf__heading-color);
}

.btn-effect-1:hover::after {
    width: 100%;
}

.btn-effect-2:after {
    width: 0%;
    height: 100%;
    top: 0;
    right: 0;
    background: var(--white);
}

.btn-effect-2:hover {
    color: var(--tinf__heading-color);
}

.btn-effect-2:hover::after {
    width: 100%;
}

.btn-effect-3:after {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--tinf__primary-color);
}

.btn-effect-3:hover {
    color: var(--white);
}

.btn-effect-3:hover::after {
    width: 100%;
}

.btn-effect-4:after {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--tinf__secondary-color);
}

.btn-effect-4:hover {
    color: var(--white);
}

.btn-effect-4:hover::after {
    width: 100%;
}

.btn-full-width {
    display: block;
}

.btn-full-width-2 {
    display: block;
    width: 100%;
}

.btn-border {
    border: 2px solid var(--border-color-10);
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (min-width: 768px) and (max-width: 991px) {
    .btn {
        padding: 12px 25px;
    }

    [type="submit"].btn {
        padding: 15px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    [type="submit"].btn {
        padding: 12px 30px;
    }
}

/* ----------------------------------------------------
    END
---------------------------------------------------- */

.tinf__header-4 .tinf__header-middle-area,
.tinf__header-5 .tinf__header-middle-area {
    padding-top: 22px;
    padding-bottom: 22px;
}

.tinf__header-middle-area {
    z-index: 999;
}


:root {
    --main-color: #0038ff;
}

.counter {
    color: var(--main-color);
    background: var(--main-color);
    font-family: 'Bree Serif', serif;
    text-align: center;
    width: 185px;
    padding: 40px 10px 55px;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.counter:before,
.counter:after {
    content: "";
    background: #fff;
    width: 100%;
    height: calc(100% - 20px);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: -1;
}

.counter:after {
    background: var(--main-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: none;
    transform: translateX(0);
    bottom: -12px;
    left: auto;
    right: -12px;
    z-index: -2;
}

.counter h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: ;
}

.counter .counter-value {
    /*    font-size: 35px;
        font-weight: 600;
        line-height: 35px;
        display: block;*/
}

.counter .counter-value-wrap {
    font-size: 35px;
    font-weight: 600;
    line-height: 35px;
    display: block;
}

.counter .counter-icon {
    background: #fff;
    font-size: 30px;
    line-height: 58px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: -10px;
    right: -10px;
}

@media screen and (max-width:990px) {
    .counter {
        margin-bottom: 40px;
    }
}


/* product-item-4 */
.tinf__product-item-4 {
    -webkit-box-shadow: var(--tinf__box-shadow-4);
    box-shadow: var(--tinf__box-shadow-4);
    border: 1px solid;
    border-color: var(--border-color-13);
    background-color: var(--white);
}

.tinf__product-item-4 .product-img {
    position: relative;
}

.tinf__product-item-4 .product-img a {
    display: block;
}

.tinf__product-item-4 .product-img img {
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.tinf__product-item-4 .product-img-location-gallery {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    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;
    padding: 0 30px 15px;
    margin: 0;
    background: var(--gradient-color-5);
}

.tinf__product-item-4 .product-img-location-gallery ul {
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.tinf__product-item-4 .product-img-location-gallery ul li {
    list-style: none;
    font-size: 14px;
    color: var(--white);
}

.tinf__product-item-4 .product-img-location-gallery .product-img-gallery {
    margin-left: 10px;
}

.tinf__product-item-4 .product-img-location-gallery .product-img-gallery ul li {
    display: inline-block;
    width: 42px;
    height: 30px;
    line-height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-right: 5px;
    text-align: center;
}

.tinf__product-item-4 .product-img-location-gallery .product-img-gallery ul li a {
    display: block;
}

.tinf__product-item-4 .product-img-location-gallery .product-img-gallery ul li:last-child {
    margin-right: 0;
}

.tinf__product-item-4 .product-info {
    padding: 30px 30px 1px;
}

.tinf__product-item-4 .product-price {
    font-size: 18px;
    font-family: var(--tinf__heading-font);
    font-weight: 600;
    color: var(--tinf__secondary-color);
    margin-bottom: 5px;
}

.tinf__product-item-4 .product-price label {
    font-weight: 400;
    font-size: 14px;
}

.tinf__product-item-4 .product-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.tinf__product-item-4 .product-description p {
    font-size: 14px;
    margin-bottom: 15px;
}

.tinf__product-item-4 .product-info-bottom {
    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;
    border-top: 1px solid;
    border-color: var(--border-color-1);
    padding: 20px 30px 30px;
}

.tinf__product-item-4 .product-hover-action {
    position: relative;
    opacity: 1;
    visibility: visible;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
    line-height: 1;
}

.tinf__product-item-4 .product-hover-action ul {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.tinf__product-item-4 .product-hover-action ul li {
    margin-right: 8px;
    height: 36px;
    width: 36px;
    line-height: 42px;
    border-right: 0;
    font-size: 16px;
    background-color: var(--section-bg-1);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tinf__product-item-4 .product-hover-action ul li a {
    background-color: transparent;
}

.tinf__product-item-4 .product-hover-action ul li:hover {
    background-color: var(--tinf__secondary-color);
    color: var(--white);
}

.tinf__product-item-4:hover .product-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.tinf__product-item-4:hover .product-img::before {
    display: none;
}

.real-estate-agent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.real-estate-agent .agent-img {
    max-width: 40px;
    margin-right: 12px;
}

.real-estate-agent .agent-img img {
    border-radius: 100%;
}

.real-estate-agent .agent-brief h6 {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
}

.real-estate-agent .agent-brief small {
    font-size: 12px;
}

/* product-item-5 */
.tinf__product-item-5 {
    margin-top: 0;
}

.tinf__product-item-5 .product-img {
    margin-top: 0;
}

.tinf__product-item-5 .product-img a {
    display: block;
}

.tinf__product-item-5 .product-info {
    margin-top: 0;
}

.tinf__product-item-5 .product-info-bottom {
    padding: 20px 30px 15px;
}

.tinf__product-item-5 .product-badge {
    position: inherit;
    margin-bottom: 15px;
}

.tinf__product-item-5 .product-badge li {
    font-size: 16px;
    background-color: transparent;
    color: var(--tinf__secondary-color);
    padding: 0;
}

.tinf__product-item-5 .product-img-location ul {
    padding: 0;
    margin-bottom: 0;
}

.tinf__product-item-5 .product-img-location ul li {
    list-style: none;
    font-size: 14px;
}

.tinf__product-item-5 .product-img-location ul li i {
    color: var(--tinf__secondary-color);
    padding-left: 0;
}

.tinf__product-item-5 .tinf__plot-brief {
    padding: 0;
    margin-bottom: 20px;
}

.tinf__product-item-5 .tinf__plot-brief li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
}

.tinf__product-item-5 .tinf__plot-brief li:last-child {
    margin-right: 0;
}

.tinf__product-item-5 .tinf__plot-brief li span {
    font-weight: 700;
}

.tinf__product-item-5 .real-estate-agent {
    position: absolute;
    top: 20px;
    right: 20px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tinf__product-item-5 .real-estate-agent .agent-img {
    max-width: 50px;
}

.tinf__product-item-5 .real-estate-agent .agent-img img {
    border: 3px solid;
    border-color: var(--border-color-1);
}

.tinf__product-item-5 .product-hover-action {
    text-align: left;
    margin-bottom: 25px;
}

.tinf__product-list-view .tinf__product-item-5 {
    padding: 30px 30px 30px;
}

.tinf__product-list-view .tinf__product-item-5 .real-estate-agent {
    position: inherit;
    margin-top: 15px;
}

.tinf__product-list-view .tinf__product-item-5 .product-info-bottom {
    padding: 0px 0px 0px 30px;
    border: 0;
}

.tinf__product-list-view .tinf__product-item-5 .product-hover-action {
    margin-bottom: 0;
}

.tinf__product-list-view .tinf__product-item-5 .tinf__plot-brief {
    margin-bottom: 5px;
}

.tinf__product-list-view .tinf__product-item-5 .product-badge-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tinf__list-item-2 {
    padding-left: 0;
}

.tinf__list-item-2 li {
    list-style: none;
    display: inline-block;
    position: relative;
    margin-right: 30px;
    max-width: 160px;
    font-size: 14px;
}

.tinf__list-item-2 li span {
    display: block;
    font-weight: 700;
}

.tinf__list-item-2 li:last-child {
    margin-right: 0;
}

.tinf__list-item-2-before li {
    position: relative;
}

.tinf__list-item-2-before li::before {
    position: absolute;
    content: "";
    right: -15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: var(--tinf__primary-color);
    opacity: 0.2;
}

.tinf__list-item-2-before li:last-child::before {
    display: none;
}

.tinf__list-item-2-img li {
    margin-right: 10px;
    width: 30%;
}

/* ----------------------------------------------------
    Testimonial ( 1, 2, 3, 4, 5, 6 )
---------------------------------------------------- */
.tinf__testimonial-item {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.tinf__testimonial-item .tinf__testimoni-img img {
    border-radius: 100%;
}

.tinf__testimonial-item.text-center .tinf__testimoni-img {
    margin-left: auto;
    margin-right: auto;
}

.tinf__testimonial-item.text-right .tinf__testimoni-img {
    margin-left: auto;
    margin-right: 0;
}

.tinf__testimoni-img {
    max-width: 120px;
    margin-bottom: 30px;
}

.tinf__testimoni-img img {
    border-radius: 0;
}

.tinf__testimoni-img i {
    width: 50px;
    height: 50px;
    line-height: 48px;
    border: 1px solid;
    border-radius: 100%;
    font-size: 18px;
}

/* testimonial-item-2 */
.tinf__testimonial-item-2 {
    max-width: 60%;
}

.tinf__testimonial-item-2 .tinf__testimoni-img {
    max-width: 85px;
    outline: 8px solid;
    outline-color: var(--white);
    margin-top: 8px;
    position: relative;
}

.tinf__testimonial-item-2 .tinf__testimoni-img img {
    border-radius: 0;
    -webkit-box-shadow: var(--tinf__box-shadow-4);
    box-shadow: var(--tinf__box-shadow-4);
}

.tinf__testimonial-item-2 p {
    font-size: 24px;
}

.tinf__testimonial-item-2 .tinf__testimoni-info h4 {
    font-size: 30px;
    margin-bottom: 5px;
}

.tinf__testimonial-item-2 .tinf__testimoni-info h6 {
    color: var(--tinf__secondary-color);
}

/* testimonial-item-3 */
.tinf__testimonial-item-3 {
    max-width: 100%;
    margin-bottom: 20px;
}

.tinf__testimonial-item-3 .tinf__testimoni-info {
    -webkit-box-shadow: var(--tinf__box-shadow-4);
    box-shadow: var(--tinf__box-shadow-4);
    width: calc(100% - 40px);
    margin: -60px auto 0;
    background-color: var(--white);
    padding: 25px 30px 30px;
    position: relative;
    z-index: 9;
}

.tinf__testimonial-item-3 .tinf__testimoni-info p {
    margin-top: 0;
}

.tinf__testimonial-item-3 .tinf__testimoni-info h4 {
    margin-bottom: 5px;
    margin-top: 0;
}

.tinf__testimonial-item-3 .tinf__testimoni-info h6 {
    margin-bottom: 5px;
    margin-top: 0;
    color: var(--tinf__secondary-color);
}

.tinf__testimonial-item-3 .tinf__testimoni-info-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tinf__testimonial-item-3 .tinf__testimoni-img {
    max-width: 60px;
    margin-bottom: 0;
    margin-right: 15px;
}

.tinf__testimonial-item-3 .tinf__testimoni-img img {
    border-radius: 0;
}

.tinf__testimoni-bg-icon {
    position: absolute;
    right: 15px;
    bottom: 5px;
    z-index: -1;
    opacity: 0.1;
}

.tinf__testimoni-bg-icon i {
    font-size: 110px;
    line-height: 1;
    color: var(--tinf__color-1);
}

/* testimonial-item-4 */
.tinf__testimonial-item-4 {
    max-width: 100%;
    position: relative;
    padding: 40px;
    background-color: var(--white);
    -webkit-box-shadow: var(--tinf__box-shadow-2);
    box-shadow: var(--tinf__box-shadow-2);
    z-index: 2;
}

.tinf__testimonial-item-4 .tinf__testimoni-img {
    max-width: 160px;
    float: left;
    margin-right: 40px;
}

.tinf__testimonial-item-4 .tinf__testimoni-img img {
    border-radius: 0;
}

.tinf__testimonial-item-4 .tinf__testimoni-info {
    overflow: hidden;
}

.tinf__testimonial-item-4 .tinf__testimoni-info p {
    margin-bottom: 15px;
}

.tinf__testimonial-item-4 .tinf__testimoni-info h4 {
    margin-bottom: 5px;
}

.tinf__testimonial-item-4 .tinf__testimoni-info h6 {
    margin-bottom: 5px;
    color: var(--tinf__secondary-color);
}

/* testimonial-item-5 */
.tinf__testimonial-slider-4 {
    max-width: 45%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.tinf__testimonial-item-5 .tinf__quote-icon {
    font-size: 240px;
    position: absolute;
    top: -15px;
    line-height: 1;
    color: var(--white-7);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}

.tinf__testimonial-item-5 .tinf__testimonial-image {
    max-width: 85px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.tinf__testimonial-item-5 .tinf__testimonial-image img {
    outline: 8px solid #fff;
    -webkit-box-shadow: var(--tinf__box-shadow-1);
    box-shadow: var(--tinf__box-shadow-1);
}

.tinf__testimonial-item-5 .tinf__testimonial-info {
    margin-top: 30px;
}

.tinf__testimonial-item-5 .tinf__testimonial-info p {
    font-size: 24px;
}

.tinf__testimonial-item-5 .tinf__testimonial-info h4 {
    font-size: 30px;
    margin-bottom: 5px;
}

.tinf__testimonial-item-5 .tinf__testimonial-info h6 {
    color: var(--tinf__secondary-color);
}

.tinf__testimonial-quote-menu {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.tinf__testimonial-quote-menu li {
    list-style: none;
}

.tinf__testimonial-quote-menu li img {
    position: absolute;
}

.tinf__testimonial-quote-menu li:nth-child(1) img {
    width: 105px;
    top: -15%;
    left: 0;
}

.tinf__testimonial-quote-menu li:nth-child(2) img {
    width: 65px;
    top: 0;
    left: auto;
    right: 3%;
}

.tinf__testimonial-quote-menu li:nth-child(3) img {
    width: 65px;
    top: 70%;
    left: 10%;
}

.tinf__testimonial-quote-menu li:nth-child(4) img {
    width: 125px;
    top: 60%;
    left: auto;
    right: 10%;
}

.tinf__testimonial-quote-menu li:nth-child(5) img {
    width: 75px;
    top: 40%;
    left: 3%;
}

.tinf__testimonial-quote-menu li:nth-child(6) img {
    width: 75px;
    top: 25%;
    left: auto;
    right: 15%;
}

.tinf__testimonial-quote-menu li:nth-child(7) img {
    width: 55px;
    top: 20%;
    left: 15%;
}

.tinf__testimonial-quote-menu li:nth-child(8) img {
    width: 55px;
    top: 40%;
    left: auto;
    right: 3%;
}

/* testimonial-item-6 */
.tinf__testimonial-item-6 {
    padding-top: 50px;
    margin-bottom: 0;
}

.tinf__testimonial-item-6 .tinf__testimoni-img i {
    border: 0;
    color: var(--tinf__secondary-color);
}

.tinf__testimonial-item-6 p {
    font-size: 28px;
}

/* testimonial-item-7 */
.tinf__testimonial-item-7 {
    background-color: var(--white);
    padding: 30px 35px 40px;
    max-width: 100%;
    border-radius: 10px;
    -webkit-box-shadow: var(--tinf__box-shadow-4);
    box-shadow: var(--tinf__box-shadow-4);
    border: 1px solid;
    border-color: var(--border-color-13);
    position: relative;
}

.tinf__testimonial-item-7 .tinf__testimonial-img {
    margin-bottom: 30px;
}

.tinf__testimonial-item-7 .tinf__testimoni-info p {
    font-size: 18px;
}

.tinf__testimonial-item-7 .tinf__testimoni-info p i {
    font-size: 30px;
    position: relative;
    top: 8px;
    margin-right: 2px;
    line-height: 1;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tinf__testimonial-item-7 .tinf__testimoni-info-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tinf__testimonial-item-7 .tinf__testimoni-info-inner .tinf__testimoni-img {
    max-width: 60px;
    margin-right: 15px;
    margin-bottom: 0;
}

.tinf__testimonial-item-7 .tinf__testimoni-info-inner .tinf__testimoni-name-designation h5 {
    font-weight: 600;
    margin-bottom: 0;
}

.tinf__testimonial-item-7 .tinf__testimoni-info-inner .tinf__testimoni-name-designation label {
    font-size: 14px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.tinf__testimonial-item-7::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0%;
    height: 4px;
    background-color: var(--tinf__secondary-color);
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    opacity: 0;
    visibility: hidden;
}

.tinf__testimonial-item-7:hover::before {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.tinf__testimonial-item-7:hover .tinf__testimoni-info p i {
    color: var(--tinf__secondary-color);
}

/* testimonial-item-8 */
.tinf__testimonial-item-8 {
    padding: 35px 35px 35px;
}

.tinf__testimonial-item-8 .tinf__testimoni-info p {
    margin-bottom: 0;
}

.tinf__testimonial-item-8 .tinf__testimoni-info p+p {
    margin-top: 15px;
}

.tinf__testimoni-author-ratting {
    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: 991px) {
    .tinf__testimonial-item-2 {
        max-width: 70%;
    }

    .tinf__testimonial-item-2 p {
        font-size: 20px;
    }

    .tinf__testimonial-item-2 .tinf__testimoni-info h4 {
        font-size: 24px;
    }

    .tinf__testimonial-slider-4 {
        max-width: 70%;
    }

    .tinf__testimonial-item-5 .tinf__testimonial-info p {
        font-size: 20px;
    }

    .quote-animated-image {
        display: none !important;
    }

    .tinf__testimoni-author-ratting {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
    }

    .tinf__testimonial-item-7 .tinf__testimoni-info p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .tinf__testimonial-item-2 {
        max-width: 95%;
    }

    .tinf__testimonial-item-2 p {
        font-size: 16px;
    }

    .tinf__testimonial-item-2 .tinf__testimoni-info h4 {
        font-size: 20px;
    }

    .tinf__testimonial-item-3 .tinf__testimoni-info {
        width: calc(100% - 20px);
        padding: 25px 20px 30px;
    }

    .tinf__testimonial-item-3 .tinf__testimoni-info-inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

    .tinf__testimonial-item-3 .tinf__testimoni-img {
        margin-bottom: 10px;
    }

    .tinf__testimonial-item-4 .tinf__testimoni-img {
        float: none;
    }

    .tinf__testimonial-slider-4 {
        max-width: 95%;
    }

    .tinf__testimonial-item-5 .tinf__testimonial-info p {
        font-size: 16px;
    }

    .tinf__testimonial-item-7 .tinf__testimoni-info p {
        font-size: 14px;
    }

    .tinf__testimonial-item-7 .tinf__testimoni-info-inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

    .tinf__testimonial-item-7 .tinf__testimoni-info-inner .tinf__testimoni-img {
        margin-bottom: 10px;
    }
}


/* call-to-action-6 */
.call-to-action-inner-6 {
    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;
    padding: 30px 40px;
}

.call-to-action-inner-6 .coll-to-info p {
    margin-bottom: 0;
}

.call-to-action-inner-6 .coll-to-info p+p {
    margin-top: 15px;
}

.call-to-action-inner-6 .btn-wrapper {
    margin-top: 0;
}

/* Device :991px. */
@media (max-width: 991px) {

    .tinf__call-to-4-img-1,
    .tinf__call-to-4-img-2 {
        display: none;
    }

    .tinf__call-to-action-4 .call-to-action-inner-4 .h1 {
        font-size: 30px;
    }

    .tinf__call-to-action-4 .call-to-action-inner-4 p {
        font-size: 14px;
    }

    .call-to-action-inner-6 {
        padding: 50px 25px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }

    .call-to-action-inner-6 .btn {
        margin-top: 30px;
    }
}

/* small mobile :320px. */
@media (max-width: 767px) {
    .call-to-action-inner-2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }

    .call-to-action-inner-2 .btn-wrapper {
        margin-top: 15px;
    }

    .get-a-free-service-inner {
        display: block;
        padding-right: 0;
        padding-left: 0px;
    }

    .get-a-free-service-inner .call-to-img {
        margin-bottom: 40px;
    }

    .get-a-free-service-inner .call-to-img img {
        max-width: 100%;
        position: relative;
        left: 0;
    }

    .call-to-circle-1,
    .call-to-circle-2 {
        display: none;
    }

    .tinf__call-to-action-4 .call-to-action-inner-4 .h1 {
        font-size: 24px;
    }
}

/***

====================================================================
        Services Section Four
====================================================================

***/

.services-section-four {
    position: relative;
    padding: 100px 0px 100px;
    background-color: #f5f5f5;
}

.services-section-four .owl-carousel .owl-stage-outer {
    padding: 15px 0px;
}

.services-block-five {
    position: relative;
}

.services-block-five .inner-box {
    position: relative;
}

.services-block-five .inner-box .image {
    position: relative;
    overflow: hidden;
    background-color: #000000;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.services-block-five .inner-box .image img {
    position: relative;
    width: 100%;
    display: block;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.services-block-five .inner-box:hover .image img {
    opacity: 0.3;
}

.services-block-five .inner-box .image .read-more {
    position: absolute;
    right: -200px;
    top: 30px;
    color: #222222;
    font-size: 16px;
    font-weight: 400;
    padding: 5px 20px;
    padding-left: 15px;
    display: inline-block;
    text-transform: capitalize;
    background-color: #00ffe0;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-family: 'Oswald', sans-serif;
}

.services-block-five .inner-box .image .read-more:before {
    position: absolute;
    content: '';
    left: -20px;
    top: 0px;
    border-top: 33px solid #00ffe0;
    border-left: 20px solid transparent;
}

.services-block-five .inner-box:hover .image .read-more {
    right: 0px;
}

.services-block-five .inner-box .lower-content {
    position: relative;
    margin-left: 25px;
    margin-right: 25px;
    margin-top: -35px;
    padding: 55px 30px 25px;
    background-color: #ffffff;
    border-top: 3px solid #0038ff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
}

.services-block-five .inner-box .lower-content .icon {
    position: absolute;
    left: 30px;
    top: -30px;
    width: 60px;
    height: 60px;
    color: #382500;
    font-size: 38px;
    line-height: 60px;
    text-align: center;
    display: inline-block;
    background-color: #0038ff;
}

.services-block-five .inner-box .lower-content h3 {
    position: relative;
    color: #222222;
    font-size: 24px;
    line-height: 1.3em;
}

.services-block-five .inner-box .lower-content h3 a {
    position: relative;
    color: #222222;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.services-block-five .inner-box .lower-content h3 a:hover {
    color: #0038ff;
}

.services-block-five .inner-box .lower-content .text {
    position: relative;
    line-height: 1.9em;
    color: #222222;
    font-size: 14px;
    margin-top: 15px;
}

/*.services-section-four .owl-nav{
    display:none;
}

.services-section-four .owl-dots{
    position:relative;
    text-align:center;
    margin-top:10px;
}

.services-section-four .owl-dots .owl-dot{
    position:relative;
    width:10px;
    height:5px;
    margin:0px 5px;
    display:inline-block;
    background-color:#222222;
    transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -webkit-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
}

.services-section-four .owl-dots .owl-dot.active,
.services-section-four .owl-dots .owl-dot:hover{
    background-color:#0038ff;
    width:30px;
}*/
/*-----------------------------------------38. Owl Carousel-------------------------------------------*/
.custom-dot {
    display: inline-block;
    z-index: 1;
    margin-top: 30px;
}

.custom-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: #cecece;
    cursor: pointer;
    display: block;
    border: 1px solid #fff;
    -webkit-backface-visibility: visible;
    border-radius: 30px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.custom-dot span:hover {
    background: #aaa;
    -webkit-backface-visibility: visible;
    border-radius: 30px;
}

.custom-dot.active span {
    width: 12px;
    height: 12px;
    background: #d21e2b;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.owl-nav i {
    color: #111;
    font-size: 20px;
    padding-top: 10px;
}

.owl-nav .owl-prev {
    color: #d21e2b;
    font-size: 43px;
    left: 0%;
    text-align: center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    width: 50px;
    height: 50px;
    background: #fff !important;
    -webkit-box-shadow: 0px 5px 28px 0px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0px 5px 28px 0px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 5px 28px 0px rgba(50, 50, 50, 0.1);
}

.owl-nav .owl-next {
    color: #d21e2b;
    font-size: 43px;
    text-align: center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    width: 50px;
    height: 50px;
    background: #fff !important;
    -webkit-box-shadow: 0px 5px 28px 0px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0px 5px 28px 0px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 5px 28px 0px rgba(50, 50, 50, 0.1);
}

/*.owl-theme .owl-nav {
    margin-top: 50px;
}*/

.marquee h3 {
    margin-bottom: 0 !important;
}

/*===========================
  card-01 css
===========================*/
.single-card {
    box-shadow: var(--shadow-1);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.single-card:hover {
    box-shadow: var(--shadow-4);
}

.single-card .card-image img {
    width: 100%;
    height: 100%;
}

.single-card .card-content {
    padding: 16px;
}

.single-card .card-content .card-title {
    margin-bottom: 0;
}

.single-card .card-content .card-title a {
    color: var(--black);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.single-card .card-content .card-title a:hover {
    color: var(--primary);
}

.single-card .card-content .text {
    color: var(--dark-3);
    margin-top: 8px;
}

/* CSS */
.button1 {
    align-items: center;
    appearance: none;
    background-color: #3EB2FD;
    background-image: linear-gradient(1deg, #4F58FD, #149BF3 99%);
    background-size: calc(100% + 20px) calc(100% + 20px);
    border-radius: 100px;
    border-width: 0;
    box-shadow: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-flex;
    font-family: CircularStd, sans-serif;
    font-size: 1rem;
    height: auto;
    justify-content: center;
    line-height: 1.5;
    padding: 6px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s, background-position .2s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
}

.button1:active,
.button1:focus {
    outline: none;
}

.button1:hover {
    background-position: -20px -20px;
    color: #000;
}

.button1:focus:not(:active) {
    box-shadow: rgba(40, 170, 255, 0.25) 0 0 0 .125em;
}