@import url("https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
.back-to-top-wrapper,
a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
:root {
    --tp-ff-body: "PT Serif", serif;
    --tp-ff-heading: "PT Serif", serif;
    --tp-ff-p: "PT Serif", serif;
    --tp-ff-fontawesome: "Font Awesome 6 Pro";

    --tp-common-white: #ffffff;
    --tp-common-black: #000;
    --tp-grey-1: #f9f9f9;
    --tp-grey-2: #f5f5f5;
    --tp-text-body: #7a8a9e;
    --tp-text-body-2: #9ca6ae;
    --tp-theme-1: #444e32;
    --tp-border-1: #e6e6e6;
}

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

html {
    scroll-behavior: smooth;
}


/*---------------------------------
	typography css start 
---------------------------------*/

body {
    font-size: 14px;
    line-height: 26px;
    font-weight: normal;
    color: var(--tp-text-body);
    font-family: var(--tp-ff-body);
}

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-out;
    -moz-transition: color 0.3s ease-out;
    -ms-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-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-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: var(--tp-ff-p);
    color: var(--tp-common-black);
}

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;
    height: 40px;
    width: 100%;
    line-height: 56px;
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
    color: var(--tp-common-black);
    border: 1px solid var(--tp-common-black);
    background-color: var(--tp-common-white);
}

textarea {
    height: auto;
}

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: 1px solid var(--tp-theme-1);
}

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: var(--tp-common-black);
    font-size: 14px;
    opacity: 1;
}

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

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


/*---------------------------------
    1.2 Common Classes
---------------------------------*/

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

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

.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;
}

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

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

.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-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;
}

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

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

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


/* dropcap */

.tp-dropcap::first-letter {
    float: left;
    width: 65px;
    height: 85px;
    font-size: 90px;
    line-height: 0.8;
    font-weight: 500;
    margin-right: 5px;
    text-align: center;
    line-height: inherit;
    text-transform: capitalize;
    color: var(--tp-common-white);
    font-family: var(--tp-ff-body);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-plr-rs {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}


/*---------------------------------
    1.3 Default Spacing
---------------------------------*/


/*----------------------------------------*/


/*  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: 575px) {
    .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-1);
    box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
    color: var(--tp-common-white);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s 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.2 Buttons
/*----------------------------------------*/

.tp-theme-btn {
    display: inline-block;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--tp-common-white);
    background-color: var(--tp-theme-1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-theme-btn.btn-black {
    padding: 11px 41px;
    color: var(--tp-common-white);
    background-color: var(--tp-theme-1);
}

.tp-theme-btn.btn-black:hover {
    color: var(--tp-common-white);
    background-color: var(--tp-theme-1);
}

.tp-theme-btn.btn-white,
.tp-theme-btn.btn-white:hover {
    color: var(--tp-theme-1);
    background-color: var(--tp-common-white);
}

.tp-theme-btn.black {
    color: var(--tp-common-white);
    background: var(--tp-common-black);
}

.tp-theme-btn.black:hover {
    color: var(--tp-common-black);
    background: var(--tp-common-white);
}

.tp-theme-btn.transparent-btn {
	background-color: rgba(68, 78, 50, 0.75);
}

.tp-theme-btn:hover {
    color: var(--tp-common-white);
    background-color: var(--tp-theme-1);
}

.tp-menu-btn {
    position: relative;
    z-index: 1;
    line-height: 1;
    font-size: 15px;
    font-weight: 700;
    overflow: hidden;
    width: 128px;
    padding: 14px 20px;
    letter-spacing: 0px;
    display: inline-block;
    transition: all 0.3s linear;
    background: var(--tp-theme-1);
    color: var(--tp-common-white);
}

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

.tp-menu-btn::after {
    position: absolute;
    content: "";
    background-color: var(--tp-common-black);
    width: 100%;
    height: 0%;
    left: 50%;
    top: 50%;
    border-radius: 0px;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all 500ms ease;
}

.tp-menu-btn:hover:after {
    height: 380%;
}

.tp-menu-btn-green {
    background: var(--tp-theme-2);
}

.tp-menu-btn-black {
    background: var(--tp-common-black);
}

.tp-menu-btn-black::after {
    background: var(--tp-theme-primary);
}


/*----------------------------------------*/


/*  2.3 Animations
/*----------------------------------------*/

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

@-webkit-keyframes movingX {
    0% {
        left: 100%;
    }
    100% {
        left: -25%;
    }
}

@keyframes movingX {
    0% {
        left: 100%;
    }
    100% {
        left: -25%;
    }
}

@-webkit-keyframes spin-1 {
    0% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(-10deg);
    }
}

@-moz-keyframes spin-1 {
    0% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(-10deg);
    }
}

@-ms-keyframes spin-1 {
    0% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(-10deg);
    }
}

@keyframes spin-1 {
    0% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(-10deg);
    }
}

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

@keyframes zoom {
    0% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.5);
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes rotate2 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes tptranslateX2 {
    0% {
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    100% {
        -webkit-transform: translatXY(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@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 borderanimate2 {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
    }
    60% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@keyframes tp-arrow {
    49% {
        transform: translateX(30%);
    }
    50% {
        opacity: 0;
        transform: translateX(-30%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes scroll1 {
    0% {
        top: 0%;
    }
    50% {
        top: 95%;
    }
    100% {
        top: 0%;
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: 0px;
        stroke-dasharray: 3000;
    }
}


/*----------------------------------------*/


/*  2.4 Preloader
/*----------------------------------------*/

#loading {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999999;
    margin-top: 0px;
    top: 0px;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 25%;
    transform: translate(-50%, -50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    #loading-center-absolute {
        width: 40%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    #loading-center-absolute {
        width: 40%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #loading-center-absolute {
        width: 45%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    #loading-center-absolute {
        width: 50%;
    }
}

@media (max-width: 575px) {
    #loading-center-absolute {
        width: 90%;
    }
}

#loading {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999999;
    margin-top: 0px;
    top: 0px;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.tp-preloader-logo {
    width: 180px;
    height: 180px;
    line-height: 180px;
    position: relative;
    text-align: center;
    margin: auto;
}

.tp-preloader-logo img {
    animation: zoom-in-zoom-out 1.5s ease-out infinite;
}

.tp-preloader-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tp-preloader-circle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: tp-rotate 5s linear infinite;
    -moz-animation: tp-rotate 5s linear infinite;
    -ms-animation: tp-rotate 5s linear infinite;
    -o-animation: tp-rotate 5s linear infinite;
    animation: tp-rotate 5s linear infinite;
}

.tp-preloader-circle svg circle:last-child {
    stroke: var(--tp-theme-1);
    stroke-dashoffset: 0;
    stroke-dasharray: 1128, 3150;
    -webkit-animation: tp-loading 4s linear infinite;
    -moz-animation: tp-loading 4s linear infinite;
    -ms-animation: tp-loading 4s linear infinite;
    -o-animation: tp-loading 4s linear infinite;
    animation: tp-loading 4s linear infinite;
    transform-origin: center center;
}

@-webkit-keyframes tp-loading {
    0% {
        stroke-dashoffset: 0;
        stroke-dasharray: 0, 3150;
    }
    100% {
        stroke-dashoffset: -1131;
        stroke-dasharray: 1128, 3138;
    }
}

@-moz-keyframes tp-loading {
    0% {
        stroke-dashoffset: 0;
        stroke-dasharray: 0, 3150;
    }
    100% {
        stroke-dashoffset: -1131;
        stroke-dasharray: 1128, 3138;
    }
}

@-ms-keyframes tp-loading {
    0% {
        stroke-dashoffset: 0;
        stroke-dasharray: 0, 3150;
    }
    100% {
        stroke-dashoffset: -1131;
        stroke-dasharray: 1128, 3138;
    }
}

@keyframes tp-loading {
    0% {
        stroke-dashoffset: 0;
        stroke-dasharray: 0, 3150;
    }
    100% {
        stroke-dashoffset: -1131;
        stroke-dasharray: 1128, 3138;
    }
}

@-webkit-keyframes tp-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes tp-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes tp-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes tp-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.tp-preloader-content {
    text-align: center;
}

.tp-preloader-title {
    font-size: 100px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0px;
}

@media (max-width: 575px) {
    .tp-preloader-title {
        font-size: 70px;
    }
}

.tp-preloader-subtitle {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--tp-common-black);
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}


/*----------------------------------------*/


/*  2.5 Background
/*----------------------------------------*/

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

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

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

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

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

[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);
}


/*----------------------------------------*/


/*  2.8 Offcanvas
/*----------------------------------------*/

.tp-offcanvas {
    position: fixed;
    background: #fff;
    width: 500px;
    right: 0;
    top: 0;
    padding: 50px 40px;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.3s 0.3s ease-out;
    -moz-transition: 0.3s 0.3s ease-out;
    -ms-transition: 0.3s 0.3s ease-out;
    -o-transition: 0.3s 0.3s ease-out;
    transition: 0.3s 0.3s ease-out;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
    z-index: 999;
}

@media only screen and (max-width: 400px) {
    .tp-offcanvas {
        width: 100%;
        padding: 35px 30px;
    }
}

.tp-offcanvas-open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.tp-offcanvas-close-toggle {
    font-size: 29px;
    color: var(--tp-heading-color);
}

.tp-offcanvas-close-toggle:hover {
    color: var(--tp-theme-1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
    .tp-offcanvas-header {
        margin-bottom: 40px;
    }
}

.tp-offcanvas-title {
    font-size: 35px;
}

.tp-offcanvas-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
}

.tp-offcanvas-info span {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
    color: var(--tp-common-black);
}

.tp-offcanvas-sm-title {
    font-size: 25px;
    margin-bottom: 15px;
}

.tp-offcanvas-social a {
    font-size: 14px;
    width: 40px;
    height: 40px;
    line-height: 39px;
    text-align: center;
    border-radius: 40px;
    display: inline-block;
    color: var(--tp-heading-color);
    border: 1px solid rgba(2, 11, 24, 0.1);
    margin-right: 5px;
}

.tp-offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 888;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: 0.45s ease-in-out;
    background: rgba(24, 24, 24, 0.4);
}

.tp-offcanvas-overlay-open {
    opacity: 0.7;
    visibility: visible;
}


/*----------------------------------------*/


/*  2.9 Breadcrumb
/*----------------------------------------*/

.breadcrumb-plr {
    padding-top: 125px;
    padding-bottom: 125px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .breadcrumb-plr {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.breadcrumb-bg {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .breadcrumb-bg {
        background-position: 80% center;
    }
}

.breadcrumb-overlay::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0px;
    opacity: 0.7;
    content: "";
    background-color: rgb(8, 29, 45);
}

.breadcrumb-list {
    position: relative;
    font-size: 16px;
    padding: 10px 16px;
    display: inline-block;
    background: var(--tp-common-black);
    border-radius: 50px;
}

.breadcrumb-list span {
    font-weight: 700;
    padding-right: 10px;
}

.breadcrumb-list .dvdr::after {
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    content: "";
    display: inline-block;
    transform: translateY(-50%);
    background: var(--tp-common-white);
    border-radius: 50%;
}

.breadcrumb-sub-title {
    color: var(--tp-common-white);
    margin-left: 7px;
}

.breadcrumb-title {
    font-size: 60px;
    font-weight: 700;
    color: var(--tp-common-white);
    line-height: 1.3;
}

@media (max-width: 575px) {
    .breadcrumb-title {
        font-size: 50px;
    }
}


/*----------------------------------------*/


/*  2.10 Accordion
/*----------------------------------------*/

.tp-faq-accordion-box .accordion-items {
    position: relative;
    margin-bottom: 20px;
}

.tp-faq-accordion-box .accordion-header {
    border-radius: 15px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 4px 20px 0px rgba(16, 23, 40, 0.06);
    margin-bottom: -10px;
}

.tp-faq-accordion-box .accordion-icon {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 17px;
    left: 30px;
    display: inline-block;
    background: var(--tp-theme-1);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-faq-accordion-box .accordion-icon::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 8px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 2px;
    transition: 0.4s;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-faq-accordion-box .accordion-icon::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-faq-accordion-box .accordion-buttons {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    padding: 18px 0;
    padding-left: 74px;
    color: var(--tp-common-black);
    border-radius: 15px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-faq-accordion-box .accordion-buttons:not(.collapsed) {
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
}

.tp-faq-accordion-box .accordion-buttons:not(.collapsed) .accordion-icon {
    background: var(--tp-common-white);
}

.tp-faq-accordion-box .accordion-buttons:not(.collapsed) .accordion-icon::before {
    background: var(--tp-common-black);
    transform: translate(-50%, -50%) rotate(90deg);
}

.tp-faq-accordion-box .accordion-buttons:not(.collapsed) .accordion-icon::after {
    background: var(--tp-common-black);
}

.tp-faq-accordion-box .accordion-body {
    border-radius: 0 0 15px 15px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 4px 20px 0px rgba(16, 23, 40, 0.06);
    padding: 30px 27px 20px 27px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-faq-accordion-box .accordion-body p {
    margin: 0;
}

.tp-faq-2 .accordion-items {
    position: relative;
}

.tp-faq-2 .accordion-header {
    background-color: var(--tp-grey-1);
    box-shadow: none;
}

.tp-faq-2 .accordion-body {
    background-color: var(--tp-grey-1);
    box-shadow: none;
}


/*----------------------------------------*/


/*  2.11 Section Title
/*----------------------------------------*/

.tp-section-title {
    font-weight: 800;
    font-size: 30px;
    display: inline-block;
    letter-spacing: 0.5px;
    color: var(--tp-common-black);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-section-title {
        font-size: 35px;
    }
}

@media (max-width: 575px) {
    .tp-section-title {
        letter-spacing: -1px;
    }
}

.tp-section-subtitle {
    font-weight: 800;
    font-size: 30px;
    display: block;
    color: var(--tp-theme-1);
    margin-bottom: 10px;
}

.tp-section-subtitle.tp-subtitle-2 {
    display: inline-block;
    padding: 2px 10px;
    color: var(--tp-common-white);
    background: #030024;
    border-radius: 30px;
}

.tp-title-hover {
    background-size: 0% 1px, 0 1px;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
    background-position: 100% 100%, 0 93%;
    background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
}

.tp-title-hover:hover {
    background-size: 0 1px, 100% 1px;
}


/*----------------------------------------*/


/*  2.12 Search
/*----------------------------------------*/

.search-popup {
    padding: 70px;
    padding-top: 70px;
    padding-bottom: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 45%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    -webkit-transform: translateY(calc(-100% - 80px));
    -moz-transform: translateY(calc(-100% - 80px));
    -ms-transform: translateY(calc(-100% - 80px));
    -o-transform: translateY(calc(-100% - 80px));
    transform: translateY(calc(-100% - 80px));
    -webkit-transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    -moz-transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    transition-delay: 0.7s;
}

.search-popup.search-opened {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    transition-delay: 0s;
}

.search-popup.search-opened .search-input {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.3s;
}

.search-popup.search-opened .search-input::after {
    width: 100%;
    transition-delay: 0.5s;
}

.search-popup-2 {
    background-color: var(--tp-common-black-13);
}

.search-popup-2 .search-input .search-input-field~.search-focus-border {
    background-color: var(--tp-theme-8);
}

.search-popup-3 .search-input .search-input-field~.search-focus-border {
    background-color: var(--tp-theme-10);
}

.search-top {
    margin-bottom: 80px;
}

.search-input {
    position: relative;
    height: 80px;
    transition: all 0.3s ease-out 0s;
    transition-delay: 0.5s;
    opacity: 0;
}

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

.search-input input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 24px;
    color: var(--tp-common-white);
    border-bottom: 1px solid transparent;
    padding: 0;
    padding-right: 30px;
}

.search-input input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
}

.search-input input::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
}

.search-input input:-moz-placeholder {
    /* Firefox 4-18 */
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
}

.search-input input:-ms-input-placeholder {
    /* IE 10+  Edge*/
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
}

.search-input input::placeholder {
    /* MODERN BROWSER */
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
}

.search-input input:focus {
    border: 0;
}

.search-input button {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--tp-common-white);
}

.search-input .search-input-field~.search-focus-border {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--tp-common-orange);
    -webkit-transition: 0.5s 0.3s ease-out;
    -moz-transition: 0.5s 0.3s ease-out;
    -ms-transition: 0.5s 0.3s ease-out;
    -o-transition: 0.5s 0.3s ease-out;
    transition: 0.5s 0.3s ease-out;
}

.search-input .search-input-field:focus~.search-focus-border {
    width: 100%;
    left: 0;
    right: auto;
    -webkit-transition: 0.5s 0.3s ease-out;
    -moz-transition: 0.5s 0.3s ease-out;
    -ms-transition: 0.5s 0.3s ease-out;
    -o-transition: 0.5s 0.3s ease-out;
    transition: 0.5s 0.3s ease-out;
}

.search-close-btn {
    font-size: 25px;
    color: rgba(255, 255, 255, 0.3);
}

.search-close-btn:hover {
    color: var(--tp-common-white);
}


/* HEADER CSS */


/*----------------------------------------*/


/*  3.1 Header Style 1
/*----------------------------------------*/

.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    width: 100%;
    z-index: 99;
    visibility: visible;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    -khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    -moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    -ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    -o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}

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

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-header-top-wrapp {
        border: none;
    }
}

.tp-header-shape-1 {
    position: absolute;
    right: 10%;
    bottom: 0;
    animation: spin-1 3000ms forwards infinite alternate;
    transform-origin: bottom right;
}

@media only screen and (min-width: 1700px) and (max-width: 1800px) {
    .tp-header-shape-1 {
        right: 7%;
    }
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .tp-header-shape-1 {
        right: 5%;
        bottom: 14px;
    }
}

@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: 575px) {
    .tp-header-shape-1 {
        display: none;
    }
}

.tp-header-info {
    padding: 30px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-header-info {
        padding: 15px 0;
    }
}

.tp-header-info-item:hover .tp-header-info-icon {
    color: var(--tp-common-white);
    background: var(--tp-common-black);
    animation: icon-bounce 0.8s ease-out infinite;
}

.tp-header-info-item:hover .tp-header-info-text span {
    color: var(--tp-theme-1);
}

.tp-header-info ul li {
    list-style: none;
    padding-right: 30px;
    margin-right: 25px;
    display: inline-block;
    border-right: 1px solid var(--tp-border-1);
}

.tp-header-info ul li:last-child {
    border: 0;
}

.tp-header-info-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 55px;
    text-align: center;
    color: var(--tp-common-white);
    display: inline-block;
    background: var(--tp-theme-1);
    border-radius: 50%;
    margin-right: 14px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-header-info-text span {
    font-size: 16px;
    font-weight: 500;
}

.tp-header-info-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--tp-common-black);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

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

.tp-header-bottom-right ul li {
    display: inline-block;
    margin-left: 25px;
}

.tp-header-icon button span {
    font-size: 23px;
    display: inline-block;
    color: #223645;
    margin-top: 10px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-header-icon button span:hover {
    color: var(--tp-theme-1);
}

.tp-header-icon a {
    font-size: 23px;
    display: inline-block;
    color: var(--tp-common-black);
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-header-icon a:hover {
    color: var(--tp-theme-1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-header-1-one-page .tp-main-menu>nav>ul>li {
        margin-right: 50px;
    }
}


/*----------------------------------------*/


/*  3.2 Header Style 2
/*----------------------------------------*/

.header-sticky.header-2 {
    padding-right: 120px;
    padding-left: 120px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .header-sticky.header-2 {
        padding-right: 70px;
        padding-left: 70px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .header-sticky.header-2 {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .header-sticky.header-2 {
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-sticky.header-2 {
        padding: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .header-sticky.header-2 {
        padding: 0;
    }
}

.tp-header-style-2-plr {
    padding-right: 120px;
    padding-left: 120px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .tp-header-style-2-plr {
        padding-right: 70px;
        padding-left: 70px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-style-2-plr {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-style-2-plr {
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-header-style-2-plr {
        padding: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-header-style-2-plr {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .tp-header-style-2 .tp-header-bottom-btn {
        display: none;
    }
}

.tp-header-style-2 .tp-header-bottom-action {
    margin-left: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-style-2 .tp-header-bottom-action {
        margin-left: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-header-style-2 .tp-header-bottom-action {
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .tp-header-style-2 .tp-header-bottom-action {
        display: none;
    }
}

.tp-header-style-2 .tp-header-bottom-btn .tp-theme-btn {
    padding: 12px 43px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-header-style-2 .tp-header-bottom-btn .tp-theme-btn {
        padding: 12px 35px;
    }
}

.tp-header-style-2 .tp-header-bottom-right ul li {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-header-style-2 .tp-header-bottom-right ul li:hover {
    color: var(--tp-theme-1);
}

.tp-header-style-2 .tp-header-bottom-right ul li:first-child {
    margin: 0;
}

.tp-header-style-2 .tp-header-info {
    padding: 11px 0;
}

.tp-header-style-2 .tp-header-info-text {
    font-size: 16px;
    color: var(--tp-common-white);
    margin-bottom: 0;
}

.tp-header-style-2 .tp-header-info-text a i {
    color: var(--tp-common-white);
    margin-right: 5px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-header-style-2 .tp-header-info-text:hover a {
    color: var(--tp-common-white);
}

.tp-header-style-2 .tp-header-info-text:hover a i {
    color: var(--tp-common-white);
}

.tp-header-style-2 .tp-header-info-text.first-info a {
    position: relative;
}

.tp-header-style-2 .tp-header-info-text.first-info a::after {
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 1.5px;
    content: "";
    background: #596874;
}

.tp-header-style-2 .tp-header-info-center {
    margin-right: 60px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-header-style-2 .tp-header-info-center {
        margin-right: 30px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-style-2 .tp-header-info-center {
        margin-right: 20px;
    }
}

.tp-header-style-2 .tp-header-info-bg {
    width: 600px;
    padding: 15px 0;
    background: #192b38;
    border-radius: 30px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-style-2 .tp-header-info-bg {
        width: auto;
    }
}

.tp-header-style-2 .tp-header-info-social {
    margin-left: 32px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-style-2 .tp-header-info-social {
        margin-left: 20px;
    }
}

@media (max-width: 575px) {
    .tp-header-style-2 .tp-header-info-social {
        margin-left: 10px;
    }
}

.tp-header-style-2 .tp-header-info-social a {
    font-size: 16px;
    margin-right: 15px;
    padding: 20px 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-header-style-2 .tp-header-info-social a:last-child {
    margin-right: 0;
}

.tp-header-style-2 .tp-header-info-social a:hover {
    color: var(--tp-common-white);
}

.tp-header-style-2 .tp-header-lang {
    position: absolute;
    width: 54px;
    right: -23px;
    top: 4px;
    font-size: 14px;
    font-weight: 500;
    padding: 1px 10px;
    color: var(--tp-common-black);
    background-color: var(--tp-common-white);
    cursor: pointer;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-style-2 .tp-header-lang {
        right: 0;
    }
}

.tp-header-style-2 .tp-header-lang-thumb {
    width: 52px;
    height: 52px;
    margin-left: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-style-2 .tp-header-lang-thumb {
        margin-left: 15px;
    }
}

.tp-header-style-2 .tp-header-lang-list {
    position: absolute;
    top: 33px;
    right: -24px;
    z-index: 11;
    padding: 15px 15px;
    min-width: 100px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background-color: var(--tp-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-style-2 .tp-header-lang-list {
        right: -15px;
    }
}

.tp-header-style-2 .tp-header-lang-list li {
    margin-left: 0;
    cursor: pointer;
}

.tp-header-style-2 .tp-header-lang-list.tp-lang-list-open {
    visibility: visible;
    opacity: 1;
}

.tp-header-style-2 .tp-header-lang-icon {
    position: absolute;
    top: 5px;
    right: -16px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-style-2 .tp-header-lang-icon {
        right: -8px;
    }
}

.tp-header-style-2 .tp-header-lang-icon i {
    font-size: 12px;
    font-weight: 600;
    color: var(--tp-common-black);
}

.tp-header-style-2 .tp-header-top-wrapp {
    border: 0;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .tp-header-style-2 .tp-main-menu>nav>ul>li {
        margin-right: 60px;
    }
}

.tp-header-style-2 .tp-main-menu>nav>ul>li .tp-mega-menu {
    left: -170px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-header-style-2 .tp-main-menu>nav>ul>li {
        margin-right: 45px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-style-2 .tp-main-menu>nav>ul>li {
        margin-right: 35px;
    }
}

.tp-header-style-2 .tp-main-menu>nav>ul>li>a {
    padding: 37px 0;
}

.tp-header-style-2 .tp-main-menu-bars {
    margin-left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-header-style-2 .tp-main-menu-bars {
        margin-top: 0;
        margin-left: 10px;
    }
}


/*----------------------------------------*/


/*  3.3 Header Style 3
/*----------------------------------------*/

.header-3.header-sticky {
    padding-right: 375px;
    padding-left: 375px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .header-3.header-sticky {
        padding-right: 70px;
        padding-left: 70px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .header-3.header-sticky {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .header-3.header-sticky {
        padding-right: 10px;
        padding-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: 575px) {
    .header-3.header-sticky {
        padding: 10px;
    }
}

.tp-header-style-3 .tp-main-menu>nav>ul>li {
    margin-right: 30px;
}

.tp-header-style-3 .tp-main-menu>nav>ul>li .tp-mega-menu {
    left: -270px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-style-3 .tp-main-menu>nav>ul>li .tp-mega-menu {
        left: -170px;
    }
}

.tp-header-style-3 .tp-main-menu>nav>ul>li>a {
    padding: 37px 0;
}

.tp-header-style-3 .tp-header-info-bg {
    width: auto;
    background: none;
}

.tp-header-style-3 .tp-header-info-social {
    margin-left: 0;
    color: var(--tp-common-white);
}

.tp-header-style-3 .tp-header-info-social a {
    margin-right: -4px;
    position: relative;
    padding: 14px 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-header-style-3 .tp-header-info-text {
        margin-right: 0;
        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: 575px) {
    .tp-header-style-3 #header-sticky {
        padding: 10px 0;
    }
}

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

.tp-header-3-one-page .tp-main-menu>nav>ul>li {
    margin-right: 40px;
}


/*----------------------------------------*/


/*  3.4 Header Style 4
/*----------------------------------------*/

.tp-header-4-one-page .tp-main-menu>nav>ul>li {
    margin-right: 65px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .tp-header-4-one-page .tp-main-menu>nav>ul>li {
        margin-right: 45px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-header-4-one-page .tp-main-menu>nav>ul>li {
        margin-right: 35px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-4-one-page .tp-main-menu>nav>ul>li {
        margin-right: 25px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-header-4.tp-footer-style-plr {
        padding-bottom: 80px;
    }
}

.tp-header-5 .tp-header-top-wrapp {
    border: 0;
}

.tp-header-5 .tp-header-info {
    padding: 24px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-header-5 .tp-header-info {
        padding: 15px 0;
    }
}

.tp-header-5 .tp-header-info-btn .tp-theme-btn:hover {
    color: var(--tp-common-black);
    background: var(--tp-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-header-5 .tp-header-info-btn .tp-theme-btn:hover {
        color: var(--tp-common-white);
        background: var(--tp-common-black);
    }
}

.tp-header-5 .tp-main-menu>nav>ul>li>a {
    padding: 26px 0;
}

.tp-header-5 .tp-main-menu-bars {
    margin-top: 0;
}

@media (max-width: 575px) {
    .tp-header-5 .tp-main-menu-bars {
        margin-top: 0;
    }
}

.tp-header-5 .tp-main-menu-bars button {
    color: var(--tp-common-white);
    background-color: var(--tp-common-black);
}

.tp-header-5 .tp-main-menu-bars button:hover {
    color: var(--tp-common-white);
    background-color: var(--tp-theme-1);
}

.tp-header-5-one-page .tp-main-menu>nav>ul>li {
    margin-right: 65px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-5-one-page .tp-main-menu>nav>ul>li {
        margin-right: 60px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-header-5-one-page .tp-main-menu>nav>ul>li {
        margin-right: 50px;
    }
}


.blossom_short_head{
	font-weight: 700;
    font-size: 25px;
    display: block;
    margin-bottom: 20px;
    color: var(--tp-theme-1);
}

.blossom_short_head:before {
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 10px;
    transform: translateY(-3px);
    background-color: var(--tp-theme-1);
}

.blossom_short_head:after {
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 10px;
    transform: translateY(-3px);
    background-color: var(--tp-theme-1);
}

.blossom_short_head.text-white:before,.blossom_short_head.text-white:after{
	background-color: var(--tp-common-white);
}
/*----------------------------------------*/


/*  4.1 Main menu css
/*----------------------------------------*/

.tp-main-menu>nav>ul>li {
    position: relative;
    display: inline-block;
    margin-right: 70px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-main-menu>nav>ul>li {
        margin-right: 60px;
    }
}

.tp-main-menu>nav>ul>li:hover>a {
    color: var(--tp-common-black);
}

.tp-main-menu>nav>ul>li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 0;
    display: block;
    min-width: 220px;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top center;
    background: var(--tp-common-white);
    border-top: 5px solid var(--tp-theme-1);
    box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.1);
    z-index: 6;
    transition: all 0.3s ease-out;
}

.tp-main-menu>nav>ul>li .sub-menu li {
    position: relative;
    display: block;
}

.tp-main-menu>nav>ul>li .sub-menu li>a {
    font-weight: 600;
    padding: 3px 20px;
    display: block;
    transition: all 0.5s ease;
    text-transform: capitalize;
    text-align: left;
    position: relative;
    font-size: 15px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-main-menu>nav>ul>li .sub-menu li>a::before {
    position: absolute;
    width: 0px;
    height: 2px;
    top: 50%;
    left: 20px;
    content: "";
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%);
    background: var(--tp-theme-1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-main-menu>nav>ul>li .sub-menu li .sub-menu {
    left: 100%;
    top: 0;
}

.tp-main-menu>nav>ul>li .sub-menu li:hover>a {
    padding-left: 40px;
    color: var(--tp-common-black);
}

.tp-main-menu>nav>ul>li .sub-menu li:hover>a::before {
    width: 15px;
    opacity: 1;
    visibility: visible;
}

.tp-main-menu>nav>ul>li .sub-menu li:hover>.sub-menu {
    transform: scaleY(1);
    visibility: visible;
}

.tp-main-menu>nav>ul>li .tp-mega-menu {
    position: absolute;
    width: 1170px;
    padding: 30px 30px 10px 30px;
    background-color: var(--tp-common-white);
    box-shadow: rgba(149, 157, 165, 0.4) 0px 8px 24px;
    margin: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-main-menu>nav>ul>li .tp-mega-menu {
        width: 1000px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-main-menu>nav>ul>li .tp-mega-menu {
        width: 940px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-main-menu>nav>ul>li .tp-mega-menu.home-2 {
        left: -110px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-main-menu>nav>ul>li .tp-mega-menu.home-2 {
        left: -250px;
    }
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .tp-main-menu>nav>ul>li .tp-mega-menu.home-3 {
        left: -250px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-main-menu>nav>ul>li .tp-mega-menu.home-3 {
        left: -300px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-main-menu>nav>ul>li .tp-mega-menu.home-4 {
        left: -295px;
    }
}

.tp-main-menu>nav>ul>li>a {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    font-family: "PT Serif", serif;
    text-transform: uppercase;
    padding: 16px 0;
    display: block;
    color: #000;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-main-menu>nav>ul>li>a.active {
    color: var(--tp-common-black);
}

.tp-main-menu>nav>ul>li:hover>.sub-menu,
.tp-main-menu>nav>ul>li:hover .tp-mega-menu {
    transform: scaleY(1);
    visibility: visible;
}

.tp-main-menu-home nav ul li:hover>a {
    color: var(--tp-theme-1);
}

.tp-main-menu-home nav ul li .sub-menu.tp-mega-menu .homemenu-title a:hover {
    color: var(--tp-theme-1);
}

.tp-main-menu-bars {
    margin-left: 15px;
}

.tp-main-menu-bars button {
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--tp-common-white);
    background-color: var(--tp-common-black);
    transition: 0.3s;
}

.tp-main-menu-bars button:hover {
    background-color: var(--tp-theme-1);
}

.homemenu {
    position: relative;
    padding: 0px 10px;
    margin-bottom: 20px;
}

.homemenu-thumb {
    position: relative;
    margin-bottom: 3px;
}

.homemenu-thumb img {
    width: 100%;
}

.homemenu-thumb::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(38, 34, 33, 0.1);
    transition: all 0.3s 0s ease-out;
}

.homemenu-thumb:hover .homemenu-btn {
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible;
}

.homemenu-thumb:hover .homemenu-btn .menu-btn::before {
    display: none;
}

.homemenu-thumb:hover .homemenu-btn .menu-btn.show-1 {
    transform: translateY(0);
}

.homemenu-thumb:hover .homemenu-btn .menu-btn.show-2 {
    transform: translateY(0);
}

.homemenu-thumb:hover::before {
    opacity: 1;
}

.homemenu-title a {
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--tp-common-black);
}

.homemenu-title a::before {
    width: 0;
}

.homemenu-title a:hover {
    color: var(--tp-theme-1);
}

.homemenu-title a:hover::before {
    width: 0;
}

.homemenu-btn {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-40%);
    transition: all 0.3s 0s ease-out;
    opacity: 0;
}

.homemenu-btn .tp-menu-btn {
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    padding: 15px 20px;
    width: 150px;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    color: var(--tp-common-white);
}


/*----------------------------------------*/


/*  4.2 Mobilemenu css
/*----------------------------------------*/

.tp-offcanvas-menu ul {
    list-style: none;
}

.tp-offcanvas-menu ul li {
    position: relative;
}

.tp-offcanvas-menu ul li>a {
    padding: 8px 0;
    display: block;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-offcanvas-menu ul li>a {
    color: var(--tp-common-black);
}

.tp-offcanvas-menu ul li:not(:last-child)>a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.tp-offcanvas-menu ul li.active>a {
    color: var(--tp-theme-color);
}

.tp-offcanvas-menu ul li.active>.tp-menu-close {
    color: var(--tp-common-black);
    border-color: var(--tp-theme-1);
}

.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 .sub-menu {
    display: none;
    padding-left: 10px;
}

.tp-offcanvas-menu ul li .sub-menu.tp-mega-menu {
    padding-left: 0;
}

.tp-menu-close {
    position: absolute;
    right: 0;
    top: 7.5px;
    border: 1px solid rgba(1, 15, 28, 0.12);
    height: 30px;
    width: 30px;
    text-align: center;
    font-size: 12px;
    line-height: 29px;
    -webkit-transition: 0.3s 0.3s ease-out;
    -moz-transition: 0.3s 0.3s ease-out;
    -ms-transition: 0.3s 0.3s ease-out;
    -o-transition: 0.3s 0.3s ease-out;
    transition: 0.3s 0.3s ease-out;
}

.tp-menu-close:hover {
    border: 1px solid var(--tp-common-black);
}

.tp-menu-close i {
    -webkit-transition: 0.3s 0.3s ease-out;
    -moz-transition: 0.3s 0.3s ease-out;
    -ms-transition: 0.3s 0.3s ease-out;
    -o-transition: 0.3s 0.3s ease-out;
    transition: 0.3s 0.3s ease-out;
}


/*  6.1 Footer Style 1
/*----------------------------------------*/

.tp-footer-style-1 {
    margin-top: -71px;
}

.tp-footer-style-plr {
    padding-top: 220px;
    padding-bottom: 100px;
}

@media (max-width: 575px) {
    .tp-footer-style-plr {
        padding-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .tp-footer-widget {
        margin-bottom: 40px;
    }
}

.tp-footer-widget-text {
    margin-bottom: 25px;
}

.tp-footer-widget-text p {
    font-weight: 600;
    margin-right: 40px;
    color: #fff;
}

.tp-footer-widget-contact {
    font-weight: 600;
    color: var(--tp-common-white);
}

.tp-footer-widget-contact a {
    font-size: 16px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-footer-widget-contact a:hover {
    color: var(--tp-theme-1);
}

.tp-footer-widget-mail a {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-footer-widget-mail a:hover {
    color: var(--tp-theme-1);
}

.tp-footer-widget-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    display: inline-block;
    color: var(--tp-common-white);
    margin-bottom: 50px;
}

@media (max-width: 575px) {
    .tp-footer-widget-title {
        margin-bottom: 30px;
    }
}

.tp-footer-widget-title-2 {
    margin-bottom: 20px;
}

.tp-footer-widget-menu ul li {
    list-style-type: none;
    margin-bottom: 12px;
}

.tp-footer-widget-menu ul li a {
    position: relative;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-footer-widget-menu ul li a::before {
    position: absolute;
    width: 7px;
    height: 7px;
    top: 50%;
    left: -15px;
    content: "";
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    transform: translateY(-50%);
    background: var(--tp-common-white);
}

.tp-footer-widget-menu ul li a:hover {
    padding-left: 15px;
    color: var(--tp-common-white);
}

.tp-footer-widget-menu ul li a:hover::before {
    opacity: 1;
    visibility: visible;
    left: 0;
}

.tp-footer-widget-newslater span {
    font-size: 16px;
    font-weight: 500;
    display: block;
    color: #fff;
    margin-bottom: 15px;
}

.tp-footer-widget-social ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 16px;
}

.tp-footer-widget-social ul li:last-child {
    margin-right: 0;
}

.tp-footer-widget-social ul li a {
    font-size: 16px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-footer-widget-social ul li a:hover {
    color: var(--tp-common-white);
}

.tp-footer-widget.footer-col-2 {
    margin-left: -38px;
}

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

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-footer-widget.footer-col-3 {
        margin-top: 30px;
    }
}

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

.tp-footer-widget.footer-col-4 {
    margin-left: 70px;
}

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

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-footer-widget.footer-col-4 {
        margin-top: 30px;
    }
}

.tp-footer-input {
    position: relative;
}

.tp-footer-input input {
    height: 48px;
    color: var(--tp-common-white);
    background: none;
    border: 1px solid #4f6473;
    border-radius: 15px;
    padding-left: 35px;
    padding-right: 70px;
}

.tp-footer-input input::placeholder {
    color: var(--tp-text-body);
}

.tp-footer-input input:focus {
    border: 1px solid var(--tp-theme-1);
}

.tp-footer-input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    color: var(--tp-common-white);
    margin-right: 16px;
}

.tp-footer-input-action {
    position: absolute;
    width: 48px;
    height: 48px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
    border-radius: 15px;
}

.tp-footer-input-action i {
    transform: rotate(-30deg);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-footer-input-action:hover i {
    animation: tp-arrow 0.2s linear;
    transform: rotate(0deg);
}

.tp-footer-inner-plr {
    margin-top: -80px;
}

.tp-copyright-style {
    background: #1c2e3c;
    font-weight: 600;
}

.tp-copyright-style-3 .tp-copyright-text p {
    color: var(--tp-common-black);
    margin-bottom: 0;
}

.tp-copyright-style-3 .tp-copyright-text p a {
    color: var(--tp-common-black);
}

.tp-copyright-style-3 .tp-copyright-privacy a {
    font-size: 16px;
    font-weight: 600;
    margin-right: 35px;
    color: var(--tp-common-black);
}

.tp-copyright-style-3 .tp-copyright-privacy a:last-child {
    margin-right: 0;
}

.tp-copyright-text p {
    font-weight: 500;
}

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


/*----------------------------------------*/


/*  6.2 Footer Style 2
/*----------------------------------------*/

.tp-footer-3-wrapp {
    padding-top: 33px;
    padding-bottom: 33px;
    padding-left: 100px;
    padding-right: 100px;
    background: #314554;
    border-radius: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-footer-3-wrapp {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-footer-3-wrapp {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 575px) {
    .tp-footer-3-wrapp {
        padding-bottom: 0;
    }
}

.tp-footer-3-menu ul li {
    display: inline-block;
    margin: 0 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-footer-3-menu ul li {
        margin: 0 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-footer-3-menu ul li {
        margin: 0 4px;
        text-align: left;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-footer-3-menu ul li {
        margin: 0;
        display: block;
        margin-bottom: 6px;
    }
}

.tp-footer-3-menu ul li a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    padding: 44px 0;
    color: var(--tp-text-body-2);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-footer-3-menu ul li a {
        padding: 36px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-footer-3-menu ul li a {
        padding: 40px 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-footer-3-menu ul li a {
        padding: 0 0;
    }
}

.tp-footer-3-menu ul li a::after {
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    content: "";
    opacity: 0;
    visibility: hidden;
    background: var(--tp-common-white);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-footer-3-menu ul li a:hover {
    color: var(--tp-common-white);
}

.tp-footer-3-menu ul li a:hover::after {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.tp-footer-3-social a {
    font-size: 16px;
    margin-right: 20px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-footer-3-social a:last-child {
    margin-right: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-footer-3-social a {
        margin-right: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-footer-3-social a {
        margin-right: 6px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-footer-3-social a {
        margin-right: 4px;
    }
}

.tp-footer-3-social a:hover {
    color: var(--tp-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-footer-widget.footer-col-3-1 {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-footer-widget.footer-col-3-2 {
        margin-bottom: 20px;
    }
}

.container-large {
    width: 1370px;
    margin: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .container-large {
        width: 1170px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .container-large {
        width: 940px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .container-large {
        width: 740px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .container-large {
        width: 550px;
    }
}

@media (max-width: 575px) {
    .container-large {
        width: 320px;
    }
}


/*----------------------------------------*/


/*  6.3 Footer Style 3
/*----------------------------------------*/

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-footer-4 .tp-footer-widget-text p br {
        display: none;
    }
}

.tp-footer-4 .tp-footer-widget-social ul li {
    margin-right: 5px;
}

.tp-footer-4 .tp-footer-widget-social ul li a.icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-footer-4 .tp-footer-widget-social ul li i {
    color: #000;
}


.tp-footer-4 .social-icons li i {
    font-size: 40px;
    padding: 10px;
}

.tp-footer-4 .tp-footer-widget-info span {
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.tp-footer-4 .tp-footer-widget-info a {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    color: var(--tp-common-white);
}

.tp-footer-4 .tp-footer-widget-info a span {
    position: absolute;
    font-size: 12px;
    font-weight: 500;
    padding: 0 8px;
    display: inline-block;
    border-radius: 15px;
    background: var(--tp-theme-1);
}

.tp-footer-4 .tp-footer-widget-info a::after {
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    content: "";
    opacity: 0;
    visibility: hidden;
    background: #9fa8ae;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-footer-4 .tp-footer-widget-info a:hover::after {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.tp-footer-4 .tp-footer-widget-gellery-thumb {
    margin-right: 10px;
}

.tp-footer-4 .tp-footer-widget-gellery-thumb a {
    position: relative;
    width: 80px;
    height: 80px;
    display: inline-block;
    border-radius: 15px;
}

.tp-footer-4 .tp-footer-widget-gellery-thumb a span {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    text-align: center;
    color: var(--tp-common-white);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-footer-4 .tp-footer-widget-gellery-thumb a::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background: var(--tp-theme-1);
    border-radius: 15px;
    transform: scale(0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-footer-4 .tp-footer-widget-gellery-thumb a img {
    width: 100%;
    border-radius: 15px;
}

.tp-footer-4 .tp-footer-widget-gellery-thumb a:hover::before {
    opacity: 0.8;
    visibility: visible;
    transform: scale(1);
}

.tp-footer-4 .tp-footer-widget-gellery-thumb a:hover span {
    opacity: 1;
    visibility: visible;
}

.tp-footer-4 .tp-footer-widget.footer-col-4-2 {
    margin-left: -40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-footer-4 .tp-footer-widget.footer-col-4-2 {
        display: flex;
        justify-content: center;
    }
}

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

.tp-footer-4 .tp-footer-widget.footer-col-4-3 {
    margin-left: 10px;
}

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


/*----------------------------------------*/


/*  7.6 Slider css
/*----------------------------------------*/

.tp-slider-overlay::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    content: "";
    background-color: rgb(3, 0, 36);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-slider-bg {
        background-position: right;
    }
}

.tp-slider-1-plr {
    padding-top: 220px;
    padding-bottom: 220px;
}

.tp-slider-1 .tp-slider-overlay::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    content: "";
    background-color: rgb(3, 0, 36);
    display: none;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-slider-1 .tp-slider-overlay::before {
        display: block;
    }
}

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

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

.tp-slider-1-shape-2 {
    position: absolute;
    right: -5px;
    bottom: -10px;
}

.tp-slider-1-shape-2 span {
    color: var(--tp-theme-1);
}

.tp-slider-1-shape-2 span svg path.line-1 {
    stroke: var(--tp-theme-1);
    stroke-dasharray: 2300;
    stroke-dashoffset: 3500;
    animation: dash 5s linear forwards infinite;
}

.tp-slider-1-content-wrapp {
    position: relative;
    z-index: 2;
}

.tp-slider-1-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1px;
    color: var(--tp-common-white);
}

.tp-slider-1-title-box {
    transform: translateY(-200px);
    opacity: 0;
    visibility: hidden;
}

.tp-slider-1-title-box p {
    color: #595959;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-slider-1-title-box p {
        color: var(--tp-common-white);
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-slider-1-title-box p br {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-slider-1-title-black {
        color: var(--tp-common-white);
    }
}

.tp-slider-1-action-box {
    transform: translateY(200px);
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 575px) {
    .tp-slider-1-action-box .tp-theme-btn {
        margin-bottom: 20px;
    }
}

.tp-slider-1-info-item:hover .tp-slider-1-info-icon {
    color: var(--tp-common-white);
    background: var(--tp-common-black);
    border: 1px solid var(--tp-common-black);
}

.tp-slider-1-info-item:hover .tp-slider-1-info-title {
    color: var(--tp-theme-1);
}

.tp-slider-1-info-icon {
    font-size: 20px;
    width: 60px;
    height: 60px;
    line-height: 65px;
    text-align: center;
    color: var(--tp-theme-1);
    border: 1px solid var(--tp-border-1);
    background: var(--tp-common-white);
    border-radius: 50%;
    margin-right: 15px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-slider-1-info-icon.hero-call-icon {
    line-height: 60px;
}

.tp-slider-1-info-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--tp-common-black);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-slider-1-info-title {
        color: var(--tp-common-white);
    }
}

.tp-slider-1-shape-1 {
    transform: translateY(-200px);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.tp-slider-1-active .swiper-slide-active .tp-slider-1-bg {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.tp-slider-1-active .swiper-slide-active .tp-slider-1-title-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: all 1500ms ease;
}

.tp-slider-1-active .swiper-slide-active .tp-slider-1-action-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: all 1500ms ease;
}

.tp-slider-1-active .swiper-slide-active .tp-slider-1-shape-1 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: all 1500ms ease;
}

.tp-slider-1-active .swiper-slide-active .tp-slider-2-shape-2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    transition: all 1500ms ease;
}

.tp-slider-1-active .swiper-slide-active .tp-slider-5-cta {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    transition: all 1500ms ease;
}

.tp-slider-1-active .swiper-slide-active .tp-slider-5-shape-1 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    transition: all 3000ms ease;
}

.tp-slider-1-active .swiper-slide-active .tp-slider-5-shape-2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    transition: all 3000ms ease;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-slider-1 .tp-slider-1-bg {
        background-position: right;
    }
}

.tp-slider-2 .tp-slider-1-plr {
    padding-top: 210px;
    padding-bottom: 220px;
}

@media (max-width: 575px) {
    .tp-slider-2 .tp-slider-1-plr {
        padding-top: 100px;
    }
}

.tp-slider-2 .tp-slider-1-action-box a {
    margin-bottom: 0;
}

.tp-slider-2 .tp-slider-1-title-box p {
    color: #e0dddd;
}

.tp-slider-2 .tp-pagination-dots span {
    display: block;
    width: 16px;
    height: 16px;
    border: 2px solid;
    background: no-repeat;
    margin: 13px 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-slider-2 .tp-pagination-dots span.swiper-pagination-bullet-active {
    border: 2px solid var(--tp-common-white);
    background: var(--tp-common-white);
}

.tp-slider-2-play-btn.tp-video-btn {
    width: 60px;
    height: 60px;
}

.tp-slider-2-play-btn.tp-video-btn a {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 1px solid;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    color: var(--tp-common-white);
}

.tp-slider-2-shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.tp-slider-2-shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateX(200px);
    opacity: 0;
    visibility: hidden;
}

.tp-slider-2-featured-text {
    position: absolute;
    transform: rotate(-90deg);
    top: 47%;
    left: -1.5%;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .tp-slider-2-featured-text {
        left: -3%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-slider-2-featured-text {
        left: -8%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-slider-2-featured-text {
        display: none;
    }
}

.tp-slider-2-featured-text p {
    color: var(--tp-common-white);
    letter-spacing: -0.2px;
}

.tp-slider-2-featured-text p a {
    position: relative;
    display: inline-block;
    color: var(--tp-common-white);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-slider-2-featured-text p a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background: var(--tp-common-white);
}

.tp-slider-2-featured-text p a:hover {
    color: var(--tp-theme-1);
}

.tp-slider-2-number {
    position: absolute;
    left: 20%;
    bottom: -70px;
}

.tp-slider-2-number-text {
    font-weight: 700;
    font-size: 170px;
    color: #67677b;
}

.tp-slider-3 .tp-slider-overlay::before {
    opacity: 45%;
    background: #000d16;
}

.tp-slider-3-shape-1 {
    position: absolute;
    bottom: 0px;
}

.tp-slider-3-arrow-box button {
    position: absolute;
    font-size: 20px;
    width: 120px;
    height: 70px;
    top: 42%;
    z-index: 5;
    transform: translateY(-42%);
    color: var(--tp-theme-1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-slider-3-arrow-box button {
        top: 80%;
        transform: translateY(-80%);
    }
}

.tp-slider-3-arrow-box button.prev {
    right: auto;
    left: 75px;
    color: var(--tp-common-black);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-slider-3-arrow-box button.prev {
        left: 30px;
    }
}

.tp-slider-3-arrow-box button.next {
    left: auto;
    right: 75px;
    color: var(--tp-common-black);
}

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

.tp-slider-3-arrow-box button.icon-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tp-slider-3-arrow-box button.icon-bg i {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-slider-3-arrow-box button.icon-bg:hover i {
    animation: tp-arrow 0.2s linear;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-slider-3 .tp-slider-1-bg {
        display: block;
    }
}

@media (max-width: 575px) {
    .tp-slider-3 .tp-slider-1-action-box a {
        margin-right: 0;
    }
}

.tp-slider-5-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-200px);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.tp-slider-5-shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(200px);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.tp-slider-5 .tp-slider-1-plr {
    padding-top: 245px;
    padding-bottom: 250px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-slider-5 .tp-slider-1-plr {
        padding-top: 180px;
        padding-bottom: 170px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-slider-5 .tp-slider-1-plr {
        padding-top: 120px;
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-slider-5 .tp-slider-1-bg {
        display: block;
    }
}

.tp-slider-5 .tp-slider-1-shape-1 img {
    width: 100%;
}

@media (max-width: 575px) {
    .tp-slider-5 .tp-slider-1-action-box a {
        margin-right: 0;
    }
}

.tp-slider-5-cta {
    position: absolute;
    right: -25%;
    bottom: -56%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(200px);
}

@media only screen and (min-width: 1700px) and (max-width: 1800px),
only screen and (min-width: 1600px) and (max-width: 1700px) {
    .tp-slider-5-cta {
        right: -16%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-slider-5-cta {
        right: 0;
        bottom: -35%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-slider-5-cta {
        bottom: -35%;
    }
}

.tp-slider-5-cta-title {
    font-size: 18px;
    display: block;
    transform: rotate(-90deg);
    color: var(--tp-common-white);
    margin-bottom: 48px;
    transition: 0.3s;
}

.tp-slider-5-cta-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    color: var(--tp-common-white);
    border: 1px solid var(--tp-common-white);
    transition: 0.3s;
}

.tp-slider-5-cta:hover .tp-slider-5-cta-title {
    color: var(--tp-theme-1);
}

.tp-slider-5-cta:hover .tp-slider-5-cta-icon {
    color: var(--tp-common-white);
    border: 1px solid var(--tp-theme-1);
}

.tp-slider-5 .tp-header-info-text a {
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.tp-slider-dots {
    position: absolute;
    top: 50%;
    right: 19%;
    z-index: 9;
    transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-slider-dots {
        right: 8%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-slider-dots {
        display: none;
    }
}

.tp-slider-number {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 120px;
    z-index: 9;
}

@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) {
    .tp-slider-number {
        left: 30px;
    }
}


/*  7.1 About css
/*----------------------------------------*/

.tp-about-thumb-shape {
    position: absolute;
    top: 30%;
    left: -28%;
    animation: spin-1 3000ms forwards infinite alternate;
    transform-origin: bottom left;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-about-thumb-shape {
        left: -20%;
    }
}

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

.tp-about-thumb img {
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-thumb-box {
        transform: scale(0.8);
    }
}

.tp-about-thumb-box::before {
    position: absolute;
    width: 100%;
    height: 567px;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background: var(--tp-common-black);
    border-radius: 15px;
    z-index: -1;
}

@media (max-width: 575px) {
    .tp-about-thumb-box::before {
        display: none;
    }
}

.tp-about-experience-box {
    position: absolute;
    padding: 15px 30px;
    top: 17px;
    right: -35px;
    display: inline-block;
    background: var(--tp-theme-1);
    border-radius: 15px 0 15px 15px;
}

.tp-about-experience-box::before {
    position: absolute;
    width: 35px;
    height: 20px;
    right: 0;
    top: -20px;
    content: "";
    background: #c00a38;
    clip-path: polygon(0 16%, 0% 100%, 100% 100%);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-experience-box::before {
        right: 2px;
    }
}

.tp-about-experience-content p {
    font-weight: 700;
    color: var(--tp-common-white);
    line-height: 1.5;
    margin: 0;
}

.tp-about-experience-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--tp-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-about-content-wrapp {
        margin-left: 70px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about-content-wrapp {
        margin-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: 575px) {
    .tp-about-content-wrapp {
        margin-left: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about-title-box .tp-section-title {
        font-size: 35px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-title-box .tp-section-title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .tp-about-title-box .tp-section-title {
        font-size: 28px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-title-box p br {
        display: none;
    }
}

.tp-about-user-box {
    position: absolute;
    width: 306px;
    height: 110px;
    bottom: 96px;
    left: -130px;
    padding: 40px 50px;
    border-radius: 15px;
    background-color: rgb(255, 255, 255);
    animation: tptranslateY2 3s infinite alternate;
    box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.06);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-about-user-box {
        left: -95px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-about-user-box {
        left: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about-user-box {
        left: -13px;
    }
}

@media (max-width: 575px) {
    .tp-about-user-box {
        bottom: 40px;
        left: -35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-user-box {
        left: -90px;
    }
}

.tp-about-user-icon {
    margin-right: 20px;
}

.tp-about-user-content p {
    margin-bottom: 0;
}

.tp-about-user-title {
    font-weight: 700;
    font-size: 22px;
    color: var(--tp-common-black);
}

.tp-about-featured-icon span {
    font-size: 46px;
    width: 80px;
    height: 80px;
    line-height: 90px;
    text-align: center;
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
    display: inline-block;
    border-radius: 50%;
    margin-right: 30px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

@media (max-width: 575px) {
    .tp-about-featured-icon span {
        margin-right: 20px;
    }
}

.tp-about-featured-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 13px;
}

.tp-about-featured-content p {
    line-height: 1.6;
}

@media (max-width: 575px) {
    .tp-about-featured-content p {
        display: none;
    }
}

.tp-about-search-box {
    position: absolute;
    width: 170px;
    height: 206px;
    right: 0;
    padding: 30px;
    border-radius: 15px;
    animation: moving 9s linear infinite;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px 0px rgba(29, 0, 79, 0.04);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
    .tp-about-search-box {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-about-search-box {
        right: 70px;
    }
}

.tp-about-search-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--tp-theme-1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about-review-box {
        margin-left: 20px;
    }
}

@media (max-width: 575px) {
    .tp-about-review-box {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-review-box {
        margin: auto;
    }
}

.tp-about-review-title {
    font-weight: 800;
    font-size: 48px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about-review-title {
        font-size: 31px;
    }
}

.tp-about-review-icon {
    padding: 4px 10px;
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
    border-radius: 10px;
    margin-left: 14px;
}

.tp-about-notes-box {
    position: relative;
    padding: 20px 30px;
    overflow: hidden;
    border-radius: 15px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px 0px rgba(27, 19, 59, 0.06);
}

.tp-about-notes-box::before {
    position: absolute;
    width: 80px;
    height: 80px;
    top: -26px;
    left: -20px;
    content: "";
    background-color: #ffdae3;
    border-radius: 50%;
}

.tp-about-notes-icon span {
    position: relative;
    font-size: 44px;
    margin-right: 30px;
    color: var(--tp-common-black);
    display: inline-block;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .tp-about-notes-icon span {
        margin-right: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-notes-icon span {
        margin-right: 30px;
    }
}

.tp-about-notes-text p {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: var(--tp-theme-1);
    margin-right: 30px;
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about-notes-text p {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .tp-about-notes-text p {
        font-size: 14px;
        margin-right: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-notes-text p {
        font-size: 18px;
        margin-right: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-1 {
        padding-top: 0;
        padding-bottom: 80px;
    }
}

.tp-about-1 .tp-theme-btn {
    font-size: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-style-2 {
        padding-top: 0;
    }
}

.tp-about-style-2 .tp-about-thumb {
    left: -105px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-about-style-2 .tp-about-thumb {
        left: -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: 575px) {
    .tp-about-style-2 .tp-about-thumb {
        left: 0;
    }
}

.tp-about-style-2 .tp-about-thumb img {
    border-radius: 15px;
}

.tp-about-style-2 .tp-about-thumb-sm {
    position: absolute;
    bottom: -95px;
    right: -150px;
}

@media (max-width: 575px) {
    .tp-about-style-2 .tp-about-thumb-sm {
        position: static;
        margin-top: 30px;
    }
}

@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-style-2 .tp-about-thumb-sm {
        right: 0;
        left: 0;
        text-align: center;
    }
}

.tp-about-style-2 .tp-about-thumb-sm img {
    width: 350px;
    height: 350px;
	object-fit: cover;
}

.tp-about-style-2 .tp-about-thumb-shape {
    top: auto;
    left: 8%;
    bottom: -26%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-about-style-2 .tp-about-thumb-shape {
        display: none;
    }
}

.tp-about-style-2 .tp-about-thumb-bg-shape {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -40%;
    z-index: -1;
}

.tp-about-style-2 .tp-about-thumb-box::before {
    display: none;
}

.tp-about-style-2 .tp-about-since-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
}

.tp-about-style-2 .tp-about-since-box {
    position: absolute;
    top: 70px;
    right: -120px;
    animation: moving 7s infinite;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-about-style-2 .tp-about-since-box {
        right: -80px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-style-2 .tp-about-since-box {
        right: -40px;
    }
}

.tp-about-style-2 .tp-about-since-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-black);
}

.tp-about-style-2 .tp-about-since-number {
    font-weight: 700;
    font-size: 36px;
    color: var(--tp-theme-1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-about-style-2 .tp-about-content-wrapp {
        margin-left: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about-style-2 .tp-about-content-wrapp {
        margin-left: 10px;
    }
}

@media (max-width: 575px) {
    .tp-about-style-2 .tp-about-content-wrapp {
        margin-top: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-style-2 .tp-about-content-wrapp {
        margin-top: 70px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about-2-title-box .tp-section-title {
        font-size: 35px;
    }
}

@media (max-width: 575px) {
    .tp-about-2-title-box .tp-section-title {
        font-size: 28px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-2-title-box .tp-section-title {
        font-size: 45px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-2-title-box p br {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-3.tp-plr-rs {
        padding-top: 0;
    }
}

.tp-about-3 .tp-about-thumb {
    left: -21%;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-about-3 .tp-about-thumb {
        left: -10%;
    }
}

@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) {
    .tp-about-3 .tp-about-thumb {
        left: 0;
    }
}

.tp-about-3 .tp-about-thumb img {
    width: auto;
    border-radius: 15px;
}

.tp-about-3 .tp-about-thumb-1 {
    position: absolute;
    top: 0;
    right: -40px;
}

.tp-about-3 .tp-about-thumb-1 img {
    width: 295px;
    height: 315px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-about-3 .tp-about-thumb-1 {
        right: -60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-about-3 .tp-about-thumb-1 {
        right: 0;
    }
}

.tp-about-3 .tp-about-thumb-2 {
    position: absolute;
    bottom: 0;
    right: -34px;
}

.tp-about-3 .tp-about-thumb-2 img {
    width: 290px;
    height: 290px;
    border-radius: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-about-3 .tp-about-thumb-2 {
        right: -60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-about-3 .tp-about-thumb-2 {
        right: 0;
    }
}

@media (max-width: 575px) {
    .tp-about-3 .tp-about-author-box {
        margin-left: 0;
        margin-top: 20px;
    }
}


.tp-about-3 .tp-about-featured-icon span {
    width: 72px;
    height: 72px;
    font-size: 30px;
    line-height: 78px;
}

.tp-about-3 .tp-about-search-box {
    width: 240px;
    height: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about-3 .tp-about-search-box {
        display: block;
        right: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-about-3 .tp-about-search-box {
        right: 100px;
    }
}

.tp-about-3 .tp-about-search-text p {
    line-height: 1.5;
}

.tp-about-3 .tp-about-search-review {
    color: var(--tp-theme-1);
    margin-bottom: 10px;
}

.tp-about-3 .tp-about-notes-box {
    background: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: 50px;
}

.tp-about-3 .tp-about-notes-box::before {
    display: none;
}

.tp-about-3 .tp-about-notes-text p {
    font-size: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-about-3 .tp-about-notes-text p {
        font-size: 18px;
    }
}

.tp-about-3 .tp-about-author-avtr {
    margin-right: 20px;
}

.tp-about-3 .tp-about-author-avtr img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.tp-about-3 .tp-about-author-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-theme-1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-about-3 .tp-about-author-number:hover {
    color: var(--tp-common-black);
}

.tp-about-3 .tp-about-author-number span {
    font-weight: 500;
    font-size: 16px;
    color: var(--tp-text-body);
}

.tp-about-4-shape {
    position: absolute;
    top: 100px;
    right: -30px;
    animation: rotate2 15s linear infinite;
}

@media (max-width: 575px) {
    .tp-about-4-shape {
        display: none;
    }
}

.tp-about-4 .tp-about-thumb {
    left: 0;
}

.tp-about-4 .tp-about-thumb>img {
    width: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-4 .tp-about-thumb>img {
        width: 100%;
    }
}

.tp-about-4 .tp-about-thumb-sm {
    bottom: auto;
    right: -5%;
    top: 61%;
    transform: translateY(-60%);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-about-4 .tp-about-thumb-sm {
        left: auto;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about-4 .tp-about-thumb-sm {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-4 .tp-about-thumb-sm {
        top: auto;
        right: 0;
    }
}

@media (max-width: 575px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-4 .tp-about-thumb-sm {
        display: none;
    }
}

.tp-about-4 .tp-about-thumb-sm img {
    width: auto;
    height: auto;
}

@media only screen and (min-width: 1700px) and (max-width: 1800px),
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) {
    .tp-about-4 .tp-about-thumb-sm img {
        width: auto;
    }
}

.tp-about-4 .tp-about-thumb-shape-1 {
    position: absolute;
    top: -50px;
    right: 150px;
    z-index: -1;
    animation: tptranslateY2 3s infinite alternate;
}

.tp-about-4 .tp-about-thumb-shape-1 img {
    border-radius: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-4 .tp-about-thumb-shape-1 {
        display: none;
    }
}

.tp-about-4 .tp-about-thumb-shape-2 {
    position: absolute;
    bottom: 50px;
    left: -100px;
    z-index: -1;
    animation: tptranslateX2 2s infinite alternate;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-4 .tp-about-thumb-shape-2 {
        display: none;
    }
}

.tp-about-4 .tp-about-thumb-shape-2 img {
    border-radius: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-4 .tp-about-thumb-box::before {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-4 .tp-about-thumb-box {
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-4 .tp-about-content-wrapp {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .tp-about-4 .tp-about-action-box a {
        margin-bottom: 20px;
    }
}

.tp-about-4-funfact {
    margin-left: -26px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-4-funfact {
        margin-left: 0;
    }
}

.tp-about-4-funfact-title {
    font-size: 30px;
    font-weight: 700;
    display: inline-block;
    transform: rotate(-90deg);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-4-funfact-title {
        transform: rotate(0);
    }
}

.tp-about-4-funfact p {
    color: #7a8a9e;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-4-funfact p {
        margin-bottom: 5px;
        margin-left: 10px;
    }
}

.tp-about-4-review-box {
    position: relative;
    border-bottom: 1px solid var(--tp-border-1);
}

.tp-about-4-review-content {
    width: 72%;
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-4-review-content {
        padding-bottom: 0;
    }
}

.tp-about-4-review-content::after {
    position: absolute;
    width: 1px;
    height: 100%;
    bottom: 0;
    right: 0;
    content: "";
    background: var(--tp-border-1);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-4-review-content::after {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about-4-review-content {
        padding-right: 30px;
    }
}

.tp-about-4-review-icon span {
    color: var(--tp-theme-1);
}

.tp-about-4-reviewer-title {
    font-weight: 600;
    color: var(--tp-common-black);
}

.tp-about-4-reviewer-sign {
    margin-left: 60px;
}

@media (max-width: 575px) {
    .tp-about-4-reviewer-sign {
        margin-left: 0;
    }
}

.tp-about-4-dsc {
    margin-left: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about-4-dsc {
        margin-left: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-4-dsc {
        margin-left: 0;
        padding-bottom: 20px;
    }
}

.tp-about-4-dsc p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--tp-common-black);
}

.tp-about-5-plr {
    padding-top: 120px;
    padding-bottom: 235px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-5-plr {
        padding-top: 0;
    }
}

@media (max-width: 575px) {
    .tp-about-5-plr {
        padding-top: 80px;
        padding-bottom: 200px;
    }
}

.tp-about-5-button-box nav button {
    font-size: 22px;
    color: var(--tp-common-black);
    font-weight: 700;
    padding-left: 0;
    margin-right: 50px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-about-5-button-box nav button:hover {
    color: var(--tp-theme-1);
}

.tp-about-5-button-box nav button.active {
    color: var(--tp-theme-1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about-5-button-box nav button {
        margin-right: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-5-button-box nav button {
        margin-right: 30px;
    }
}

@media (max-width: 575px) {
    .tp-about-5-button-box nav button {
        font-size: 18px;
        margin-right: 0;
    }
}

.tp-about-5-text {
    margin-right: 70px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-5-text {
        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: 575px) {
    .tp-about-5-text p br {
        display: none;
    }
}

.tp-about-5 .tp-about-thumb {
    left: auto;
    right: 0;
}

.tp-about-5 .tp-about-thumb img {
    width: auto;
}

.tp-about-5 .tp-about-thumb-sm {
    bottom: -28%;
    right: auto;
    left: -150px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about-5 .tp-about-thumb-sm {
        left: -100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-about-5 .tp-about-thumb-sm {
        bottom: -10%;
    }
}

.tp-about-5 .tp-about-thumb-sm img {
    width: auto;
    height: auto;
}

@media (max-width: 575px) {
    .tp-about-5 .tp-about-thumb-sm img {
        width: 100%;
        height: 100%;
    }
}

.tp-about-5 .tp-about-thumb-shape {
    left: auto;
    right: -80px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-about-5 .tp-about-thumb-shape {
        right: -60px;
    }
}

@media (max-width: 575px) {
    .tp-about-5 .tp-about-thumb-box {
        margin-left: 0;
        transform: scale(1);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-5 .tp-about-thumb-box::before {
        display: none;
    }
}

.tp-about-5 .tp-about-since-box {
    right: auto;
    left: -120px;
    top: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-about-5 .tp-about-since-box {
        top: 30px;
    }
}

@media (max-width: 575px) {
    .tp-about-5 .tp-about-action-box {
        margin-bottom: 30px;
    }
}

.tp-about-5-shape {
    position: absolute;
    left: 0;
    bottom: 0;
}

@media (max-width: 575px) {
    .tp-about-5-shape {
        bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-inner {
        padding-top: 120px;
    }
}

.tp-about-inner-bg-thumb {
    position: absolute;
    width: 44%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px 0 0 25px;
}

.tp-about-inner-wrapp {
    margin: 0 -120px;
    border-radius: 25px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-about-inner-wrapp {
        margin: 0 -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: 575px) {
    .tp-about-inner-wrapp {
        margin: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-about-inner-wrapp {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.tp-about-inner .tp-about-content-wrapp {
    padding-right: 110px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
    .tp-about-inner .tp-about-content-wrapp {
        padding-right: 10px;
        margin-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: 575px) {
    .tp-about-inner .tp-about-content-wrapp {
        padding: 30px;
        margin: 0;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-about-inner .tp-about-title-box .tp-section-title {
        font-size: 45px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-inner .tp-about-title-box .tp-section-title {
        font-size: 35px;
    }
}

@media (max-width: 575px) {
    .tp-about-inner .tp-about-title-box .tp-section-title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-about-inner .tp-about-title-box p br {
        display: none;
    }
}

.tp-about-inner .tp-faq-service ul li {
    color: var(--tp-common-white);
}

.tp-about-inner .tp-header-info-item:hover .tp-header-info-icon {
    background: none;
    color: var(--tp-theme-1);
    border: 1px solid var(--tp-common-white);
}

.tp-about-inner .tp-header-info-item:hover .tp-header-info-title {
    color: var(--tp-theme-1);
}

.tp-about-inner .tp-header-info-item:hover .tp-header-info-text span {
    color: inherit;
}

.tp-about-inner .tp-header-info-icon {
    font-size: 20px;
    background: #192936;
    color: var(--tp-common-white);
    border: 1px solid #192936;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-about-inner .tp-header-info-title {
    color: var(--tp-common-white);
}


/*----------------------------------------*/


/*  7.19 Portfolio css
/*----------------------------------------*/

.tp-portfolio-plr {
    padding-top: 245px;
    padding-bottom: 80px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-portfolio-plr {
        padding-bottom: 0px;
    }
}

@media (max-width: 575px) {
    .tp-portfolio-plr {
        padding-top: 100px;
        padding-bottom: 30px;
    }
}

.tp-portfolio-slider-plr {
    padding-right: 175px;
    padding-left: 175px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-portfolio-slider-plr {
        padding-right: 110px;
        padding-left: 110px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-portfolio-slider-plr {
        padding-right: 50px;
        padding-left: 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: 575px) {
    .tp-portfolio-slider-plr {
        padding-right: 30px;
        padding-left: 30px;
    }
}

.tp-portfolio-shape {
    position: absolute;
    top: 17%;
    right: 30px;
    animation: spin-1 3000ms forwards infinite alternate;
    transform-origin: bottom right;
}

.tp-portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.tp-portfolio-item:hover .tp-portfolio-content {
    left: 40px;
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-portfolio-item:hover .tp-portfolio-content {
        left: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-portfolio-item:hover .tp-portfolio-content {
        left: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-portfolio-item:hover .tp-portfolio-content {
        left: 15px;
    }
}

.tp-portfolio-item:hover .tp-portfolio-icon {
    right: -8px;
    opacity: 1;
    visibility: visible;
}

.tp-portfolio-item:hover .tp-portfolio-thumb a::before {
    opacity: 0.6;
    visibility: visible;
}

.tp-portfolio-item:hover .tp-portfolio-thumb img {
    filter: saturate(0);
    transform: scale(1.1);
}

.tp-portfolio-content {
    position: absolute;
    left: -40px;
    bottom: 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 2;
}

.tp-portfolio-thumb {
    border-radius: 15px;
}

.tp-portfolio-thumb a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 15px;
}

.tp-portfolio-thumb a::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 15px;
    background-color: rgb(3, 0, 36);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 1;
}

.tp-portfolio-thumb img {
    width: 100%;
    border-radius: 15px;
    transition: 1.4s;
}

.tp-portfolio-icon {
    position: absolute;
    top: -10px;
    right: -20%;
    border-radius: 50%;
    border: 11px solid var(--tp-common-white);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 2;
}

.tp-portfolio-icon a {
    width: 48px;
    height: 48px;
    font-size: 14px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
    border-radius: 50%;
}

.tp-portfolio-title {
    font-size: 24px;
    font-weight: 600;
    display: inline;
    color: var(--tp-common-white);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-portfolio-title-box .tp-section-title {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-portfolio-title-box .tp-section-title {
        font-size: 35px;
        margin-bottom: 35px;
    }
}

@media (max-width: 575px) {
    .tp-portfolio-title-box .tp-section-title {
        font-size: 22px;
        margin-bottom: 35px;
    }
}

.tp-portfolio-title:hover {
    color: var(--tp-theme-1);
}

.tp-portfolio-subtitle {
    display: block;
    color: var(--tp-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-portfolio-btn .tp-theme-btn {
        padding: 17px 28px;
    }
}

.tp-portfolio-2-space {
    margin-top: -130px;
}

.tp-portfolio-2-item a {
    position: relative;
    display: inline-block;
}

.tp-portfolio-2-item a::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0;
    visibility: hidden;
    background-color: rgb(0, 19, 33);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-portfolio-2-item:hover a::before {
    opacity: 0.7;
    visibility: visible;
}

.tp-portfolio-2-item:hover .tp-portfolio-2-content {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}

.tp-portfolio-2-item:hover .tp-portfolio-2-icon {
    scale: 1;
    opacity: 1;
    visibility: visible;
}

.tp-portfolio-2-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-portfolio-2-thumb img {
    width: 100%;
}

.tp-portfolio-2-icon {
    position: absolute;
    width: 120px;
    height: 71px;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    line-height: 71px;
    text-align: center;
    margin: auto;
    color: var(--tp-common-white);
    scale: 0.5;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-portfolio-2-icon span {
    font-size: 23px;
}

.tp-portfolio-2-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    display: inline-block;
    color: var(--tp-common-white);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-portfolio-2-title:hover {
    color: var(--tp-theme-1);
}

.tp-portfolio-2-categories {
    display: block;
    color: var(--tp-common-white);
}

.tp-portfolio-2-active {
    margin: 0 -195px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-portfolio-2-active {
        margin: auto;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-portfolio-3 {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .tp-portfolio-3-title-box .tp-section-title {
        font-size: 23px;
    }
}

.tp-portfolio-3-thumb {
    width: 100%;
}

.tp-portfolio-3 .tp-portfolio-item::before,
.tp-portfolio-3 .tp-portfolio-item::after {
    position: absolute;
    width: 265px;
    height: 265px;
    bottom: -150px;
    left: -150px;
    content: "";
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    background: var(--tp-common-black);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-portfolio-3 .tp-portfolio-item::after {
    left: auto;
    bottom: -180px;
    right: -170px;
    background: var(--tp-theme-1);
}

.tp-portfolio-3 .tp-portfolio-item:hover::before {
    bottom: -95px;
    left: -30px;
    opacity: 1;
    visibility: visible;
}

@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) {
    .tp-portfolio-3 .tp-portfolio-item:hover::before {
        bottom: -116px;
        left: -70px;
    }
}

.tp-portfolio-3 .tp-portfolio-item:hover::after {
    bottom: -130px;
    right: -60px;
    opacity: 1;
    visibility: visible;
}

@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) {
    .tp-portfolio-3 .tp-portfolio-item:hover::after {
        bottom: -150px;
        right: -100px;
    }
}

@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) {
    .tp-portfolio-3 .tp-portfolio-item:hover .tp-portfolio-content {
        left: 20px;
    }
}

.tp-portfolio-3 .tp-portfolio-content {
    z-index: 2;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-portfolio-3 .tp-portfolio-slider-plr {
        padding-right: 30px;
        padding-left: 30px;
    }
}

@media (max-width: 575px) {
    .tp-portfolio-3 .tp-portfolio-slider-plr {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.tp-portfolio-3 .tp-portfolio-title:hover {
    color: var(--tp-common-white);
}

.tp-portfolio-inner .tp-portfolio-item {
    margin-bottom: 30px;
}


/*  7.11 Choose css
/*----------------------------------------*/

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-choose-1 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.tp-choose-bg-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
}

@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) {
    .tp-choose-bg-thumb {
        width: 45%;
    }
}

.tp-choose-video-action {
    position: absolute;
    top: 40px;
    right: 40px;
}

.tp-choose-video-action a {
    font-size: 24px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    color: var(--tp-common-black);
    background-color: var(--tp-common-white);
}

.tp-choose-video-action.tp-video-btn a {
    color: var(--tp-common-black);
}

.tp-choose-line-shape {
    width: 16px;
    background: var(--tp-common-black);
    display: inline-block;
    height: 154px;
    position: absolute;
    top: 90px;
    right: -45px;
    border-radius: 30px;
}

.tp-choose-shape {
    position: absolute;
    bottom: 0;
    right: 0;
}

.tp-choose-shape-5 {
    position: absolute;
    top: 15%;
    right: 0;
    animation: tptranslateY2 3s infinite alternate;
}

.tp-choose-wrapp {
    margin-top: 20px;
    margin-left: 47px;
}

@media only screen and (min-width: 1700px) and (max-width: 1800px),
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) {
    .tp-choose-wrapp {
        margin-left: 70px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-choose-wrapp {
        margin-left: 0;
    }
}

.tp-choose-title-box .tp-section-title {
    font-weight: 800;
}

@media only screen and (min-width: 1700px) and (max-width: 1800px),
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) {
    .tp-choose-title-box .tp-section-title {
        font-size: 45px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-choose-title-box .tp-section-title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .tp-choose-title-box .tp-section-title {
        font-size: 24px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-choose-title-box .tp-section-title {
        font-size: 35px;
    }
}

@media (max-width: 575px) {
    .tp-choose-title-box p br {
        display: none;
    }
}

.tp-choose-progress .tp-progress-canva {
    position: relative;
    margin-right: 30px;
}

.tp-choose-progress .tp-progress-canva canvas {
    position: relative;
    z-index: 2;
}

.tp-choose-progress .tp-progress-canva input {
    color: #fff !important;
    height: 120px !important;
    width: 120px !important;
    border: 15px solid #182936 !important;
    border-radius: 50%;
    right: 0;
    bottom: 8px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-choose-progress .tp-progress-item {
        margin-bottom: 30px;
    }
}

.tp-choose-list {
    margin-right: 115px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-choose-list {
        margin-right: 70px;
    }
}

.tp-choose-list:last-child {
    margin-right: 0;
}

.tp-choose-list ul li {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    list-style: none;
    color: var(--tp-common-white);
    padding-left: 25px;
    margin-bottom: 10px;
}

.tp-choose-list ul li i {
    position: absolute;
    left: 0;
    top: 7px;
}

.tp-choose-info {
    position: absolute;
    top: 32%;
    left: -87%;
    padding: 50px 60px;
    border-radius: 25px;
    background: var(--tp-common-white);
}

@media only screen and (min-width: 1700px) and (max-width: 1800px),
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) {
    .tp-choose-info {
        left: -82%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-choose-info {
        left: -95%;
    }
}

.tp-choose-info-title {
    font-weight: 700;
    font-size: 24px;
}

.tp-choose-info-title span {
    font-style: italic;
    color: var(--tp-theme-1);
    text-decoration: underline;
}

.tp-choose-info-avtr {
    margin-right: 20px;
}

.tp-choose-info-avtr img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
}

.tp-choose-info-avtr-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-choose-style-2 .tp-choose-wrapp {
        margin-left: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-choose-style-2 .tp-choose-wrapp p br {
        display: none;
    }
}

.tp-choose-style-2 .tp-choose-bg-thumb {
    top: 16%;
    width: 775px;
    height: 525px;
    border-radius: 0 15px 15px 0;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .tp-choose-style-2 .tp-choose-bg-thumb {
        width: 680px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-choose-style-2 .tp-choose-bg-thumb {
        width: 580px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-choose-style-2 .tp-choose-bg-thumb {
        width: 500px;
    }
}

.tp-choose-style-2 .tp-choose-info {
    top: auto;
    bottom: 80px;
    left: -65%;
    padding: 37px 72px 22px 40px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 60px 0px rgba(22, 17, 85, 0.08);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-choose-style-2 .tp-choose-info {
        left: -66%;
    }
}

.tp-choose-style-2 .tp-choose-info p {
    line-height: 1.5;
}

.tp-choose-style-2 .tp-choose-info-icon {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 62px;
    height: 62px;
    font-size: 25px;
    line-height: 62px;
    text-align: center;
    border-radius: 50%;
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
}

.tp-choose-style-2 .tp-choose-info-icon i {
    margin-bottom: 0;
}

.tp-choose-style-2 .tp-choose-featured-item {
    border-radius: 15px;
    padding: 15px 60px 15px 20px;
    border: 1px solid var(--tp-border-1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-choose-style-2 .tp-choose-featured-item:not(:last-child) {
    margin-bottom: 20px;
}

.tp-choose-style-2 .tp-choose-featured-item:hover {
    background-color: rgb(255, 255, 255);
    border: 1px solid var(--tp-common-white);
    box-shadow: 0px 0px 40px 0px rgba(25, 11, 59, 0.08);
}

.tp-choose-style-2 .tp-choose-featured-item:hover .tp-choose-featured-icon span {
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
}

.tp-choose-style-2 .tp-choose-featured-title {
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-choose-style-2 .tp-choose-featured-title {
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-choose-style-2 .tp-choose-featured-title br {
        display: none;
    }
}

.tp-choose-style-2 .tp-choose-featured-icon span {
    width: 60px;
    height: 60px;
    font-size: 22px;
    margin-bottom: 0;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    margin-right: 15px;
    display: inline-block;
    color: var(--tp-theme-1);
    background: var(--tp-common-white);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-choose-shape-1 {
    position: absolute;
    bottom: 5px;
    z-index: -1;
    left: -46px;
    right: 0;
    text-align: center;
    margin: auto;
}

.tp-choose-shape-2 {
    position: absolute;
    top: 0;
    transform-origin: top right;
    animation: spin-1 3000ms forwards infinite alternate;
}

.tp-choose-shape-3 {
    position: absolute;
    top: 100px;
    right: 45px;
    z-index: -1;
}

.tp-choose-shape-4 {
    position: absolute;
    top: 100px;
    left: 0;
}

.tp-choose-shape-box .tp-about-user-box {
    left: auto;
    right: -50px;
    animation: moving 5s linear infinite;
}

@media (max-width: 575px) {
    .tp-choose-3-title-box .tp-section-title {
        font-size: 24px;
    }
}

.tp-choose-3-play a {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    border: 10px solid var(--tp-common-white);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 60px 0px rgba(30, 13, 54, 0.12);
}

.tp-choose-3-play a span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 80px;
    display: block;
    text-align: center;
    font-size: 18px;
    color: var(--tp-common-white);
}

.tp-choose-3 .tp-choose-thumb-box {
    left: -120px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-choose-3 .tp-choose-thumb-box {
        left: -45px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-choose-3 .tp-choose-thumb-box {
        left: 0;
        transform: scale(0.8);
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-choose-3 .tp-choose-thumb-box {
        left: 0;
        right: 0;
        text-align: center;
        margin: auto;
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
    .tp-choose-3 .tp-choose-shape-1 {
        left: -33px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-choose-3 .tp-choose-shape-1 {
        left: -50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-choose-3 .tp-choose-shape-2 {
        left: 18%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-choose-3 .tp-choose-shape-2 {
        left: 2%;
    }
}

@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) {
    .tp-choose-3 .tp-choose-shape-3 {
        left: 0;
        right: -24%;
    }
}

@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) {
    .tp-choose-3 .tp-choose-shape-4 {
        right: 55%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-choose-3 .tp-choose-shape-4 {
        right: auto;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-choose-3 .tp-choose-shape-box .tp-about-user-box {
        right: 18%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-choose-3 .tp-choose-shape-box .tp-about-user-box {
        right: 8%;
    }
}

.tp-choose-3 .tp-choose-list ul li {
    color: var(--tp-common-black);
    margin-bottom: 0;
}

.tp-choose-3 .tp-choose-list ul li span {
    margin-bottom: -10px;
    margin-right: 6px;
}

.tp-choose-3 .tp-choose-list ul li span img {
    margin-bottom: 4px;
}

.tp-choose-3 .tp-choose-list ul li p {
    font-weight: 500;
    margin-bottom: 7px;
    display: inline-block;
    color: var(--tp-common-black);
}

.tp-choose-3-notes-icon {
    margin-right: 30px;
}

@media (max-width: 575px) {
    .tp-choose-3-notes-icon {
        margin-bottom: 20px;
    }
}

.tp-choose-3-notes-icon img {
    border-radius: 15px;
}

.tp-choose-3-notes-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--tp-common-black);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-choose-3-notes-title {
        font-size: 19px;
    }
}

@media (max-width: 575px) {
    .tp-choose-3-notes-title {
        font-size: 20px;
    }
}

.tp-choose-3-notes-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--tp-theme-1);
}

.tp-choose-3-experience-box {
    padding: 14px 40px;
    border-left: 2px solid var(--tp-theme-1);
}

@media (max-width: 575px) {
    .tp-choose-3-experience-box {
        padding: 14px 26px;
    }
}

.tp-choose-3-experience-icon {
    font-size: 44px;
    color: var(--tp-theme-1);
    margin-right: 30px;
}

@media (max-width: 575px) {
    .tp-choose-3-experience-icon {
        margin-bottom: 10px;
    }
}

.tp-choose-3-experience-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--tp-common-black);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-choose-3-experience-text br {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-choose-3 .tp-choose-list ul li {
        padding-left: 0;
    }
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .tp-choose-4-title-box .tp-section-title {
        font-size: 45px;
    }
}

@media (max-width: 575px) {
    .tp-choose-4-title-box .tp-section-title {
        font-size: 28px;
    }
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .tp-choose-4 .tp-about-user-box {
        left: -80px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-choose-4 .tp-about-user-box {
        left: -80px;
        bottom: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-choose-4 .tp-about-user-box {
        left: 40px;
    }
}

.tp-choose-4 .tp-service-hurry {
    background-color: var(--tp-common-black);
}

.tp-choose-4-num-count {
    margin-right: 30px;
}

.tp-choose-4-num-count::before {
    width: 60px;
    height: 60px;
    font-size: 24px;
    line-height: 60px;
    color: #223645;
    font-weight: 900;
    text-align: center;
    display: inline-block;
    counter-increment: count;
    content: "0" counter(count);
    background: var(--tp-grey-1);
    border-radius: 50%;
    opacity: 1;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-choose-4-thumb {
    position: absolute;
    top: 0;
    right: 0;
}

.tp-choose-4-thumb-shape {
    position: absolute;
    right: 0;
    bottom: 0;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-choose-4-thumb {
        width: 45%;
    }
}

@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) {
    .tp-choose-4-thumb {
        position: relative;
        text-align: center;
        padding-bottom: 50px;
    }
}

.tp-choose-4-fea-item {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.tp-choose-4-fea-item::after {
    position: absolute;
    width: 1px;
    height: 164px;
    top: 50%;
    left: 30px;
    right: 0;
    content: "";
    transform: translateY(-50%);
    background: var(--tp-border-1);
    z-index: -1;
}

.tp-choose-4-fea-item:nth-child(2n+1)::after {
    display: none;
}

.tp-choose-4-fea-item:hover .tp-choose-4-num-count::before {
    color: var(--tp-common-white);
    background-color: var(--tp-theme-1);
}

.tp-choose-4-fea-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--tp-common-black);
}

.tp-choose-4-fea-text p {
    line-height: 1.5;
}

@media (max-width: 575px) {
    .tp-choose-4-fea-text p br {
        display: none;
    }
}

.tp-choose-5-plr {
    padding-top: 120px;
    padding-bottom: 210px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-choose-5-plr {
        padding-top: 80px;
    }
}

.tp-choose-5-thumb img {
    border-radius: 15px;
}

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

.tp-choose-5-thumb-box {
    margin-left: -190px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .tp-choose-5-thumb-box {
        margin-left: -100px;
    }
}

@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) {
    .tp-choose-5-thumb-box {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-choose-5-thumb-box {
        margin-bottom: 40px;
        margin-left: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-choose-5-thumb-box {
        margin-bottom: 0;
        margin-left: 0;
    }
}

.tp-choose-5-thumb-sm {
    position: absolute;
    bottom: -45%;
    right: 50px;
}

.tp-choose-5-thumb-sm img {
    border-radius: 15px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-choose-5-thumb-sm {
        right: -50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-choose-5-thumb-sm {
        bottom: -72%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-choose-5-thumb-sm {
        display: none;
    }
}

.tp-choose-5-thumb-shape {
    position: absolute;
    left: 28%;
    bottom: -28%;
    animation: rotate2 10s linear infinite;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px),
only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-choose-5-thumb-shape {
        left: 15%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-choose-5-thumb-shape {
        left: 4%;
    }
}

.tp-choose-5-shape {
    position: absolute;
    right: 14%;
    bottom: 3%;
    animation: spin-1 3000ms forwards infinite alternate;
    transform-origin: bottom right;
}

.tp-choose-5-shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.tp-choose-5-shape img {
    width: 100%;
    height: 100%;
}

.tp-choose-5 .tp-choose-wrapp {
    margin-left: 0;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-choose-5 .tp-choose-wrapp {
        margin-left: 55px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-choose-5 .tp-choose-wrapp {
        margin-left: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-choose-5 .tp-choose-wrapp {
        margin-left: 0px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-choose-5 .tp-choose-wrapp {
        margin-top: 50px;
        margin-bottom: 30px;
    }
}

.tp-choose-5 .tp-choose-featured-item {
    border: 0;
    padding: 0;
    margin-bottom: 30px;
}

.tp-choose-5 .tp-choose-featured-item:hover {
    border: 0;
    background: none;
    box-shadow: none;
}

.tp-choose-5 .tp-choose-featured-item:hover .tp-choose-featured-icon span {
    color: var(--tp-common-white);
    background: var(--tp-common-black);
}

.tp-choose-5 .tp-choose-featured-icon {
    margin-right: 8px;
}

.tp-choose-5 .tp-choose-featured-icon span {
    font-size: 36px;
    width: 72px;
    height: 72px;
    line-height: 78px;
    color: var(--tp-common-black);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-choose-5 .tp-choose-featured-title {
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-choose-5 .tp-choose-title-box .tp-section-title {
        font-size: 40px;
    }
}

@media only screen and (min-width: 1700px) and (max-width: 1800px),
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: 575px) {
    .tp-choose-5 .tp-choose-title-box p br {
        display: none;
    }
}

.tp-choose-5-action .tp-theme-btn {
    font-size: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-choose-5-action {
        margin-bottom: 40px;
    }
}


/*----------------------------------------*/


/*  7.9 Testimonial css
/*----------------------------------------*/

.tp-testimonial-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    padding: 40px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 60px 0px rgba(27, 24, 61, 0.06);
}

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

.tp-testimonial-item:hover .tp-testimonial-shape-1 span {
    color: #e12454;
}

.tp-testimonial-item:hover .tp-testimonial-avater-icon span {
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
}

.tp-testimonial-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
}

.tp-testimonial-shape-1 span {
    color: #ffc2d1;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-testimonial-shape-1 span svg {
    border-radius: 15px 0 0 0;
}

.tp-testimonial-shape-2 {
    position: absolute;
    bottom: 0;
    left: 16px;
}

.tp-testimonial-shape-2 span {
    color: #fae8ed;
}

@media (max-width: 575px) {
    .tp-testimonial-avater {
        margin-bottom: 30px;
    }
}

.tp-testimonial-avater-box {
    flex: 0 0 auto;
    margin-right: 30px;
}

.tp-testimonial-avater img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
}

.tp-testimonial-avater-icon {
    position: absolute;
    top: 90px;
}

.tp-testimonial-avater-icon span {
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    color: var(--tp-common-black);
    background: var(--tp-common-white);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-testimonial-review span {
    color: var(--tp-theme-1);
}

.tp-testimonial-title {
    font-weight: 700;
    font-size: 24px;
    margin-right: 16px;
}

.tp-testimonial-title-box .tp-section-title,.tp-testimonial-title-box .tp-section-subtitle {
	color: var(--tp-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-testimonial-title-box .tp-section-title {
        font-size: 45px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-testimonial-title-box .tp-section-title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .tp-testimonial-title-box .tp-section-title {
        font-size: 24px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-testimonial-title-box .tp-section-title {
        font-size: 35px;
    }
}

.tp-testimonial-design {
    color: var(--tp-theme-1);
}

.tp-testimonial-active {
    padding: 50px 0;
}

.tp-testimonial-inner .tp-testimonial-item {
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-testimonial-inner .tp-testimonial-item {
        padding: 30px;
    }
}

.tp-testimonial-inner .tp-testimonial-avater-box {
    margin-bottom: 30px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-testimonial-inner .tp-testimonial-content {
        display: flex;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-testimonial-inner .tp-testimonial-title {
        font-size: 18px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-testimonial-inner .tp-testimonial-title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .tp-testimonial-inner .tp-testimonial-title {
        font-size: 20px;
    }
}

.tp-testi-3-plr {
    padding-top: 225px;
    padding-bottom: 230px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-testi-3-plr {
        padding-top: 120px;
    }
}

.tp-testi-3-shape-1 {
    position: absolute;
    top: 0;
}

@media (max-width: 575px) {
    .tp-testi-3-shape-1 {
        top: -1px;
    }
}

.tp-testi-3-shape-2 {
    position: absolute;
    left: 0;
}

.tp-testi-3-shape-3 {
    position: absolute;
    right: 3%;
    top: 21%;
    animation: rotate2 15s linear infinite;
}

.tp-testi-3-satisfaction-number {
    font-size: 50px;
    font-weight: 700;
    margin-right: 25px;
    padding-right: 30px;
    color: var(--tp-common-white);
    border-right: 2px solid var(--tp-common-white);
    margin-bottom: 0;
}

.tp-testi-3-satisfaction-text p {
    line-height: 1.6;
    color: var(--tp-common-white);
    margin-bottom: 0;
}

.tp-testi-3-wrapp {
    width: 599px;
    margin-left: 105px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-testi-3-wrapp {
        margin-left: 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-testi-3-wrapp {
        margin-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: 575px) {
    .tp-testi-3-wrapp {
        width: 100%;
        margin-left: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-testi-3-content {
        margin-bottom: 40px;
    }
}

.tp-testi-3-item {
    background: var(--tp-common-white);
    border-radius: 15px;
}

.tp-testi-3-thumb {
    margin-right: 50px;
    flex: 0 0 auto;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-testi-3-thumb {
        margin-right: 30px;
    }
}

@media (max-width: 575px) {
    .tp-testi-3-thumb {
        margin-right: 0;
    }
}

.tp-testi-3-thumb img {
    width: 230px;
    height: 325px;
    border-radius: 15px 0 0 15px;
}

@media (max-width: 575px) {
    .tp-testi-3-thumb img {
        width: 100%;
        border-radius: 15px 15px 0 0;
    }
}

.tp-testi-3-box-content {
    padding: 50px;
    height: 325px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-testi-3-box-content {
        padding: 0 20px 0 0;
    }
}

@media (max-width: 575px) {
    .tp-testi-3-box-content {
        padding: 30px;
    }
}

.tp-testi-3-review {
    margin-bottom: 15px;
}

.tp-testi-3-review i {
    color: var(--tp-theme-1);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-testi-3-text p br {
        display: none;
    }
}

.tp-testi-3-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-common-black);
    margin-bottom: 0;
}

.tp-testi-3-title-box .tp-section-title {
    font-weight: 700;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-testi-3-title-box .tp-section-title {
        font-size: 45px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
    .tp-testi-3-title-box .tp-section-title {
        font-size: 40px;
    }
}

.tp-testi-3-title-box .tp-section-subtitle {
    color: #9ca6ae;
}

.tp-testi-3-title-box p {
    font-weight: 500;
    color: #9ca6ae;
}

.tp-testi-3-designation {
    font-size: 16px;
}

.tp-testi-3-slide-dots {
    position: absolute;
    right: -65px;
    top: 50%;
    transform: translateY(-50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-testi-3-slide-dots {
        right: -30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-testi-3-slide-dots {
        right: 0;
        left: 0;
        top: auto;
        bottom: -18%;
        text-align: center;
    }
}

.tp-testi-3-slide-dots .tp-pagination-dots span {
    width: 14px;
    height: 14px;
    display: block;
    background: var(--tp-grey-1);
    margin: 10px 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

@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) {
    .tp-testi-3-slide-dots .tp-pagination-dots span {
        display: inline-block;
        margin: 0 8px;
    }
}

.tp-testi-3-slide-dots .tp-pagination-dots span.swiper-pagination-bullet-active {
    transform: scale(1.5);
    background: none;
    border-radius: 50%;
    border: 2px solid var(--tp-common-white);
}

.tp-testi-4-bg-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: unset;
    background-position: center;
    background-repeat: no-repeat;
}

.tp-testi-4-shape-1 {
    position: absolute;
    bottom: 100px;
    animation: tptranslateY2 3s infinite alternate;
}

.tp-testi-4-shape-2 {
    position: absolute;
    top: 100px;
    right: 0;
    animation: spin-1 3000ms forwards infinite alternate;
    transform-origin: bottom right;
}

@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) {
    .tp-testi-4-shape-2 {
        top: 45px;
    }
}

.tp-testi-4-title-box .tp-section-title {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .tp-testi-4-title-box .tp-section-title {
        font-size: 30px;
    }
}

.tp-testi-4-thumb {
    flex: 0 0 auto;
    margin-right: 75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-testi-4-thumb {
        margin-right: 45px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-testi-4-thumb {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.tp-testi-4-thumb>img {
    width: 230px;
    height: 230px;
    border-radius: 50%;
}

.tp-testi-4-thumb-icon {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
}

.tp-testi-4-thumb-icon span {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    background: var(--tp-theme-1);
}

.tp-testi-4-logo {
    margin-bottom: 30px;
}

.tp-testi-4-text-box p {
    font-size: 18px;
    color: #7a8a9e;
    line-height: 1.5;
    margin-right: -63px;
}

.tp-testi-4-avtr-title {
    font-size: 24px;
    font-weight: 700;
    margin-right: 12px;
    display: inline-block;
    color: var(--tp-common-black);
}

.tp-testi-4-avtr-design {
    position: relative;
    font-size: 16px;
    margin-bottom: 0;
    padding-left: 20px;
    display: inline-block;
    color: var(--tp-theme-1);
}

.tp-testi-4-avtr-design::before {
    position: absolute;
    width: 10px;
    height: 1px;
    bottom: 8px;
    left: 0;
    content: "";
    background: var(--tp-common-black);
}

.tp-testi-4-content {
    position: relative;
    padding: 40px 155px 55px 155px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-testi-4-content {
        padding: 75px 100px 55px 155px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-testi-4-content {
        padding: 75px 30px 55px 30px;
    }
}

.tp-testi-4-arrow-box {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 2;
    transform: translateY(-50%);
}

.tp-testi-4-arrow-box button {
    font-size: 24px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-testi-4-arrow-box button:hover {
    color: var(--tp-common-black);
}

.tp-testi-4-arrow-box button.prev {
    position: absolute;
    right: auto;
    left: -10%;
}

.tp-testi-4-arrow-box button.next {
    position: absolute;
    left: auto;
    right: -10%;
}

@media (max-width: 575px) {
    .tp-testi-5 {
        padding-top: 0;
    }
}

.tp-testi-5-shape {
    position: absolute;
    right: 120px;
    bottom: 75px;
    animation: moving 3s infinite alternate;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-testi-5-shape {
        right: 30px;
    }
}

.tp-testi-5-item {
    width: 470px !important;
    height: 180px !important;
    padding: 30px;
    border-radius: 15px;
    display: inline-flex !important;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px 0px rgba(33, 38, 59, 0.08);
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .tp-testi-5-item {
        width: 325px !important;
        height: 340px !important;
    }
}

.tp-testi-5-item.slick-slide {
    float: none;
}

.tp-testi-5-item:nth-child(2n+2) {
    margin-right: 80px;
}

@media (max-width: 575px) {
    .tp-testi-5-item:nth-child(2n+2) {
        margin-right: 0;
    }
}

@media (max-width: 575px) {
    .tp-testi-5-item {
        width: auto;
        height: auto;
        margin-bottom: 20px;
    }
}

.tp-testi-5-title-box p {
    margin-right: 85px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-testi-5-title-box .tp-section-title {
        font-size: 50px;
    }
}

@media (max-width: 575px) {
    .tp-testi-5-title-box .tp-section-title {
        font-size: 35px;
    }
}

.tp-testi-5-content {
    text-align: left;
}

.tp-testi-5-avtr {
    margin-right: 20px;
    flex: 0 0 auto;
}

@media (max-width: 575px) {
    .tp-testi-5-avtr {
        margin-bottom: 20px;
    }
}

.tp-testi-5-avtr img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-testi-5-action {
        margin-bottom: 50px;
    }
}


/*----------------------------------------*/


/*  7.12 Cta css
/*----------------------------------------*/

.tp-cta-plr {
    padding-top: 120px;
    padding-bottom: 220px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-cta-plr {
        padding-bottom: 280px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-cta-plr {
        padding-bottom: 270px;
    }
}

@media (max-width: 575px) {
    .tp-cta-plr {
        padding-top: 80px;
        padding-bottom: 250px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-cta-title-box .tp-section-title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .tp-cta-title-box .tp-section-title {
        font-size: 35px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-cta-title-box .tp-section-title {
        font-size: 30px;
    }
}

.tp-cta-title-box p {
    font-weight: 500;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-cta-title-box p {
        font-size: 20px;
    }
}

.tp-cta-shape-1 {
    position: absolute;
    left: 12%;
    bottom: 30px;
    animation: spin-1 3000ms forwards infinite alternate;
    transform-origin: bottom left;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-cta-shape-1 {
        bottom: 100px;
    }
}

.tp-cta-shape-2 {
    position: absolute;
    right: 4%;
    bottom: 30px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-cta-shape-2 {
        bottom: 100px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-cta-shape-2 {
        right: 0;
    }
}

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

.tp-cta-aciton-1 {
    margin-right: 20px;
}

@media (max-width: 575px) {
    .tp-cta-aciton-1 {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-cta-aciton-1 {
        margin-bottom: 0;
    }
}

.tp-cta-aciton-2 a {
    background-color: var(--tp-common-black);
}

.tp-cta-aciton-2 a:hover {
    background-color: var(--tp-theme-1);
}

.tp-cta-1 .tp-cta-aciton-1 a:hover {
    color: var(--tp-common-black);
    background-color: var(--tp-common-white);
}

.tp-cta-1 .tp-cta-aciton-2 a:hover {
    color: var(--tp-common-black);
    background-color: var(--tp-common-white);
}

.tp-cta-2-avater {
    margin-right: 15px;
    flex: 0 0 auto;
}

.tp-cta-2-avater img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
}

.tp-cta-2-avater-title {
    font-size: 16px;
    margin-bottom: 0;
}

.tp-cta-2-avater-title span {
    font-weight: 700;
    color: var(--tp-theme-1);
}

.tp-cta-2-info-text p {
    margin: 0;
    padding: 0;
    font-weight: 500;
    color: #4f4f4f;
}

@media (max-width: 575px) {
    .tp-cta-2-info-text {
        margin-top: 30px;
    }
}

.tp-cta-2-wrapp {
    border-bottom: 1px solid var(--tp-border-1);
    padding: 0 30px 30px 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
    .tp-cta-2-wrapp {
        padding: 0 0 30px 0;
    }
}

.tp-cta-3-style {
    margin-top: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-cta-3-item {
        margin-bottom: 20px;
    }
}

.tp-cta-3-shape {
    position: absolute;
    top: 0;
    right: 0;
}

.tp-cta-3-icon {
    position: relative;
    margin-right: 25px;
}

.tp-cta-3-icon::before {
    position: absolute;
    width: 90px;
    height: 180px;
    bottom: -19px;
    content: "";
    background: #2b404f;
    border-radius: 0 0 50px 50px;
    left: 0;
    rotate: 30deg;
}

.tp-cta-3-icon span {
    position: relative;
    font-size: 48px;
    color: var(--tp-theme-1);
    margin-bottom: 0;
}

.tp-cta-3-call {
    font-size: 24px;
    font-weight: 700;
    color: var(--tp-common-white);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

@media (max-width: 575px) {
    .tp-cta-3-call {
        font-size: 18px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-cta-3-call {
        font-size: 22px;
    }
}

.tp-cta-3-call:hover {
    color: var(--tp-theme-1);
}

.tp-cta-3-plr {
    padding-top: 60px;
    padding-bottom: 60px;
    border-radius: 15px;
    border: 1px solid #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-cta-3-plr {
        padding-top: 50px;
        padding-bottom: 43px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-cta-3-info {
        margin-bottom: 20px;
    }
}

.tp-cta-3-info::after {
    position: absolute;
    width: 1px;
    height: 80px;
    right: -80px;
    bottom: -10px;
    content: "";
    background: var(--tp-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-cta-3-info::after {
        right: -40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-cta-3-info::after {
        display: none;
    }
}

.tp-cta-3-info p {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
    color: var(--tp-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-cta-3-info p {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .tp-cta-3-info p {
        font-size: 18px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-cta-3-info p {
        font-size: 22px;
    }
}

.tp-cta-3-action .tp-theme-btn:hover {
    color: var(--tp-common-black);
    background-color: var(--tp-common-white);
}

.tp-cta-4 {
    padding-top: 130px;
    padding-bottom: 283px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-cta-4 {
        padding-top: 110px;
        padding-bottom: 180px;
    }
}

@media (max-width: 575px) {
    .tp-cta-4 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.tp-cta-4-overlay::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background-color: var(--tp-theme-1);
    opacity: 0.7;
}

.tp-cta-4-shape {
    position: absolute;
    right: 0;
    top: 10%;
    animation: moving 5s linear infinite;
    transform: translateY(-10%);
}

.tp-cta-4-shape-2 {
    position: absolute;
    bottom: 0;
    border: none;
}

.tp-cta-4-title-box .tp-section-title {
    font-weight: 700;
    font-size: 60px;
}

@media (max-width: 575px) {
    .tp-cta-4-title-box .tp-section-title {
        font-size: 28px;
    }
}

.tp-cta-4-title-box .tp-section-subtitle {
    color: #9ca6ae;
}

@media (max-width: 575px) {
    .tp-cta-4-action-box a {
        margin-bottom: 20px;
    }
}

.tp-cta-4 .tp-header-info-item:hover .tp-header-info-text span {
    color: inherit;
}

.tp-cta-4 .tp-header-info-item:hover .tp-header-info-title {
    color: var(--tp-common-white);
}

.tp-cta-4 .tp-header-info-title {
    color: var(--tp-common-white);
}

.tp-cta-4 .tp-header-info-text span {
    color: var(--tp-text-body-2);
}

.tp-cta-4 .tp-header-info-icon {
    width: 60px;
    height: 60px;
    line-height: 65px;
    color: var(--tp-common-white);
    background: none;
    border: 1px solid var(--tp-border-1);
}

.tp-cta-5 .tp-cta-3-icon::before {
    background: var(--tp-theme-1);
}

.tp-cta-5 .tp-cta-3-icon span {
    color: var(--tp-common-white);
}

.tp-cta-5 .tp-cta-3-call:hover {
    color: var(--tp-common-black);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-cta-6 .tp-section-title br {
        display: none;
    }
}


/*----------------------------------------*/


/*----------------------------------------*/


/*  7.20 Team css
/*----------------------------------------*/

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-team.tp-plr-rs {
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-team-wrapp {
        margin-bottom: 0;
    }
}

.tp-team-item {
    padding: 40px 55px;
    border-radius: 15px;
    border: 1px solid var(--tp-border-1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-team-item {
        padding: 40px 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-team-item {
        padding: 40px 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-team-item {
        margin-bottom: 20px;
    }
}

.tp-team-thumb {
    text-align: center;
    margin-bottom: 30px;
}

.tp-team-thumb img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.tp-team-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 3px;
    display: inline-block;
    color: var(--tp-common-black);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-team-title:hover {
    color: var(--tp-theme-1);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-team-title-box {
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .tp-team-title-box .tp-section-title {
        font-size: 26px;
    }
}

.tp-team-designation {
    font-size: 16px;
    font-weight: 500;
    display: block;
}

.tp-team-social ul li {
    display: inline-block;
    margin-right: 20px;
}

.tp-team-social ul li:last-child {
    margin-right: 0;
}

.tp-team-social ul li a {
    font-size: 16px;
}

.tp-team-social ul li a .fb {
    color: #1877f2;
}

.tp-team-social ul li a .inst {
    color: #943925;
}

.tp-team-social ul li a .tw {
    color: #1c96e8;
}

.tp-team-social ul li a .pnt {
    color: #df0022;
}

.tp-team-notes {
    position: relative;
}

.tp-team-notes::before,
.tp-team-notes::after {
    position: absolute;
    width: 270px;
    height: 1px;
    top: 50%;
    left: 0;
    content: "";
    transform: translateY(-50%);
    background: var(--tp-border-1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-team-notes::before,
    .tp-team-notes::after {
        width: 226px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-team-notes::before,
    .tp-team-notes::after {
        width: 136px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-team-notes::before,
    .tp-team-notes::after {
        display: none;
    }
}

.tp-team-notes::after {
    left: auto;
    right: 0;
}

.tp-team-notes-content {
    padding: 15px 100px;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid var(--tp-border-1);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-team-notes-content {
        padding: 10px 30px;
    }
}

@media (max-width: 575px) {
    .tp-team-notes-content {
        display: none;
    }
}

.tp-team-notes-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--tp-common-black);
}

.tp-team-2 .tp-team-item {
    border: 0;
    padding: 15px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px 0px rgba(16, 12, 33, 0.08);
    border-radius: 15px;
    height: 100%;
    margin: 0 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-team-2 .tp-team-item {
        padding: 13px 13px 30px 15px;
    }
}
.tp-team-2 .tp-team-item .tp-team-thumb:hover img {
    /*transform: scale(1.1);*/
}

.tp-team-2 .tp-team-thumb {
    text-align: center;
    margin-bottom: 5px;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 0;
    float:left;
    max-width:220px;
    margin-right: 15px;
}

.tp-team-2 .tp-team-thumb img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: .5s;
    aspect-ratio: 5 / 8;
    
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-team-2 .tp-team-title {
        font-size: 18px;
    }
}

.tp-team-2 .tp-team-title:hover {
    color: var(--tp-theme-1);
}

.tp-team-2 .tp-team-social ul li a {
    transition: 0.3s;
}

.tp-team-2 .tp-team-social ul li a:hover {
    color: var(--tp-theme-1);
}

.tp-team-author-info span {
    font-size: 18px;
    display: inline-block;
    color: var(--tp-theme-1);
    margin-bottom: 20px;
}

.tp-team-author-info-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--tp-common-black);
}

.tp-team-author-info-title span {
    font-weight: 400;
    color: var(--tp-text-body);
    margin-left: 20px;
}

@media (max-width: 575px) {
    .tp-team-author-info-title span {
        margin-left: 10px;
    }
}


/*----------------------------------------*/


/*----------------------------------------*/

.d-bl,
.d-bl li,
.d-bl li i {
    color: #fff !important;
}

ul.d-bl li {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

ul.d-bl li i {
    margin-right: 6px;
}

ul,
ul:hover {
    list-style: none;
}

.ft-img {
    width: 150px;
}

.slocation h2 {
    font-size: 30px;
}

.slocation ul {
    display: flex;
    justify-content: center;
    justify-items: center;
    margin-top: 15px;
    color: #fff;
    font-size: 20px;
    font-weight: bolder;
}

.mythemebgcolor {
    background-color: var(--tp-theme-1);
}

.mythemecolor {
    color: var(--tp-theme-1);
}

.lightthemebg {
    background-color: rgba(68, 78, 50, 0.2);
}


/* Contact Page Design */

.mycontact {
    margin-top: 100px;
    margin-bottom: 100px;
}

.mycontact .ico-box {
    margin-bottom: 30px;
}

.mycontact h2 {
    font-family: "PT Serif", Sans-serif;
    font-size: 35px;
    font-weight: 600;
    color: var(--tp-theme-1);
}

.mycontact p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin: 0;
    padding: 0;
}

.mycontact h5 {
    margin: 0;
    padding: 0;
    font-size: 25px;
    font-weight: 600;
}

.mycontact .con-icon-box {
    margin-top: 5px;
    font-size: 25px;
    padding: 15px;
    border-radius: 50px 50px 50px 50px;
    background-color: var(--tp-theme-1);
}

.mycontact .con-icon-box i {
    color: #fff;
}

.mycontact .btn-submit-con {
    color: var(--tp-theme-1);
    background-color: #fff;
    font-weight: 700;
}

.mycontact .form-container {
    border-radius: 10px;
    padding: 30px;
    padding-bottom: 5px;
}

.mycontact .form-contact {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    justify-items: space-evenly;
    height: calc(100% - 90px);
}

.mycontact input,
.mycontact textarea {
    border-color: #000;
    height: 43px;
    font-size: 14px;
    line-height: 100%;
    padding: 0 16px;
}

.mycontact textarea {
    height: calc(43px * 2.8);
    padding: 16px;
}

.tp-map-wrap {
    position: relative;
    height: 500px;
}

.tp-map-wrap iframe {
    width: 100%;
    height: 100%;
}


/* Referral Page Design */

.referral {
    padding: 100px 0;
    max-width: 900px;
    border-radius: 15px;
}

.referral .col-md-6,
.referral .col-md-4,
.referral .col-12 {
    margin: 0 0 25px 0;
}

.referral .nursing .col-md-4 {
    margin: 0;
}

.referral .form-label {
    font-weight: 700;
    font-size: 16px;
}

.referral .ref-body {
    margin: 0px 0px 0px 0px;
    padding: 30px 30px 30px 30px;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.referral input,
.referral select,
.referral textarea,
.referral .form-control,
.referral .form-check-input,
.referral .form-check-label,
.referral label {
    color: #000;
    border-color: var(--tp-theme-1);
}

.referral input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not( [type="button"]):not([type="image"]) {
    border-radius: 0;
}

.referral input[type="radio"],
.referral input[type="checkbox"] {
    margin-top: 6px;
}

.referral .btn-submit-con {
    color: #fff;
    background-color: var(--tp-theme-1);
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 1em;
    margin-top: 25px;
}


/*  Services Page
/*----------------------------------------*/

.services .sp {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
}

.services .sh {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    padding: 10px 0;
    text-align: center;
    color: var(--tp-common-white);
}

.services .sbox {
    padding: 0;
    box-shadow: 2px 4px 10px 0px #b6b2b2;
    background-color: #fff;
    height: 100%;
    border-radius: 15px;
}

.services .sbox img {
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.services .sbox .scontent {
    padding: 15px;
}

.services .sbox .scontent h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--tp-theme-1);
}

.services .sbox .scontent ul {
    list-style: none;
}

.services .sbox .scontent ul li span,
.services .sbox .scontent ul li i {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.services .sbox .scontent ul li i {
    color: var(--tp-theme-1);
    margin-right: 5px;
}


/*  7.8 Services css
/*----------------------------------------*/

.tp-service-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tp-service-content {
    flex-grow: 1;
}

.tp-service-button {
    margin-top: auto;
}

@media (max-width: 575px) {
    .tp-service {
        padding-bottom: 30px;
    }
}

.tp-service-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
    .tp-service-shape-1 {
        left: -50px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-service-shape-1 {
        left: -70px;
    }
}

.tp-service-shape-2 {
    position: absolute;
    top: 0;
    right: 0;
}

.tp-service-shape-3 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.tp-service-wrapp .row [class*=col-]:last-child .tp-service-item::before {
    display: none;
}

.tp-service-wrapp .row [class*=col-]:last-child .tp-service-item::after {
    display: none;
}

.tp-service-item {
    position: relative;
    text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-service-item {
        padding: 0 5px;
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-service-item {
        padding: 0 35px;
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-service-item {
        padding: 0 10px;
        margin-bottom: 40px;
    }
}

.tp-service-item::before {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: 0;
    content: "";
    background: var(--tp-border-1);
}

@media (max-width: 575px) {
    .tp-service-item::before {
        display: none;
    }
}

.tp-service-item::after {
    position: absolute;
    width: 1px;
    height: 10px;
    top: 7%;
    right: 0;
    content: "";
    background: var(--tp-theme-1);
    animation: scroll1 11s forwards infinite;
}

@media (max-width: 575px) {
    .tp-service-item::after {
        display: none;
    }
}

.tp-service-item-2::after {
    animation: scroll1 13s forwards infinite;
}

.tp-service-item-3::after {
    animation: scroll1 11s forwards infinite;
}

.tp-service-item:hover .tp-service-icon span {
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
}

.tp-service-item:hover .tp-service-action a {
    color: var(--tp-theme-1);
}

.tp-service-item:hover .tp-service-action a i {
    animation: tp-arrow 0.2s linear;
}

.tp-service-item p {
    font-weight: 600;
    line-height: 1.6;
	padding:0 15px;
}

.tp-service-icon {
    position: absolute;
    top: -26px;
    right: 20px;
}

.tp-service-icon span {
    font-size: 48px;
    width: 100px;
    height: 100px;
    line-height: 110px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    color: var(--tp-theme-1);
    background: var(--tp-common-white);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-service-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--tp-common-black);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.sp-big{
    font-weight: 400;
    font-size: 18px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-title {
        font-size: 20px;
    }
}

.tp-service-title:hover {
    color: var(--tp-theme-1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-service-title-box .tp-section-title {
        font-size: 45px;
    }
}

@media (max-width: 575px) {
    .tp-service-title-box .tp-section-title {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-title-box .tp-section-title {
        font-size: 35px;
    }
}

.tp-service-action a {
    font-size: 14px;
    color: var(--tp-common-black);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-service-text:hover .tp-service-see {
    color: var(--tp-theme-1);
}

.tp-service-text p {
    font-size: 17px;
    font-weight: 600;
    color: var(--tp-common-black);
}

@media (max-width: 575px) {
    .tp-service-text p {
        font-size: 17px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-text p {
        font-size: 14px;
    }
}

.tp-service-hurry {
    padding: 0px 10px;
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
    border-radius: 30px;
    margin-right: 8px;
}

.tp-service-see {
    position: relative;
}

.tp-service-see::after {
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    content: "";
    background: var(--tp-common-black);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-service-help-box {
    top: 130px;
    z-index: 3;
}

.tp-service-help-item {
    position: relative;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-help-item {
        margin-bottom: 30px;
    }
}

.tp-service-help-thumb {
    position: relative;
}

.tp-service-help-thumb::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    border-radius: 15px;
    background-color: rgb(3, 0, 36);
    opacity: 0.502;
}

.tp-service-help-thumb img {
    width: 100%;
    border-radius: 15px;
}

.tp-service-help-button {
    position: absolute;
    top: 40px;
    left: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-help-button {
        left: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-service-help-button {
        top: 20px;
        left: 30px;
    }
}

.tp-service-help-button span {
    font-weight: 700;
    font-size: 14px;
    padding: 7px 23px;
    display: inline-block;
    color: var(--tp-common-black);
    background: var(--tp-common-white);
    border-radius: 50px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-service-help-button span:hover {
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
}

.tp-service-help-content {
    position: absolute;
    bottom: 30px;
    left: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-help-content {
        bottom: 20px;
        left: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-service-help-content {
        bottom: 10px;
        left: 30px;
    }
}

.tp-service-help-action {
    font-weight: 600;
    font-size: 16px;
    color: #dfdfdf;
    display: block;
    margin-bottom: 8px;
}

.tp-service-help-title {
    font-weight: 800;
    font-size: 36px;
    display: inline-block;
    color: var(--tp-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-service-help-title {
        font-size: 24px;
    }
}

.tp-service-2-shape-2 {
    width: 850px;
    height: 10px;
    display: inline-block;
    background: var(--tp-theme-1);
    position: absolute;
    bottom: 0;
    right: -40%;
    border-radius: 15px;
}

.tp-service-2-item {
    position: relative;
    overflow: hidden;
    background: var(--tp-common-white);
    border-radius: 15px;
}

.tp-service-2-item:hover .tp-service-2-number span {
    color: #f3f3f3;
}

.tp-service-2-item:hover .tp-service-2-thumb img {
    transform: scale(1.2);
}

.tp-service-2-thumb {
    overflow: hidden;
}

.tp-service-2-thumb img {
    width: 100%;
    border-radius: 15px 15px 0 0;
    transition: 1.3s;
}

.tp-service-2-content {
    padding: 30px 40px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px 0px rgba(60, 54, 87, 0.06);
    border-radius: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-service-2-content {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .tp-service-2-content {
        padding: 24px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-2-content {
        padding: 40px;
    }
}

.tp-service-2-title {
    font-weight: 700;
    font-size: 24px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-service-2-title {
        font-size: 22px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-service-2-title {
        font-size: 18px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-service-2-title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-service-2-title-box p {
        font-size: 14px;
    }
}

.tp-service-2-title:hover {
    color: var(--tp-theme-1);
}

.tp-service-2-action a {
    font-weight: 700;
    padding: 5px 16px;
    display: inline-block;
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
    border-radius: 30px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-service-2-action a:hover {
    background-color: var(--tp-common-black);
}

.tp-service-2-number {
    position: absolute;
    bottom: -20px;
    right: 30px;
}

.tp-service-2-number span {
    font-weight: 700;
    font-size: 80px;
    color: var(--tp-grey-1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-service-2-active {
    margin: 0 -375px 0 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-service-2-active {
        margin: 0;
    }
}

.tp-service-2 .tp-service-2-shape-1 {
    position: absolute;
    bottom: 0;
}

.tp-service-2 .tp-service-hurry {
    background: var(--tp-common-black);
}

.tp-service-2 .tp-service-see {
    color: var(--tp-theme-1);
}

.tp-service-2 .tp-service-see::after {
    background: var(--tp-theme-1);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-service-2 .tp-service-title-box {
        margin-bottom: 20px;
    }
}

.tp-service-3-plr {
    padding-bottom: 250px;
}

.tp-service-3 .tp-service-wrapp .row [class*=col-]:last-child .tp-service-item {
    border-right: 0;
}

.tp-service-3 .tp-service-wrapp .row [class*=col-]:last-child .tp-service-item::before {
    display: none;
}

.tp-service-3 .tp-service-wrapp .row [class*=col-]:last-child .tp-service-item::after {
    display: none;
}

.tp-service-3 .tp-service-wrapp .row [class*=col-]:last-child .tp-service-button {
    border-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-3 .tp-service-wrapp .row [class*=col-]:nth-child(2n+2) .tp-service-item {
        border-right: 0;
    }
}

.tp-service-3 .tp-service-item {
    border-right: 1px solid var(--tp-border-1);
    border-bottom: 1px solid var(--tp-border-1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-service-3 .tp-service-item {
        padding: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-3 .tp-service-item {
        margin-bottom: 30px;
    }
}

.tp-service-3 .tp-service-item::before,
.tp-service-3 .tp-service-item::after {
    display: none;
}

.tp-service-3 .tp-service-item:hover .tp-service-icon span i {
    bottom: 0;
}

.tp-service-3 .tp-service-content {
    padding: 0 30px 28px 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-service-3 .tp-service-content {
        padding: 0 10px 28px 10px;
    }
}

.tp-service-3 .tp-service-icon {
    position: static;
}

.tp-service-3 .tp-service-icon span {
    position: relative;
    font-size: 54px;
    width: 120px;
    height: 120px;
    line-height: 110px;
    background-image: -moz-linear-gradient(-96deg, rgb(235, 235, 235) 0%, rgb(242, 242, 242) 15%, rgb(249, 249, 249) 100%);
    background-image: -webkit-linear-gradient(-96deg, rgb(235, 235, 235) 0%, rgb(242, 242, 242) 15%, rgb(249, 249, 249) 100%);
    background-image: -ms-linear-gradient(-96deg, rgb(235, 235, 235) 0%, rgb(242, 242, 242) 15%, rgb(249, 249, 249) 100%);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-service-3 .tp-service-icon span i {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    text-align: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-service-3 .tp-service-button {
    width: 100%;
    text-align: center;
    border-top: 1px solid var(--tp-border-1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-service-3 .tp-service-button a {
    width: 100%;
    font-size: 16px;
    padding: 8px 0;
    font-weight: 700;
    color: var(--tp-theme-1);
    display: inline-block;
}

.tp-service-3 .tp-service-button:hover {
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
    border-top: 1px solid var(--tp-common-black);
}

.tp-service-3 .tp-service-button:hover a {
    color: var(--tp-common-white);
}

.tp-service-4-shape-1 {
    position: absolute;
    left: 0;
}

.tp-service-4-shape-2 {
    position: absolute;
    top: 14%;
    right: 6%;
    animation: tptranslateY2 3s infinite alternate;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-service-4-shape-2 {
        display: none;
    }
}

.tp-service-4-shape-3 {
    position: absolute;
    bottom: 80px;
    left: 80px;
    animation: spin-1 3000ms forwards infinite alternate;
    transform-origin: bottom left;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-4-shape-3 {
        left: 40px;
    }
}

@media (max-width: 575px) {
    .tp-service-4-shape-3 {
        left: 20px;
    }
}

.tp-service-4-item {
    padding: 50px;
    border-radius: 15px;
    background: #2f4454;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .tp-service-4-item {
        padding: 30px;
    }
}

.tp-service-4-item:hover .tp-service-4-thumb {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.tp-service-4-item:hover .tp-service-4-num-count::before {
    color: var(--tp-theme-1);
}

.tp-service-4-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.8);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-service-4-thumb::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.9;
    background: var(--tp-common-black);
}

.tp-service-4-icon-box {
    margin-right: 50px;
}

.tp-service-4-icon span {
    font-size: 64px;
    color: var(--tp-common-white);
}

.tp-service-4-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--tp-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-4-title-box .tp-section-title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .tp-service-4-title-box .tp-section-title {
        font-size: 25px;
    }
}

.tp-service-4-title-box .tp-section-subtitle {
    color: var(--tp-text-body);
}

.tp-service-4-action {
    font-weight: 700;
    color: var(--tp-common-white);
}

.tp-service-4-action a {
    position: relative;
    font-size: 16px;
    display: inline-block;
}

.tp-service-4-action a:hover::after {
    width: 100%;
}

.tp-service-4-action a::after {
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 4px;
    left: 0;
    content: "";
    background: var(--tp-common-white);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-service-4-num-count {
    position: absolute;
    bottom: 10px;
    left: 2%;
    transform: rotate(-90deg);
}

@media (max-width: 575px) {
    .tp-service-4-num-count {
        left: auto;
        right: 0;
    }
}

.tp-service-4-num-count::before {
    font-size: 45px;
    color: #223645;
    font-weight: 900;
    text-align: center;
    display: inline-block;
    counter-increment: count;
    content: "0" counter(count);
    opacity: 1;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-service-5 {
        padding-top: 10px;
        padding-bottom: 80px;
    }
}

.tp-service-5-item {
    border-radius: 15px;
}

.tp-service-5-item:hover .tp-service-5-content {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.tp-service-5-item:hover .tp-service-5-icon {
    bottom: 35%;
    transform: translateY(-35%);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
    .tp-service-5-item:hover .tp-service-5-icon {
        bottom: 28%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-5-item:hover .tp-service-5-icon {
        bottom: 25%;
    }
}

.tp-service-5-item:hover .tp-service-5-icon span {
    color: var(--tp-common-black);
    background-color: var(--tp-common-white);
}

.tp-service-5-item:hover .tp-service-5-title {
    top: 35px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-5-item:hover .tp-service-5-title {
        top: 60px;
    }
}

.tp-service-5-item a {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.tp-service-5-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.tp-service-5-thumb img {
    width: 100%;
    border-radius: 15px;
}

.tp-service-5-title {
    position: absolute;
    left: 0;
    right: 0;
    top: -75%;
    opacity: 1;
    margin: auto;
    font-size: 22px;
    font-weight: 700;
    visibility: visible;
    text-align: center;
    display: inline-block;
    color: var(--tp-common-white);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-service-5-title {
        top: -60%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-service-5-title {
        top: -90%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-5-title {
        top: -115%;
    }
}

@media (max-width: 575px) {
    .tp-service-5-title {
        top: -100%;
    }
}

.tp-service-5-title:hover {
    color: var(--tp-theme-1);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-5-title-box .tp-section-title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .tp-service-5-title-box .tp-section-title {
        font-size: 28px;
    }
}

.tp-service-5-content {
    position: absolute;
    width: 100%;
    bottom: -59%;
    opacity: 1;
    visibility: hidden;
    padding: 70px 15px 15px 15px;
    border-radius: 0 0 15px 15px;
    background: var(--tp-common-black);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-5-content {
        padding: 100px 15px 60px 15px;
    }
}

.tp-service-5-icon {
    position: absolute;
    bottom: -38px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    z-index: 2;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-service-5-icon span {
    font-size: 48px;
    width: 90px;
    height: 90px;
    line-height: 95px;
    text-align: center;
    display: inline-block;
    color: var(--tp-common-white);
    background-color: var(--tp-theme-1);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tp-service-5-icon span:hover {
    color: var(--tp-theme-1);
    background-color: var(--tp-common-white);
}

.tp-service-5 .tp-service-2-active {
    padding-bottom: 50px;
    margin: 0;
}

.tp-service-5 .tp-section-meta-notes p {
    margin-bottom: 0;
}

.tp-service-5 .tp-section-meta-notes span {
    background: var(--tp-common-black);
}

.tp-service-inner-plr {
    padding-top: 300px;
    margin-top: -170px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tp-service-inner-plr {
        padding-top: 240px;
    }
}


.core-box {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 30px 20px;
    background: #fff;
    border-radius: 5px;
    min-height: 100%;
}

.core-box img {
    width: 80px;
    padding-bottom: 20px;
}

.core-box_title {
    color: var(--tp-theme-1);
    font-size: 26px;
    line-height: 1.2;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.core-box_title::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--tp-theme-1);
}

.core-box_txt {
    color: var(--tp-common-black);
    font-weight: 400;
    margin-top: 20px;
}

.inner_bottm_sec {
    padding: 30px 20px;
    text-align: center;
}

.inner_bottm_sec .title {
    font-size: 26px;
    line-height: 1.2;
    font-weight: bold;
    position: relative;
    padding-bottom: 6px;
}

.inner_bottm_sec .content {
    font-size: 15px;
    font-weight: bold;
    margin-top: 10px;
}

.f-img-col img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.zoom-img {
  overflow: hidden;
}

.zoom-img img {
  transition: transform 0.5s ease;
}

.zoom-img:hover img {
  transform: scale(1.1);
}

.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 30px; /* change to 'left: 20px;' if you want it on the left */
    z-index: 999;
    background-color: #25D366;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-button img {
    width: 40px;
    height: 40px;
}

.tp-slider-wrapp{
    height: 600px;
}
.tp-team-2 .tp-team-item p,.about-p{
        font-weight:400;
		margin-bottom: 10px;
		line-height: 1.4;
    }
    .cp-img{
    width:100%;
}
@media (max-width: 767px) {
    .tp-slider-1-title{
        font-size: 25px;
    }
  .tp-slider-wrapp{
    height: 450px;
    }
    
    .tp-slider-1-plr {
        padding-top: 75px;
        padding-bottom: 80px;
    }
    
    .tp-slider-3-shape-1 img{
        width: 100%;
    }
    
    .tp-service-item .tp-service-icon span {
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
}

.tp-service-3 .tp-service-item .tp-service-icon span i {
    bottom: 0;
}

.tp-service-3 .tp-service-button {
    background: var(--tp-theme-1);
    border-top: 1px solid var(--tp-common-black);
}
.tp-service-3 .tp-service-button a{
    color: var(--tp-common-white);
}

.tp-choose-list ul li i {
    position: absolute;
    left: 0;
    top: 5px;
}
.tp-choose-3 .tp-choose-list ul li span {
    margin-bottom: -10px;
    margin-right: 20px;
}
.mob_bgdark{
    background-color:#000 !important;
}
.mob_bgdark .text-black{
    color:#fff !important;
}

.f-img-col img{
    height:auto;
}
 .tp-team-2 .tp-team-item {
        margin-bottom: 80px;
        text-align: left;
    }
    
.mob-fs-25{
 font-size: 25px;   
}    
.mob-fs-18{
 font-size: 18px;   
}
.mycontact .form-container{
    border-radius: 10px;
    padding: 30px;
}
.referral h2{
    font-size:25px;
}
.tp-cta-3-info p{
    font-size: 20px;
}
.slocation ul {
    font-size:16px;
}
.whatsapp-button {
    bottom: 50px;
}

.breadcrumb-title {
    font-size: 30px;
}
.tp-copyright-style {
    margin-bottom:60px;
}
.cp-img{
    width:50%;
}
.p-mob-normal{
    font-weight:400;
}

}

.tp-main-logo img{
	width:150px;
	height: auto;
}

/*----------------------------------------*/
/*  7.16 Faq css
/*----------------------------------------*/
.tp-faq-thumb img {
  width: 100%;
  border-radius: 15px;
}
.tp-faq-thumb-icon {
  position: absolute;
  left: 40px;
  bottom: 60px;
}
.tp-faq-thumb-icon a {
  position: relative;
  width: 80px;
  height: 80px;
  font-size: 25px;
  line-height: 80px;
  text-align: center;
  display: inline-block;
  color: var(--tp-common-black);
  background: var(--tp-common-white);
  border-radius: 50%;
  z-index: 2;
}
.tp-faq-thumb-icon a::before {
  width: 60%;
  height: 60%;
}
.tp-faq-thumb-icon a::after {
  width: 45%;
  height: 45%;
}
.tp-faq-thumb-icon.tp-video-btn {
  width: 80px;
  height: 80px;
}
.tp-faq-shape-1 {
  position: absolute;
  bottom: 60px;
  right: 0;
  animation: spin-1 3000ms forwards infinite alternate;
  transform-origin: top right;
}
.tp-faq-service ul li {
  position: relative;
  list-style: none;
  font-weight: 700;
  padding-left: 30px;
  color: var(--tp-common-black);
  margin-bottom: 10px;
}
.tp-faq-service ul li span {
  font-size: 16px;
}
.tp-faq-service ul li i {
  position: absolute;
  color: var(--tp-theme-1);
  top: 7px;
  left: 0;
}
.tp-faq-title-box .tp-section-title {
  font-weight: 800;
  margin-right: -8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-faq-title-box .tp-section-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-faq-title-box .tp-section-title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .tp-faq-title-box .tp-section-title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-faq-title-box .tp-section-title {
    font-size: 32px;
  }
}
.tp-faq-shape {
  position: absolute;
  right: 0;
  bottom: 50px;
}
.tp-faq-content {
  margin-left: 78px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-faq-content {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-faq-accordion-box {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-faq-accordion-box .accordion-buttons {
    font-size: 16px;
  }
}
.tp-faq-action .tp-theme-btn {
  background-color: var(--tp-common-black);
}
@media (max-width: 575px) {
  .tp-faq-action .tp-theme-btn {
    margin-bottom: 20px;
  }
}
.tp-faq-action .tp-theme-btn:hover {
  background-color: var(--tp-theme-1);
}
.tp-faq-action .tp-header-info-item:hover .tp-header-info-title {
  color: var(--tp-theme-1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-faq-1 .tp-slider-1-info-title {
    color: var(--tp-common-black);
  }
}
.tp-faq-2-wrapp {
  margin-left: -30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-faq-2-wrapp {
    margin-left: -38px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-faq-2-wrapp {
    margin: 0;
  }
}
@media (max-width: 575px) {
  .tp-faq-2-title-box .tp-section-title {
    font-size: 40px;
  }
}
.tp-faq-2-call-box {
  position: absolute;
  bottom: 50px;
  left: 50px;
  background-color: white;
  box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.06);
  border-radius: 15px;
}
.tp-faq-2-bg {
  position: absolute;
  top: 0;
  width: 35%;
  height: 100%;
  z-index: -1;
  background-size: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-faq-2-bg {
    display: none;
  }
}
.tp-faq-2-thumb img {
  border-radius: 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: 575px) {
  .tp-faq-2-thumb {
    text-align: center;
    margin-bottom: 40px;
  }
}
.tp-faq-2-shape {
  position: absolute;
  right: 150px;
  left: 0;
  top: -30px;
  width: 24px;
  z-index: -1;
  height: 247px;
  text-align: center;
  margin: auto;
  border-radius: 15px;
  background: var(--tp-grey-1);
  animation: tptranslateY2 3s infinite alternate;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-faq-2-shape {
    display: none;
  }
}
.tp-faq-2 .tp-faq-accordion-box .accordion-icon {
  background: var(--tp-common-black);
}
.tp-faq-2 .tp-faq-accordion-box .accordion-buttons:not(.collapsed) {
  background: var(--tp-common-black);
}
.tp-faq-inner-banner {
  padding: 13px 30px 0 100px;
  border-radius: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-faq-inner-banner {
    padding: 13px 30px 0 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-faq-inner-banner {
    padding: 13px 30px 13px 30px;
  }
}
@media (max-width: 575px) {
  .tp-faq-inner-banner {
    padding: 13px 20px 13px 20px;
  }
}
.tp-faq-inner-banner-shape {
  z-index: 1;
}
.tp-faq-inner-banner-shape-2 {
  position: absolute;
  top: 0;
  z-index: -1;
  animation: rotate2 15s linear infinite;
}
.tp-faq-inner-search input {
  border: 1px solid var(--tp-border-1);
  border-radius: 15px;
}
.tp-faq-inner-search input::placeholder {
  color: var(--tp-text-body);
}
.tp-faq-inner-search input:focus {
  border: 1px solid var(--tp-theme-1);
}
.tp-faq-inner-search-icon {
  position: absolute;
  right: 20px;
  top: 16px;
}
.tp-faq-inner-search-icon button {
  font-size: 24px;
  display: inline-block;
  line-height: 0;
  margin-bottom: 0;
  color: var(--tp-common-black);
}
.tp-faq-inner-thumb {
  border-radius: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-faq-inner-thumb {
    margin-bottom: 30px;
  }
}
.tp-faq-inner-thumb img {
  width: 100%;
  border-radius: 15px;
}
.tp-faq-inner-thumb-title {
  font-size: 30px;
  font-weight: 700;
  position: absolute;
  bottom: 15px;
  left: 30px;
  color: var(--tp-common-white);
}
.tp-faq-inner-thumb::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.349;
  border-radius: 15px;
  content: "";
  background-color: #122432;
}
.tp-faq-inner-accordion {
  margin-left: 80px;
  margin-right: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-faq-inner-accordion {
    margin: 0;
  }
}
.tp-faq-inner-accordion .accordion-buttons {
  color: var(--tp-common-black);
  background: none;
}
.tp-faq-inner-accordion .accordion-items {
  padding: 0;
  margin: 0;
  background: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-faq-inner-accordion .accordion-items p {
    font-size: 14px;
  }
}
.tp-faq-inner-accordion .accordion-header {
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.tp-faq-inner-accordion .accordion-buttons {
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-faq-inner-accordion .accordion-buttons {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .tp-faq-inner-accordion .accordion-buttons {
    padding: 15px 15px 0 0;
  }
}
.tp-faq-inner-accordion .accordion-buttons:not(.collapsed) {
  color: var(--tp-common-black);
  background: none;
}
.tp-faq-inner-accordion .accordion-buttons:not(.collapsed) .accordion-icon {
  background: var(--tp-theme-1);
}
.tp-faq-inner-accordion .accordion-buttons:not(.collapsed) .accordion-icon::before {
  background: var(--tp-common-white);
}
.tp-faq-inner-accordion .accordion-buttons:not(.collapsed) .accordion-icon::after {
  background: var(--tp-common-white);
}
.tp-faq-inner-accordion .accordion-body {
  background: none;
  box-shadow: none;
  padding: 15px 0 0 0;
  margin: 0;
}
.tp-faq-inner-accordion .accordion-icon {
  left: auto;
  right: 30px;
  background: var(--tp-common-black);
}
@media (max-width: 575px) {
  .tp-faq-inner-accordion .accordion-icon {
    right: 0;
  }
}
.tp-faq-inner-accordion .accordion-icon::before {
  right: 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: 575px) {
  .tp-faq-inner-title-box .tp-section-title {
    font-size: 35px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-faq-inner-title-box .tp-section-subtitle {
    margin-bottom: 0;
  }
}


.service-title .sub-title {
	color: var(--tp-theme-1);
	font-weight: 500;
	line-height: 30px;
	font-size: 16px;
	padding:0 15px;
	margin-bottom: 18px;
	display: inline-block;
	text-transform: uppercase;
	border-radius: 30px;
	background: #fff;
	box-shadow: 0 4px 13px 0 #333;
}

.service-title .title {
	color: var(--tp-theme-1);
	font-size: 54px;
	letter-spacing: -0.02em;
	line-height: 64px;
	text-transform: capitalize;
	display: inline-block;
}

.tp-service-thumb img{
    width: 200px;
    height: 205px;
    border-radius: 50%;
}

/*# sourceMappingURL=main.css.map */