img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0px;
    font-weight: 500;
    line-height: 1.2;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
    color: var(--tp-common-black);
    font-family: var(--tp-ff-heading);
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

ul {
    margin: 0px;
    padding: 0px;
}

p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.56;
    margin-bottom: 15px;
    letter-spacing: 0.01em;
    font-family: var(--tp-ff-poppins);
    color: var(--tp-text-body);
}

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'],
input[type='date'],
textarea {
    outline: none;
    height: 60px;
    width: 100%;
    line-height: 60px;
    font-size: 16px;
    padding-left: 26px;
    padding-right: 26px;
    border-radius: 8px;
    background: rgb(246, 246, 249);
    color: var(--tp-common-black);
    border: 1px solid rgb(246, 246, 249);
}

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-common-black);
}

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-common-black);
}

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-common-black);
}

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-common-black);
}

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-common-black);
}

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-common-black);
}

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-common-black);
    color: var(--tp-common-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--tp-common-black);
    color: var(--tp-common-white);
    text-shadow: none;
}

::selection {
    background: var(--tp-common-black);
    color: var(--tp-common-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: #8892a0;
    font-size: 14px;
    opacity: 1;
}

*::placeholder {
    color: #8892a0;
    font-size: 14px;
    opacity: 1;
}

.tp-line-black {
    display: inline;
    transition: all 0.3s linear;
    background-repeat: no-repeat;
    background-size:
        0% 1px,
        0 1px;
    background-position:
        100% 100%,
        0 100%;
    background-image:
        linear-gradient(currentcolor, currentcolor),
        linear-gradient(currentcolor, currentcolor);
}

.tp-line-black:hover {
    background-size:
        0% 1px,
        100% 1px;
}

.tp-line-white {
    display: inline;
    transition: all 0.3s linear;
    background-repeat: no-repeat;
    background-size:
        0% 1px,
        0 1px;
    background-position:
        100% 100%,
        0 100%;
    background-image:
        linear-gradient(currentcolor, currentcolor),
        linear-gradient(currentcolor, currentcolor);
}

.tp-line-white.green {
    background-position:
        100% 100%,
        0 75%;
    background-image:
        linear-gradient(currentcolor, currentcolor),
        linear-gradient(currentcolor, currentcolor);
}

.tp-line-white.cream {
    background-position:
        100% 100%,
        0 75%;
    background-image:
        linear-gradient(currentcolor, currentcolor),
        linear-gradient(currentcolor, currentcolor);
}

.tp-line-white.cream-2 {
    background-image:
        linear-gradient(currentcolor, currentcolor),
        linear-gradient(currentcolor, currentcolor);
}

.tp-line-white:hover {
    background-size:
        0% 1px,
        100% 1px;
}

.body-padding {
    padding: 0 20px;
}

@media (max-width: 767px) {
    .body-padding {
        padding: 0;
    }
}

.tp_img_reveal {
    visibility: hidden;
    overflow: hidden;
}

/*---------------------------------
    1.2 Common Classes
---------------------------------*/
.w-img img {
    width: 100%;
}

.m-img img {
    max-width: 100%;
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.z-index-1 {
    position: relative;
    z-index: 1;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

.z-index-3 {
    position: relative;
    z-index: 3;
}

.z-index-4 {
    position: relative;
    z-index: 4;
}

.z-index-5 {
    position: relative;
    z-index: 5;
}

.z-index-6 {
    position: relative;
    z-index: 6;
}

.z-index-7 {
    position: relative;
    z-index: 7;
}

.z-index-8 {
    position: relative;
    z-index: 8;
}

.z-index-9 {
    position: relative;
    z-index: 9;
}

.z-index-10 {
    position: relative;
    z-index: 10;
}

.gx-7 {
    --bs-gutter-x: 7px;
}

.gx-10 {
    --bs-gutter-x: 10px;
}

.gx-12 {
    --bs-gutter-x: 12px;
}

.gx-15 {
    --bs-gutter-x: 15px;
}

.gx-20 {
    --bs-gutter-x: 20px;
}

.gx-24 {
    --bs-gutter-x: 24px;
}

.gx-30 {
    --bs-gutter-x: 30px;
}

.gx-40 {
    --bs-gutter-x: 40px;
}

.gx-45 {
    --bs-gutter-x: 45px;
}

.gx-50 {
    --bs-gutter-x: 50px;
}

.gx-55 {
    --bs-gutter-x: 55px;
}

.gx-60 {
    --bs-gutter-x: 60px;
}

.gx-70 {
    --bs-gutter-x: 70px;
}

.gx-80 {
    --bs-gutter-x: 80px;
}

.gx-90 {
    --bs-gutter-x: 90px;
}

.gx-100 {
    --bs-gutter-x: 100px;
}

.gx-135 {
    --bs-gutter-x: 135px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .gx-135 {
        --bs-gutter-x: 30px;
    }
}

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-uppercase {
    text-transform: uppercase;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.include-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.counter-row {
    counter-reset: count;
}



/*----------------------------------------*/
/*  2.1 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: 767px) {
    .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;
    border-radius: 50%;
    color: var(--tp-common-black);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: var(--tp-common-white);
    box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
}

.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.2 Buttons
/*----------------------------------------*/
.tp-btn-black {
    position: relative;
    display: inline-block;
}

.tp-btn-black-text {
    font-size: 16px;
    font-weight: 500;
    padding: 7px 22px;
    border-radius: 50px;
    color: var(--tp-common-white);
    background-color: var(--tp-common-black);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-btn-black-text {
        font-size: 14px;
        padding: 7px 17px;
    }
}

@media (max-width: 767px) {
    .tp-btn-black-text {
        font-size: 15px;
        padding: 7px 13px;
    }
}

.tp-btn-black-filter-blur {
    position: absolute;
    top: 0;
    left: 0;
}




.tp-btn-black.btn-white-bg .tp-btn-black-text {
    color: var(--tp-common-black);
    background-color: var(--tp-common-white);
}



.tp-btn-black.btn-green-light-bg .tp-btn-black-text {
    color: var(--tp-common-black);
    background-color: var(--tp-common-primary);
}



.tp-btn-black.btn-transparent-bg .tp-btn-black-text {
    color: var(--tp-common-white);
    background-color: #26282c;
}






.tp-btn-black-radius span {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
}

.tp-btn-black-radius span span.text-1 {
    position: relative;
    display: block;
    transition: 0.3s;
    transform: translateY(-1px);
    white-space: nowrap;
}

.tp-btn-black-radius span span.text-2 {
    position: absolute;
    top: 100%;
    display: block;
    transition: 0.3s;
    transform: translateY(-1px);
}


.tp-btn-black-radius i {
    display: none;
}

.tp-btn-black-radius:focus {
    color: var(--tp-common-white);
}












.loader {
    display: flex;
    align-items: center;
}

.bar {
    display: inline-block;
    width: 3px;
    height: 20px;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 10px;
    animation: scale-up4 1s linear infinite;
}

.bar:nth-child(2) {
    height: 35px;
    margin: 0 5px;
    animation-delay: .25s;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #0e5f84;





    display: flex;
    align-items: center;

    justify-content: center;

    overflow: hidden;
}

.preloader2 {
    position: relative;
    display: block;
}

.water-round-container {
    position: relative;
    width: 100px;

    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

/*--- end of preloader ---*/
/*----------------------------------------*/
/*  2.5 Background
/*----------------------------------------*/
.grey-bg {
    background-color: var(--tp-common-cream);
}

.grey-bg-2 {
    background-color: var(--tp-grey-4);
}

.green-bg {
    background-color: var(--tp-common-primary);
}

.white-bg {
    background-color: var(--tp-common-white);
}


.yellow-bg {
    background-color: var(--tp-common-primary);
}





.green-regular-bg {
    background-color: var(--tp-common-primary);
}

.paste-bg-2 {
    background-color: var(--tp-common-primary);
}

[data-bg-color='footer-bg-grey'] {
    background-color: var(--tp-footer-grey-1);
}

[data-bg-color='footer-bg-white'] {
    background-color: var(--tp-common-white);
}

/* new cards */