


/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

.back-to-top-wrapper, a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

/* transform */
:root {
    /**
  @font family declaration
  */
    --tp-ff-body: 'DM Sans', sans-serif;
    --tp-ff-heading: 'DM Serif Display', serif;
    --tp-ff-dm: 'DM Serif Display', serif;
    --tp-ff-p: 'DM Sans', sans-serif;
    --tp-ff-fontawesome: "Font Awesome 6 Pro";
    /**
  @color declaration
  */
    --tp-common-white: #fff;
    --tp-common-black: #000;
    --tp-common-white-2: #fff;
    --tp-common-yellow: #fdc93a;
    --tp-grey-1: #000;
    --tp-grey-2: #354c4c;
    --tp-grey-3: #E1E1E173;
    --tp-grey-4: #f3f4f4;
    --tp-theme-primary: #000;
    --tp-theme-secondary: #f8d0b3;
    --tp-border-1: rgba(31, 49, 48, 0.1);
    --tp-border-2: rgba(31, 49, 48, 0.12);
    --tp-border-3: rgba(255, 255, 255, 0.55);
    --tp-border-4: rgba(255, 255, 255, 0.6);
}

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

/*---------------------------------
	typography css start 
---------------------------------*/
body {
    font-family: var(--tp-ff-body);
    font-size: 16px;
    font-weight: normal;
    color: var(--tp-theme-primary);
    line-height: 26px;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tp-ff-body);
    color: var(--tp-theme-primary);
    margin-top: 0px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    -webkit-transition: color 0.3s 0s ease-out;
    -moz-transition: color 0.3s 0s ease-out;
    -ms-transition: color 0.3s 0s ease-out;
    -o-transition: color 0.3s 0s ease-out;
    transition: color 0.3s 0s ease-out;
}

h1 {
    font-size: 45px;
}

h2 {
    font-size: 34px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

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

p {
    font-family: var(--tp-ff-p);
    color: var(--tp-grey-1);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
}

img {
    max-width: 100%;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

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

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

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

    button:hover {
        cursor: pointer;
    }

    button:focus {
        outline: 0;
    }

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
    outline: none;
    background-color: #fff;
    height: 52px;
    width: 100%;
    line-height: 52px;
    font-size: 16px;
    color: var(--tp-theme-primary);
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 4px;
    border: 1px solid var(--tp-common-white);
}

    input[type=text]::-webkit-input-placeholder,
    input[type=email]::-webkit-input-placeholder,
    input[type=tel]::-webkit-input-placeholder,
    input[type=number]::-webkit-input-placeholder,
    input[type=password]::-webkit-input-placeholder,
    input[type=url]::-webkit-input-placeholder,
    textarea::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: var(--tp-grey-2);
    }

    input[type=text]::-moz-placeholder,
    input[type=email]::-moz-placeholder,
    input[type=tel]::-moz-placeholder,
    input[type=number]::-moz-placeholder,
    input[type=password]::-moz-placeholder,
    input[type=url]::-moz-placeholder,
    textarea::-moz-placeholder {
        /* Firefox 19+ */
        color: var(--tp-grey-2);
    }

    input[type=text]:-moz-placeholder,
    input[type=email]:-moz-placeholder,
    input[type=tel]:-moz-placeholder,
    input[type=number]:-moz-placeholder,
    input[type=password]:-moz-placeholder,
    input[type=url]:-moz-placeholder,
    textarea:-moz-placeholder {
        /* Firefox 4-18 */
        color: var(--tp-grey-2);
    }

    input[type=text]:-ms-input-placeholder,
    input[type=email]:-ms-input-placeholder,
    input[type=tel]:-ms-input-placeholder,
    input[type=number]:-ms-input-placeholder,
    input[type=password]:-ms-input-placeholder,
    input[type=url]:-ms-input-placeholder,
    textarea:-ms-input-placeholder {
        /* IE 10+  Edge*/
        color: var(--tp-grey-2);
    }

    input[type=text]::placeholder,
    input[type=email]::placeholder,
    input[type=tel]::placeholder,
    input[type=number]::placeholder,
    input[type=password]::placeholder,
    input[type=url]::placeholder,
    textarea::placeholder {
        /* MODERN BROWSER */
        color: var(--tp-grey-2);
    }

[dir=rtl] input[type=text],
[dir=rtl] input[type=email],
[dir=rtl] input[type=tel],
[dir=rtl] input[type=number],
[dir=rtl] input[type=password],
[dir=rtl] input[type=url],
[dir=rtl] textarea {
    text-align: right;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
    border-color: var(--tp-theme-primary);
}

    input[type=text]:focus::placeholder,
    input[type=email]:focus::placeholder,
    input[type=tel]:focus::placeholder,
    input[type=number]:focus::placeholder,
    input[type=password]:focus::placeholder,
    input[type=url]:focus::placeholder,
    textarea:focus::placeholder {
        opacity: 0;
    }

textarea {
    line-height: 1.4;
    padding-top: 17px;
    padding-bottom: 17px;
}

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

*::-moz-selection {
    background: var(--tp-theme-primary);
    color: var(--tp-common-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--tp-theme-primary);
    color: var(--tp-common-white);
    text-shadow: none;
}

::selection {
    background: var(--tp-theme-primary);
    color: var(--tp-common-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--tp-theme-primary);
    font-size: 14px;
    opacity: 1;
}

*::placeholder {
    color: var(--tp-theme-primary);
    font-size: 14px;
    opacity: 1;
}

.z-index {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

.z-index-4 {
    z-index: 4;
}

.z-index-5 {
    z-index: 5;
}

.z-index-6 {
    z-index: 6;
}

.z-index-7 {
    z-index: 7;
}

.z-index-8 {
    z-index: 8;
}

.gx-10 {
    --bs-gutter-x: 10px;
}

.gx-15 {
    --bs-gutter-x: 15px;
}

.gx-20 {
    --bs-gutter-x: 20px;
}

.gx-23 {
    --bs-gutter-x: 23px;
}

.gx-25 {
    --bs-gutter-x: 25px;
}

.gx-30 {
    --bs-gutter-x: 30px;
}

.gx-35 {
    --bs-gutter-x: 35px;
}

.gx-40 {
    --bs-gutter-x: 40px;
}

.gx-45 {
    --bs-gutter-x: 45px;
}

.gx-50 {
    --bs-gutter-x: 50px;
}

.gx-60 {
    --bs-gutter-x: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .gx-60 {
        --bs-gutter-x: 30px;
    }
}

.gx-90 {
    --bs-gutter-x: 90px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .gx-90 {
        --bs-gutter-x: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .gx-90 {
        --bs-gutter-x: 30px;
    }
}

/*---------------------------------
    1.1 Common Classes
---------------------------------*/
.w-img img {
    width: 100%;
}

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

.hover-text-white:hover {
    color: var(--tp-common-white);
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

.z-index-4 {
    z-index: 4;
}

.z-index-5 {
    z-index: 5;
}

.z-index-6 {
    z-index: 6;
}

.z-index-7 {
    z-index: 7;
}

.z-index-8 {
    z-index: 8;
}

.z-index-9 {
    z-index: 9;
}

.z-index-10 {
    z-index: 10;
}

.z-index-m-1 {
    z-index: -1;
}

.z-index-m-1 {
    z-index: -1;
}

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.p-inherit {
    position: inherit !important;
}

.bg-position {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* gutter for x axis */
.gx-10 {
    --bs-gutter-x: 10px;
}

.tp-gx-20 {
    --bs-gutter-x: 20px;
}

.tp-transfrom {
    transform: translateY(-1px) !important;
}

.tp-transfrom-2 {
    transform: translateY(-2px);
}

.tp-transfrom-3 {
    transform: translateY(-3px);
}

.tp-transfrom-4 {
    transform: translateY(-4px);
}

.tp-round-4 {
    border-radius: 4px;
}

.tp-round-24 {
    border-radius: 26px;
}

.tp-round-26 {
    border-radius: 26px;
}

.tp-round-36 {
    border-radius: 36px;
}

.lh-0 {
    line-height: 0;
}

.lh-22 {
    line-height: 22px;
}

.lh-24 {
    line-height: 24px;
}

.lh-28 {
    line-height: 28px;
}

.lh-30 {
    line-height: 30px;
}

.lh-32 {
    line-height: 32px;
}

.lh-34 {
    line-height: 34px;
}

.lh-36 {
    line-height: 36px;
}

.lh-38 {
    line-height: 38px;
}

.lh-110-per {
    line-height: 1.1;
}

.ls-0 {
    letter-spacing: 0;
}

.ls-1 {
    letter-spacing: 0.01em;
}

.ls-m-1 {
    letter-spacing: -0.01em;
}

.ls-m-2 {
    letter-spacing: -0.02em;
}

.ls-m-3 {
    letter-spacing: -0.03em;
}

.ls-m-4 {
    letter-spacing: -0.04em;
}

.border-full-1 {
    border: 1px solid var(--tp-border-1);
}

.border-full-white {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tp-border-bottom {
    border-bottom: 1px solid var(--tp-border-1);
}

.text-italic {
    font-style: italic;
}

.underline-black {
    background-image: linear-gradient(#1f3130, #1f3130), linear-gradient(#1f3130, #1f3130);
    background-size: 0 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s linear;
    -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
    -moz-transition: all 0.4s ease 0.3s 0s ease-out;
    -ms-transition: all 0.4s ease 0.3s 0s ease-out;
    -o-transition: all 0.4s ease 0.3s 0s ease-out;
    transition: all 0.4s ease 0.3s 0s ease-out;
}

    .underline-black:hover {
        background-image: linear-gradient(#1f3130, #1f3130), linear-gradient(#1f3130, #1f3130);
        background-size: 0 1px, 100% 1px;
        background-position: 100% 100%, 0 100%;
        background-repeat: no-repeat;
        transition: background-size 0.3s linear;
        -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
        -moz-transition: all 0.4s ease 0.3s 0s ease-out;
        -ms-transition: all 0.4s ease 0.3s 0s ease-out;
        -o-transition: all 0.4s ease 0.3s 0s ease-out;
        transition: all 0.4s ease 0.3s 0s ease-out;
    }

.underline-white {
    background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
    background-size: 0 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s linear;
    -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
    -moz-transition: all 0.4s ease 0.3s 0s ease-out;
    -ms-transition: all 0.4s ease 0.3s 0s ease-out;
    -o-transition: all 0.4s ease 0.3s 0s ease-out;
    transition: all 0.4s ease 0.3s 0s ease-out;
}

    .underline-white:hover {
        background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
        background-size: 0 1px, 100% 1px;
        background-position: 100% 100%, 0 100%;
        background-repeat: no-repeat;
        transition: background-size 0.3s linear;
        -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
        -moz-transition: all 0.4s ease 0.3s 0s ease-out;
        -ms-transition: all 0.4s ease 0.3s 0s ease-out;
        -o-transition: all 0.4s ease 0.3s 0s ease-out;
        transition: all 0.4s ease 0.3s 0s ease-out;
    }

.hover-text-secondary:hover {
    color: var(--tp-theme-secondary);
}

.hover-text-primary:hover {
    color: var(--tp-theme-primary);
}

.hover-bg-primary:hover {
    background: var(--tp-theme-primary);
}

.hover-bg-secondary:hover {
    background: var(--tp-theme-secondary);
}

.hover-bg-white:hover {
    background: var(--tp-common-white-2);
}

.tp-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 3;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .br br {
        display: none;
    }
}

.slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

/*---------------------------------
  1.2 init style
---------------------------------*/
@media (min-width: 1400px) {
    .container-1690 {
        max-width: 1690px;
    }
}

@media (min-width: 1400px) {
    .container-1780 {
        max-width: 1780px;
    }
}

@media (min-width: 1400px) {
    .container-1765 {
        max-width: 1765px;
    }
}
/* Font weight */
.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

/* Font size */
.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

.fs-19 {
    font-size: 19px;
}

.fs-20 {
    font-size: 20px;
}

.fs-21 {
    font-size: 21px;
}

.fs-22 {
    font-size: 22px;
}

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

.fs-24 {
    font-size: 24px;
}

.fs-25 {
    font-size: 25px;
}

.fs-26 {
    font-size: 26px;
}

.fs-27 {
    font-size: 27px;
}

.fs-28 {
    font-size: 28px;
}

.fs-29 {
    font-size: 29px;
}

.fs-30 {
    font-size: 30px;
}

.fs-31 {
    font-size: 31px;
}

.fs-32 {
    font-size: 32px;
}

.fs-33 {
    font-size: 33px;
}

.fs-34 {
    font-size: 34px;
}

.fs-35 {
    font-size: 35px;
}

.fs-36 {
    font-size: 36px;
}

.fs-37 {
    font-size: 37px;
}

.fs-38 {
    font-size: 38px;
}

.fs-39 {
    font-size: 39px;
}

.fs-40 {
    font-size: 40px;
}

.fs-41 {
    font-size: 41px;
}

.fs-42 {
    font-size: 42px;
}

.fs-43 {
    font-size: 43px;
}

.fs-44 {
    font-size: 44px;
}

.fs-45 {
    font-size: 45px;
}

.fs-46 {
    font-size: 46px;
}

.fs-47 {
    font-size: 47px;
}

.fs-48 {
    font-size: 48px;
}

.fs-49 {
    font-size: 49px;
}

.fs-50 {
    font-size: 50px;
}

.fs-51 {
    font-size: 51px;
}

.fs-52 {
    font-size: 52px;
}

.fs-53 {
    font-size: 53px;
}

.fs-54 {
    font-size: 54px;
}

.fs-55 {
    font-size: 55px;
}

.fs-56 {
    font-size: 56px;
}

.fs-57 {
    font-size: 57px;
}

.fs-58 {
    font-size: 58px;
}

.fs-59 {
    font-size: 59px;
}

.fs-60 {
    font-size: 60px;
}

.fs-61 {
    font-size: 61px;
}

.fs-62 {
    font-size: 62px;
}

.fs-63 {
    font-size: 63px;
}

.fs-64 {
    font-size: 64px;
}

.fs-65 {
    font-size: 65px;
}

.fs-66 {
    font-size: 66px;
}

.fs-67 {
    font-size: 67px;
}

.fs-68 {
    font-size: 68px;
}

.fs-69 {
    font-size: 69px;
}

.fs-70 {
    font-size: 70px;
}

.fs-71 {
    font-size: 71px;
}

.fs-72 {
    font-size: 72px;
}

.fs-73 {
    font-size: 73px;
}

.fs-74 {
    font-size: 74px;
}

.fs-75 {
    font-size: 75px;
}

.fs-76 {
    font-size: 76px;
}

.fs-77 {
    font-size: 77px;
}

.fs-78 {
    font-size: 78px;
}

.fs-79 {
    font-size: 79px;
}

.fs-80 {
    font-size: 80px;
}

.fs-81 {
    font-size: 81px;
}

.fs-82 {
    font-size: 82px;
}

.fs-83 {
    font-size: 83px;
}

.fs-84 {
    font-size: 84px;
}

.fs-85 {
    font-size: 85px;
}

.fs-86 {
    font-size: 86px;
}

.fs-87 {
    font-size: 87px;
}

.fs-88 {
    font-size: 88px;
}

.fs-89 {
    font-size: 89px;
}

.fs-90 {
    font-size: 90px;
}

.fs-91 {
    font-size: 91px;
}

.fs-92 {
    font-size: 92px;
}

.fs-93 {
    font-size: 93px;
}

.fs-94 {
    font-size: 94px;
}

.fs-95 {
    font-size: 95px;
}

.fs-96 {
    font-size: 96px;
}

.fs-97 {
    font-size: 97px;
}

.fs-98 {
    font-size: 98px;
}

.fs-99 {
    font-size: 99px;
}

.fs-100 {
    font-size: 100px;
}

/* Font size media query */
@media (max-width: 1399.98px) {
    .fs-xl-12 {
        font-size: 12px;
    }

    .fs-xl-13 {
        font-size: 13px;
    }

    .fs-xl-14 {
        font-size: 14px;
    }

    .fs-xl-15 {
        font-size: 15px;
    }

    .fs-xl-16 {
        font-size: 16px;
    }

    .fs-xl-17 {
        font-size: 17px;
    }

    .fs-xl-18 {
        font-size: 18px;
    }

    .fs-xl-19 {
        font-size: 19px;
    }

    .fs-xl-20 {
        font-size: 20px;
    }

    .fs-xl-21 {
        font-size: 21px;
    }

    .fs-xl-22 {
        font-size: 22px;
    }

    .fs-xl-23 {
        font-size: 23px;
    }

    .fs-xl-24 {
        font-size: 24px;
    }

    .fs-xl-25 {
        font-size: 25px;
    }

    .fs-xl-26 {
        font-size: 26px;
    }

    .fs-xl-27 {
        font-size: 27px;
    }

    .fs-xl-28 {
        font-size: 28px;
    }

    .fs-xl-29 {
        font-size: 29px;
    }

    .fs-xl-30 {
        font-size: 30px;
    }

    .fs-xl-31 {
        font-size: 31px;
    }

    .fs-xl-32 {
        font-size: 32px;
    }

    .fs-xl-33 {
        font-size: 33px;
    }

    .fs-xl-34 {
        font-size: 34px;
    }

    .fs-xl-35 {
        font-size: 35px;
    }

    .fs-xl-36 {
        font-size: 36px;
    }

    .fs-xl-37 {
        font-size: 37px;
    }

    .fs-xl-38 {
        font-size: 38px;
    }

    .fs-xl-39 {
        font-size: 39px;
    }

    .fs-xl-40 {
        font-size: 40px;
    }

    .fs-xl-41 {
        font-size: 41px;
    }

    .fs-xl-42 {
        font-size: 42px;
    }

    .fs-xl-43 {
        font-size: 43px;
    }

    .fs-xl-44 {
        font-size: 44px;
    }

    .fs-xl-45 {
        font-size: 45px;
    }

    .fs-xl-46 {
        font-size: 46px;
    }

    .fs-xl-47 {
        font-size: 47px;
    }

    .fs-xl-48 {
        font-size: 48px;
    }

    .fs-xl-49 {
        font-size: 49px;
    }

    .fs-xl-50 {
        font-size: 50px;
    }

    .fs-xl-51 {
        font-size: 51px;
    }

    .fs-xl-52 {
        font-size: 52px;
    }

    .fs-xl-53 {
        font-size: 53px;
    }

    .fs-xl-54 {
        font-size: 54px;
    }

    .fs-xl-55 {
        font-size: 55px;
    }

    .fs-xl-56 {
        font-size: 56px;
    }

    .fs-xl-57 {
        font-size: 57px;
    }

    .fs-xl-58 {
        font-size: 58px;
    }

    .fs-xl-59 {
        font-size: 59px;
    }

    .fs-xl-60 {
        font-size: 60px;
    }

    .fs-xl-61 {
        font-size: 61px;
    }

    .fs-xl-62 {
        font-size: 62px;
    }

    .fs-xl-63 {
        font-size: 63px;
    }

    .fs-xl-64 {
        font-size: 64px;
    }

    .fs-xl-65 {
        font-size: 65px;
    }

    .fs-xl-66 {
        font-size: 66px;
    }

    .fs-xl-67 {
        font-size: 67px;
    }

    .fs-xl-68 {
        font-size: 68px;
    }

    .fs-xl-69 {
        font-size: 69px;
    }

    .fs-xl-70 {
        font-size: 70px;
    }

    .fs-xl-71 {
        font-size: 71px;
    }

    .fs-xl-72 {
        font-size: 72px;
    }

    .fs-xl-73 {
        font-size: 73px;
    }

    .fs-xl-74 {
        font-size: 74px;
    }

    .fs-xl-75 {
        font-size: 75px;
    }

    .fs-xl-76 {
        font-size: 76px;
    }

    .fs-xl-77 {
        font-size: 77px;
    }

    .fs-xl-78 {
        font-size: 78px;
    }

    .fs-xl-79 {
        font-size: 79px;
    }

    .fs-xl-80 {
        font-size: 80px;
    }

    .fs-xl-81 {
        font-size: 81px;
    }

    .fs-xl-82 {
        font-size: 82px;
    }

    .fs-xl-83 {
        font-size: 83px;
    }

    .fs-xl-84 {
        font-size: 84px;
    }

    .fs-xl-85 {
        font-size: 85px;
    }

    .fs-xl-86 {
        font-size: 86px;
    }

    .fs-xl-87 {
        font-size: 87px;
    }

    .fs-xl-88 {
        font-size: 88px;
    }

    .fs-xl-89 {
        font-size: 89px;
    }

    .fs-xl-90 {
        font-size: 90px;
    }

    .fs-xl-91 {
        font-size: 91px;
    }

    .fs-xl-92 {
        font-size: 92px;
    }

    .fs-xl-93 {
        font-size: 93px;
    }

    .fs-xl-94 {
        font-size: 94px;
    }

    .fs-xl-95 {
        font-size: 95px;
    }

    .fs-xl-96 {
        font-size: 96px;
    }

    .fs-xl-97 {
        font-size: 97px;
    }

    .fs-xl-98 {
        font-size: 98px;
    }

    .fs-xl-99 {
        font-size: 99px;
    }

    .fs-xl-100 {
        font-size: 100px;
    }
}
/* Font size media query */
@media (max-width: 1199.98px) {
    .fs-lg-12 {
        font-size: 12px;
    }

    .fs-lg-13 {
        font-size: 13px;
    }

    .fs-lg-14 {
        font-size: 14px;
    }

    .fs-lg-15 {
        font-size: 15px;
    }

    .fs-lg-16 {
        font-size: 16px;
    }

    .fs-lg-17 {
        font-size: 17px;
    }

    .fs-lg-18 {
        font-size: 18px;
    }

    .fs-lg-19 {
        font-size: 19px;
    }

    .fs-lg-20 {
        font-size: 20px;
    }

    .fs-lg-21 {
        font-size: 21px;
    }

    .fs-lg-22 {
        font-size: 22px;
    }

    .fs-lg-23 {
        font-size: 23px;
    }

    .fs-lg-24 {
        font-size: 24px;
    }

    .fs-lg-25 {
        font-size: 25px;
    }

    .fs-lg-26 {
        font-size: 26px;
    }

    .fs-lg-27 {
        font-size: 27px;
    }

    .fs-lg-28 {
        font-size: 28px;
    }

    .fs-lg-29 {
        font-size: 29px;
    }

    .fs-lg-30 {
        font-size: 30px;
    }

    .fs-lg-31 {
        font-size: 31px;
    }

    .fs-lg-32 {
        font-size: 32px;
    }

    .fs-lg-33 {
        font-size: 33px;
    }

    .fs-lg-34 {
        font-size: 34px;
    }

    .fs-lg-35 {
        font-size: 35px;
    }

    .fs-lg-36 {
        font-size: 36px;
    }

    .fs-lg-37 {
        font-size: 37px;
    }

    .fs-lg-38 {
        font-size: 38px;
    }

    .fs-lg-39 {
        font-size: 39px;
    }

    .fs-lg-40 {
        font-size: 40px;
    }

    .fs-lg-41 {
        font-size: 41px;
    }

    .fs-lg-42 {
        font-size: 42px;
    }

    .fs-lg-43 {
        font-size: 43px;
    }

    .fs-lg-44 {
        font-size: 44px;
    }

    .fs-lg-45 {
        font-size: 45px;
    }

    .fs-lg-46 {
        font-size: 46px;
    }

    .fs-lg-47 {
        font-size: 47px;
    }

    .fs-lg-48 {
        font-size: 48px;
    }

    .fs-lg-49 {
        font-size: 49px;
    }

    .fs-lg-50 {
        font-size: 50px;
    }

    .fs-lg-51 {
        font-size: 51px;
    }

    .fs-lg-52 {
        font-size: 52px;
    }

    .fs-lg-53 {
        font-size: 53px;
    }

    .fs-lg-54 {
        font-size: 54px;
    }

    .fs-lg-55 {
        font-size: 55px;
    }

    .fs-lg-56 {
        font-size: 56px;
    }

    .fs-lg-57 {
        font-size: 57px;
    }

    .fs-lg-58 {
        font-size: 58px;
    }

    .fs-lg-59 {
        font-size: 59px;
    }

    .fs-lg-60 {
        font-size: 60px;
    }

    .fs-lg-61 {
        font-size: 61px;
    }

    .fs-lg-62 {
        font-size: 62px;
    }

    .fs-lg-63 {
        font-size: 63px;
    }

    .fs-lg-64 {
        font-size: 64px;
    }

    .fs-lg-65 {
        font-size: 65px;
    }

    .fs-lg-66 {
        font-size: 66px;
    }

    .fs-lg-67 {
        font-size: 67px;
    }

    .fs-lg-68 {
        font-size: 68px;
    }

    .fs-lg-69 {
        font-size: 69px;
    }

    .fs-lg-70 {
        font-size: 70px;
    }

    .fs-lg-71 {
        font-size: 71px;
    }

    .fs-lg-72 {
        font-size: 72px;
    }

    .fs-lg-73 {
        font-size: 73px;
    }

    .fs-lg-74 {
        font-size: 74px;
    }

    .fs-lg-75 {
        font-size: 75px;
    }

    .fs-lg-76 {
        font-size: 76px;
    }

    .fs-lg-77 {
        font-size: 77px;
    }

    .fs-lg-78 {
        font-size: 78px;
    }

    .fs-lg-79 {
        font-size: 79px;
    }

    .fs-lg-80 {
        font-size: 80px;
    }

    .fs-lg-81 {
        font-size: 81px;
    }

    .fs-lg-82 {
        font-size: 82px;
    }

    .fs-lg-83 {
        font-size: 83px;
    }

    .fs-lg-84 {
        font-size: 84px;
    }

    .fs-lg-85 {
        font-size: 85px;
    }

    .fs-lg-86 {
        font-size: 86px;
    }

    .fs-lg-87 {
        font-size: 87px;
    }

    .fs-lg-88 {
        font-size: 88px;
    }

    .fs-lg-89 {
        font-size: 89px;
    }

    .fs-lg-90 {
        font-size: 90px;
    }

    .fs-lg-91 {
        font-size: 91px;
    }

    .fs-lg-92 {
        font-size: 92px;
    }

    .fs-lg-93 {
        font-size: 93px;
    }

    .fs-lg-94 {
        font-size: 94px;
    }

    .fs-lg-95 {
        font-size: 95px;
    }

    .fs-lg-96 {
        font-size: 96px;
    }

    .fs-lg-97 {
        font-size: 97px;
    }

    .fs-lg-98 {
        font-size: 98px;
    }

    .fs-lg-99 {
        font-size: 99px;
    }

    .fs-lg-100 {
        font-size: 100px;
    }
}

@media (max-width: 991.98px) {
    .fs-md-12 {
        font-size: 12px;
    }

    .fs-md-13 {
        font-size: 13px;
    }

    .fs-md-14 {
        font-size: 14px;
    }

    .fs-md-15 {
        font-size: 15px;
    }

    .fs-md-16 {
        font-size: 16px;
    }

    .fs-md-17 {
        font-size: 17px;
    }

    .fs-md-18 {
        font-size: 18px;
    }

    .fs-md-19 {
        font-size: 19px;
    }

    .fs-md-20 {
        font-size: 20px;
    }

    .fs-md-21 {
        font-size: 21px;
    }

    .fs-md-22 {
        font-size: 22px;
    }

    .fs-md-23 {
        font-size: 23px;
    }

    .fs-md-24 {
        font-size: 24px;
    }

    .fs-md-25 {
        font-size: 25px;
    }

    .fs-md-26 {
        font-size: 26px;
    }

    .fs-md-27 {
        font-size: 27px;
    }

    .fs-md-28 {
        font-size: 28px;
    }

    .fs-md-29 {
        font-size: 29px;
    }

    .fs-md-30 {
        font-size: 30px;
    }

    .fs-md-31 {
        font-size: 31px;
    }

    .fs-md-32 {
        font-size: 32px;
    }

    .fs-md-33 {
        font-size: 33px;
    }

    .fs-md-34 {
        font-size: 34px;
    }

    .fs-md-35 {
        font-size: 35px;
    }

    .fs-md-36 {
        font-size: 36px;
    }

    .fs-md-37 {
        font-size: 37px;
    }

    .fs-md-38 {
        font-size: 38px;
    }

    .fs-md-39 {
        font-size: 39px;
    }

    .fs-md-40 {
        font-size: 40px;
    }

    .fs-md-41 {
        font-size: 41px;
    }

    .fs-md-42 {
        font-size: 42px;
    }

    .fs-md-43 {
        font-size: 43px;
    }

    .fs-md-44 {
        font-size: 44px;
    }

    .fs-md-45 {
        font-size: 45px;
    }

    .fs-md-46 {
        font-size: 46px;
    }

    .fs-md-47 {
        font-size: 47px;
    }

    .fs-md-48 {
        font-size: 48px;
    }

    .fs-md-49 {
        font-size: 49px;
    }

    .fs-md-50 {
        font-size: 50px;
    }

    .fs-md-51 {
        font-size: 51px;
    }

    .fs-md-52 {
        font-size: 52px;
    }

    .fs-md-53 {
        font-size: 53px;
    }

    .fs-md-54 {
        font-size: 54px;
    }

    .fs-md-55 {
        font-size: 55px;
    }

    .fs-md-56 {
        font-size: 56px;
    }

    .fs-md-57 {
        font-size: 57px;
    }

    .fs-md-58 {
        font-size: 58px;
    }

    .fs-md-59 {
        font-size: 59px;
    }

    .fs-md-60 {
        font-size: 60px;
    }

    .fs-md-61 {
        font-size: 61px;
    }

    .fs-md-62 {
        font-size: 62px;
    }

    .fs-md-63 {
        font-size: 63px;
    }

    .fs-md-64 {
        font-size: 64px;
    }

    .fs-md-65 {
        font-size: 65px;
    }

    .fs-md-66 {
        font-size: 66px;
    }

    .fs-md-67 {
        font-size: 67px;
    }

    .fs-md-68 {
        font-size: 68px;
    }

    .fs-md-69 {
        font-size: 69px;
    }

    .fs-md-70 {
        font-size: 70px;
    }

    .fs-md-71 {
        font-size: 71px;
    }

    .fs-md-72 {
        font-size: 72px;
    }

    .fs-md-73 {
        font-size: 73px;
    }

    .fs-md-74 {
        font-size: 74px;
    }

    .fs-md-75 {
        font-size: 75px;
    }

    .fs-md-76 {
        font-size: 76px;
    }

    .fs-md-77 {
        font-size: 77px;
    }

    .fs-md-78 {
        font-size: 78px;
    }

    .fs-md-79 {
        font-size: 79px;
    }

    .fs-md-80 {
        font-size: 80px;
    }

    .fs-md-81 {
        font-size: 81px;
    }

    .fs-md-82 {
        font-size: 82px;
    }

    .fs-md-83 {
        font-size: 83px;
    }

    .fs-md-84 {
        font-size: 84px;
    }

    .fs-md-85 {
        font-size: 85px;
    }

    .fs-md-86 {
        font-size: 86px;
    }

    .fs-md-87 {
        font-size: 87px;
    }

    .fs-md-88 {
        font-size: 88px;
    }

    .fs-md-89 {
        font-size: 89px;
    }

    .fs-md-90 {
        font-size: 90px;
    }

    .fs-md-91 {
        font-size: 91px;
    }

    .fs-md-92 {
        font-size: 92px;
    }

    .fs-md-93 {
        font-size: 93px;
    }

    .fs-md-94 {
        font-size: 94px;
    }

    .fs-md-95 {
        font-size: 95px;
    }

    .fs-md-96 {
        font-size: 96px;
    }

    .fs-md-97 {
        font-size: 97px;
    }

    .fs-md-98 {
        font-size: 98px;
    }

    .fs-md-99 {
        font-size: 99px;
    }

    .fs-md-100 {
        font-size: 100px;
    }
}

@media (max-width: 767.98px) {
    .fs-sm-12 {
        font-size: 12px;
    }

    .fs-sm-13 {
        font-size: 13px;
    }

    .fs-sm-14 {
        font-size: 14px;
    }

    .fs-sm-15 {
        font-size: 15px;
    }

    .fs-sm-16 {
        font-size: 16px;
    }

    .fs-sm-17 {
        font-size: 17px;
    }

    .fs-sm-18 {
        font-size: 18px;
    }

    .fs-sm-19 {
        font-size: 19px;
    }

    .fs-sm-20 {
        font-size: 20px;
    }

    .fs-sm-21 {
        font-size: 21px;
    }

    .fs-sm-22 {
        font-size: 22px;
    }

    .fs-sm-23 {
        font-size: 23px;
    }

    .fs-sm-24 {
        font-size: 24px;
    }

    .fs-sm-25 {
        font-size: 25px;
    }

    .fs-sm-26 {
        font-size: 26px;
    }

    .fs-sm-27 {
        font-size: 27px;
    }

    .fs-sm-28 {
        font-size: 28px;
    }

    .fs-sm-29 {
        font-size: 29px;
    }

    .fs-sm-30 {
        font-size: 30px;
    }

    .fs-sm-31 {
        font-size: 31px;
    }

    .fs-sm-32 {
        font-size: 32px;
    }

    .fs-sm-33 {
        font-size: 33px;
    }

    .fs-sm-34 {
        font-size: 34px;
    }

    .fs-sm-35 {
        font-size: 35px;
    }

    .fs-sm-36 {
        font-size: 36px;
    }

    .fs-sm-37 {
        font-size: 37px;
    }

    .fs-sm-38 {
        font-size: 38px;
    }

    .fs-sm-39 {
        font-size: 39px;
    }

    .fs-sm-40 {
        font-size: 40px;
    }

    .fs-sm-41 {
        font-size: 41px;
    }

    .fs-sm-42 {
        font-size: 42px;
    }

    .fs-sm-43 {
        font-size: 43px;
    }

    .fs-sm-44 {
        font-size: 44px;
    }

    .fs-sm-45 {
        font-size: 45px;
    }

    .fs-sm-46 {
        font-size: 46px;
    }

    .fs-sm-47 {
        font-size: 47px;
    }

    .fs-sm-48 {
        font-size: 48px;
    }

    .fs-sm-49 {
        font-size: 49px;
    }

    .fs-sm-50 {
        font-size: 50px;
    }

    .fs-sm-51 {
        font-size: 51px;
    }

    .fs-sm-52 {
        font-size: 52px;
    }

    .fs-sm-53 {
        font-size: 53px;
    }

    .fs-sm-54 {
        font-size: 54px;
    }

    .fs-sm-55 {
        font-size: 55px;
    }

    .fs-sm-56 {
        font-size: 56px;
    }

    .fs-sm-57 {
        font-size: 57px;
    }

    .fs-sm-58 {
        font-size: 58px;
    }

    .fs-sm-59 {
        font-size: 59px;
    }

    .fs-sm-60 {
        font-size: 60px;
    }

    .fs-sm-61 {
        font-size: 61px;
    }

    .fs-sm-62 {
        font-size: 62px;
    }

    .fs-sm-63 {
        font-size: 63px;
    }

    .fs-sm-64 {
        font-size: 64px;
    }

    .fs-sm-65 {
        font-size: 65px;
    }

    .fs-sm-66 {
        font-size: 66px;
    }

    .fs-sm-67 {
        font-size: 67px;
    }

    .fs-sm-68 {
        font-size: 68px;
    }

    .fs-sm-69 {
        font-size: 69px;
    }

    .fs-sm-70 {
        font-size: 70px;
    }

    .fs-sm-71 {
        font-size: 71px;
    }

    .fs-sm-72 {
        font-size: 72px;
    }

    .fs-sm-73 {
        font-size: 73px;
    }

    .fs-sm-74 {
        font-size: 74px;
    }

    .fs-sm-75 {
        font-size: 75px;
    }

    .fs-sm-76 {
        font-size: 76px;
    }

    .fs-sm-77 {
        font-size: 77px;
    }

    .fs-sm-78 {
        font-size: 78px;
    }

    .fs-sm-79 {
        font-size: 79px;
    }

    .fs-sm-80 {
        font-size: 80px;
    }

    .fs-sm-81 {
        font-size: 81px;
    }

    .fs-sm-82 {
        font-size: 82px;
    }

    .fs-sm-83 {
        font-size: 83px;
    }

    .fs-sm-84 {
        font-size: 84px;
    }

    .fs-sm-85 {
        font-size: 85px;
    }

    .fs-sm-86 {
        font-size: 86px;
    }

    .fs-sm-87 {
        font-size: 87px;
    }

    .fs-sm-88 {
        font-size: 88px;
    }

    .fs-sm-89 {
        font-size: 89px;
    }

    .fs-sm-90 {
        font-size: 90px;
    }

    .fs-sm-91 {
        font-size: 91px;
    }

    .fs-sm-92 {
        font-size: 92px;
    }

    .fs-sm-93 {
        font-size: 93px;
    }

    .fs-sm-94 {
        font-size: 94px;
    }

    .fs-sm-95 {
        font-size: 95px;
    }

    .fs-sm-96 {
        font-size: 96px;
    }

    .fs-sm-97 {
        font-size: 97px;
    }

    .fs-sm-98 {
        font-size: 98px;
    }

    .fs-sm-99 {
        font-size: 99px;
    }

    .fs-sm-100 {
        font-size: 100px;
    }
}

@media (max-width: 575.98px) {
    .fs-xs-12 {
        font-size: 12px;
    }

    .fs-xs-13 {
        font-size: 13px;
    }

    .fs-xs-14 {
        font-size: 14px;
    }

    .fs-xs-15 {
        font-size: 15px;
    }

    .fs-xs-16 {
        font-size: 16px;
    }

    .fs-xs-17 {
        font-size: 17px;
    }

    .fs-xs-18 {
        font-size: 18px;
    }

    .fs-xs-19 {
        font-size: 19px;
    }

    .fs-xs-20 {
        font-size: 20px;
    }

    .fs-xs-21 {
        font-size: 21px;
    }

    .fs-xs-22 {
        font-size: 22px;
    }

    .fs-xs-23 {
        font-size: 23px;
    }

    .fs-xs-24 {
        font-size: 24px;
    }

    .fs-xs-25 {
        font-size: 25px;
    }

    .fs-xs-26 {
        font-size: 26px;
    }

    .fs-xs-27 {
        font-size: 27px;
    }

    .fs-xs-28 {
        font-size: 28px;
    }

    .fs-xs-29 {
        font-size: 29px;
    }

    .fs-xs-30 {
        font-size: 30px;
    }

    .fs-xs-31 {
        font-size: 31px;
    }

    .fs-xs-32 {
        font-size: 32px;
    }

    .fs-xs-33 {
        font-size: 33px;
    }

    .fs-xs-34 {
        font-size: 34px;
    }

    .fs-xs-35 {
        font-size: 35px;
    }

    .fs-xs-36 {
        font-size: 36px;
    }

    .fs-xs-37 {
        font-size: 37px;
    }

    .fs-xs-38 {
        font-size: 38px;
    }

    .fs-xs-39 {
        font-size: 39px;
    }

    .fs-xs-40 {
        font-size: 40px;
    }

    .fs-xs-41 {
        font-size: 41px;
    }

    .fs-xs-42 {
        font-size: 42px;
    }

    .fs-xs-43 {
        font-size: 43px;
    }

    .fs-xs-44 {
        font-size: 44px;
    }

    .fs-xs-45 {
        font-size: 45px;
    }

    .fs-xs-46 {
        font-size: 46px;
    }

    .fs-xs-47 {
        font-size: 47px;
    }

    .fs-xs-48 {
        font-size: 48px;
    }

    .fs-xs-49 {
        font-size: 49px;
    }

    .fs-xs-50 {
        font-size: 50px;
    }

    .fs-xs-51 {
        font-size: 51px;
    }

    .fs-xs-52 {
        font-size: 52px;
    }

    .fs-xs-53 {
        font-size: 53px;
    }

    .fs-xs-54 {
        font-size: 54px;
    }

    .fs-xs-55 {
        font-size: 55px;
    }

    .fs-xs-56 {
        font-size: 56px;
    }

    .fs-xs-57 {
        font-size: 57px;
    }

    .fs-xs-58 {
        font-size: 58px;
    }

    .fs-xs-59 {
        font-size: 59px;
    }

    .fs-xs-60 {
        font-size: 60px;
    }

    .fs-xs-61 {
        font-size: 61px;
    }

    .fs-xs-62 {
        font-size: 62px;
    }

    .fs-xs-63 {
        font-size: 63px;
    }

    .fs-xs-64 {
        font-size: 64px;
    }

    .fs-xs-65 {
        font-size: 65px;
    }

    .fs-xs-66 {
        font-size: 66px;
    }

    .fs-xs-67 {
        font-size: 67px;
    }

    .fs-xs-68 {
        font-size: 68px;
    }

    .fs-xs-69 {
        font-size: 69px;
    }

    .fs-xs-70 {
        font-size: 70px;
    }

    .fs-xs-71 {
        font-size: 71px;
    }

    .fs-xs-72 {
        font-size: 72px;
    }

    .fs-xs-73 {
        font-size: 73px;
    }

    .fs-xs-74 {
        font-size: 74px;
    }

    .fs-xs-75 {
        font-size: 75px;
    }

    .fs-xs-76 {
        font-size: 76px;
    }

    .fs-xs-77 {
        font-size: 77px;
    }

    .fs-xs-78 {
        font-size: 78px;
    }

    .fs-xs-79 {
        font-size: 79px;
    }

    .fs-xs-80 {
        font-size: 80px;
    }

    .fs-xs-81 {
        font-size: 81px;
    }

    .fs-xs-82 {
        font-size: 82px;
    }

    .fs-xs-83 {
        font-size: 83px;
    }

    .fs-xs-84 {
        font-size: 84px;
    }

    .fs-xs-85 {
        font-size: 85px;
    }

    .fs-xs-86 {
        font-size: 86px;
    }

    .fs-xs-87 {
        font-size: 87px;
    }

    .fs-xs-88 {
        font-size: 88px;
    }

    .fs-xs-89 {
        font-size: 89px;
    }

    .fs-xs-90 {
        font-size: 90px;
    }

    .fs-xs-91 {
        font-size: 91px;
    }

    .fs-xs-92 {
        font-size: 92px;
    }

    .fs-xs-93 {
        font-size: 93px;
    }

    .fs-xs-94 {
        font-size: 94px;
    }

    .fs-xs-95 {
        font-size: 95px;
    }

    .fs-xs-96 {
        font-size: 96px;
    }

    .fs-xs-97 {
        font-size: 97px;
    }

    .fs-xs-98 {
        font-size: 98px;
    }

    .fs-xs-99 {
        font-size: 99px;
    }

    .fs-xs-100 {
        font-size: 100px;
    }
}

.tp-text-common-white {
    color: var(--tp-common-white);
}

.tp-bg-common-white {
    background-color: var(--tp-common-white);
}

.tp-text-common-black {
    color: var(--tp-common-black);
}

.tp-bg-common-black {
    background-color: var(--tp-common-black);
}

.tp-text-common-white-2 {
    color: var(--tp-common-white-2);
}

.tp-bg-common-white-2 {
    background-color: var(--tp-common-white-2);
}

.tp-text-common-yellow {
    color: var(--tp-common-yellow);
}

.tp-bg-common-yellow {
    background-color: var(--tp-common-yellow);
}

.tp-text-grey-1 {
    color: var(--tp-grey-1);
}

.tp-bg-grey-1 {
    background-color: var(--tp-grey-1);
}

.tp-text-grey-2 {
    color: var(--tp-grey-2);
}

.tp-bg-grey-2 {
    background-color: var(--tp-grey-2);
}

.tp-text-grey-3 {
    color: var(--tp-common-white);
}

.tp-bg-grey-3 {
    background-color: var(--tp-grey-3);
}

.tp-text-grey-4 {
    color: var(--tp-grey-4);
}

.tp-bg-grey-4 {
    background-color: var(--tp-grey-4);
}

.tp-text-theme-primary {
    color: var(--tp-theme-primary);
}

.tp-bg-theme-primary {
    background-color: var(--tp-theme-primary);
}

.tp-text-theme-secondary {
    color: var(--tp-theme-secondary);
}

.tp-bg-theme-secondary {
    background-color: var(--tp-theme-secondary);
}

.tp-text-border-1 {
    color: var(--tp-border-1);
}

.tp-bg-border-1 {
    background-color: var(--tp-border-1);
}

.tp-text-border-2 {
    color: var(--tp-border-2);
}

.tp-bg-border-2 {
    background-color: var(--tp-border-2);
}

.tp-text-border-3 {
    color: var(--tp-border-3);
}

.tp-bg-border-3 {
    background-color: var(--tp-border-3);
}

.tp-text-border-4 {
    color: var(--tp-border-4);
}

.tp-bg-border-4 {
    background-color: var(--tp-border-4);
}

.tp-ff-body {
    font-family: var(--tp-ff-body);
}

.tp-ff-heading {
    font-family: var(--tp-ff-heading);
}

.tp-ff-dm {
    font-family: var(--tp-ff-dm);
}

.tp-ff-p {
    font-family: var(--tp-ff-p);
}

.tp-ff-fontawesome {
    font-family: var(--tp-ff-fontawesome);
}

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

@media (max-width: 574.98px) {
    .back-to-top-wrapper {
        right: 20px;
        bottom: 20px;
    }
}

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

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

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

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

/*----------------------------------------*/
/*  2.4 Buttons
/*----------------------------------------*/
.tp-btn-xs {
    padding: 8px 10px;
}

.tp-btn-md {
    padding: 13px 28px;
}

.tp-btn-lg {
    padding: 16px 27px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-btn-lg {
        padding: 16px 22px;
    }
}

.tp-btn-xl {
    padding: 18px 38px;
}

.tp-btn-xxl {
    padding: 23px 38px;
}

.tp-btn-switch-animation {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .tp-btn-switch-animation .btn-text {
        margin-left: -13px;
        position: relative;
        z-index: 3;
        transition: transform 0.6s 125ms cubic-bezier(0.1, 0.75, 0.25, 1);
    }

    .tp-btn-switch-animation .btn-icon {
        margin-left: 6px;
        position: relative;
        transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
        transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
        line-height: 0;
        z-index: 3;
    }

        .tp-btn-switch-animation .btn-icon + .btn-icon {
            order: -2;
            opacity: 0;
            transition-delay: 0s;
            margin-left: 0;
            -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
        }

    .tp-btn-switch-animation:hover .btn-text {
        transition-delay: 0.1s;
        transform: translateX(23px);
    }

    .tp-btn-switch-animation:hover .btn-icon {
        transition-delay: 0s;
        transform: translateX(10px);
        opacity: 0;
    }

        .tp-btn-switch-animation:hover .btn-icon + .btn-icon {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 225ms;
        }

.tp-btn-switch-text > span {
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.tp-btn-switch-text.btn-lg > span {
    padding: 15px 31px;
}

.tp-btn-switch-text .btn-double-text {
    transition: opacity 0.65s, transform 0.85s;
    transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
    position: relative;
}

    .tp-btn-switch-text .btn-double-text::before {
        content: attr(data-text);
        display: inline-block;
        position: absolute;
        white-space: nowrap;
        top: 50%;
        opacity: 0;
        left: 50%;
        transform: translate(-50%, 100%);
        transition: opacity 0.5s, transform 0.8s;
        transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
    }

.tp-btn-switch-text:hover.bg-hover-black {
    background: var(--tp-common-black-4);
}

.tp-btn-switch-text:hover.bg-hover-theme-1 {
    background: var(--tp-theme-1);
}

.tp-btn-switch-text:hover .btn-double-text {
    transform: translateY(-200%);
}

    .tp-btn-switch-text:hover .btn-double-text::before {
        transform: translate(-50%, 150%);
        opacity: 1;
    }

.tp-btn-border {
    border: 1px solid #fff;
}

.tp-arrow-angle {
    --qode-hover-move-x: 110%;
    --qode-hover-move-y: 100%;
}

.tp-arrow-svg-top-right {
    fill: currentColor;
    stroke: none;
}

.tp-arrow-angle path {
    transition: transform 0.38s cubic-bezier(0.37, 0.08, 0.02, 0.93), opacity 0.18s ease-out;
}

    .tp-arrow-angle path:nth-of-type(1) {
        transform: translateX(0) translateY(0);
        opacity: 1;
        transition-delay: 0.15s, 0.15s;
    }

    .tp-arrow-angle path:nth-of-type(2) {
        transform: translateX(calc(-1 * var(--qode-hover-move-x))) translateY(var(--qode-hover-move-y));
        opacity: 0.5;
        transition-delay: 0s, 0s;
    }

.tp-left-right:hover .tp-arrow-angle path:nth-of-type(2) {
    transform: translateX(0) translateY(0);
    opacity: 1;
    transition-delay: 0.15s, 0.15s;
}

.tp-left-right:hover .tp-arrow-angle path:nth-of-type(1) {
    transform: translateX(var(--qode-hover-move-x)) translateY(calc(-1 * var(--qode-hover-move-y)));
    opacity: 0;
    transition-delay: 0s, 0s;
}

/*----------------------------------------*/
/*  2.1 Animations
/*----------------------------------------*/
/* zoom effect animation */
@keyframes zoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
/* animate-pulse */
@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    40% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    80% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
    }
}

@keyframes slide-progress {
    0% {
        transform: translateX(-100%);
        width: 0;
    }

    100% {
        transform: translateX(0);
        width: 100%;
    }
}

@-webkit-keyframes tpshake {
    10% {
        transform: translateY(-10px);
    }

    50% {
        transform: skew(15deg);
    }

    80% {
        transform: rotate(10deg);
    }

    100% {
        transform: translate(0);
    }
}

@-moz-keyframes tpshake {
    10% {
        transform: translateY(-10px);
    }

    50% {
        transform: skew(15deg);
    }

    80% {
        transform: rotate(10deg);
    }

    100% {
        transform: translate(0);
    }
}

@-ms-keyframes tpshake {
    10% {
        transform: translateY(-10px);
    }

    50% {
        transform: skew(15deg);
    }

    80% {
        transform: rotate(10deg);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes tpshake {
    10% {
        transform: translateY(-10px);
    }

    50% {
        transform: skew(15deg);
    }

    80% {
        transform: rotate(10deg);
    }

    100% {
        transform: translate(0);
    }
}

.tpshake {
    transition: all 0.4s ease;
}

.tpshake-wrap:hover .tpshake {
    animation-name: tpshake;
    animation-timing-function: ease-in-out;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
}

@keyframes wobble_vertical {
    16.65% {
        transform: translateY(8px);
    }

    33.3% {
        transform: translateY(-6px);
    }

    49.95% {
        transform: translateY(4px);
    }

    66.6% {
        transform: translateY(-2px);
    }

    83.25% {
        transform: translateY(1px);
    }

    100% {
        transform: translateY(0);
    }
}

.tpshake-wrap-2:hover .tpshake-2 {
    animation-name: wobble_vertical;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@-webkit-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-ms-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.rotate-infinite {
    -webkit-animation: rotate-infinite 15s linear infinite;
    animation: rotate-infinite 15s linear infinite;
}

/*img-animation**********************/
.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-right {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@-webkit-keyframes tpSwing {
    0% {
        -webkit-transform: rotate(6deg);
        -moz-transform: rotate(6deg);
        -ms-transform: rotate(6deg);
        -o-transform: rotate(6deg);
        transform: rotate(6deg);
    }

    100% {
        -webkit-transform: rotate(-6deg);
        -moz-transform: rotate(-6deg);
        -ms-transform: rotate(-6deg);
        -o-transform: rotate(-6deg);
        transform: rotate(-6deg);
    }
}

@-moz-keyframes tpSwing {
    0% {
        -webkit-transform: rotate(6deg);
        -moz-transform: rotate(6deg);
        -ms-transform: rotate(6deg);
        -o-transform: rotate(6deg);
        transform: rotate(6deg);
    }

    100% {
        -webkit-transform: rotate(-6deg);
        -moz-transform: rotate(-6deg);
        -ms-transform: rotate(-6deg);
        -o-transform: rotate(-6deg);
        transform: rotate(-6deg);
    }
}

@-ms-keyframes tpSwing {
    0% {
        -webkit-transform: rotate(6deg);
        -moz-transform: rotate(6deg);
        -ms-transform: rotate(6deg);
        -o-transform: rotate(6deg);
        transform: rotate(6deg);
    }

    100% {
        -webkit-transform: rotate(-6deg);
        -moz-transform: rotate(-6deg);
        -ms-transform: rotate(-6deg);
        -o-transform: rotate(-6deg);
        transform: rotate(-6deg);
    }
}

@keyframes tpSwing {
    0% {
        -webkit-transform: rotate(6deg);
        -moz-transform: rotate(6deg);
        -ms-transform: rotate(6deg);
        -o-transform: rotate(6deg);
        transform: rotate(6deg);
    }

    100% {
        -webkit-transform: rotate(-6deg);
        -moz-transform: rotate(-6deg);
        -ms-transform: rotate(-6deg);
        -o-transform: rotate(-6deg);
        transform: rotate(-6deg);
    }
}

.tpswing {
    animation: tpSwing 2s linear infinite alternate;
}

@keyframes tptranslateX2 {
    0% {
        transform: translateX(-30px);
    }

    to {
        transform: translateX(20px);
    }
}

.tptranslateX2 {
    animation: tptranslateX2 4s infinite alternate;
}

@keyframes tptranslateY2 {
    0% {
        transform: translateY(-30px);
    }

    to {
        transform: translateY(20px);
    }
}

.tptranslateY2 {
    animation: tptranslateY2 4s infinite alternate forwards;
}

@keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}
/*----------------------------------------*/
/*  2.9 Preloader
/*----------------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tp-theme-primary);
}

/* HTML: <div class="loader"></div> */
.loading {
    width: 60px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side,#f8d0b3 90%,#0000);
    background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
    background-size: 33.3333333333% 50%;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    20% {
        background-position: 0% 0%, 50% 50%, 100% 50%;
    }

    40% {
        background-position: 0% 100%, 50% 0%, 100% 50%;
    }

    60% {
        background-position: 0% 50%, 50% 100%, 100% 0%;
    }

    80% {
        background-position: 0% 50%, 50% 50%, 100% 100%;
    }
}
/*----------------------------------------*/
/*  2.6 Nice Select
/*----------------------------------------*/
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 60px;
    line-height: 60px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}

    .nice-select:hover {
        border-color: #dbdbdb;
    }

    .nice-select:active, .nice-select.open, .nice-select:focus {
        border-color: #999;
    }

    .nice-select::after {
        position: absolute;
        content: "\f107";
        top: 50%;
        right: 30px;
        font-family: var(--tp-ff-fontawesome);
        color: var(--tp-common-black);
        font-weight: 500;
        pointer-events: none;
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        margin-top: 0;
        transform-origin: center;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .nice-select.open::after {
        -webkit-transform: translateY(-50%) rotate(-180deg);
        -moz-transform: translateY(-50%) rotate(-180deg);
        -ms-transform: translateY(-50%) rotate(-180deg);
        -o-transform: translateY(-50%) rotate(-180deg);
        transform: translateY(-50%) rotate(-180deg);
    }

    .nice-select.open .list {
        opacity: 1;
        pointer-events: auto;
        -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }

    .nice-select.disabled {
        border-color: #ededed;
        color: #999;
        pointer-events: none;
    }

        .nice-select.disabled::after {
            border-color: #cccccc;
        }

    .nice-select.wide {
        width: 100%;
    }

        .nice-select.wide .list {
            left: 0 !important;
            right: 0 !important;
        }

    .nice-select.right {
        float: right;
    }

        .nice-select.right .list {
            left: auto;
            right: 0;
        }

    .nice-select.small {
        font-size: 12px;
        height: 36px;
        line-height: 34px;
    }

        .nice-select.small::after {
            height: 4px;
            width: 4px;
        }

        .nice-select.small .option {
            line-height: 34px;
            min-height: 34px;
        }

    .nice-select .list {
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
        box-sizing: border-box;
        margin-top: 4px;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        pointer-events: none;
        position: absolute;
        top: 100%;
        left: 0;
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
        transform: scale(0.75) translateY(-21px);
        -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
        transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
        z-index: 9;
    }

    .nice-select .option {
        cursor: pointer;
        font-weight: 400;
        line-height: 40px;
        list-style: none;
        min-height: 40px;
        outline: none;
        padding-left: 18px;
        padding-right: 29px;
        text-align: left;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

        .nice-select .option.selected {
            font-weight: bold;
        }

        .nice-select .option.disabled {
            background-color: transparent;
            color: #999;
            cursor: default;
        }

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

/*----------------------------------------*/
/*  2.8 Pagination
/*----------------------------------------*/
.tp-pagination-wrap nav ul {
    display: flex;
    justify-content: center;
}

    .tp-pagination-wrap nav ul li {
        list-style: none;
    }

        .tp-pagination-wrap nav ul li a {
            font-weight: 500;
            font-size: 16px;
            border-radius: 4px;
            padding: 8px 16px;
            color: #506767;
            border: 1px solid rgba(31, 49, 48, 0.1);
            margin: 3px 3px;
            display: inline-block;
            width: 44px;
            height: 44px;
        }

            .tp-pagination-wrap nav ul li a:hover {
                box-shadow: 0 1px 3px 0 rgba(32, 33, 36, 0.08);
                background: var(--tp-common-white);
                border-color: var(--tp-common-white);
            }

            .tp-pagination-wrap nav ul li a.text {
                font-weight: 600;
                font-size: 16px;
                color: #1f3130;
                width: auto;
                height: auto;
            }

/*----------------------------------------*/
/*  2.7 offcanvas
/*----------------------------------------*/
.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 995;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 49, 48, 0.8);
    visibility: hidden;
    opacity: 0;
    transition: 0.45s ease-in-out;
}

    .body-overlay.apply {
        opacity: 1;
        visibility: visible;
    }

    .body-overlay:hover {
        cursor: url(../img/cross-icon/cross-out.png), pointer;
    }

.tpoffcanvas {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    right: -100%;
    width: 480px;
    bottom: 0;
    box-shadow: 0 16px -32px 0 rgba(0, 0, 0, 0.8);
    background-color: var(--tp-common-white);
    z-index: 997;
    padding: 50px;
    scrollbar-width: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.45s ease-in-out;
    overflow-y: scroll;
}

    .tpoffcanvas .homemenu {
        margin-bottom: 30px;
    }

    .tpoffcanvas .homemenu-title {
        color: var(--tp-common-white);
    }

    .tpoffcanvas .tp-main-menu-mobile {
        margin-bottom: 30px;
    }

    .tpoffcanvas.opened {
        opacity: 1;
        visibility: visible;
    }

@media (max-width: 574.98px) {
    .tpoffcanvas {
        width: 100%;
        padding: 40px 35px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tpoffcanvas {
        width: 400px;
        padding: 40px;
    }
}

.tpoffcanvas.opened {
    right: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.6s;
}

.tpoffcanvas-btn {
    padding: 18px 40px;
    background: var(--tp-theme-primary);
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 20px;
    color: var(--tp-common-white);
    font-weight: 500;
    position: relative;
    transition: all 0.3s linear;
    overflow: hidden;
    z-index: 1;
    line-height: 1;
    width: 100%;
    text-align: center;
    border-radius: 50px;
}

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

.tpoffcanvas__logo {
    margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tpoffcanvas__logo {
        padding-top: 0;
    }
}

@media (max-width: 574.98px) {
    .tpoffcanvas__logo {
        padding-top: 0;
    }
}

@media (max-width: 574.98px) {
    .tpoffcanvas__logo img {
        width: 150px;
    }
}

.tpoffcanvas__close-btn button {
    position: absolute;
    right: 30px;
    top: 37px;
    transition: 0.4s;
    -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.3s;
    height: 40px;
    width: 40px;
    line-height: 43px;
    border-radius: 4px;
    border: 1px solid rgba(6, 7, 40, 0.1);
    color: var(--tp-common-black);
}

    .tpoffcanvas__close-btn button:hover {
        background-color: var(--tp-theme-secondary);
        color: var(--tp-theme-primary);
        border-color: var(--tp-theme-secondary);
    }

    .tpoffcanvas__close-btn button i {
        font-weight: 300;
        font-size: 20px;
        transition: 0.4s;
    }

.tpoffcanvas__social {
    margin-top: 30px;
}

    .tpoffcanvas__social .social-icon a {
        height: 40px;
        width: 40px;
        line-height: 36px;
        text-align: center;
        font-size: 16px;
        border: 1px solid #EAEAEF;
        color: var(--tp-common-black);
        margin-right: 15px;
        transition: 0.3s;
        display: inline-block;
        border-radius: 4px;
    }

@media (max-width: 574.98px) {
    .tpoffcanvas__social .social-icon a {
        margin-right: 3px;
        height: 50px;
        width: 50px;
        line-height: 53px;
        font-size: 15px;
    }
}

.tpoffcanvas__social .social-icon a:hover {
    background-color: var(--tp-theme-secondary);
    color: var(--tp-theme-primary);
    border-color: var(--tp-theme-secondary);
}

.tp-offcanvas-menu ul li .tp-submenu .homemenu {
    position: relative;
}

    .tp-offcanvas-menu ul li .tp-submenu .homemenu.comeing-soon .homemenu-thumb {
        position: relative;
    }

        .tp-offcanvas-menu ul li .tp-submenu .homemenu.comeing-soon .homemenu-thumb::before {
            position: absolute;
            z-index: 22;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            content: "";
            backdrop-filter: blur(6px);
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 6px;
        }

    .tp-offcanvas-menu ul li .tp-submenu .homemenu:hover .homemenu-btn {
        opacity: 1;
        visibility: visible;
        top: 50%;
    }

.tp-offcanvas-menu ul li .tp-submenu .homemenu-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-offcanvas-menu ul li .tp-submenu .homemenu-btn .tp-btn-lg {
        padding: 12px 17px;
        font-size: 14px;
    }
}

/*----------------------------------------*/
/*  2.11 Section Title
/*----------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
    .tp-section-title {
        font-size: 45px;
    }
}

.tp-section-5-subtitle::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    left: 0;
    top: 10px;
    background: var(--tp-grey-1);
    border-radius: 30px;
}

.tp-section-x-spacing {
    padding-left: 50px;
    padding-right: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-section-x-spacing {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-section-x-spacing {
        padding-left: 15px;
        padding-right: 15px;
    }
}





/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.tp-header-top-info ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .tp-header-top-info ul li {
        font-weight: 400;
        font-size: 16px;
        color: var(--tp-common-white);
        list-style: none;
        display: flex;
        align-items: center;
    }

        .tp-header-top-info ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
        }

            .tp-header-top-info ul li a:hover {
                color: var(--tp-theme-secondary);
            }

            .tp-header-top-info ul li a svg {
                color: var(--tp-theme-secondary);
            }

        .tp-header-top-info ul li .tp-border {
            width: 1px;
            height: 20px;
            background: rgba(255, 255, 255, 0.4);
        }

.tp-header-top-selected-lang::after {
    position: absolute;
    transition: all 0.3s ease;
    content: "\f107";
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--tp-common-white);
    font-size: 14px;
    font-family: var(--tp-ff-fontawesome);
}

.tp-header-top-lang-list {
    position: absolute;
    top: 120%;
    right: 0;
    background-color: var(--tp-common-white);
    z-index: 11;
    padding: 15px 15px;
    min-width: 100px;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 20px 30px rgba(3, 4, 28, 0.1);
    transition: all 0.2s ease-out 0s;
}

    .tp-header-top-lang-list li {
        list-style: none;
        color: var(--tp-theme-primary);
        text-align: left;
        font-size: 16px;
        cursor: pointer;
        -webkit-transition: all 0.3s 0s ease-out;
        -moz-transition: all 0.3s 0s ease-out;
        -ms-transition: all 0.3s 0s ease-out;
        -o-transition: all 0.3s 0s ease-out;
        transition: all 0.3s 0s ease-out;
    }

        .tp-header-top-lang-list li:hover {
            color: var(--tp-theme-primary);
        }

.tp-header-top-lang:hover .tp-header-top-lang-list {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.tp-header-top-right {
    gap: 30px;
}

.tp-header-top-right-border {
    height: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.tp-header-top-spacing {
    padding: 12px 0px;
}

.tp-header-left {
    gap: 96px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
    .tp-header-left {
        gap: 40px;
    }
}

.tp-header-sidebar-btn {
    width: 48px;
    height: 48px;
    line-height: 40px;
    color: var(--tp-theme-primary);
}

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

.tp-header-search button {
    transition: all 0.4s ease;
}

    .tp-header-search button:hover {
        color: var(--tp-grey-1);
    }

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

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-header-lg-space {
        padding: 10px 20px;
    }
}

@media (max-width: 574.98px) {
    .tp-header-lg-space {
        padding: 10px 0;
    }
}

.tp-header-2-spacing {
    border-radius: 26px;
    background: #f6f6f6;
}

.tp-header-2-info ul {
    display: flex;
    align-items: center;
    padding-left: 30px;
}

    .tp-header-2-info ul li {
        list-style: none;
        position: relative;
    }

        .tp-header-2-info ul li:not(:last-child) {
            margin-right: 30px;
            padding-right: 30px;
        }

            .tp-header-2-info ul li:not(:last-child)::before {
                position: absolute;
                content: "";
                width: 6px;
                height: 6px;
                background: var(--tp-grey-1);
                border-radius: 20px;
                top: 50%;
                transform: translateY(-50%);
                right: 0;
            }

        .tp-header-2-info ul li a {
            font-weight: 500;
            font-size: 16px;
        }

            .tp-header-2-info ul li a:hover {
                color: var(--tp-grey-1);
            }

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-header-2-main {
        padding: 15px 0px;
    }
}

.tp-header-2-main .tp-header-top-selected-lang {
    line-height: 46px;
    transition: all 0.4s ease;
}

    .tp-header-2-main .tp-header-top-selected-lang::after {
        display: none;
    }

.tp-header-2-main .tp-header-search button:hover {
    color: var(--tp-common-white);
}

.tp-header-2-main .tp-main-menu > nav > ul > li {
    padding: 27px 0px;
}

.tp-header-2-right .tp-main-menu > nav > ul > li.has-dropdown > a::after {
    display: none;
}

.tp-header-2-right .tp-main-menu > nav > ul > li:not(:last-child) {
    margin-right: 14px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-header-2-right .tp-main-menu > nav > ul > li:not(:last-child) {
        margin-right: 3px;
    }
}

.tp-header-2-right .tp-main-menu > nav > ul > li > a {
    padding: 0px 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-2-right .tp-main-menu > nav > ul > li > a {
        padding: 9px 17px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-header-2-right .tp-main-menu {
        margin-right: 30px;
    }
}

.tp-header-3-top {
    border-bottom: 1px solid rgba(31, 49, 48, 0.1);
    padding: 0px 0px;
}

.tp-header-3-main {
    border-bottom: 1px solid rgba(31, 49, 48, 0.1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-header-3-main {
        padding: 10px 0;
    }
}

.tp-header-3-main .tp-main-menu > nav > ul > li.has-dropdown > a {
    padding: 7px 17px;
}

.tp-header-3-location ul {
    display: flex;
    align-items: center;
}

    .tp-header-3-location ul li {
        list-style: none;
        display: flex;
        align-items: center;
        margin-right: 80px;
    }

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-header-3-location ul li {
        margin-right: 40px;
    }
}

.tp-header-3-location ul li .icons {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    background: var(--tp-theme-primary);
    border-radius: 50%;
    margin-right: 15px;
    flex: 0 0 auto;
}

.tp-header-3-lang .tp-header-top-lang-list {
    min-width: 150px;
}

    .tp-header-3-lang .tp-header-top-lang-list li {
        display: flex;
        align-items: center;
    }

        .tp-header-3-lang .tp-header-top-lang-list li:not(:last-child) {
            margin-bottom: 10px;
        }

        .tp-header-3-lang .tp-header-top-lang-list li img {
            margin-right: 7px;
        }

.tp-header-3-lang .tp-header-top-selected-lang {
    padding-right: 15px;
}

    .tp-header-3-lang .tp-header-top-selected-lang::after {
        color: var(--tp-theme-primary);
    }

.tp-header-4-top {
    border-bottom: none;
}

    .tp-header-4-top .tp-header-3-location ul li .icons {
        background: rgba(255, 255, 255, 0.1);
    }

.social_ic {
    gap: 23px;
}

    .social_ic li {
        list-style: none;
    }

.tp-header-4-top .tp-header-3-lang .tp-header-top-selected-lang::after {
    color: var(--tp-grey-3);
}

.tp-header-8-main {
    padding: 5px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.tp-header-cpr-border {
    border-bottom: 1px solid rgba(31, 49, 48, 0.1);
}

.header-sticky {
    position: fixed;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
    z-index: 991;
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    -webkit-box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
    box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
    border-radius: 0;
    background: var(--tp-common-white);
}

    .header-sticky .tp-main-menu > nav > ul > li {
        padding: 11px 0px;
    }

        .header-sticky .tp-main-menu > nav > ul > li > a {
            padding: 22px 0px;
        }

    .header-sticky .tp-header-2-right .tp-main-menu > nav > ul > li > a {
        padding: 9px 20px;
    }

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .header-sticky .tp-header-2-right .tp-main-menu > nav > ul > li > a {
        padding: 9px 17px;
    }
}

.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    width: 100%;
    box-shadow: 0px 4px 36px 0px #00000040;
    background: #fff;
}

/* HEADER CSS */
/*----------------------------------------*/
/*  4.1 Main menu css
/*----------------------------------------*/
.tp-main-menu > nav > ul > li {
    list-style: none;
    display: inline-block;
    position: relative;
}

    .tp-main-menu > nav > ul > li:not(:last-child) {
        margin-right: 40px;
    }

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
    .tp-main-menu > nav > ul > li:not(:last-child) {
        margin-right: 18px;
    }
}

.tp-main-menu > nav > ul > li > a {
    font-weight: 500;
    font-size: 18px;
    color: var(--tp-theme-primary);
    position: relative;
    padding: 32px 0px;
    display: inline-block;
}

    .tp-main-menu > nav > ul > li > a:hover {
        color: var(--tp-grey-1);
    }

        .tp-main-menu > nav > ul > li > a:hover::after {
            color: var(--tp-grey-1);
            transform: rotate(180deg);
        }

.tp-main-menu > nav > ul > li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.tp-main-menu > nav > ul > li:hover > a {
    color: var(--tp-grey-1);
}

    .tp-main-menu > nav > ul > li:hover > a::after {
        color: var(--tp-grey-1);
        transform: rotate(180deg);
    }

.tp-main-menu > nav > ul > li.has-dropdown > a {
    position: relative;
}

    .tp-main-menu > nav > ul > li.has-dropdown > a::after {
        content: "\f107";
        font-size: 16px;
        color: var(--tp-theme-primary);
        font-family: var(--tp-ff-fontawesome);
        font-weight: 400;
        margin-left: 3px;
        display: inline-block;
        -webkit-transition: all 0.3s 0s ease-out;
        -moz-transition: all 0.3s 0s ease-out;
        -ms-transition: all 0.3s 0s ease-out;
        -o-transition: all 0.3s 0s ease-out;
        transition: all 0.3s 0s ease-out;
    }

    .tp-main-menu > nav > ul > li.has-dropdown > a.tp-static {
        position: static;
    }

.tp-main-menu > nav > ul > li > .submenu {
    position: absolute;
    top: 115%;
    left: 0;
    min-width: 275px;
    padding: 12px 0 0;
    background: var(--tp-common-white);
    transition: all 0.3s linear;
    display: block;
    z-index: 9999;
    border-radius: 0px 0px 4px 4px;
    transform-origin: top center;
    box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.1);
    visibility: hidden;
    opacity: 0;
}

    .tp-main-menu > nav > ul > li > .submenu li {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        transform: translateY(-10px);
        border-bottom: 1px solid #eee;
        padding: 4px 0;
    }

        .tp-main-menu > nav > ul > li > .submenu li .submenu {
            right: -100%;
            left: auto;
            top: 0;
        }

        .tp-main-menu > nav > ul > li > .submenu li a {
            position: relative;
            z-index: 11;
            color: var(--tp-theme-primary);
            font-weight: 500;
            font-size: 16px;
            padding: 5px 15px;
            padding-bottom: 1px;
            width: 100%;
            text-transform: capitalize;
            display: block;
        }

            .tp-main-menu > nav > ul > li > .submenu li a:hover {
                color: var(--tp-grey-1);
            }

        .tp-main-menu > nav > ul > li > .submenu li:hover > a {
            color: var(--tp-grey-1);
        }

            .tp-main-menu > nav > ul > li > .submenu li:hover > a::before {
                width: 12px;
            }

        .tp-main-menu > nav > ul > li > .submenu li:hover > .submenu {
            transform: translateY(0);
            visibility: visible;
            opacity: 1;
        }

.tp-main-menu > nav > ul > li .tp-main-mega-menu {
    position: absolute;
    top: 115%;
    left: 0;
    right: 0;
    padding: 0;
    width: 100%;
    z-index: 999;
    background: var(--tp-common-white);
    box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.1);
    overflow: hidden;
    margin: auto;
}

    .tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper {
        padding: 30px 30px 0px 30px;
    }

        .tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper .homemenu {
            margin-bottom: 25px;
        }

            .tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper .homemenu:hover .homemenu-btn {
                opacity: 1;
                visibility: visible;
                top: 50%;
            }

        .tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper .homemenu-thumb {
            height: 250px;
            border-radius: 4px;
        }

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
    .tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper .homemenu-thumb {
        height: auto;
    }
}

.tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper .homemenu-thumb a {
    padding: 0;
}

.tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper .homemenu-thumb img {
    transition: all 0.4s ease;
    object-fit: cover;
}

.tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper .homemenu-thumb:hover img {
    transform: scale(1.06);
}

.tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper .homemenu-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper .homemenu-thumb-wrap {
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper .homemenu-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--tp-theme-primary);
}

    .tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper .homemenu-title a {
        padding: 0;
        color: var(--tp-theme-primary);
    }

        .tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper .homemenu-title a:hover {
            color: var(--tp-grey-1);
        }

.tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper .comeing-soon .homemenu-thumb {
    position: relative;
}

    .tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper .comeing-soon .homemenu-thumb::before {
        position: absolute;
        z-index: 22;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
        backdrop-filter: blur(6px);
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 6px;
    }

.tp-main-menu-5 > nav > ul > li.has-dropdown > a::after {
    display: none;
}

.tp-main-menu-8 > nav > ul {
    margin-left: 82px;
    margin-right: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-main-menu-8 > nav > ul {
        margin-left: 0;
    }
}

.tp-main-menu-8 > nav > ul > li:not(:last-child) {
    margin-right: 61px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-main-menu-8 > nav > ul > li:not(:last-child) {
        margin-right: 30px;
    }
}

.tp-main-menu-8 > nav > ul > li > a {
    color: var(--tp-common-white);
}

    .tp-main-menu-8 > nav > ul > li > a:hover {
        color: #f6f6f6a8;
    }

    .tp-main-menu-8 > nav > ul > li > a::after {
        display: none !important;
    }

.tp-onepage-menu li a.active {
    color: var(--tp-grey-1);
}

/*----------------------------------------*/
/*  4.2 Mobilemenu css
/*----------------------------------------*/
.tp-offcanvas-menu {
    margin-bottom: 40px;
}

    .tp-offcanvas-menu ul {
        list-style: none;
    }

        .tp-offcanvas-menu ul li {
            position: relative !important;
        }

            .tp-offcanvas-menu ul li > a {
                padding: 8px 0;
                display: block;
                font-size: 15px;
                font-weight: 500;
            }

            .tp-offcanvas-menu ul li:not(:last-child) > a {
                border-bottom: 1px solid rgba(1, 15, 28, 0.1);
            }

            .tp-offcanvas-menu ul li.active > a {
                color: var(--tp-theme-primary);
            }

            .tp-offcanvas-menu ul li.active > .tp-menu-close {
                color: var(--tp-common-white);
                background: var(--tp-theme-primary);
                border-color: var(--tp-theme-primary);
            }

                .tp-offcanvas-menu ul li.active > .tp-menu-close i {
                    -webkit-transform: rotate(90deg);
                    -moz-transform: rotate(90deg);
                    -ms-transform: rotate(90deg);
                    -o-transform: rotate(90deg);
                    transform: rotate(90deg);
                }

            .tp-offcanvas-menu ul li .tp-submenu {
                display: none;
            }

                .tp-offcanvas-menu ul li .tp-submenu.submenu {
                    padding-left: 20px;
                }

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-offcanvas-menu .tp-main-mega-menu {
        padding-left: 0 !important;
    }
}

.tp-offcanvas-menu .tp-main-mega-menu .homemenu-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--tp-theme-primary);
}

    .tp-offcanvas-menu .tp-main-mega-menu .homemenu-title a {
        padding: 0;
        color: var(--tp-theme-primary);
    }

.tp-offcanvas-menu .tp-main-mega-menu .homemenu {
    margin-bottom: 30px;
}

.tp-menu-close {
    position: absolute;
    right: 0;
    top: 6px;
    height: 30px;
    width: 30px;
    font-size: 12px;
    line-height: 29px;
    text-align: center;
    border: 1px solid rgba(1, 15, 28, 0.12);
}

    .tp-menu-close i {
        transition: all 0.3s;
    }


/*----------------------------------------*/
/*  5.3 Sidebar css
/*----------------------------------------*/
.tp-sidebar-search-input input {
    font-weight: 400;
    font-size: 16px;
    color: var(--tp-grey-1);
    box-shadow: 0 1px 3px 0 rgba(3, 4, 28, 0.1);
    background: var(--tp-common-white);
    border-radius: 4px;
}

    .tp-sidebar-search-input input::placeholder {
        font-size: 16px;
        color: var(--tp-grey-1);
    }

    .tp-sidebar-search-input input:focus {
        border-color: var(--tp-common-black);
    }

.tp-sidebar-search-input button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    color: var(--tp-common-black);
}

.tp-sidebar-author {
    box-shadow: 0 1px 3px 0 rgba(3, 4, 28, 0.1);
    border-radius: 4px;
}

.tp-sidebar-author-main {
    border-radius: 4px 4px 10px 10px;
    padding: 40px 40px 30px 40px;
}

.tp-sidebar-author-active {
    width: 18px;
    height: 18px;
    display: inline-block;
    border-radius: 30px;
    background: #42ce0f;
    position: absolute;
    top: 0;
    right: 3px;
    border: 3px solid var(--tp-common-white);
}

.tp-sidebar-social ul {
    display: flex;
    justify-content: center;
}

    .tp-sidebar-social ul li {
        list-style: none;
        margin: 0 15px;
    }

        .tp-sidebar-social ul li a {
            color: #506767;
            transition: all 0.4s ease;
        }

            .tp-sidebar-social ul li a:hover {
                color: #1f3130;
            }

.tp-sidebar-call {
    padding: 32px 40px 32px 40px;
}

    .tp-sidebar-call a {
        font-weight: 500;
        font-size: 16px;
        letter-spacing: -0.02em;
        color: var(--tp-grey-1);
        display: block;
        margin-bottom: 3px;
    }

        .tp-sidebar-call a.links {
            text-decoration: underline;
        }

        .tp-sidebar-call a:hover {
            color: var(--tp-theme-primary);
        }

        .tp-sidebar-call a span {
            margin-right: 10px;
        }

.tp-sidebar-border {
    border: 1px solid rgba(31, 49, 48, 0.1);
    border-radius: 4px;
}

.tp-sidebar-widget-content {
    padding: 35px 40px 30px 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 574.98px) {
    .tp-sidebar-widget-content {
        padding: 25px 15px 20px 15px;
    }
}

.tp-sidebar-widget-content ul li {
    list-style: none;
    margin-bottom: 10px;
}

    .tp-sidebar-widget-content ul li a {
        font-weight: 500;
        font-size: 16px;
        letter-spacing: -0.02em;
        color: var(--tp-grey-1);
        padding: 19px 20px;
        display: inline-block;
        box-shadow: 0 1px 3px 0 rgba(32, 33, 36, 0.08);
        background: var(--tp-common-white);
        border-radius: 2px;
    }

        .tp-sidebar-widget-content ul li a:hover {
            color: var(--tp-theme-primary);
        }

        .tp-sidebar-widget-content ul li a svg {
            margin-right: 8px;
        }

.tp-sidebar-widget .tagcloud a {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.02em;
    color: var(--tp-theme-primary);
    border: 1px solid rgba(31, 49, 48, 0.1);
    border-radius: 4px;
    padding: 2px 16px;
    display: inline-block;
    margin-bottom: 8px;
    margin-right: 4px;
}

    .tp-sidebar-widget .tagcloud a:hover {
        background: var(--tp-theme-primary);
        border-color: var(--tp-theme-primary);
        color: var(--tp-common-white);
    }

.tp-sidebar-rc-post {
    box-shadow: 0 1px 3px 0 rgba(3, 4, 28, 0.1);
    background: var(--tp-common-white);
    padding: 12px 70px 12px 12px;
    border-radius: 4px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-sidebar-rc-post {
        padding: 12px 20px 12px 12px;
    }
}

.tp-sidebar-rc-post-thumb img {
    border-radius: 2px;
}

.tp-sidebar-rc-meta span {
    font-weight: 400;
    font-size: 14px;
    color: var(--tp-grey-1);
}

    .tp-sidebar-rc-meta span svg {
        margin-right: 4px;
    }

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-footer-widget {
        margin-left: 0;
    }
}

.tp-footer-widget .tp-benifits-form-content .tp-icon {
    background: rgba(255, 255, 255, 0.06);
}

.tp-footer-widget .tp-footer-input {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    color: var(--tp-common-white);
    border: none;
}

    .tp-footer-widget .tp-footer-input::placeholder {
        font-size: 14px;
        color: #e5ebea;
    }

.tp-footer-menu ul li {
    list-style: none;
}

    .tp-footer-menu ul li:not(:last-child) {
        margin-bottom: 12px;
    }

    .tp-footer-menu ul li a {
        font-weight: 500;
        font-size: 16px;
        color: var(--tp-grey-3);
    }

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

.tp-footer-meinus {
    margin-left: -20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-footer-meinus {
        margin-left: 0;
    }
}

.tp-footer-bottom-social ul {
    gap: 23px;
}

    .tp-footer-bottom-social ul li {
        list-style: none;
    }

        .tp-footer-bottom-social ul li a {
            color: var(--tp-common-white);
            transition: all 0.4s ease;
        }

            .tp-footer-bottom-social ul li a:hover {
                color: var(--tp-theme-secondary);
            }

.tp-footer-bottom-border {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 20px 30px 0px 30px;
}

.tp-footer-3-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.tp-footer-3-top-content .tp-benifits-form-content .tp-icon {
    width: 52px;
    height: 52px;
    line-height: 52px;
    background: var(--tp-theme-secondary);
    border-radius: 4px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-footer-3-form {
        margin-left: 0;
    }
}

.tp-footer-3-form .footer-3-btn {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    border-radius: 2px;
}

.tp-footer-3-form .tp-footer-input {
    font-size: 14px;
    padding-right: 70px;
}

.tp-footer-3-widget .tp-footer-bottom-social ul {
    gap: 4px;
}

    .tp-footer-3-widget .tp-footer-bottom-social ul li a {
        width: 48px;
        height: 48px;
        border-radius: 100%;
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(30px);
        display: inline-block;
        text-align: center;
        line-height: 48px;
    }

        .tp-footer-3-widget .tp-footer-bottom-social ul li a:hover {
            color: var(--tp-theme-secondary);
        }

@media (max-width: 574.98px) {
    .tp-footer-3-bottom {
        padding: 13px 20px;
    }
}


/*----------------------------------------*/
/*  7.12 Hero css start
/*----------------------------------------*/
.tp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 560px;
}

.tp-hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.tp-hero-spacing {
    padding-top: 350px;
    padding-bottom: 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-hero-spacing {
        padding-top: 120px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-hero-spacing {
        padding-bottom: 40px;
    }
}

@media (max-width: 574.98px) {
    .tp-hero-spacing {
        padding-top: 128px!important;
        padding-bottom: 100px!important;
    }
}

.tp-hero-slider-navigate {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 100px;
    z-index: 2;
}

.tp-hero-slider-pagenation {
    display: flex;
    flex-wrap: wrap;
}

    .tp-hero-slider-pagenation .swiper-pagination-bullet {
        width: auto;
        height: auto;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 18px;
        background: transparent;
        opacity: 1;
        font-family: var(--tp-ff-p);
        font-weight: 500;
        font-size: 16px;
        line-height: 1;
        color: rgba(255, 255, 255, 0.7);
        padding: 9px 15px;
        margin-right: 10px;
        transition: all 0.5s ease;
        margin-bottom: 5px;
    }

        .tp-hero-slider-pagenation .swiper-pagination-bullet::before {
            position: absolute;
            content: "";
            top: 41%;
            width: 6px;
            height: 6px;
            background: var(--tp-common-white);
            border-radius: 20px;
            left: 16px;
            transition: all 0.4s ease;
            transition-duration: 0.4s;
            opacity: 0;
            visibility: hidden;
            transform: scale(0);
        }

    .tp-hero-slider-pagenation .swiper-pagination-bullet-active {
        color: var(--tp-common-white);
        position: relative;
        border-radius: 18px;
        backdrop-filter: blur(10px);
        background: linear-gradient(140deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
        padding-left: 30px;
        border: transparent;
    }

        .tp-hero-slider-pagenation .swiper-pagination-bullet-active::before {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

.tp-hero-contact {
    width: 410px;
    padding: 54px 60px 60px 50px;
    z-index: 2;
    backdrop-filter: blur(40px);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.1) 100%);
    float: right;
    margin-right: -170px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-hero-contact {
        margin-right: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-hero-contact {
        margin-bottom: 170px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-hero-contact {
        float: left;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-hero-contact {
        padding: 24px 20px 20px 15px;
        margin-bottom: 220px;
    }
}

@media (max-width: 574.98px) {
    .tp-hero-contact {
        width: 100%;
        margin-bottom: 260px;
    }
}

.tp-hero-slider-zoom .swiper-slide.swiper-slide-active .text {
    -webkit-animation-name: fadeInLeft;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.9s;
    animation-duration: 1s;
    opacity: 1;
}

.tp-hero-slider-zoom .swiper-slide.swiper-slide-active .text2 {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    animation-fill-mode: both;
    animation-delay: 1s;
    animation-duration: 1s;
    opacity: 1;
}

.tp-hero-slider-zoom .swiper-slide.swiper-slide-active .text3 {
    -webkit-animation-name: fadeInLeft;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 1.3s;
    animation-duration: 1s;
    opacity: 1;
}

.tp-hero-slider-zoom .swiper-slide.swiper-slide-active .tp-slider-para-home {
    -webkit-animation-name: fadeInRight;
    animation-fill-mode: both;
    animation-name: fadeInRight;
    animation-delay: 1.5s;
    animation-duration: 1s;
    opacity: 1;
}

.tp-hero-2-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    line-height: 40px;
    background: #C5CDCC;
    transform: translateY(6px);
}

.tp-hero-2-thumb img {
    border-radius: 4px 4px 0px 0px;
}

.tp-hero-2-call .icon {
    width: 52px;
    height: 52px;
    line-height: 52px;
    flex: 0 0 auto;
}

.tp-hero-2-shape {
    bottom: 102px;
    right: 80px;
}

.tp-hero-2-shape-2 {
    top: 292px;
    right: 130px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-hero-2-content {
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-hero-2-right-content {
        margin-top: 40px;
    }
}

.tp-hero-gsap-spacing {
    padding-top: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-gsap-spacing {
        padding-top: 118px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-hero-gsap-spacing {
        padding-top: 67px;
    }
}

.tp-hero-gsap-sta-spacing {
    padding-top: 192px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-hero-gsap-sta-spacing {
        padding-top: 68px;
    }
}

.tp-hero-gsap-hr-spacing {
    padding-top: 123px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-hero-gsap-hr-spacing {
        padding-top: 80px;
    }
}

.tp-hero-gsap-it-spacing {
    padding-top: 250px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-hero-gsap-it-spacing {
        padding-top: 110px;
    }
}

.tp-hero-gsap-cpr-spacing {
    padding-top: 218px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-hero-gsap-cpr-spacing {
        padding-top: 100px;
    }
}

.tp-hero-gsap-fin-spacing {
    padding-top: 236px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-hero-gsap-fin-spacing {
        padding-top: 95px;
    }
}

.tp-hero-gsap-team-spacing {
    padding-top: 190px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-hero-gsap-team-spacing {
        padding-top: 78px;
    }
}

.tp-text-slider-active .swiper-slide {
    width: auto !important;
}

@media (max-width: 574.98px) {
    .tp-chose-thumb .anim-zoomin-wrap {
        height: 100%;
    }

        .tp-chose-thumb .anim-zoomin-wrap .anim-zoomin {
            height: 100%;
        }
}

.tp-gsap-image-position {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.tp-gsap-image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-revel-line {
    overflow: hidden;
}

.image-reveal {
    visibility: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .image-reveal img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        transform-origin: left;
    }

/*----------------------------------------*/
/*  7.11 feature start
/*----------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
    .tp-feature-item br {
        display: none;
    }
}

.tp-feature-3-border {
    border-top: 1px solid rgba(31, 49, 48, 0.1);
    border-bottom: 1px solid rgba(31, 49, 48, 0.1);
}

.tp-feature-3-wrap {
}

@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-feature-3-wrap {
        padding-right: 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-feature-3-wrap {
        padding-left: 0;
        flex-direction: column;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-feature-3-wrap.md-space {
        padding-bottom: 0;
    }
}

.tp-feature-3-wrap span {
    width: 80px;
    height: 80px;
    display: inline-block;
    background: var(--tp-theme-primary);
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    flex: 0 0 auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-feature-3-wrap span {
        margin-bottom: 30px;
    }
}
/*----------------------------------------*/
/*  7.1 about start
/*----------------------------------------*/
.tp-about-thumb {
    height: 100%;
}

@media (max-width: 574.98px) {
    .tp-about-thumb {
        margin-right: 0;
    }
}

.tp-about-thumb .thumb {
    height: 100%;
    object-fit: cover;
}

.tp-about-thumb-2 {
    margin-left: -15px;
}

.tp-about-shape {
    top: 60px;
    right: -92px;
}

.tp-about-shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.tp-about-content {
    border: 1px solid rgba(31, 49, 48, 0.08);
    border-radius: 4px 0 0 4px;
    height: 100%;
    padding: 100px 175px 100px 123px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .tp-about-content {
        padding: 100px 100px 100px 123px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-about-content {
        padding: 70px 70px 70px 73px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-content {
        padding: 30px 30px 30px 33px;
    }
}

@media (max-width: 574.98px) {
    .tp-about-content {
        padding: 60px 12px 30px 12px;
    }
}

.tp-about-2-thumb {
    margin-right: -55px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-about-2-thumb {
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-about-2-thumb {
        margin-right: 15px;
        margin-left: 15px;
    }

        .tp-about-2-thumb img {
            border-radius: 4px;
        }
}

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

@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-about-2-content {
        padding-left: 60px;
        padding-right: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-about-2-content {
        padding-left: 0;
        padding-right: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-about-2-content {
        margin-right: 15px;
        margin-left: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-about-4-thumb {
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-about-4-thumb {
        margin-left: 0;
    }
}

.tp-about-4-icon {
    bottom: 0;
    right: 0;
    z-index: -1;
}

.tp-about-4-content {
    padding-left: 0;
    padding-right: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-about-4-content {
        margin-left: 0;
        margin-right: 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-about-4-count {
        margin-right: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-4-count {
        display: flex;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-4-count-item {
        border: none;
    }
}


/*----------------------------------------*/
/*  7.20 service start
/*----------------------------------------*/
.tp-service-content {
    padding: 0px 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
    .tp-service-content {
        padding: 0px 15px;
    }
}

.tp-service-content ul li {
    display: flex;
    list-style: none;
}

    .tp-service-content ul li:not(:last-child) {
        margin-bottom: 7px;
    }

    .tp-service-content ul li i {
        width: 20px;
        height: 20px;
        border-radius: 50px;
        border: 1px solid var(--tp-border-1);
        text-align: center;
        line-height: 18px;
        font-size: 12px;
        color: var(--tp-theme-primary);
        margin-right: 15px;
        transform: translateY(3px);
        flex: 0 0 auto;
    }

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
    .tp-service-content h3 {
        font-size: 28px;
    }
}

.tp-service-icon {
    bottom: 20px;
    right: 30px;
    border-radius: 2px;
    width: 80px;
    text-align: center;
    line-height: 80px;
    height: 80px;
    display: inline-block;
    backdrop-filter: blur(40px);
    background: linear-gradient(209deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: rotate(-180deg);
    z-index: 2;
}

.tp-service-shape {
    bottom: -1px;
    right: -1px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.tp-service-3-icon {
    width: 70px;
    height: 70px;
    line-height: 80px;
}

.tp-service-3-tag {
    padding: 6px 10px;
    top: -14px;
    left: 40px;
}

.tp-service-3-qube {
    width: 280px;
    height: 280px;
    top: 17%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
    .tp-service-3-qube {
        width: 200px;
        height: 200px;
    }
}

.tp-service-3-wrap {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0px;
}

.tp-service-3-wrap-2 {
    padding: 50px 50px 50px 50px;
}

@media (max-width: 574.98px) {
    .tp-service-3-wrap-2 {
        padding: 30px 30px 30px 30px;
    }
}

.tp-service-3-wrap:hover .tp-service-3-qube {
    transform: rotate(45deg);
    opacity: 1;
    visibility: visible;
}

.tp-service-3-wrap .service-btn {
    border: 1px solid rgba(31, 49, 48, 0.1);
    padding: 17px 25px;
}

    .tp-service-3-wrap .service-btn:hover {
        background: var(--tp-theme-primary);
    }

.tp-service-6-wrap {
    border: 1px solid rgba(31, 49, 48, 0.1);
    padding: 40px 40px 40px 40px;
    margin-right: -1px;
    margin-bottom: -1px;
}

    .tp-service-6-wrap:hover .tp-service-6-thumb {
        transform: rotate(0) scale(1);
        opacity: 1;
    }

        .tp-service-6-wrap:hover .tp-service-6-thumb img {
            transform: rotate(0) scale(1.01);
        }

.tp-service-6-thumb {
    opacity: 0;
    transform: rotate(4deg) scale(0.8);
    transition: opacity 0.35s, transform 0.5s ease-out;
    pointer-events: none;
    height: 100%;
}

    .tp-service-6-thumb img {
        transform: rotate(0) scale(1.14);
        transition: transform 0.5s ease-out;
    }


/*----------------------------------------*/
/*  7.13 industry start
/*----------------------------------------*/
.tp-industry-content {
    border: 1px solid var(--tp-border-2);
    transition: all 0.4s ease;
    background: #C4E2E2;
}

    .tp-industry-content .border-right {
        background: var(--tp-border-2);
        width: 1px;
        height: 70px;
    }

.tp-industry-icon {
    padding: 20px;
    width: 100px;
    text-align: center;
    transition: all 0.4s ease;
}

.tp-industry-7-content {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

    .tp-industry-7-content:hover {
        background: var(--tp-common-white);
        border-color: var(--tp-common-white);
    }

        .tp-industry-7-content:hover .border-right {
            background: rgba(31, 49, 48, 0.12);
        }

        .tp-industry-7-content:hover .tp-industry-icon {
            color: var(--tp-theme-primary);
        }

        .tp-industry-7-content:hover h5 {
            color: var(--tp-theme-primary);
        }

    .tp-industry-7-content .border-right {
        background: rgba(255, 255, 255, 0.12);
    }

.tp-industry-7-spacing {
    padding-bottom: 430px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-industry-7-spacing {
        padding-bottom: 90px;
    }
}

/*----------------------------------------*/
/*  7.3 benifits start
/*----------------------------------------*/
.tp-benifits-content {
    padding-left: 225px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-benifits-content {
        padding-left: 125px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
    .tp-benifits-content {
        padding-left: 0;
    }
}

.tp-benifits-list ul li {
    font-weight: 400;
    font-size: 18px;
    color: var(--tp-grey-3);
    line-height: 26px;
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
}

    .tp-benifits-list ul li::before {
        position: absolute;
        content: "";
        background: rgba(255, 255, 255, 0.35);
        width: 10px;
        height: 10px;
        border-radius: 50%;
        left: 0;
        top: 9px;
    }

.tp-benifits-textarea {
    height: 100%;
}

    .tp-benifits-textarea textarea {
        height: 100%;
    }

.tp-benifits-form-wrap {
    padding: 53px 60px 53px 60px;
    margin-left: 115px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-benifits-form-wrap {
        margin-left: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
    .tp-benifits-form-wrap {
        margin-left: 0;
    }
}

@media (max-width: 574.98px) {
    .tp-benifits-form-wrap {
        padding: 50px 12px 50px 12px;
    }
}

.tp-benifits-form-content .tp-icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    line-height: 32px;
    text-align: center;
    flex: 0 0 auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
    .tp-benifits-form-content p br {
        display: none;
    }
}

.tp-benifits-btn {
    padding: 13px 20px;
}

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

.tp-benifits-shape {
    bottom: 0;
    left: 0;
    z-index: -1;
}

.tp-benifits-4-year {
    border-radius: 4px;
    width: 150px;
    height: 148px;
    display: inline-block;
    padding: 25px 10px 10px 10px;
    position: absolute;
    top: 60px;
    right: 85px;
    z-index: 2;
}

@media (max-width: 574.98px) {
    .tp-benifits-4-year {
        top: 20px;
        right: 15px;
    }
}

.tp-benifits-4-shape {
    right: 130px;
    bottom: 130px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-benifits-4-shape {
        right: 0;
        bottom: 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-benifits-4-thumb {
        margin-right: 0;
    }
}

.tp-benifits-4-thumb .thumb-2 {
    float: right;
    margin-top: -270px;
    z-index: 1;
    position: relative;
}

@media (max-width: 574.98px) {
    .tp-benifits-4-thumb .thumb-2 {
        position: inherit;
        margin-top: 20px;
    }
}

.tp-benifits-4-job .icon {
    margin-top: 8px;
}

.tp-benifits-6-thumb {
    margin-left: -115px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-benifits-6-thumb {
        margin-left: 0;
    }
}

.tp-benifits-6-shape {
    position: absolute;
    bottom: -140px;
    left: 80px;
    mix-blend-mode: luminosity;
}

/*----------------------------------------*/
/*  7.10 faq start
/*----------------------------------------*/
.tp-faq-right {
    border-radius: 4px 0px 0px 4px;
    margin-left: -20px;
}

.tp-faq-content {
    padding-left: 60px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-faq-content {
        padding-left: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-faq-height {
        height: auto !important;
    }
}

.tp-faq-thumb {
    margin-right: 20px;
    height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-faq-thumb {
        margin-right: 0;
    }
}

.tp-faq-thumb img {
    border-radius: 0px 4px 4px 0px;
    height: 100%;
    object-fit: cover;
}



@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-faq-wrapper {
        padding-right: 30px;
        margin-left: 0;
    }
}


.tp-faq-wrapper .accordion-button.tp-faq-btn-2 {
    font-weight: 500;
    font-size: 16px;
    color: var(--tp-common-white);
    background: transparent;
    padding: 10px 30px;
    padding-right: 53px;
}

    .tp-faq-wrapper .accordion-button.tp-faq-btn-2:focus {
        box-shadow: none;
    }

.tp-faq-wrapper .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: var(--tp-theme-secondary);
}

    .tp-faq-wrapper .accordion-button:not(.collapsed) .accordion-btn::before {
        -webkit-transform: translateX(-50%) rotate(90deg);
        -moz-transform: translateX(-50%) rotate(90deg);
        -ms-transform: translateX(-50%) rotate(90deg);
        -o-transform: translateX(-50%) rotate(90deg);
        transform: translateX(-50%) rotate(90deg);
        background-color: var(--tp-theme-secondary);
    }

    .tp-faq-wrapper .accordion-button:not(.collapsed) .accordion-btn::after {
        background-color: var(--tp-theme-secondary);
    }

.tp-faq-wrapper .accordion-button::after {
    display: none;
}

.tp-faq-wrapper .accordion-body {
    padding: 0 30px 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 574.98px) {
    .tp-faq-wrapper .accordion-body {
        padding: 0px 30px 35px 30px;
    }
}

.tp-faq-wrapper .accordion-btn {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: inline-block;
    width: 12px;
    height: 12px;
}

    .tp-faq-wrapper .accordion-btn::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--tp-common-white);
        border-radius: 2px;
        transition: all 0.4s ease;
    }

    .tp-faq-wrapper .accordion-btn::before {
        position: absolute;
        content: "";
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        background-color: var(--tp-common-white);
        transform: translateX(-50%);
        border-radius: 2px;
        transition: all 0.4s ease;
    }

.tp-faq-wrapper .accordion-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    border: none;
    margin-bottom:10px;
}

.tp-faq-wrapper .tp-faq-details-para p {
    margin-bottom: 0;
    font-size: 14px;
}

.tp-faq-2-author-ratings {
    backdrop-filter: blur(40px);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    display: inline-block;
    border-radius: 15px;
    padding: 2px 12px;
}

    .tp-faq-2-author-ratings span i {
        color: #fdc93a;
        font-size: 12px;
    }

.tp-faq-2-wrap .tp-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.tp-faq-2-wrap .tp-faq-wrapper {
    margin-left: 0;
}

.tp-faq-2-wrap .tp-faq-content {
    padding: 43px 60px 43px 60px;
    margin-right: 10px;
    margin-left: 30px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-faq-2-wrap .tp-faq-content {
        margin-right: 0;
        margin-left: 0;
        padding: 43px 30px 43px 30px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-faq-2-wrap .tp-faq-content {
        margin-right: -35px;
    }
}

.tp-faq-2-wrap .tp-faq-thumb {
    margin-right: 0;
}

.tp-faq-2-wrap .tp-faq-wrapper .accordion-button {
    border: 1px solid rgba(31, 49, 48, 0.08);
    border-radius: 4px;
    color: var(--tp-theme-primary);
    min-height: 68px;
    line-height: 31px;
    background: var(--tp-common-white);
}

    .tp-faq-2-wrap .tp-faq-wrapper .accordion-button:not(.collapsed) {
        background: var(--tp-common-white);
        color: var(--tp-theme-primary);
        border-color: var(--tp-common-white);
    }

.tp-faq-2-wrap .tp-faq-wrapper .accordion-body {
    background: var(--tp-common-white);
}

.tp-faq-2-wrap .tp-faq-wrapper .tp-faq-details-para {
    border-radius: 0px 0px 4px 4px;
}



.tp-faq-2-wrap .tp-faq-wrapper .accordion-btn::before {
    background-color: var(--tp-theme-primary);
}

.tp-faq-2-wrap .tp-faq-wrapper .accordion-btn::after {
    background-color: var(--tp-theme-primary);
}

.tp-faq-2-wrap .tp-faq-wrapper .accordion-button:not(.collapsed) .accordion-btn::before {
    background-color: var(--tp-theme-primary);
}

.tp-faq-2-wrap .tp-faq-wrapper .accordion-button:not(.collapsed) .accordion-btn::after {
    background-color: var(--tp-theme-primary);
}

.tp-faq-details-wrapper .tp-faq-3-subtitle-2 {
    background: var(--tp-common-white-2);
}

.tp-faq-details-wrapper .tp-faq-3-subtitle {
    background: var(--tp-common-white-2);
}

.tp-faq-details-item {
    display: flex;
    align-items: center;
}

.tp-faq-details-icon {
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    flex: 0 0 auto;
}

.tp-faq-details-thumb {
    padding: 50px 60px 60px 60px;
}

@media (max-width: 574.98px) {
    .tp-faq-details-thumb {
        padding: 20px 20px 20px 20px;
    }
}


@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-faq-check {
        margin-left: 0;
    }
}

.tp-faq-check .tp-faq-5-wrapper {
    margin-left: 0;
    margin-right: 0;
}

.tp-faq-check .tp-faq-2-wrap .tp-faq-wrapper .accordion-body {
    background: var(--tp-common-white-2);
}

.tp-faq-check .tp-faq-2-wrap .tp-faq-wrapper .accordion-button:not(.collapsed) {
    background: var(--tp-common-white-2);
    border-color: var(--tp-common-white-2);
}

.tp-faq-check .tp-faq-5-wrapper .tp-faq-wrapper .accordion-button:not(.collapsed) {
    border-top: 1px solid rgba(31, 49, 48, 0.08);
}

.tp-border-middle {
    position: relative;
}

    .tp-border-middle::before {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        background: rgba(31, 49, 48, 0.1);
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-border-middle::before {
        display: none;
    }
}


/*----------------------------------------*/
/*  7.2 banner start
/*----------------------------------------*/
.tp-banner-content {
    padding: 70px 50px 50px 75px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-banner-content {
        padding: 70px 50px 50px 35px;
    }
}

.tp-banner-content ul li {
    list-style: none;
    font-size: 16px;
    color: var(--tp-grey-1);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

    .tp-banner-content ul li i {
        width: 20px;
        height: 20px;
        color: var(--tp-grey-1);
        border: 1px solid rgba(31, 49, 48, 0.15);
        border-radius: 50%;
        text-align: center;
        line-height: 20px;
        font-size: 12px;
        flex: 0 0 auto;
        margin-right: 10px;
    }


/*----------------------------------------*/
/*  7.17 progress start
/*----------------------------------------*/
.tp-process-3-tab-wrap {
    border-top: 1px solid rgba(31, 49, 48, 0.1);
    border-bottom: 1px solid rgba(31, 49, 48, 0.1);
    padding-top: 10px;
}

.tp-process-3-tab ul li {
    list-style: none;
    display: inline-block;
    margin-bottom: 10px;
}

    .tp-process-3-tab ul li a {
        font-weight: 500;
        font-size: 18px;
        letter-spacing: -0.02em;
        color: var(--tp-common-white);
        border-radius: 4px;
        display: inline-block;
        padding: 17px 59px;
        transition: all 0.4s ease;
        background: rgb(0, 128, 128)
    }

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-process-3-tab ul li a {
        padding: 17px 40px;
    }
}

.tp-process-3-tab ul li a.active {
    background: var(--tp-theme-primary);
}

.tp-process-3-tab ul li a:hover {
    background: var(--tp-theme-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-process-3-thumb {
        margin-left: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
    .tp-process-3-thumb {
        margin-left: 0;
    }
}

@media (max-width: 574.98px) {
    .tp-process-3-thumb {
        margin-top: 40px;
    }
}

.tp-process-3-thumb .thumb {
    width: 220px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 50%;
}

@media (max-width: 574.98px) {
    .tp-process-3-thumb .thumb {
        margin-bottom: 30px;
    }
}

.tp-process-3-thumb img {
    border-radius: 50%;
    transition: all 0.4s ease;
}

.tp-process-3-thumb:hover .tp-process-3-counts {
    background: var(--tp-theme-primary);
}

.tp-process-3-thumb:hover .thumb img {
    transform: scale(1.07);
}

.tp-process-3-counts {
    font-weight: 500;
    font-size: 26px;
    letter-spacing: -0.02em;
    color: var(--tp-common-white);
    border-radius: 40px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    backdrop-filter: blur(40px);
    transition: all 0.4s ease;
    background: linear-gradient(209deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%);
}



hr {
    margin: 0px !important;
}

.arrow_size {
    font-size: 12px;
    margin-left: 4px;
}

.finance_available {
    height: 290px;
    background-color: rgba(0, 0, 0, 0.6);
    transition: background-color 0.7s ease;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

    .finance_available:hover {
        background-color: rgba(0, 0, 0, 0.4);
    }

.bg_grey {
    background-color: #F3F3F3;
}

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


.tp_footer_main {
    display: flex;
    justify-content: space-between;
}

.tp-footer-widget_left {
    display: flex;
    gap: 50px;
}


.tp-footer-widget_right {
    display: flex;
    gap: 0px;
    align-items: end;
    flex-direction: column;
}

.footer_menu {
    display: flex;
    flex-wrap: wrap;
    color: #fff;
    flex-direction: row;
    gap: 30px;
}

.footer_hr {
    margin: 0;
    flex-shrink: 0;
    border-width: 0;
    border-style: solid;
    border-color: #fff;
    border-bottom-width: 0;
    height: auto;
    border-right-width: thin;
    align-self: stretch;
}

.tp-footer-widget_right p, .foot_enq p {
    margin-bottom: 5px;
}

footer hr {
    border-color: #fff;
    margin-bottom: 50px !important;
}

.tp-footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}


.modal_pop input[type="text"], .modal_pop input[type="email"], .modal_pop input[type="tel"], .modal_pop input[type="number"],
.modal_pop input[type="password"], .modal_pop input, .modal_pop textarea {
    border: 1px solid #e2e2e2;
}

.modal_pop select {
    height: 52px;
    width: 100%;
    line-height: 41px;
    font-size: 14px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 4px;
}
    .modal_pop select:focus {
        box-shadow: none;
        outline: none;
        border: 1px solid #e2e2e2;
    }

    .tp-header-sidebar-menu {
        display: none;
    }

.vertical-text {
    transform-origin: left top 0;
    position: fixed;
    top: 25vh;
    z-index: 500;
    right: 0px;
    width: 65px;
}

@media only screen and (min-width: 320px) and (max-width: 991px) {
    .tp-header-sidebar-menu {
        display: block;
    }

    .has-dropdown a i{display:none}

    .tab-pane .col {
        flex:auto!important
    }
    .sda_homes{text-align:center}
    .nd_is{padding-top:100px!important}
    .tp-about-4-content.pt-80{padding-top:30px!important}
    .foot_enq {
    width:100%
    }
    .tp-footer-widget_right, .tp-footer-widget_left, .tp_footer_main {
        display: block !important
    }
    .footer_menu{gap:20px}
    .vertical-text{display:none}
    .image-reveal_discover, .image-reveal_discover img{
        width: 100%!important
    }
    .mb-sm-30{margin-bottom:30px}

}
.foot_enq a:hover, .foot_enq a:focus {
    color: var(--tp-common-white)
}

.breadcrumb_ban {
    text-align: center
}

    .breadcrumb_ban .tp-hero-spacing {
        padding-top: 250px;
        padding-bottom: 250px;
    }

.image-reveal_discover img {
    width: auto
}

.tp-industry-icon_disc {
    padding: 20px;
    width: auto;
    text-align: center;
    transition: all 0.4s ease;
}

.list_st {
    line-height: 32px;
    font-weight: 500;
    padding-left: 24px;
}


.text-block {
    margin: 0 auto;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

    .text-block p {
        color: #000;
        display: none;
        transition: all 0.4s ease-in-out;
    }

        .text-block p:first-of-type {
            display: block;
        }

    .text-block.text-block--expanded p {
        display: block;
    }

    .text-block a {
        border: 1px solid #fefefe;
        color: #000;
        display: block;
        height: 60px;
        text-decoration: none;
        text-align: left;
        width: 100%;
    }





.wrapper {
    display: flex;
    justify-content: space-between;
}

.card {
    flex: 1;
    border: 1px solid #f1e9e9;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 1rem;
    height: 100%;
}

.description {
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.button {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: #007bff;
    cursor: pointer;
}


.swiper-slide .tp-hero-content-wrapper p {
    background-color: var(--tp-theme-primary);
    color: var(--tp-common-white);
    float: left;
    padding: 6px 10px;
}