@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&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;
}

header {
    background-color: transparent !important;
}

:root {
    --tp-ff-body: 'Manrope',sans-serif;
    --tp-ff-heading: 'Manrope',sans-serif;
    --tp-ff-p: 'Manrope',sans-serif;
    --tp-ff-fontawesome: "Font Awesome 6 Pro";
    --tp-common-white: #ffffff;
    --tp-common-black: #223645;
    --tp-grey-1: #f9f9f9;
    --tp-grey-2: #f5f5f5;
    --tp-text-body: #223645;
    --tp-text-body-2: #9ca6ae;
    --tp-theme-1: #e12454;
    --tp-border-1: #e6e6e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

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;
    margin-bottom: 15px;
    line-height: 1.9;
    font-family: var(--tp-ff-p);
    color: var(--tp-text-body);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

a:focus, .button:focus {
    text-decoration: none;
    outline: none;
}

a:focus, a:hover {
    color: inherit;
    text-decoration: none;
}

a, button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

    button:hover {
        cursor: pointer;
    }

    button:focus {
        outline: 0;
    }

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password], input[type=url], textarea {
    outline: none;
    width: 100%;
    font-size: 14px;
    color: var(--tp-common-black);
    background-color: var(--tp-common-white);
}

    input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
        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 {
        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 {
        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 {
        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 {
        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;
}

.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;
}

.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;
    }
}

.whats-app-icon-float {
    position: fixed;
    right: 50px;
    bottom: 54px;
    /*  height: 44px;
    width: 44px;*/
    cursor: pointer;
    z-index: 500;
}
.phone-app-icon-float {
    position: fixed;
    right: 50px;
    bottom: 108px;
    cursor: pointer;
    z-index: 500;
}

.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;
    }

    .whats-app-icon-float {
        right: 20px;
    }
}

.back-to-top-wrapper.back-to-top-btn-show {
    visibility: visible;
    opacity: 1;
    bottom: 5px;
}

.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);
    }

.tp-theme-btn {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    padding: 17px 41px;
    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;
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tp-theme-btn {
        padding: 17px 35px;
    }
}

.tp-theme-btn.btn-black {
    padding: 11px 41px;
    color: var(--tp-common-white);
    background-color: var(--tp-common-black);
}

    .tp-theme-btn.btn-black:hover {
        color: var(--tp-common-white);
        background-color: var(--tp-theme-1);
    }

.tp-theme-btn.btn-white:hover {
    color: var(--tp-common-black);
    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 {
    color: var(--tp-theme-1);
    background: none;
    border: 1px solid var(--tp-border-1);
}

    .tp-theme-btn.transparent-btn:hover {
        border: 1px solid var(--tp-common-black);
    }

.tp-theme-btn.transparent-btn-2 {
    padding: 10px 40px;
    border: 1px solid #56646f;
    background: none;
    -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.transparent-btn-2:hover {
        border: 1px solid var(--tp-common-white);
        background-color: var(--tp-theme-1);
    }

.tp-theme-btn:hover {
    color: var(--tp-common-white);
    background-color: var(--tp-common-black);
}

.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);
    }

@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;
    }
}

#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: 150px;
    height: 150px;
    line-height: 150px;
    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);
    }
}

.basic-pagination ul li {
    display: inline-block;
    margin-right: 8px;
}

    .basic-pagination ul li a {
        width: 38px;
        height: 38px;
        line-height: 38px;
        text-align: center;
        display: block;
        color: var(--tp-common-black);
        background: var(--tp-grey-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;
    }

        .basic-pagination ul li a:hover {
            color: var(--tp-common-white);
            background: var(--tp-common-black);
        }

        .basic-pagination ul li a .current {
            width: 100%;
            height: 100%;
            border-radius: 200px;
            display: inline-block;
            color: var(--tp-common-white);
            background: 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) {
    .basic-pagination {
        padding-bottom: 80px;
    }
}

.tp-pagination-number span {
    width: 60px;
    height: 60px;
    font-size: 18px;
    font-weight: 700;
    line-height: 60px;
    display: block;
    opacity: 1;
    text-align: center;
    color: var(--tp-common-white);
    background: transparent;
}

    .tp-pagination-number span.swiper-pagination-bullet-active {
        background: #030024;
    }

.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);
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}

    .nice-select:hover {
        border-color: #dbdbdb;
    }

    .nice-select:active, .nice-select.open, .nice-select:focus {
        border-color: #999;
    }

    .nice-select::after {
        position: absolute;
        content: "\f107";
        top: 50%;
        right: 0;
        font-family: var(--tp-ff-fontawesome);
        color: var(--tp-common-black);
        font-weight: 500;
        pointer-events: none;
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        margin-top: 0;
        transform-origin: center;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .nice-select.open::after {
        -webkit-transform: translateY(-50%) rotate(-180deg);
        -moz-transform: translateY(-50%) rotate(-180deg);
        -ms-transform: translateY(-50%) rotate(-180deg);
        -o-transform: translateY(-50%) rotate(-180deg);
        transform: translateY(-50%) rotate(-180deg);
    }

    .nice-select.open .list {
        opacity: 1;
        pointer-events: auto;
        -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }

    .nice-select.disabled {
        border-color: #ededed;
        color: #999;
        pointer-events: none;
    }

        .nice-select.disabled::after {
            border-color: #cccccc;
        }

    .nice-select.wide {
        width: 100%;
    }

        .nice-select.wide .list {
            left: 0 !important;
            right: 0 !important;
        }

    .nice-select.right {
        float: right;
    }

        .nice-select.right .list {
            left: auto;
            right: 0;
        }

    .nice-select.small {
        font-size: 12px;
        height: 36px;
        line-height: 34px;
    }

        .nice-select.small::after {
            height: 4px;
            width: 4px;
        }

        .nice-select.small .option {
            line-height: 34px;
            min-height: 34px;
        }

    .nice-select .list {
        background-color: var(--tp-common-white);
        border-radius: 5px;
        box-shadow: 0 0 0 1px rgba(68,68,68,0.11);
        box-sizing: border-box;
        margin-top: 4px;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        pointer-events: none;
        position: absolute;
        top: 100%;
        right: 0;
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
        transform: scale(0.75) translateY(-21px);
        -webkit-transition: all 0.2s cubic-bezier(0.5,0,0,1.25),opacity 0.15s ease-out;
        transition: all 0.2s cubic-bezier(0.5,0,0,1.25),opacity 0.15s ease-out;
        z-index: 9;
    }

@media (max-width:575px) {
    .nice-select .list {
        right: -30px;
    }
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    color: var(--tp-common-black);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

    .nice-select .option.selected {
        font-weight: bold;
    }

    .nice-select .option.disabled {
        background-color: transparent;
        color: #999;
        cursor: default;
    }

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

.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;
}

.breadcrumb-plr {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .breadcrumb-plr {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.breadcrumb-bg {
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

@media (max-width:575px) {
    .breadcrumb-bg {
        background-position: center;
    }
}

.breadcrumb-overlay::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0px;
    opacity: 0.4;
    content: "";
    background-color: #081d2d;
}

.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;
    }
}

.tp-faq-accordion-box .accordion-items {
    position: relative;
    margin-bottom: 20px;
}

.tp-faq-accordion-box .accordion-header {
    border-radius: 15px;
    background-color: white;
    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: white;
    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;
    }

@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 .accordion-body p br {
        display: none;
    }
}

.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;
}

.tp-section-title {
    font-size: 24px;
    display: inline-block;
    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: 700;
    font-size: 30px;
    display: block;
    color: var(--tp-theme-1);
    margin-bottom: 15px;
}

    .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;
    }

.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 {
            color: rgba(255,255,255,0.5);
            font-size: 24px;
        }

        .search-input input::-moz-placeholder {
            color: rgba(255,255,255,0.5);
            font-size: 24px;
        }

        .search-input input:-moz-placeholder {
            color: rgba(255,255,255,0.5);
            font-size: 24px;
        }

        .search-input input:-ms-input-placeholder {
            color: rgba(255,255,255,0.5);
            font-size: 24px;
        }

        .search-input input::placeholder {
            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-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    width: 100%;
    z-index: 99;
    visibility: visible;
    background-color: transparent;
    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;
}

.header-sticky-bg {
    background-color: white !important;
}

.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: 10px;
}

.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;
    }
}

.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: 8px;
}

@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: 8px 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-header-style-2 .tp-header-bottom-btn .tp-theme-btn {
        padding: 12px 16px;
    }
}

.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-theme-1);
    }

        .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: 15px;
    }
}

.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: 14px;
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tp-header-style-2 .tp-main-menu > nav > ul > li {
        margin-right: 9px;
    }
}

.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;
    }
}

.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: 46px;
}

    .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;
}

    .tp-header-style-3 .tp-header-info-social a {
        margin-right: -4px;
        position: relative;
        padding: 14px 10px;
    }

        .tp-header-style-3 .tp-header-info-social a::before, .tp-header-style-3 .tp-header-info-social a::after {
            position: absolute;
            width: 1px;
            height: 100%;
            left: 0;
            top: 0;
            content: "";
            background-color: #2e4352;
        }

        .tp-header-style-3 .tp-header-info-social a::after {
            left: auto;
            right: 0;
        }

@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: 36px;
}

.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;
    }
}

.tp-main-menu > nav > ul > li {
    position: relative;
    display: inline-block;
    margin-right: 9px;
}

@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: 10px;
    }
}

.tp-main-menu > nav > ul > li:hover > a {
    color: 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: 600;
    padding: 16px 0;
    display: block;
    color: 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-main-menu > nav > ul > li > a.active {
        color: var(--tp-theme-1);
    }

.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-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);
    }

.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:hover {
                color: var(--tp-common-black);
            }

        .tp-offcanvas-menu ul li:not(:last-child) > a {
            border-bottom: 1px solid rgba(1,15,28,0.1);
        }

        .tp-offcanvas-menu ul li.active > a {
            color: var(--tp-theme-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;
    }

@media only screen and (min-width:992px) and (max-width:1199px),only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .postbox-wrapper {
        padding-right: 0;
    }
}

.postbox-item {
    margin-bottom: 80px;
}

    .postbox-item:last-child {
        margin-bottom: 0;
    }

.postbox-thumb {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

    .postbox-thumb img {
        width: 100%;
        border-radius: 15px;
    }

    .postbox-thumb span {
        position: absolute;
        right: 0;
        bottom: 0;
        padding: 10px 18px;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        background: var(--tp-theme-1);
        color: var(--tp-common-white);
        border-radius: 15px 0 15px 0;
    }

.postbox-meta-content span {
    font-size: 16px;
}

@media (max-width:575px) {
    .postbox-meta-content span {
        font-size: 13px;
    }
}

.postbox-meta-icon {
    font-size: 18px;
    margin-right: 8px;
    color: var(--tp-theme-1);
}

.postbox-title {
    font-size: 36px;
    font-weight: 800;
    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:992px) and (max-width:1199px),only screen and (min-width:768px) and (max-width:991px),(max-width:575px) {
    .postbox-title {
        font-size: 28px;
    }
}

.postbox-title:hover {
    color: var(--tp-theme-1);
}

.postbox-video {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    margin: auto;
}

    .postbox-video a {
        font-size: 22px;
        width: 80px;
        height: 80px;
        line-height: 80px;
        text-align: center;
        display: inline-block;
        color: var(--tp-common-black);
        background: var(--tp-common-white);
        border-radius: 50%;
    }

.postbox-text p {
    margin-bottom: 30px;
}

.postbox-read-more a {
    border-radius: 15px;
}

.postbox-details-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--tp-common-black);
}

.postbox-details-list-thumb {
    margin-right: 30px;
}

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .postbox-details-list-thumb {
        margin-bottom: 30px;
    }
}

.postbox-details-list-thumb img {
    border-radius: 15px;
}

.postbox-details-list ul li {
    list-style: none;
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    color: var(--tp-common-black);
}

    .postbox-details-list ul li:last-child {
        margin-bottom: 0;
    }

    .postbox-details-list ul li i {
        position: absolute;
        left: 0;
        top: 5px;
    }

.postbox-details-tag-title {
    font-size: 22px;
    font-weight: 700;
    margin-right: 30px;
    color: var(--tp-common-black);
}

.postbox-details-tag a {
    border-radius: 30px !important;
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .postbox-details-tag-content {
        margin-bottom: 10px;
    }
}

.postbox-details-social a {
    width: 38px;
    height: 38px;
    font-size: 16px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--tp-common-black);
    background: 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;
}

    .postbox-details-social a:last-child {
        margin-right: 0;
    }

    .postbox-details-social a:hover {
        color: var(--tp-common-white);
        background: var(--tp-common-black);
    }

.postbox-details-share {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--tp-border-1);
}

.postbox-comment-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--tp-common-black);
}

@media (max-width:575px) {
    .postbox-comment-title {
        font-size: 30px;
    }
}

.postbox-comment ul li {
    list-style: none;
}

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .postbox-comment ul li.children {
        margin-left: 0;
    }
}

.postbox-comment-avater {
    flex: 0 0 auto;
}

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .postbox-comment-avater {
        margin-right: 20px;
    }
}

@media (max-width:575px) {
    .postbox-comment-avater {
        margin-bottom: 20px;
    }
}

.postbox-comment-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--tp-common-black);
}

.postbox-comment-reply a {
    font-size: 14px;
    font-weight: 700;
    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;
}

    .postbox-comment-reply a:hover {
        color: var(--tp-theme-1);
    }

.postbox-comment-box {
    padding-bottom: 50px;
    margin-bottom: 30px;
    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) {
    .postbox-comment-from {
        margin-bottom: 40px;
    }
}

.rc-post {
    padding: 15px;
    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;
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .rc-post {
        padding: 6px 10px;
    }
}

.rc-post:hover {
    background: var(--tp-common-white);
    box-shadow: 0px 6px 40px 0px rgba(0,0,0,0.06);
}

.rc-post-thumb {
    margin-right: 15px;
    flex: 0 0 auto;
}

    .rc-post-thumb a img {
        width: 70px;
        height: 72px;
        border-radius: 15px;
    }

.rc-post-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-black);
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .rc-post-title {
        font-size: 14px;
    }
}

.rc-meta {
    margin-bottom: 5px;
}

    .rc-meta i {
        font-size: 16px;
        color: var(--tp-theme-1);
        margin-right: 10px;
    }

.sidebar-widget {
    padding: 50px;
    background: var(--tp-grey-1);
    border-radius: 15px;
}

    .sidebar-widget:not(:last-child) {
        margin-bottom: 30px;
    }

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .sidebar-widget {
        padding: 40px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .sidebar-widget {
        padding: 30px;
    }
}

@media (max-width:575px) {
    .sidebar-widget {
        padding: 20px;
    }
}

.sidebar-widget-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
}

.sidebar-widget-rc {
    padding: 30px;
}

@media (max-width:575px) {
    .sidebar-widget-rc {
        padding: 20px;
    }
}

.sidebar-widget-content ul li {
    position: relative;
    display: block;
}

    .sidebar-widget-content ul li a {
        font-size: 16px;
        font-weight: 700;
        padding: 20px 30px;
        color: var(--tp-common-black);
        display: 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;
        border-radius: 15px;
    }

        .sidebar-widget-content ul li a i {
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
        }

        .sidebar-widget-content ul li a:hover {
            color: var(--tp-theme-1);
            background: var(--tp-common-white);
            box-shadow: 0px 4px 20px 0px rgba(30,22,22,0.06);
        }

.sidebar-search-input {
    position: relative;
}

    .sidebar-search-input input {
        border: 0;
        height: 58px;
        border: 1px solid transparent;
        border-radius: 15px;
    }

        .sidebar-search-input input::placeholder {
            color: #768a9e;
        }

    .sidebar-search-input button {
        position: absolute;
        right: 0;
        width: 58px;
        height: 58px;
        font-size: 16px;
        line-height: 58px;
        text-align: center;
        color: var(--tp-common-white);
        background: var(--tp-theme-1);
        border-radius: 0 15px 15px 0;
    }

.tagcloud a {
    font-size: 14px;
    padding: 5px 13px;
    border-radius: 15px;
    margin-right: 8px;
    margin-bottom: 10px;
    display: inline-block;
    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;
}

    .tagcloud a:hover {
        color: var(--tp-common-white);
        background-color: var(--tp-theme-1);
        border: 1px solid var(--tp-theme-1);
    }

@media (max-width:575px) {
    .tp-blog-title-box .tp-section-title {
        font-size: 23px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-blog-title-box .tp-section-title {
        font-size: 35px;
    }
}

.tp-blog-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    display: inline;
    color: var(--tp-common-white);
}

.tp-blog-item {
    position: relative;
    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-blog-item {
        margin-bottom: 70px;
    }
}

.tp-blog-item:hover .tp-blog-meta {
    background: var(--tp-theme-1);
}

.tp-blog-item:hover .tp-blog-meta-date {
    color: var(--tp-common-white);
}

.tp-blog-item:hover .tp-blog-meta-action {
    color: var(--tp-common-white);
}

.tp-blog-item:hover .tp-blog-thumb img {
    transform: scale(1.2);
}

.tp-blog-thumb {
    overflow: hidden;
    border-radius: 15px;
}

    .tp-blog-thumb img {
        width: 100%;
        border-radius: 15px;
        transition: 1.3s;
    }

.tp-blog-categories {
    position: absolute;
    top: 30px;
    left: 30px;
    font-weight: 700;
    font-size: 14px;
    padding: 5px 22px;
    border-radius: 30px;
    display: inline-block;
    color: var(--tp-common-black);
    background: var(--tp-common-white);
}

.tp-blog-dsc {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 310px;
    text-align: center;
    display: inline-block;
    padding: 25px 0 30px 0;
    background: var(--tp-common-black);
    margin: auto;
    border-radius: 15px 15px 0 0;
}

.tp-blog-meta {
    position: absolute;
    width: 310px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px 30px;
    margin: auto;
    background: #f9f9f9;
    border-radius: 0 0 15px 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-blog-meta-date {
    border-right: 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-blog-meta-date span {
        font-weight: 500;
        padding: 0 50px 0 0;
        margin: 0;
    }

.tp-blog-meta-action {
    font-weight: 700;
    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-blog-2-item {
    overflow: hidden;
    border-radius: 15px;
    background: var(--tp-common-white);
    background-color: white;
    box-shadow: 0px 0px 60px 0px rgba(32,33,82,0.08);
    -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-blog-2-item {
        margin-bottom: 20px;
    }
}

.tp-blog-2-item:hover .tp-blog-2-thumb img {
    transform: scale(1.1);
}

.tp-blog-2-thumb {
    overflow: hidden;
}

    .tp-blog-2-thumb img {
        width: 100%;
        transition: 1.3s;
    }

.tp-blog-2-avater-thumb {
    margin-right: 10px;
}

    .tp-blog-2-avater-thumb img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

.tp-blog-2-avater-title {
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    color: var(--tp-common-black);
    margin-bottom: 0;
}

    .tp-blog-2-avater-title span {
        color: var(--tp-border-1);
        margin-bottom: 0;
    }

.tp-blog-2-meta-box {
    position: relative;
    padding: 10px 25px;
    border-radius: 15px 15px 0 0;
    background: var(--tp-common-white);
}

    .tp-blog-2-meta-box::after {
        position: absolute;
        bottom: -20px;
        left: 35px;
        width: 20px;
        height: 20px;
        content: "";
        z-index: 2;
        clip-path: polygon(100% 0,0 0,47% 100%);
        background: var(--tp-common-white);
    }

.tp-blog-2-meta-icon {
    font-size: 18px;
    font-weight: 700;
    color: var(--tp-common-black);
}

    .tp-blog-2-meta-icon i {
        color: var(--tp-theme-1);
        margin-right: 5px;
    }

.tp-blog-2-content {
    padding: 22px 32px 30px 32px;
}

@media (max-width:575px) {
    .tp-blog-2-content {
        padding: 20px;
    }
}

.tp-blog-2-title {
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    line-height: 1.4;
    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 (max-width:575px) {
    .tp-blog-2-title {
        font-size: 20px;
    }
}

.tp-blog-2-title:hover {
    color: var(--tp-theme-1);
}

@media (max-width:575px) {
    .tp-blog-2-title-box .tp-section-title {
        font-size: 23px;
    }
}

.tp-blog-2-action a {
    display: flex;
    font-size: 16px;
    font-weight: 700;
    padding: 7px 30px;
    border-radius: 15px;
    align-items: center;
    color: var(--tp-common-black);
    justify-content: space-between;
    background: 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-blog-2-action a:hover {
        color: var(--tp-common-white);
        background-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),only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-blog-3-wrapp .row [class*=col-]:last-child .tp-blog-item {
        margin-bottom: 0;
    }
}

.tp-blog-3-plr {
    padding-top: 100px;
    padding-bottom: 305px;
}

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-blog-3-plr {
        padding-bottom: 220px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px),only screen and (min-width:768px) and (max-width:991px) {
    .tp-blog-3 .tp-blog-title-box {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tp-blog-3 .tp-blog-item {
        margin-bottom: 200px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px),(max-width:575px) {
    .tp-blog-3 .tp-blog-item {
        margin-bottom: 150px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-blog-3 .tp-blog-item {
        margin-bottom: 220px;
    }
}

.tp-blog-3 .tp-blog-item:hover .tp-blog-meta {
    background: none;
}

.tp-blog-3 .tp-blog-dsc {
    width: 330px;
    text-align: left;
    padding: 25px 25px 25px 25px;
    background: var(--tp-common-white);
    background-color: white;
    box-shadow: 0px 0px 40px 0px rgba(24,11,47,0.04);
    bottom: -50%;
    border-radius: 15px;
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-blog-3 .tp-blog-dsc {
        width: 88%;
        bottom: -30%;
    }
}

@media (max-width:575px) {
    .tp-blog-3 .tp-blog-dsc {
        bottom: -40%;
    }
}

.tp-blog-3 .tp-blog-dsc h4 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 28px;
    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-blog-3 .tp-blog-dsc h4:hover {
        color: var(--tp-theme-1);
    }

.tp-blog-3 .tp-blog-meta {
    position: static;
    width: auto;
    padding: 0;
    background: none;
    margin-bottom: 13px;
}

.tp-blog-3 .tp-blog-meta-date {
    border: 0;
}

    .tp-blog-3 .tp-blog-meta-date span {
        font-weight: 700;
        padding: 0 25px 0 0;
        color: var(--tp-theme-1);
    }

.tp-blog-3 .tp-blog-meta-cate {
    position: relative;
}

    .tp-blog-3 .tp-blog-meta-cate::before {
        position: absolute;
        width: 6px;
        height: 6px;
        top: 50%;
        transform: translateY(-50%);
        left: -5px;
        content: "";
        border-radius: 50%;
        background: #768a9e;
    }

    .tp-blog-3 .tp-blog-meta-cate span {
        font-weight: 500;
        margin-left: 22px;
    }

.tp-blog-3 .tp-blog-action span {
    font-weight: 700;
    font-size: 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-blog-3 .tp-blog-action span i {
        margin-left: 6px;
    }

    .tp-blog-3 .tp-blog-action span:hover {
        color: var(--tp-theme-1);
    }

        .tp-blog-3 .tp-blog-action span:hover i {
            animation: tp-arrow 0.2s linear;
        }

@media only screen and (min-width:768px) and (max-width:991px) {
    .tp-blog-4-title-box .tp-section-title {
        font-size: 45px;
    }
}

@media (max-width:575px) {
    .tp-blog-4-title-box .tp-section-title {
        font-size: 24px;
    }
}

.tp-blog-4-meta {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

    .tp-blog-4-meta span {
        font-weight: 700;
        display: block;
        font-size: 18px;
        line-height: 1.2;
        text-align: center;
        border-radius: 15px;
        padding: 10px 16px 12px 16px;
        color: var(--tp-common-black);
        background: var(--tp-common-white);
        margin-bottom: 0;
    }

.tp-blog-4 .tp-blog-2-title {
    -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-blog-4 .tp-blog-2-title {
        font-size: 20px;
    }
}

.tp-blog-4 .tp-blog-2-title:hover {
    color: var(--tp-theme-1);
}

.tp-blog-4 .tp-blog-2-action a:hover {
    color: var(--tp-common-white);
    background-color: var(--tp-common-black);
}

.tp-blog-5-item {
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 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-blog-5-item:hover {
        background-color: white;
        box-shadow: 0px 0px 40px 0px rgba(34,35,63,0.08);
    }

        .tp-blog-5-item:hover .tp-blog-5-thumb img {
            transform: scale(1.2);
        }

.tp-blog-5-thumb {
    margin-right: 30px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

@media (max-width:575px) {
    .tp-blog-5-thumb {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.tp-blog-5-thumb img {
    width: 180px;
    height: 146px;
    border-radius: 15px;
    transition: 1s;
}

@media (max-width:575px) {
    .tp-blog-5-thumb img {
        width: 100%;
        height: auto;
    }
}

.tp-blog-5-cate {
    font-weight: 700;
    font-size: 14px;
    padding: 0 10px;
    margin-bottom: 15px;
    border-radius: 15px;
    display: inline-block;
    color: var(--tp-text-body-2);
    border: 1px solid var(--tp-border-1);
}

.tp-blog-5-meta {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    margin-right: 40px;
    color: var(--tp-text-body-2);
}

    .tp-blog-5-meta::after {
        position: absolute;
        width: 2px;
        height: 12px;
        top: 50%;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
        content: "";
        transform: translateY(-50%);
        background: var(--tp-text-body);
    }

.tp-blog-5 .tp-blog-2-title {
    display: block;
}

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-blog-inner {
        padding-bottom: 210px;
    }
}

.tp-blog-inner .tp-blog-item {
    margin-bottom: 195px;
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-blog-inner .tp-blog-dsc {
        bottom: -20%;
    }
}

.tp-blog-details-blockquote {
    position: relative;
    padding: 40px 48px 40px 100px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0px 0px 60px 0px rgba(67,61,79,0.06);
}

@media (max-width:575px) {
    .tp-blog-details-blockquote {
        padding: 40px 20px;
    }
}

.tp-blog-details-blockquote p {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--tp-common-black);
}

@media only screen and (min-width:992px) and (max-width:1199px),only screen and (min-width:768px) and (max-width:991px) {
    .tp-blog-details-blockquote p {
        font-size: 17px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-blog-details-blockquote p {
        font-size: 16px;
    }
}

.tp-blog-details-blockquote .quote-icon {
    position: absolute;
    font-size: 36px;
    left: 50px;
    top: 45px;
    color: var(--tp-theme-1);
}

@media (max-width:575px) {
    .tp-blog-details-blockquote .quote-icon {
        left: 10px;
        top: 20px;
    }
}

.tp-blog-details-blockquote .blockquote-info {
    position: relative;
    font-size: 14px;
    padding-left: 30px;
}

    .tp-blog-details-blockquote .blockquote-info::before {
        position: absolute;
        width: 15px;
        height: 2px;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        content: "";
        background: #768a9e;
    }

.tp-blog-details-blockquote blockquote {
    margin-bottom: 0;
}

.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: #9ca6ae;
    }

.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: #9ca6ae;
    -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: #9ca6ae;
        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: #9ca6ae;
    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;
}

.tp-copyright-style-3 .tp-copyright-text p {
    color: var(--tp-text-body-2);
    margin-bottom: 0;
}

    .tp-copyright-style-3 .tp-copyright-text p a {
        color: var(--tp-text-body-2);
    }

.tp-copyright-style-3 .tp-copyright-privacy a {
    font-size: 16px;
    font-weight: 600;
    margin-right: 35px;
    color: var(--tp-text-body-2);
}

    .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-white);
    }

.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;
    }
}

@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 {
        width: 34px;
        height: 34px;
        line-height: 34px;
        text-align: center;
        display: inline-block;
        border-radius: 50%;
        background: #2f4454;
        -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 a:hover {
            color: var(--tp-common-black);
            background: var(--tp-common-white);
        }

.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);
    display: inline-block;
}

    .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;
    }
}

.tp-slider-overlay::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    content: "";
    background-color: #030024;
}

@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;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .tp-slider-1-plr {
        padding-top: 180px;
        padding-bottom: 180px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-slider-1-plr {
        padding-top: 140px;
        padding-bottom: 140px;
    }
}

@media (max-width:575px) {
    .tp-slider-1-plr {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.tp-slider-1 .tp-slider-overlay::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    content: "";
    background-color: #030024;
    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: 70px;
    line-height: 1;
    letter-spacing: -2px;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .tp-slider-1-title {
        font-size: 70px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-slider-1-title {
        font-size: 55px;
        color: var(--tp-common-white);
    }
}

@media (max-width:575px) {
    .tp-slider-1-title {
        font-size: 35px;
        color: var(--tp-common-white);
    }
}

.tp-slider-1-title span {
    color: var(--tp-theme-1);
}

.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 3000ms ease;
}

.tp-slider-1-active .swiper-slide-active .tp-slider-1-action-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: all 3000ms ease;
}

.tp-slider-1-active .swiper-slide-active .tp-slider-1-shape-1 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: all 3000ms ease;
}

.tp-slider-1-active .swiper-slide-active .tp-slider-2-shape-2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    transition: all 3000ms ease;
}

.tp-slider-1-active .swiper-slide-active .tp-slider-5-cta {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    transition: all 3000ms 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;
}

.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 {
    width: 16px;
    height: 16px;
    border: 2px solid;
    background: no-repeat;
    -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;
    margin-left: 5px;
    margin-right: 5px;
}

    .tp-slider-2 .tp-pagination-dots span.swiper-pagination-bullet-active {
        border: 2px solid var(--tp-theme-1);
        background: var(--tp-theme-1);
    }

.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: 0;
}

.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-white);
}

@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;
    }

.tp-slider-3 .tp-slider-1-plr {
    padding-top: 250px;
    padding-bottom: 404px;
}

@media only screen and (min-width:992px) and (max-width:1199px),only screen and (min-width:768px) and (max-width:991px) {
    .tp-slider-3 .tp-slider-1-plr {
        padding-top: 160px;
        padding-bottom: 230px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-slider-3 .tp-slider-1-plr {
        padding-top: 100px;
        padding-bottom: 180px;
    }
}

@media (max-width:575px) {
    .tp-slider-3 .tp-slider-1-plr {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-slider-3 .tp-slider-1-bg {
        display: block;
    }
}

.tp-slider-3 .tp-slider-1-title {
    font-size: 90px;
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tp-slider-3 .tp-slider-1-title {
        font-size: 80px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .tp-slider-3 .tp-slider-1-title {
        font-size: 75px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-slider-3 .tp-slider-1-title {
        font-size: 55px;
    }
}

@media (max-width:575px) {
    .tp-slider-3 .tp-slider-1-title {
        font-size: 36px;
    }
}

@media (max-width:575px) {
    .tp-slider-3 .tp-slider-1-action-box a {
        margin-right: 0;
    }
}

.tp-slider-3 .tp-slider-1-action-box a:not(:last-child) {
    background-color: var(--tp-common-black);
    color: var(--tp-common-white);
}

    .tp-slider-3 .tp-slider-1-action-box a:not(:last-child):hover {
        color: var(--tp-common-black);
        background-color: var(--tp-common-white);
    }

.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%;
}

.tp-slider-5 .tp-slider-1-title {
    font-size: 90px;
    letter-spacing: -3px;
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-slider-5 .tp-slider-1-title {
        font-size: 60px;
    }
}

@media (max-width:575px) {
    .tp-slider-5 .tp-slider-1-title {
        font-size: 42px;
        letter-spacing: -2px;
    }
}

@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;
    left: 50%;
    /*right: 3%;*/
    z-index: 9;
    transform: translateY(-50%);
    background: white;
    border-radius: 20px;
    padding: 3px;
    bottom: 10%;
    display: flex; /* Use flexbox to arrange children horizontally */
    gap: 13px;
}

@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%);
    right: 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 {
        right: 30px;
    }
}

.tp-hero-1-title-box .tp-slider-1-title {
    color: var(--tp-common-black);
    margin-right: -32px;
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tp-hero-1-title-box .tp-slider-1-title {
        font-size: 70px;
        margin-right: 0;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tp-hero-1-title-box .tp-slider-1-title {
        font-size: 50px;
        margin-right: 0;
    }
}

.tp-hero-1-title-box p {
    color: #7a8a9e;
}

@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-hero-1-title-box p br {
        display: none;
    }
}

.tp-hero-1-shape-1 {
    position: absolute;
    left: 0;
    bottom: 100px;
    z-index: 2;
    animation: moving 5s linear infinite;
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tp-hero-1-shape-1 {
        bottom: 30px;
    }
}

.tp-hero-1-plr {
    padding-top: 230px;
    padding-bottom: 230px;
}

@media only screen and (min-width:992px) and (max-width:1199px),only screen and (min-width:768px) and (max-width:991px) {
    .tp-hero-1-plr {
        padding-top: 160px;
        padding-bottom: 160px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-hero-1-plr {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

@media (max-width:575px) {
    .tp-hero-1-plr {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.tp-hero-1-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.tp-hero-1-thumb-box {
    top: 80px;
    right: -15%;
    z-index: 2;
}

@media only screen and (min-width:1400px) and (max-width:1599px),only screen and (min-width:1200px) and (max-width:1399px) {
    .tp-hero-1-thumb-box {
        right: -11%;
        transform: scale(0.8);
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tp-hero-1-thumb-box {
        top: 0;
        right: -6%;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tp-hero-1-thumb-box {
        top: 0;
        right: -10%;
        transform: scale(0.7);
    }
}

.tp-hero-1-thumb img {
    max-width: inherit;
}

.tp-hero-1-thumb-shape-box .thumb-shape-1 {
    position: absolute;
    top: 70px;
    left: -15px;
    animation: tpswing 1s forwards infinite alternate;
}

.tp-hero-1-thumb-shape-box .thumb-shape-2 {
    position: absolute;
    bottom: 100px;
    left: -100px;
    animation: spin-1 3000ms forwards infinite alternate;
    transform-origin: bottom left;
}

.tp-hero-1-thumb-shape-box .thumb-shape-3 {
    position: absolute;
    top: 20px;
    right: -16px;
    z-index: -1;
    animation: zoom 7s infinite;
    transform-origin: bottom center;
}

.tp-hero-1-thumb-shape-box .thumb-shape-4 {
    position: absolute;
    bottom: 100px;
    right: -110px;
    animation: spin-1 3000ms forwards infinite alternate;
    transform-origin: top right;
}

@media only screen and (min-width:1600px) and (max-width:1700px),only screen and (min-width:1400px) and (max-width:1599px),only screen and (min-width:1200px) and (max-width:1399px),only screen and (min-width:992px) and (max-width:1199px) {
    .tp-hero-1-thumb-shape-box .thumb-shape-4 {
        display: none;
    }
}

@media (max-width:575px) {
    .tp-hero-1-action-box a {
        margin-bottom: 30px;
    }
}

.tp-hero-1-action-box .tp-slider-1-info-title {
    color: var(--tp-common-black);
}

.tp-featured-shape {
    position: absolute;
    right: 0;
    bottom: -18px;
    animation: moving 3s infinite;
}

.tp-featured-item {
    position: relative;
    overflow: hidden;
    background: #344755;
    border-radius: 15px;
    z-index: 2;
}

    .tp-featured-item::before {
        position: absolute;
        width: 100%;
        height: 100%;
        bottom: -98%;
        left: 0;
        content: "";
        background: var(--tp-theme-1);
        z-index: -2;
        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-featured-item a {
        padding: 30px 45px;
        display: inline-block;
    }

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-featured-item a {
        padding: 30px 19px;
    }
}

.tp-featured-item:hover .tp-featured-icon {
    background: #d41445;
}

    .tp-featured-item:hover .tp-featured-icon span {
        color: var(--tp-common-white);
    }

.tp-featured-item:hover::before {
    bottom: 0;
}

.tp-featured-icon {
    width: 120px;
    height: 120px;
    line-height: 125px;
    display: inline-block;
    border-radius: 50%;
    background: var(--tp-common-black);
    margin-bottom: 25px;
    -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-featured-icon span {
        font-size: 50px;
        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-featured-title {
    font-weight: 700;
    font-size: 20px;
    color: var(--tp-common-white);
}

@media only screen and (min-width:1200px) and (max-width:1399px),only screen and (min-width:576px) and (max-width:767px) {
    .tp-featured-title {
        font-size: 18px;
    }
}

.tp-featured-text p {
    font-weight: 500;
    color: var(--tp-common-white);
}

    .tp-featured-text p a {
        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-featured-text p a:hover {
            color: var(--tp-common-white);
        }

    .tp-featured-text p img {
        margin-top: -4px;
    }

.tp-featured-2-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.tp-featured-2-item {
    padding: 20px;
    position: relative;
    border-radius: 15px;
    background-color: #d4dfed !important;
    -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-featured-2-item:last-child {
        background: var(--tp-theme-1);
    }

        .tp-featured-2-item:last-child .tp-featured-2-icon {
            color: var(--tp-common-black);
            background-color: var(--tp-common-white);
        }

        .tp-featured-2-item:last-child .tp-featured-2-action a {
            color: var(--tp-theme-1);
            background-color: var(--tp-common-white);
        }

            .tp-featured-2-item:last-child .tp-featured-2-action a:hover {
                color: var(--tp-common-white);
                background-color: var(--tp-common-black);
            }*/

@media (max-width:575px) {
    .tp-featured-2-item {
        padding: 25px;
    }
}

.tp-featured-2-icon {
    width: 80px;
    height: 80px;
    flex: 0 0 auto;
    font-size: 40px;
    line-height: 85px;
    text-align: center;
    border-radius: 50%;
    margin-right: 30px;
    color: var(--tp-common-white);
    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 (max-width:575px) {
    .tp-featured-2-icon {
        margin-bottom: 30px;
    }
}

.tp-featured-2-title {
    font-size: 24px;
    font-weight: 700;
    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-featured-2-content p {
    margin-right: 10px;
    margin-bottom: 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 only screen and (min-width:1200px) and (max-width:1399px) {
    .tp-featured-2-content p {
        margin-right: 0;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tp-featured-2-content p {
        margin-right: 60px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-featured-2-content p {
        font-size: 14px;
        margin-right: 10px;
    }
}

.tp-featured-2-btn {
    font-size: 14px;
    font-weight: 700;
    padding: 7px 24px;
    border-radius: 50px;
    display: inline-block;
    color: var(--tp-common-white);
    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-featured-2-btn:hover {
        color: var(--tp-common-white);
        background-color: var(--tp-theme-1);
    }

.tp-featured-3-shape {
    position: absolute;
    left: 80px;
    bottom: 40px;
    animation: spin-1 3000ms forwards infinite alternate;
    transform-origin: bottom right;
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
    .tp-featured-3-shape {
        left: 20px;
    }
}

.tp-featured-3-wrapp {
    position: relative;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0px 0px 60px 0px rgba(34,35,63,0.06);
}

    .tp-featured-3-wrapp ul {
        list-style: none;
        text-align: center;
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }

@media (max-width:575px) {
    .tp-featured-3-wrapp ul {
        display: block;
    }
}

.tp-featured-3-wrapp ul li {
    border: 1px solid var(--tp-border-1);
}

@media (max-width:575px) {
    .tp-featured-3-wrapp ul li {
        margin-top: -1px;
    }
}

.tp-featured-3-wrapp ul li:nth-child(n+1) {
    border-bottom: none;
}

@media (max-width:575px) {
    .tp-featured-3-wrapp ul li:nth-child(n+1) {
        border: 1px solid var(--tp-border-1);
    }
}

.tp-featured-3-wrapp ul li:nth-child(n) {
    border-left: none;
}

@media (max-width:575px) {
    .tp-featured-3-wrapp ul li:nth-child(n) {
        border: 1px solid var(--tp-border-1);
    }
}

.tp-featured-3-wrapp ul li:nth-child(-n+2) {
    border-top: none;
}

@media (max-width:575px) {
    .tp-featured-3-wrapp ul li:nth-child(-n+2) {
        border: 1px solid var(--tp-border-1);
    }
}

.tp-featured-3-wrapp ul li:nth-child(2n) {
    border-right: none;
}

@media (max-width:575px) {
    .tp-featured-3-wrapp ul li:nth-child(2n) {
        border: 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-featured-3-wrapp {
        margin-bottom: 40px;
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tp-featured-3-content-wrapp {
        margin-left: 30px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),only screen and (min-width:768px) and (max-width:991px),only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-featured-3-content-wrapp {
        margin-left: 0;
    }
}

.tp-featured-3-mid-icon {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    text-align: center;
    transform: translateY(-50%);
}

    .tp-featured-3-mid-icon span {
        width: 30px;
        height: 30px;
        line-height: 28px;
        text-align: center;
        border-radius: 50%;
        display: inline-block;
        color: var(--tp-common-black);
        background: var(--tp-grey-1);
    }

.tp-featured-3-action a {
    width: 100%;
    text-align: center;
}

.tp-featured-3-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    transition: 0.3s;
}

.tp-featured-3-title-box .tp-section-title {
    font-weight: 700;
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tp-featured-3-title-box .tp-section-title {
        font-size: 44px;
    }
}

@media (max-width:575px) {
    .tp-featured-3-title-box .tp-section-title {
        font-size: 30px;
    }
}

.tp-featured-3-title:hover {
    color: var(--tp-theme-1);
}

.tp-featured-3-list p {
    line-height: 1.6;
}

.tp-featured-3-item {
    padding: 50px 10px 50px 10px;
}

.tp-featured-3-icon {
    margin-bottom: 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-featured-inner-item {
        margin-bottom: 40px;
    }
}

.tp-featured-inner-item:hover .tp-featured-inner-icon span {
    color: var(--tp-theme-1);
}

.tp-featured-inner-icon span {
    -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-featured-inner-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.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%;
    border-radius: 20px 0px 20px 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-about-thumb-box {
        transform: scale(0.8);
    }
}

@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: white;
    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-item {
    align-items: center !important;
}

    .tp-about-featured-item:hover .tp-about-featured-icon span {
        color: var(--tp-common-white);
        background: var(--tp-common-black);
    }

.tp-about-featured-icon span {
    font-size: 46px;
    width: 80px;
    height: 80px;
    line-height: 90px;
    text-align: center;
    background: #f9f9f9;
    display: inline-block;
    color: var(--tp-theme-1);
    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: white;
    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: white;
    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;
}

.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;
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tp-about-3-title-box .tp-section-title {
        font-size: 45px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .tp-about-3-title-box .tp-section-title {
        font-size: 54px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-about-3-title-box .tp-section-title {
        font-size: 45px;
    }
}

@media (max-width:575px) {
    .tp-about-3-title-box .tp-section-title {
        font-size: 31px;
    }
}

.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-box {
    position: relative;
}

    .tp-about-3 .tp-about-featured-box::after {
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        right: -50px;
        content: "";
        background: var(--tp-border-1);
    }

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-about-3 .tp-about-featured-box::after {
        display: none;
    }
}

.tp-about-3 .tp-about-featured-icon span {
    width: 72px;
    height: 72px;
    font-size: 30px;
    line-height: 78px;
    color: var(--tp-common-black);
}

.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);
}

@media (max-width:575px) {
    .tp-service {
        padding-bottom: 120px;
    }
}

.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;
}
*/
.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;
}

@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: #030024;
        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;
}

#service-one-page ul, li {
    padding-left: 10px;
    margin-left: 10px;
}

.tp-service-2-item:hover .tp-service-2-number span {
    color: #f3f3f3;
}

.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-action {
    /*position: absolute;*/
    bottom: 10px;
    text-align: right;
    right: 6px;
}

.tp-service-2-content {
    text-align: justify;
    padding: 10px 10px;
    background-color: white;
    box-shadow: 0px 0px 40px 0px rgba(60,54,87,0.06);
    border-radius: 15px;
    min-height: 400px;
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tp-service-2-content {
        padding: 10px;
    }
}

@media (max-width:575px) {
    .tp-service-2-content {
        padding: 10px;
    }
}

@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;
    }

@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;
    left: 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,#ebebeb 0%,#f2f2f2 15%,#f9f9f9 100%);
        background-image: -webkit-linear-gradient(-96deg,#ebebeb 0%,#f2f2f2 15%,#f9f9f9 100%);
        background-image: -ms-linear-gradient(-96deg,#ebebeb 0%,#f2f2f2 15%,#f9f9f9 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: -35px;
            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-common-black);
        display: inline-block;
    }

    .tp-service-3 .tp-service-button:hover {
        color: var(--tp-common-white);
        background: var(--tp-common-black);
        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: 20px;
    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: 20px;
}

.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;
    }
}

@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-service-details-wrapper {
        margin-left: 0;
    }
}

.tp-service-details-widget {
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    background: var(--tp-grey-1);
}

.tp-service-details-link ul li {
    display: block;
    margin-bottom: 8px;
}

    .tp-service-details-link ul li:last-child {
        margin-bottom: 0;
    }

    .tp-service-details-link ul li.active a {
        color: var(--tp-common-white);
        background-color: var(--tp-common-black);
    }

        .tp-service-details-link ul li.active a i {
            color: var(--tp-common-white);
            background: var(--tp-theme-1);
        }

    .tp-service-details-link ul li:hover a {
        color: var(--tp-common-white);
        background-color: var(--tp-common-black);
        border-bottom: 2px solid var(--tp-common-black);
    }

        .tp-service-details-link ul li:hover a i {
            color: var(--tp-common-white);
            background: var(--tp-theme-1);
        }

    .tp-service-details-link ul li a {
        position: relative;
        display: block;
        font-size: 16px;
        font-weight: 700;
        line-height: 2;
        padding: 11px 20px;
        border-radius: 15px;
        color: var(--tp-common-black);
        background: var(--tp-common-white);
        background-color: white;
        border-bottom: 2px solid var(--tp-border-1);
        box-shadow: 0px 2px 0px 0px rgba(200,200,200,0.004);
        -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-details-link ul li a i {
            position: absolute;
            font-size: 20px;
            width: 56px;
            height: 56px;
            top: 0;
            right: -1px;
            line-height: 56px;
            text-align: center;
            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-service-details-banner {
    padding: 40px;
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: 15px;
    background: var(--tp-common-white);
    box-shadow: 0px 0px 40px 0px rgba(17,14,35,0.08);
}

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-service-details-banner {
        padding: 30px;
    }
}

.tp-service-details-banner h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 40px;
    color: var(--tp-common-black);
}

.tp-service-details-banner a {
    display: inline;
}

.tp-service-details-banner-shape {
    position: absolute;
    left: 0;
    bottom: 40px;
    animation: spin-1 3000ms forwards infinite alternate;
    transform-origin: bottom left;
}

.tp-service-details-banner-thumb {
    position: absolute;
    bottom: -50%;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .tp-service-details-banner-thumb {
        bottom: -100%;
        right: 0;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-service-details-banner-thumb {
        bottom: auto;
    }
}

@media (max-width:575px) {
    .tp-service-details-banner-thumb {
        bottom: -36%;
    }
}

.tp-service-details-download-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--tp-common-black);
    margin-bottom: 35px;
}

.tp-service-details-download-item {
    padding: 22px 30px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0px 4px 20px 0px rgba(30,22,22,0.06);
    margin-bottom: 20px;
}

.tp-service-details-download-icon {
    margin-right: 20px;
    color: var(--tp-theme-1);
}

    .tp-service-details-download-icon i {
        font-size: 40px;
    }

.tp-service-details-download-content h3 {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    color: var(--tp-common-black);
    margin-bottom: 0;
}

    .tp-service-details-download-content h3::after {
        position: absolute;
        width: 0px;
        height: 1px;
        left: 0;
        bottom: -2px;
        content: "";
        opacity: 0;
        visibility: hidden;
        background-color: 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-details-download-content h3:hover::after {
        width: 100%;
        opacity: 1;
        visibility: visible;
    }

.tp-service-details-download-content span {
    font-size: 14px;
    display: block;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.tp-service-details-thumb img {
    border-radius: 15px;
}

.tp-service-details-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--tp-common-black);
}

.tp-service-details-featured-item {
    text-align: center;
}

@media only screen and (min-width:992px) and (max-width:1199px),only screen and (min-width:768px) and (max-width:991px),only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-service-details-featured-item {
        margin-bottom: 40px;
    }
}

.tp-service-details-featured-icon {
    margin-bottom: 25px;
}

    .tp-service-details-featured-icon span {
        width: 100px;
        height: 100px;
        font-size: 50px;
        line-height: 100px;
        text-align: center;
        border-radius: 15px;
        display: inline-block;
        color: var(--tp-theme-1);
        background: 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-details-featured-icon span:hover {
            color: var(--tp-common-white);
            background-color: var(--tp-theme-1);
        }

.tp-service-details-featured-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--tp-common-black);
}

.tp-service-details-notes {
    padding: 30px 40px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0px 4px 40px 0px rgba(30,22,22,0.08);
}

    .tp-service-details-notes p {
        font-size: 16px;
        /*font-weight: 700;*/
        margin-right: 50px;
        margin-bottom: 0;
        color: var(--tp-common-black);
    }

.tp-service-details-list-item {
    margin-bottom: 30px;
}

.tp-service-details-list-icon span {
    font-size: 27px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    display: inline-block;
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
    border-radius: 50%;
    margin-right: 20px;
}

    .tp-service-details-list-icon span.icon-2 {
        background: var(--tp-common-black);
    }

.tp-service-details-list-text p {
    margin-bottom: 0;
}

.tp-service-details-faq .accordion-items.tp-faq-active .accordion-buttons {
    color: var(--tp-common-black);
    background: none;
}

.tp-service-details-faq .accordion-buttons:not(.collapsed) {
    color: var(--tp-common-black);
    padding-bottom: 0;
    background: none;
}

    .tp-service-details-faq .accordion-buttons:not(.collapsed) .accordion-header {
        border-radius: 15px 15px 0 0;
    }

    .tp-service-details-faq .accordion-buttons:not(.collapsed) .accordion-icon {
        background: var(--tp-theme-1);
    }

        .tp-service-details-faq .accordion-buttons:not(.collapsed) .accordion-icon::after {
            background: var(--tp-common-white);
        }

.tp-service-details-faq .accordion-body {
    box-shadow: 0px 4px 4px 0px rgba(16,23,40,0.06);
}

    .tp-service-details-faq .accordion-body p {
        margin-right: 35px;
        padding-top: 20px;
        border-top: 1px solid var(--tp-border-1);
    }

.tp-service-details-faq .accordion-icon {
    background: var(--tp-common-black);
}

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-custom-arrow {
        margin-bottom: 40px;
    }
}

.tp-custom-arrow button {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    color: var(--tp-theme-1);
    border: 1px solid var(--tp-border-1);
    border-radius: 50%;
    margin-right: 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-custom-arrow button:last-child {
        margin: 0;
    }

    .tp-custom-arrow button:hover {
        border: 1px solid var(--tp-common-white);
        background-color: white;
        box-shadow: 0px 0px 40px 0px rgba(31,20,44,0.06);
    }

.tp-section-meta-notes p {
    font-size: 17px;
    font-weight: 500;
    display: inline-block;
    color: var(--tp-common-black);
}

@media (max-width:575px) {
    .tp-section-meta-notes p {
        font-size: 17px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-section-meta-notes p {
        font-size: 14px;
    }
}

.tp-section-meta-notes p span {
    display: inline-block;
    margin-right: 15px;
}

.tp-section-meta-notes p:hover .tp-section-meta-sm {
    color: var(--tp-theme-1);
}

    .tp-section-meta-notes p:hover .tp-section-meta-sm::after {
        background-color: var(--tp-theme-1);
    }

.tp-section-meta-sm {
    position: relative;
    color: var(--tp-common-black);
}

    .tp-section-meta-sm::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;
    }

.counter-row {
    counter-reset: count;
}

.tp-call-box {
    padding: 20px;
    border-radius: 15px;
    background: var(--tp-common-white);
}

    .tp-call-box:hover .tp-call-icon {
        animation: icon-bounce 0.8s ease-out infinite;
    }

.tp-call-icon span {
    width: 60px;
    height: 60px;
    font-size: 20px;
    line-height: 68px;
    text-align: center;
    display: inline-block;
    color: var(--tp-common-white);
    background: var(--tp-common-black);
    border-radius: 50%;
    margin-right: 20px;
    margin-bottom: 0;
}

.tp-call-text {
    font-size: 16px;
}

.tp-call-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--tp-common-black);
}

.tp-testimonial-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    padding: 2px;
    background-color: white;
    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;
}

@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: 10px 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: 0 50px 0 0;
}

@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: 16px;
    height: 16px;
    border: 2px solid;
    background: no-repeat;
    -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%);
}

@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-4-arrow-box {
        top: 100%;
    }
}

.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%;
    }

@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-4-arrow-box button.prev {
        left: 0;
    }
}

.tp-testi-4-arrow-box button.next {
    position: absolute;
    left: auto;
    right: -10%;
}

@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-4-arrow-box button.next {
        right: 0;
    }
}

@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: white;
    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;
    }
}

@media (max-width:575px) {
    .tp-contact-title-box .tp-section-title {
        font-size: 30px;
    }
}

.tp-contact-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tp-contact-shape-1 {
    position: absolute;
    right: 0;
    top: 14%;
}

@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:768px) and (max-width:991px),(max-width:575px) {
    .tp-contact-shape-1 {
        display: none;
    }
}

.tp-contact-shape-1 span {
    color: var(--tp-theme-1);
}

    .tp-contact-shape-1 span svg path.line-1 {
        stroke: var(--tp-theme-1);
        stroke-dasharray: 2300;
        stroke-dashoffset: 3500;
        animation: dash 4s linear forwards;
    }

.tp-contact-shape-2 {
    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),only screen and (min-width:768px) and (max-width:991px),(max-width:575px) {
    .tp-contact-shape-2 {
        display: none;
    }
}

.tp-contact-thumb-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 950px;
    height: 600px;
    background-repeat: no-repeat;
}

.tp-contact-box {
    position: relative;
    top: 108px;
    padding: 20px 0;
    margin-left: 46px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0px 0px 60px 0px rgba(4,23,26,0.06);
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tp-contact-box {
        top: 30px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .tp-contact-box {
        top: 80px;
        margin: 46px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-contact-box {
        top: 30px;
        margin-left: 0;
    }
}

.tp-contact-box .tp-section-title {
    font-size: 30px;
}

@media (max-width:575px) {
    .tp-contact-box .tp-section-title {
        font-size: 24px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-contact-box .tp-section-title {
        font-size: 35px;
    }
}

.tp-contact-content {
    margin: 0 20px;
    padding: 48px 60px;
    border-radius: 15px;
    border: 1px solid var(--tp-border-1);
}

@media (max-width:575px) {
    .tp-contact-content {
        padding: 48px 16px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-contact-content {
        padding: 48px 60px;
    }
}

.tp-contact-form .postbox-comment-input {
    margin-bottom: 20px;
}

    .tp-contact-form .postbox-comment-input input {
        border: 1px solid transparent;
        border-radius: 15px;
        background-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-contact-form .postbox-comment-input input::placeholder {
            font-size: 16px;
            color: var(--tp-text-body);
        }

        .tp-contact-form .postbox-comment-input input:focus {
            border: 1px solid var(--tp-theme-1);
        }

    .tp-contact-form .postbox-comment-input textarea {
        border: 1px solid transparent;
        resize: none;
        height: 148px;
        border-radius: 15px;
        background-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-contact-form .postbox-comment-input textarea::placeholder {
            font-size: 16px;
            color: var(--tp-text-body);
        }

        .tp-contact-form .postbox-comment-input textarea:focus {
            border: 1px solid var(--tp-theme-1);
        }

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-contact-2 {
        padding-top: 80px;
        padding-bottom: 0;
    }
}

@media only screen and (min-width:768px) and (max-width:991px),only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-contact-2-title-box {
        margin-bottom: 60px;
    }
}

.tp-contact-2-title-box p {
    color: var(--tp-text-body-2);
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tp-contact-2-title-box p {
        font-size: 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-contact-2-title-box p br {
        display: none;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-contact-2-title-box .tp-section-title {
        font-size: 40px;
    }
}

.tp-contact-2-title-box .tp-header-info-icon {
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
    border: 1px solid var(--tp-theme-1);
}

.tp-contact-2-text p {
    color: var(--tp-text-body-2);
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .tp-contact-2-text p {
        font-size: 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-contact-2-text p br {
        display: none;
    }
}

.tp-contact-2-input-box input, .tp-contact-2-input-box textarea {
    height: 60px;
    background: none;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #4c5b67;
    color: var(--tp-common-white);
    resize: none;
}

    .tp-contact-2-input-box input::placeholder, .tp-contact-2-input-box textarea::placeholder {
        font-size: 16px;
        color: #9ca6ae;
    }

    .tp-contact-2-input-box input:focus, .tp-contact-2-input-box textarea:focus {
        border: 1px solid var(--tp-theme-1);
    }

.tp-contact-2-input-box textarea {
    height: 140px;
}

.tp-contact-2 .tp-header-info-item:hover .tp-header-info-text span {
    color: inherit;
}

.tp-contact-2 .tp-header-info-item:hover .tp-header-info-title {
    color: var(--tp-theme-1);
}

.tp-contact-2 .tp-header-info-title {
    color: var(--tp-common-white);
}

.tp-contact-3-shape {
    position: absolute;
    top: 0;
    right: 0;
}

.tp-contact-3-shape-2 {
    position: absolute;
    width: 850px;
    height: 10px;
    bottom: 0;
    left: -30%;
    z-index: 2;
    border-radius: 0 15px 15px 0;
    background: var(--tp-common-black);
}

@media (max-width:575px) {
    .tp-contact-3-title-box .tp-section-title {
        font-size: 40px;
    }
}

.tp-contact-3-fea-content {
    padding-bottom: 24px;
    margin-bottom: 30px;
    display: inline-block;
    border-bottom: 1px solid var(--tp-border-1);
}

    .tp-contact-3-fea-content:hover .tp-contact-3-fea-icon {
        animation: icon-bounce 0.8s ease-out infinite;
    }

        .tp-contact-3-fea-content:hover .tp-contact-3-fea-icon span {
            color: var(--tp-theme-1);
        }

    .tp-contact-3-fea-content:hover .tp-contact-3-fea-text a {
        color: var(--tp-theme-1);
    }

.tp-contact-3-fea-icon {
    margin-top: 7px;
}

    .tp-contact-3-fea-icon span {
        font-size: 30px;
        margin-right: 26px;
        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-contact-3-fea-title {
    font-size: 16px;
    font-weight: 600;
    display: block;
}

.tp-contact-3-fea-text a {
    font-size: 22px;
    font-weight: 700;
    color: var(--tp-common-black);
}

.tp-contact-3-form {
    padding: 60px 80px;
    margin-left: 106px;
    border-radius: 15px;
    background-color: var(--tp-common-white);
    box-shadow: 0px 0px 60px 0px rgba(112,99,99,0.08);
}

@media only screen and (min-width:992px) and (max-width:1199px),only screen and (min-width:576px) and (max-width:767px) {
    .tp-contact-3-form {
        padding: 60px 50px;
        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-contact-3-form {
        margin-left: 0;
    }
}

@media (max-width:575px) {
    .tp-contact-3-form {
        padding: 60px 30px;
        margin-left: 0;
    }
}

.tp-contact-3-form-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--tp-common-black);
}

@media (max-width:575px) {
    .tp-contact-3-form-title {
        font-size: 33px;
    }
}

.tp-contact-3-form .postbox-comment-input {
    position: relative;
    margin-bottom: 20px;
}

    .tp-contact-3-form .postbox-comment-input input, .tp-contact-3-form .postbox-comment-input textarea {
        border: 0;
        resize: none;
        padding-left: 0;
        background: none;
        padding-right: 30px;
        border-bottom: 1px solid var(--tp-border-1);
    }

        .tp-contact-3-form .postbox-comment-input input::placeholder, .tp-contact-3-form .postbox-comment-input textarea::placeholder {
            font-size: 16px;
            color: var(--tp-text-body-2);
        }

        .tp-contact-3-form .postbox-comment-input input:focus, .tp-contact-3-form .postbox-comment-input textarea:focus {
            border-bottom: 1px solid var(--tp-theme-1);
        }

    .tp-contact-3-form .postbox-comment-input textarea {
        height: 115px;
        margin-bottom: 15px;
    }

    .tp-contact-3-form .postbox-comment-input span {
        position: absolute;
        top: 15px;
        right: 0;
        font-size: 16px;
        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-contact-3-form .postbox-comment-input span:hover {
            color: var(--tp-theme-1);
        }

.tp-contact-3-form .tp-contact-action button {
    width: 100%;
    border-radius: 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;
}

    .tp-contact-3-form .tp-contact-action button:hover {
        background-color: var(--tp-theme-1);
    }

.tp-contact-3-form-privacy {
    color: var(--tp-text-body-2);
    line-height: 1.5;
}

@media (max-width:575px) {
    .tp-contact-3-form-privacy br {
        display: none;
    }
}

.tp-contact-3-form-privacy a {
    position: relative;
    font-weight: 700;
    display: inline-block;
    color: var(--tp-common-black);
}

    .tp-contact-3-form-privacy a::after {
        position: absolute;
        width: 100%;
        height: 1px;
        bottom: 2px;
        left: 0;
        content: "";
        background: var(--tp-common-black);
    }

.tp-contact-3-text {
    font-size: 180px;
    font-weight: 800;
    line-height: 0.7;
    color: var(--tp-common-white);
}

.tp-contact-3-text-bottom {
    position: absolute;
    bottom: 0;
}

.tp-contact-input {
    margin-bottom: 30px;
}

    .tp-contact-input input, .tp-contact-input textarea {
        font-size: 16px;
        border: 0;
        resize: none;
        padding: 10px;
        border-radius: 15px;
        border: 1px solid transparent;
        background: var(--tp-grey-1);
    }

        .tp-contact-input input::placeholder, .tp-contact-input textarea::placeholder {
            font-size: 16px;
            color: #8799aa;
        }

        .tp-contact-input input:focus, .tp-contact-input textarea:focus {
            border: 1px solid var(--tp-theme-1);
        }

    .tp-contact-input textarea {
        height: 148px;
    }

.tp-contact-cart {
    padding: 60px 70px;
    margin-left: 35px;
    border-radius: 15px;
    background: var(--tp-common-black);
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tp-contact-cart {
        padding: 47px 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-contact-cart {
        margin-left: 0;
    }
}

@media (max-width:575px) {
    .tp-contact-cart {
        padding: 40px;
    }
}

.tp-contact-cart-title {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
}

    .tp-contact-cart-title::after {
        position: absolute;
        width: 100%;
        height: 1px;
        bottom: -5px;
        left: 0;
        content: "";
        background: var(--tp-common-white);
    }

.tp-contact-cart-info a {
    display: block;
    line-height: 1.3;
    color: var(--tp-common-white);
}

.tp-contact-cart-social span {
    color: var(--tp-common-white);
    margin-right: 24px;
}

.tp-contact-cart-social ul li {
    display: inline-block;
}

    .tp-contact-cart-social ul li a {
        font-size: 16px;
        margin-right: 16px;
        color: var(--tp-common-white);
    }

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-contact-inner {
        padding-bottom: 80px;
    }
}

@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-contact-inner-thumb {
        margin-bottom: 40px;
    }
}

.tp-contact-inner-thumb img {
    border-radius: 15px;
}

.tp-contact-form-inner .tp-contact-form-wrap {
    margin: 0 75px;
}

@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-contact-form-inner .tp-contact-form-wrap {
        margin: 0 20px;
    }
}

.tp-map {
    margin-top: -140px;
}

.tp-map-wrap {
    position: relative;
    height: 640px;
}

@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-map-wrap {
        height: 400px;
    }
}

.tp-map-wrap iframe {
    width: 100%;
    height: 100%;
}

.tp-brand-logo {
    text-align: center;
    opacity: 0.25;
}

.tp-brand-active .swiper-slide-active .tp-brand-logo {
    opacity: 1;
}

.tp-brand-2-space {
    padding-bottom: 250px;
}

@media only screen and (min-width:992px) and (max-width:1199px),only screen and (min-width:768px) and (max-width:991px),only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-brand-2-space {
        padding-bottom: 120px;
    }
}

.tp-brand-3 .tp-brand-logo {
    opacity: 1;
}

.tp-video-height {
    min-height: 600px;
    margin-top: -100px;
}

@media (max-width:575px) {
    .tp-video-height {
        padding: 0;
        margin: 0;
    }
}

.tp-video-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tp-video-space {
    padding-top: 220px;
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tp-video-space {
        padding-top: 80px;
    }
}

@media (max-width:575px) {
    .tp-video-space {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.tp-video-overlay::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.6;
    background-color: #071621;
}

@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-video-title-box {
        margin-bottom: 40px;
    }
}

@media (max-width:575px) {
    .tp-video-title-box .tp-section-title {
        font-size: 38px;
    }
}

@media (max-width:575px) {
    .tp-video-title-box .tp-section-title br {
        display: none;
    }
}

.tp-video-btn a {
    position: relative;
    width: 98px;
    height: 98px;
    font-size: 24px;
    line-height: 98px;
    text-align: center;
    display: inline-block;
    color: var(--tp-common-white);
    border: 1px solid var(--tp-common-white);
    border-radius: 50%;
    z-index: 2;
}

    .tp-video-btn a::before, .tp-video-btn a::after {
        content: "";
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        height: 80%;
        width: 80%;
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(255,255,253,0.45);
        animation: borderanimate2 2s linear infinite;
        z-index: -1;
    }

    .tp-video-btn a::after {
        height: 75%;
        width: 75%;
        background-color: rgba(211,211,211,0.4);
        animation: borderanimate2 3s linear infinite;
    }

.tp-video-shape {
    position: absolute;
    right: 170px;
    bottom: 50px;
    animation: spin-1 3000ms forwards infinite alternate;
    transform-origin: top left;
}

@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-video-shape {
        right: auto;
        bottom: -30px;
        left: 140px;
        transform: rotate(-201deg);
    }
}

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-video-inner {
        padding-bottom: 80px;
    }
}

.tp-video-inner-height {
    height: 700px;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .tp-video-inner-height {
        height: 600px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-video-inner-height {
        height: 500px;
    }
}

.tp-video-inner-wrapp {
    margin: 0 -120px;
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
    .tp-video-inner-wrapp {
        margin: 0 -50px;
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .tp-video-inner-wrapp {
        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-video-inner-wrapp {
        margin: auto;
    }
}

.tp-video-inner-overlay::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    content: "";
    border-radius: 15px;
    background-color: #223645;
    z-index: -1;
}

.tp-video-inner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -2;
    border-radius: 15px;
}

.tp-video-inner-text {
    position: absolute;
    bottom: -40px;
    font-size: 150px;
    font-weight: 800;
    font-style: italic;
    color: var(--tp-common-white);
    text-wrap: nowrap;
}

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .tp-video-inner-text {
        bottom: -27px;
        font-size: 90px;
    }
}

.tp-video-inner-icon a {
    position: absolute;
    width: 120px;
    height: 120px;
    font-size: 24px;
    line-height: 120px;
    top: 50%;
    left: 0;
    right: 0;
    border-radius: 50%;
    text-align: center;
    margin: auto;
    display: inline-block;
    color: var(--tp-common-black);
    transform: translateY(-50%);
    background: var(--tp-common-white);
    z-index: 2;
}

    .tp-video-inner-icon a::before {
        background: rgba(255,255,255,0.4);
    }

    .tp-video-inner-icon a::after {
        background: rgba(255,255,255,0.4);
    }

.main-project .small-title {
    justify-content: center;
}

.main-project .h2-title {
    text-align: center;
}

.side-p {
    padding-left: 75px;
    padding-right: 75px;
    margin-top: 6px;
}

.dax-yes {
    display: inline-block;
}

.dax-no {
    display: none;
}

.project-box {
    margin-bottom: 25px;
}

.project-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.project-box:hover .project-img:before {
    opacity: 0.85;
    transform: scale(1);
    visibility: visible;
}

.project-img > img {
    width: 100%;
    transform: scale(1);
    transition: all 0.3s ease;
}

.project-img > a > img {
    height: 250px !important;
}

.project-box:hover .project-img > img {
    transform: scale(1.05);
}

.project-box:hover .project-img > a > img {
    transform: scale(1.2);
    transition: 1.3s;
}

.project-hover-box {
    position: absolute;
    left: 0;
    right: 0;
    top: 30%;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30%) scale(0);
    transition: 0.3s;
}

    .project-hover-box a {
        position: relative;
        width: 60px;
        height: 60px;
        background-color: #d53863;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: auto;
    }

        .project-hover-box a:before {
            content: "";
            position: absolute;
            width: 75px;
            height: 75px;
            background-color: #d53863;
            opacity: 0.8;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .project-hover-box a i {
            font-size: 18px;
            color: #ffffff;
            z-index: 1;
        }

    .project-hover-box .h3-title {
        color: #ffffff;
        margin-top: 30px;
    }

    .project-hover-box p {
        color: #ffffff;
        opacity: 0.5;
        font-size: 18px;
        margin-bottom: 0;
    }

.project-box:hover .project-hover-box {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.pricing-section {
    position: relative;
    overflow: hidden;
}

    .pricing-section .outer-box {
        max-width: 1100px;
        margin: 0 auto;
    }

    .pricing-section .row {
        margin: 0 -30px;
    }

.pricing-block {
    position: relative;
    padding: 0 15px;
    margin-bottom: 10px;
}

    .pricing-block .inner-box {
        position: relative;
        background-color: #ffffff;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        padding: 0 0 8px;
        /*max-width: 370px;*/
        margin: 0 auto;
        border-bottom: 20px solid #31b49f;
    }

    .pricing-block .icon-box {
        position: relative;
        padding: 20px 20px 0;
        background-color: #31b49f;
        text-align: center;
    }

        .pricing-block .icon-box:before {
            position: absolute;
            left: 0;
            bottom: 0;
            height: 75px;
            width: 100%;
            border-radius: 50% 50% 0 0;
            background-color: #ffffff;
            content: "";
        }

        .pricing-block .icon-box .icon-outer {
            position: relative;
            height: 150px;
            width: 150px;
            background-color: #ffffff;
            border-radius: 50%;
            margin: 0 auto;
            padding: 10px;
        }

        .pricing-block .icon-box .icon {
            position: relative;
            display: block;
            height: 130px;
            width: 130px;
            line-height: 120px;
            border: 5px solid #31b49f;
            border-radius: 50%;
            font-size: 70px;
            color: #31b49f;
            -webkit-transition: all 600ms ease;
            -ms-transition: all 600ms ease;
            -o-transition: all 600ms ease;
            -moz-transition: all 600ms ease;
            transition: all 600ms ease;
        }

    .pricing-block .inner-box:hover .icon-box .icon {
        transform: rotate(360deg);
    }

    .pricing-block .price-box {
        position: relative;
        text-align: center;
        padding: 0px 10px 0px 10px;
    }

    .pricing-block .title {
        position: relative;
        display: block;
        font-size: 25px;
        line-height: 1.2em;
        color: var(--tp-common-black);
        font-weight: 600;
    }

        .pricing-block .title span {
            font-weight: bold;
            font-size: 16px;
        }

    .pricing-block .price {
        display: block;
        font-size: 25px;
        font-weight: 700;
        color: #31b49f;
    }

        .pricing-block .price i {
            font-size: 26px;
            margin-right: 10px;
        }

    .pricing-block .features {
        position: relative;
        max-width: 270px;
        margin: 0 auto 20px;
    }

        .pricing-block .features li {
            position: relative;
            display: block;
            font-size: 16px;
            line-height: 30px;
            color: #848484;
            font-weight: 500;
            padding: 5px 0;
            padding-left: 30px;
            border-bottom: 1px dashed #dddddd;
        }

            .pricing-block .features li:before {
                /*   position: absolute;
                left: 0;
                top: 5px;
                font-size: 16px;
                line-height: 30px;
                content: "\52";
                font-family: 'ElegantIcons';
                color: #2bd40f;*/
                color: #2bd40f;
                position: absolute;
                left: 0;
                top: 5px;
                width: 26px;
                height: 26px;
                background-image: url('../img/brand/food-stall_9778823.png');
                background-size: cover;
                background-repeat: no-repeat;
                content: "";
            }

            .pricing-block .features li.false:before {
                background-image: url('../img/brand/text-tool_11566643.png');
            }

            .pricing-block .features li.truefalse:before {
                background-image: url('../img/brand/clock_10315137.png');
                width: 27px !important;
                margin-left: -1px;
            }

            .pricing-block .features li a {
                color: #848484;
            }

            .pricing-block .features li:last-child {
                border-bottom: 0;
            }

    .pricing-block .btn-box {
        position: relative;
        text-align: center;
    }

        .pricing-block .btn-box a {
            position: relative;
            display: inline-block;
            font-size: 14px;
            line-height: 25px;
            color: #ffffff;
            font-weight: 500;
            padding: 8px 30px;
            background-color: #40cbb4;
            border-radius: 50px;
            border-top: 2px solid transparent;
            border-bottom: 2px solid transparent;
            -webkit-transition: all 400ms ease;
            -moz-transition: all 400ms ease;
            -ms-transition: all 400ms ease;
            -o-transition: all 400ms ease;
            transition: all 300ms ease;
        }

            .pricing-block .btn-box a:hover {
                color: #ffffff;
            }

    .pricing-block .inner-box:hover .btn-box a {
        background-color: teal;
    }

    .pricing-block:nth-child(2) .icon-box .icon, .pricing-block:nth-child(2) .inner-box {
        border-color: #1d95d2;
    }

    .pricing-block:nth-child(2) .btn-box a, .pricing-block:nth-child(2) .icon-box {
        background-color: #1d95d2;
    }

        .pricing-block:nth-child(2) .icon-box .icon, .pricing-block:nth-child(2) .price {
            color: #1d95d2;
        }

    .pricing-block:nth-child(3) .icon-box .icon, .pricing-block:nth-child(3) .inner-box {
        border-color: #e12454;
    }

    .pricing-block:nth-child(3) .btn-box a, .pricing-block:nth-child(3) .icon-box {
        background-color: #e12454;
    }

        .pricing-block:nth-child(3) .icon-box .icon, .pricing-block:nth-child(3) .price {
            color: #e12454;
        }

    .pricing-block:nth-child(4) .icon-box .icon, .pricing-block:nth-child(4) .inner-box {
        border-color: #e6ac00;
    }

    .pricing-block:nth-child(4) .btn-box a, .pricing-block:nth-child(4) .icon-box {
        background-color: #e6ac00;
    }

        .pricing-block:nth-child(4) .icon-box .icon, .pricing-block:nth-child(4) .price {
            color: #e6ac00;
        }

.icon-circle-green {
    width: 300px;
    height: 300px;
    /*background-image: url(../images/icons/circle-green.png);*/
}

.icon-circle-orange {
    width: 300px;
    height: 300px;
    /*background-image: url(../images/icons/circle-orange.png);*/
}

.icon-circle-pink {
    width: 300px;
    height: 300px;
    /*background-image: url(../images/icons/circle-pink.png);*/
}

.pricing-section .icon-circle-green {
    left: -375px;
    top: -50px;
    opacity: .50;
}

.pricing-section .icon-circle-blue {
    right: -375px;
    top: 50%;
    opacity: .50;
}

.pricing-section .icon-circle-pink {
    left: -375px;
    bottom: -100px;
    opacity: .50;
}

.pricing-section .icon-circle-green, .pricing-section .icon-circle-blue, .pricing-section .icon-circle-pink {
    -webkit-animation: fa-spin 30s infinite;
    -moz-animation: fa-spin 30s infinite;
    -ms-animation: fa-spin 30s infinite;
    -o-animation: fa-spin 30s infinite;
    animation: fa-spin 30s infinite;
}

.pricing-section-two {
    position: relative;
    padding: 120px 0 70px;
    overflow: hidden;
}

    .pricing-section-two.alternate {
        position: relative;
        background-color: #fafafa;
    }

    .pricing-section-two .outer-box {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
    }

.pricing-block-two {
    position: relative;
    display: block;
    margin-bottom: 50px;
}

    .pricing-block-two .inner-box {
        position: relative;
        background-color: #ffffff;
        padding: 30px 30px 25px;
        max-width: 300px;
        margin: 0 auto;
        border: 1px solid #dddddd;
        box-shadow: 0 20px 40px rgba(0,0,0,0.07);
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .pricing-block-two .inner-box:hover {
            box-shadow: 0 0 0px rgba(0,0,0,0.07);
        }

            .pricing-block-two .inner-box:hover .theme-btn {
                border-radius: 0px;
            }

    .pricing-block-two .title {
        position: relative;
        display: block;
        font-size: 20px;
        line-height: 1.2em;
        color: #212639;
        font-weight: 500;
        text-transform: uppercase;
        margin-bottom: 25px;
    }

        .pricing-block-two .title .icon {
            font-size: 22px;
            margin-right: 5px;
            display: inline-block;
        }

    .pricing-block-two .price-box {
        position: relative;
        margin-left: -30px;
    }

    .pricing-block-two .price {
        position: relative;
        display: inline-block;
        font-size: 38px;
        line-height: .9em;
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 20px;
        padding: 20px 30px;
        padding-right: 30px;
        border-radius: 0 50px 50px 0;
        background: rgb(247,0,104);
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        background: -moz-linear-gradient(to left,rgba(247,0,104,1) 0%,rgba(68,16,102,1) 25%,rgba(247,0,104,1) 75%,rgba(68,16,102,1) 100%);
        background: -webkit-linear-gradient(to left,rgba(247,0,104,1) 0%,rgba(68,16,102,1) 25%,rgba(247,0,104,1) 75%,rgba(68,16,102,1) 100%);
        background: linear-gradient(to left,rgba(247,0,104) 0%,rgba(68,16,102,1) 25%,rgba(247,0,104,1) 75%,rgba(68,16,102,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F70068',endColorstr='#441066',GradientType=1 );
        background-size: 600% 100%;
    }

    .pricing-block-two .inner-box:hover .price {
        padding-right: 80px;
    }

    .pricing-block-two .features {
        position: relative;
        max-width: 300px;
        margin: 0 auto 20px;
    }

        .pricing-block-two .features li {
            position: relative;
            display: block;
            font-size: 14px;
            line-height: 30px;
            color: #848484;
            font-weight: 500;
            padding: 5px 0;
            padding-left: 30px;
            border-bottom: 1px dashed #dddddd;
        }

            .pricing-block-two .features li:before {
                position: absolute;
                left: 0;
                top: 5px;
                font-size: 16px;
                line-height: 30px;
                content: "\52";
                font-family: 'ElegantIcons';
                color: #2bd40f;
            }

            .pricing-block-two .features li.false:before {
                color: #e12454;
                content: "\51";
            }

            .pricing-block-two .features li a {
                color: #848484;
            }

            .pricing-block-two .features li:last-child {
                border-bottom: 0;
            }

    .pricing-block-two .btn-box {
        position: relative;
        text-align: center;
    }

        .pricing-block-two .btn-box a {
            position: relative;
            font-size: 14px;
            line-height: 25px;
            font-weight: 500;
            padding: 8px 30px;
            border-radius: 30px;
        }

.pricing-section-two .icon-line-1 {
    right: 0%;
    top: 15%;
}

.pricing-section-two .icon-dots {
    right: 0%;
    bottom: 15%;
}

.pricing-section-two .icon-circle-1 {
    left: -400px;
    bottom: -200px;
    opacity: .30;
}

.icon-shape-5 {
    width: 540px;
    height: 330px;
    background-image: url(../images/icons/shape-5.png);
    background-size: 100%;
}

.pricing-section-three {
    position: relative;
    padding: 120px 0 70px;
    overflow: hidden;
}

    .pricing-section-three .outer-box {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
    }

.pricing-block-three {
    position: relative;
    margin-bottom: 50px;
}

    .pricing-block-three .inner-box {
        position: relative;
        background-color: #ffffff;
        border-radius: 30px;
        padding: 70px 20px 60px;
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
        box-shadow: 0 0 30px rgba(0,0,0,0.10);
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .pricing-block-three .inner-box:hover {
        }

    .pricing-block-three .title {
        position: relative;
        display: block;
        font-size: 38px;
        line-height: 1em;
        color: #848484;
        font-weight: 200;
        text-transform: uppercase;
        padding-bottom: 30px;
        margin-bottom: 25px;
    }

        .pricing-block-three .title:before {
            position: absolute;
            bottom: 0;
            left: 50%;
            margin-left: -40px;
            width: 80px;
            background-color: #848484;
            height: 2px;
            content: "";
        }

    .pricing-block-three .price {
        position: relative;
        display: block;
        font-size: 100px;
        line-height: .9em;
        color: #ec167f;
        font-weight: 200;
        font-family: 'Poppins',sans-serif;
        margin-bottom: 20px;
    }

    .pricing-block-three .features {
        position: relative;
        max-width: 300px;
        margin: 0 auto 20px;
    }

        .pricing-block-three .features li {
            position: relative;
            display: block;
            font-size: 14px;
            line-height: 30px;
            color: #848484;
            font-weight: 500;
            padding: 5px 0;
            border-bottom: 1px dashed #dddddd;
        }

            .pricing-block-three .features li a {
                color: #848484;
            }

            .pricing-block-three .features li:last-child {
                border-bottom: 0;
            }

    .pricing-block-three .btn-box {
        position: relative;
        text-align: center;
    }

        .pricing-block-three .btn-box a {
            position: relative;
            font-size: 14px;
            line-height: 25px;
            font-weight: 500;
            padding: 8px 30px;
            border-radius: 30px;
        }

.pricing-section-three .icon-line-1 {
    right: 0%;
    top: 15%;
}

.pricing-section-three .icon-dots {
    right: 0%;
    bottom: 15%;
}

.pricing-section-three .icon-circle-1 {
    left: -400px;
    bottom: -200px;
    opacity: .30;
}

.contact-page-section {
    position: relative;
}

    .contact-page-section .form-column {
        position: relative;
        margin-bottom: 40px;
    }

        .contact-page-section .form-column .inner-column {
            position: relative;
        }

    .contact-page-section .sec-title {
        margin-bottom: 30px;
    }

        .contact-page-section .sec-title h2 {
            font-size: 32px;
        }

.contact-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

    .contact-form .form-group:last-child {
        margin-bottom: 0;
    }

    .contact-form .form-group input[type="text"], .contact-form .form-group input[type="email"], .contact-form .form-group input[type="url"], .contact-form .form-group textarea, .contact-form .form-group select {
        position: relative;
        display: block;
        width: 100%;
        font-size: 15px;
        color: #555555;
        line-height: 32px;
        padding: 15px 30px;
        border: 1px solid #f1f1f1;
        background-color: #f1f1f1;
        font-weight: 400;
        height: 64px;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        border-radius: 25px;
    }

        .contact-form .form-group input:focus, .contact-form .form-group select:focus, .contact-form .form-group textarea:focus {
            border-color: #f20487;
        }

    .contact-form .form-group textarea {
        height: 156px;
        resize: none;
    }

    .contact-form .form-group button {
        text-transform: capitalize;
    }

.contact-form input.error:focus, .contact-form select.error:focus, .contact-form textarea.error:focus {
    border-color: #ff0000;
}

.contact-form label.error {
    display: block;
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
    line-height: 24px;
    color: #ff0000;
    padding-top: 7px;
    margin-bottom: 0;
}

.contact-page-section .contact-column {
    position: relative;
    margin-bottom: 30px;
}

.contact-page-section .contact-info {
    position: relative;
    margin-bottom: 37px;
    list-style: none;
}

    .contact-page-section .contact-info li {
        position: relative;
        padding-left: 55px;
        margin-bottom: 17px;
    }

        .contact-page-section .contact-info li p {
            display: block;
            font-size: 14px;
            line-height: 24px;
            color: #777777;
            font-weight: 400;
            margin: 0;
        }

        .contact-page-section .contact-info li strong {
            display: block;
            font-size: 16px;
            line-height: 20px;
            color: #222222;
            font-weight: 600;
        }

        .contact-page-section .contact-info li .icon {
            position: absolute;
            left: 0;
            top: 0;
            height: 40px;
            width: 40px;
            text-align: center;
            font-size: 18px;
            line-height: 40px;
            background-color: #1c94d2;
            color: #ffffff;
        }

        .contact-page-section .contact-info li a {
            color: #777777;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

            .contact-page-section .contact-info li a:hover {
                color: #f20487;
            }

.social-icon-two {
    position: relative;
    display: block;
}

    .social-icon-two li {
        position: relative;
        display: inline-block;
        margin-right: 8px;
        margin-bottom: 10px;
    }

        .social-icon-two li a .fab {
            position: relative;
            display: block;
            height: 40px;
            width: 40px;
            line-height: 40px;
            text-align: center;
            font-size: 16px;
            border: 1px solid #dddddd;
            background-color: #ffffff;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

        .social-icon-two li a:hover .fab {
            color: #ffffff;
            background-color: #d24c59;
        }

.social-icon-three {
    position: relative;
    display: block;
}

    .social-icon-three li {
        position: relative;
        display: inline-block;
        margin-left: 30px;
        margin-bottom: 10px;
    }

        .social-icon-three li a {
            position: relative;
            display: block;
            line-height: 30px;
            text-align: center;
            font-size: 16px;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

            .social-icon-three li a:hover {
                color: #222222;
            }

ul, li {
    padding: 0px;
    margin: 0px;
    color: var(--tp-text-body);
    font-size: 16px;
    line-height: 1.9;
}

.social-icon-colored .fa-adn {
    color: #504e54;
}

.social-icon-colored .fa-apple {
    color: #aeb5c5;
}

.social-icon-colored .fa-android {
    color: #A5C63B;
}

.social-icon-colored .fa-bitbucket, .social-icon-colored .fa-bitbucket-square {
    color: #003366;
}

.social-icon-colored .fa-bitcoin, .social-icon-colored .fa-btc {
    color: #F7931A;
}

.social-icon-colored .fa-css3 {
    color: #1572B7;
}

.social-icon-colored .fa-dribbble {
    color: #F46899;
}

.social-icon-colored .fa-dropbox {
    color: #018BD3;
}

.social-icon-colored .fa-facebook, .social-icon-colored .fa-facebook-f, .social-icon-colored .fa-facebook-square {
    color: #3C599F;
}

.social-icon-colored .fa-flickr {
    color: #FF0084;
}

.social-icon-colored .fa-foursquare {
    color: #0086BE;
}

.social-icon-colored .fa-github, .social-icon-colored .fa-github-alt, .social-icon-colored .fa-github-square {
    color: #070709;
}

.social-icon-colored .fa-google-plus, .social-icon-colored .fa-google-plus-g, .social-icon-colored .fa-google-plus-square {
    color: #CF3D2E;
}

.social-icon-colored .fa-html5 {
    color: #E54D26;
}

.social-icon-colored .fa-instagram {
    color: #A1755C;
}

.social-icon-colored .fa-linkedin, .social-icon-colored .fa-linkedin-in, .social-icon-colored .fa-linkedin-square {
    color: #0085AE;
}

.social-icon-colored .fa-linux {
    color: #FBC002;
    color: #333;
}

.social-icon-colored .fa-maxcdn {
    color: #F6AE1C;
}

.social-icon-colored .fa-pagelines {
    color: #241E20;
    color: #3984EA;
}

.social-icon-colored .fa-pinterest, .social-icon-colored .fa-pinterest-square {
    color: #CC2127;
}

.social-icon-colored .fa-renren {
    color: #025DAC;
}

.social-icon-colored .fa-skype {
    color: #01AEF2;
}

.social-icon-colored .fa-stack-exchange {
    color: #245590;
}

.social-icon-colored .fa-stack-overflow {
    color: #FF7300;
}

.social-icon-colored .fa-trello {
    color: #265A7F;
}

.social-icon-colored .fa-tumblr, .social-icon-colored .fa-tumblr-square {
    color: #314E6C;
}

.social-icon-colored .fa-twitter, .social-icon-colored .fa-twitter-square {
    color: #32CCFE;
}

.social-icon-colored .fa-vimeo-square {
    color: #229ACC;
}

.social-icon-colored .fa-vk {
    color: #375474;
}

.social-icon-colored .fa-weibo {
    color: #D72B2B;
}

.social-icon-colored .fa-windows {
    color: #12B6F3;
}

.social-icon-colored .fa-xing, .social-icon-colored .fa-xing-square {
    color: #00555C;
}

.social-icon-colored .fa-youtube, .social-icon-colored .fa-youtube-play, .social-icon-colored .fa-youtube-square {
    color: #C52F30;
}

.social-icon-colored li a:hover .fa-adn {
    background-color: #504e54;
}

.social-icon-colored li a:hover .fa-apple {
    background-color: #aeb5c5;
}

.social-icon-colored li a:hover .fa-android {
    background-color: #A5C63B;
}

.social-icon-colored li a:hover .fa-bitbucket, .social-icon-colored li a:hover .fa-bitbucket-square {
    background-color: #003366;
}

.social-icon-colored li a:hover .fa-bitcoin, .social-icon-colored li a:hover .fa-btc {
    background-color: #F7931A;
}

.social-icon-colored li a:hover .fa-css3 {
    background-color: #1572B7;
}

.social-icon-colored li a:hover .fa-dribbble {
    background-color: #F46899;
}

.social-icon-colored li a:hover .fa-dropbox {
    background-color: #018BD3;
}

.social-icon-colored li a:hover .fa-facebook, .social-icon-colored li a:hover .fa-facebook-f, .social-icon-colored li a:hover .fa-facebook-square {
    background-color: #3C599F;
}

.social-icon-colored li a:hover .fa-flickr {
    background-color: #FF0084;
}

.social-icon-colored li a:hover .fa-foursquare {
    background-color: #0086BE;
}

.social-icon-colored li a:hover .fa-github, .social-icon-colored li a:hover .fa-github-alt, .social-icon-colored li a:hover .fa-github-square {
    background-color: #070709;
}

.social-icon-colored li a:hover .fa-google-plus, .social-icon-colored li a:hover .fa-google-plus-g, .social-icon-colored li a:hover .fa-google-plus-square {
    background-color: #CF3D2E;
}

.social-icon-colored li a:hover .fa-html5 {
    background-color: #E54D26;
}

.social-icon-colored li a:hover .fa-instagram {
    background-color: #A1755C;
}

.social-icon-colored li a:hover .fa-linkedin, .social-icon-colored li a:hover .fa-linkedin-in, .social-icon-colored li a:hover .fa-linkedin-square {
    background-color: #0085AE;
}

.social-icon-colored li a:hover .fa-linux {
    background-color: #FBC002;
    color: #333;
}

.social-icon-colored li a:hover .fa-maxcdn {
    background-color: #F6AE1C;
}

.social-icon-colored li a:hover .fa-pagelines {
    background-color: #241E20;
    color: #3984EA;
}

.social-icon-colored li a:hover .fa-pinterest, .social-icon-colored li a:hover .fa-pinterest-square {
    background-color: #CC2127;
}

.social-icon-colored li a:hover .fa-renren {
    background-color: #025DAC;
}

.social-icon-colored li a:hover .fa-skype {
    background-color: #01AEF2;
}

.social-icon-colored li a:hover .fa-stack-exchange {
    background-color: #245590;
}

.social-icon-colored li a:hover .fa-stack-overflow {
    background-color: #FF7300;
}

.social-icon-colored li a:hover .fa-trello {
    background-color: #265A7F;
}

.social-icon-colored li a:hover .fa-tumblr, .social-icon-colored li a:hover .fa-tumblr-square {
    background-color: #314E6C;
}

.social-icon-colored li a:hover .fa-twitter, .social-icon-colored li a:hover .fa-twitter-square {
    background-color: #32CCFE;
}

.social-icon-colored li a:hover .fa-vimeo-square {
    background-color: #229ACC;
}

.social-icon-colored li a:hover .fa-vk {
    background-color: #375474;
}

.social-icon-colored li a:hover .fa-weibo {
    background-color: #D72B2B;
}

.social-icon-colored li a:hover .fa-windows {
    background-color: #12B6F3;
}

.social-icon-colored li a:hover .fa-xing, .social-icon-colored li a:hover .fa-xing-square {
    background-color: #00555C;
}

.social-icon-colored li a:hover .fa-youtube, .social-icon-colored li a:hover .fa-youtube-play, .social-icon-colored li a:hover .fa-youtube-square {
    background-color: #C52F30;
}

.social-icon-colored li a:hover .fab {
    color: #ffffff;
}

.main-footer {
    position: relative;
    background-color: #101130;
}

    .main-footer .widgets-section {
        position: relative;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding: 60px 0 0px;
    }

    .main-footer .footer-column {
        position: relative;
        margin-bottom: 40px;
    }

    .main-footer .footer-widget {
        position: relative;
    }

    .main-footer .footer-column .widget-title {
        position: relative;
        font-size: 24px;
        font-weight: 500;
        color: #ffffff;
        line-height: 30px;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

        .main-footer .footer-column .widget-title:before {
            position: absolute;
            left: 0;
            bottom: 0;
            height: 1px;
            width: 40px;
            background-color: #f70068;
            content: '';
        }

    .main-footer .about-widget {
        position: relative;
    }

    .main-footer .logo {
        position: relative;
        margin-bottom: 5px;
        top: -20px;
    }

    .main-footer .footer-logo figure {
        margin: 0;
    }

    .main-footer .footer-logo img {
        display: block;
        max-width: 100%;
    }

    .main-footer .about-widget .text {
        position: relative;
        margin-bottom: 30px;
    }

        .main-footer .about-widget .text p {
            font-size: 14px;
            line-height: 24px;
            color: #aaaaaa;
            font-weight: 400;
            margin-bottom: 30px;
        }

.recent-posts {
    position: relative;
    padding-left: 40px;
}

    .recent-posts .post {
        position: relative;
        min-height: 90px;
        margin-bottom: 30px;
    }

        .recent-posts .post:last-child {
            margin-bottom: 0;
        }

        .recent-posts .post .thumb {
            position: absolute;
            left: 0;
            top: 0;
            height: 90px;
            width: 90px;
            overflow: hidden;
        }

            .recent-posts .post .thumb a {
                display: block;
            }

            .recent-posts .post .thumb img {
                display: block;
                width: 100%;
                height: auto;
            }

        .recent-posts .post h4 {
            position: relative;
            font-size: 18px;
            color: #ffffff;
            line-height: 30px;
            font-weight: 500;
            margin-bottom: 5px;
        }

            .recent-posts .post h4 a {
                color: #ffffff;
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
            }

                .recent-posts .post h4 a:hover {
                    color: #f70068;
                }

        .recent-posts .post .date {
            position: relative;
            display: block;
            font-size: 14px;
            line-height: 30px;
            color: #bbbbbb;
        }

            .recent-posts .post .date span {
                color: #f70068;
                margin-right: 4px;
                opacity: .70;
            }

.useful-links {
    position: relative;
    padding-left: 50px;
}

.user-links li {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

    .user-links li a {
        position: relative;
        display: block;
        font-size: 14px;
        line-height: 30px;
        color: #ffffff;
        font-weight: 400;
        padding: 0 15px;
        border-left: 1px solid #f70068;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

        .user-links li a:hover {
            color: #f70068;
        }

.main-footer .contact-list {
    position: relative;
}

    .main-footer .contact-list li {
        position: relative;
        padding-left: 40px;
        margin-bottom: 25px;
    }

        .main-footer .contact-list li:last-child {
            margin-bottom: 0;
        }

        .main-footer .contact-list li .icon {
            position: absolute;
            left: 0;
            top: 0;
            font-size: 23px;
            line-height: 25px;
            color: #ffffff;
        }

        .main-footer .contact-list li .text {
            display: block;
            font-size: 14px;
            line-height: 24px;
            color: #ffffff;
            font-weight: 400;
        }

            .main-footer .contact-list li .text a {
                color: #ffffff;
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
            }

                .main-footer .contact-list li .text a:hover {
                    color: #f70068;
                }

.main-footer .footer-bottom {
    position: relative;
    width: 100%;
    background-color: rgba(255,255,255,.10);
    text-align: center;
}

    .main-footer .footer-bottom .inner-container {
        position: relative;
    }

    .main-footer .footer-bottom .copyright-text {
        position: relative;
        padding: 20px 0;
    }

        .main-footer .footer-bottom .copyright-text p {
            position: relative;
            line-height: 20px;
            font-size: 16px;
            color: #ffffff;
            font-weight: 400;
            margin-bottom: 0;
        }

        .main-footer .footer-bottom .copyright-text a {
            color: #ffffff;
            font-weight: 600;
            text-decoration: underline;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

            .main-footer .footer-bottom .copyright-text a:hover {
                color: #f70068;
            }

    .main-footer .footer-bottom .footer-nav {
        position: relative;
        float: right;
    }

        .main-footer .footer-bottom .footer-nav ul {
            position: relative;
            padding: 15px 0;
        }

            .main-footer .footer-bottom .footer-nav ul li {
                position: relative;
                float: left;
                margin-left: 10px;
                font-family: "Oswald",sans-serif;
            }

                .main-footer .footer-bottom .footer-nav ul li a {
                    position: relative;
                    display: block;
                    font-size: 14px;
                    line-height: 20px;
                    color: #ffffff;
                    font-weight: 400;
                    padding: 5px 10px;
                    text-transform: uppercase;
                    background-color: #333333;
                    -webkit-transition: all 300ms ease;
                    -moz-transition: all 300ms ease;
                    -ms-transition: all 300ms ease;
                    -o-transition: all 300ms ease;
                    transition: all 300ms ease;
                }

                    .main-footer .footer-bottom .footer-nav ul li a:hover {
                        color: #f70068;
                        box-shadow: 0 0 10px rgba(0,0,0,0.20);
                    }

.social-icon-one {
    position: relative;
}

    .social-icon-one li {
        position: relative;
        display: inline-block;
        margin-right: 8px;
        margin-bottom: 10px;
    }

        .social-icon-one li:last-child {
            margin-right: 0;
        }

        .social-icon-one li a .fab {
            position: relative;
            display: block;
            height: 40px;
            width: 40px;
            line-height: 40px;
            text-align: center;
            font-size: 16px;
            color: #a9b1bf;
            background-color: #373851;
            transition: all 900ms ease;
            -moz-transition: all 900ms ease;
            -webkit-transition: all 900ms ease;
            -ms-transition: all 900ms ease;
            -o-transition: all 900ms ease;
        }

        .social-icon-one li a:hover .fab {
            transform: rotate(360deg);
        }

        .social-icon-one li a:hover .fab {
            background-color: #e12454;
            border-color: #e12454;
            color: #ffffff;
        }

.social-icon-two {
    position: relative;
    display: block;
}

    .social-icon-two li {
        position: relative;
        display: inline-block;
        margin-right: 8px;
        margin-bottom: 10px;
    }

        .social-icon-two li a .fab {
            position: relative;
            display: block;
            height: 40px;
            width: 40px;
            line-height: 40px;
            text-align: center;
            font-size: 16px;
            border: 1px solid #dddddd;
            background-color: #ffffff;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

        .social-icon-two li a:hover .fab {
            color: #ffffff;
            background-color: #d24c59;
        }

.social-icon-three {
    position: relative;
    display: block;
}

    .social-icon-three li {
        position: relative;
        display: inline-block;
        margin-left: 30px;
        margin-bottom: 10px;
    }

        .social-icon-three li a {
            position: relative;
            display: block;
            line-height: 30px;
            text-align: center;
            font-size: 16px;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

            .social-icon-three li a:hover {
                color: #222222;
            }

.fun-fact-section {
    position: relative;
    padding: 20px 0 0px;
}

    .fun-fact-section:before {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-image: url(../images/icons/pattern-1.jpg);
        content: "";
        opacity: .10;
    }

    .fun-fact-section .fact-counter {
        position: relative;
    }

    .fun-fact-section .counter-column {
        position: relative;
        text-align: center;
        margin-bottom: 20px;
    }

    .fun-fact-section .count-box {
        position: relative;
        font-size: 80px;
        line-height: 1em;
        color: #222222;
        font-weight: 700;
    }

        .fun-fact-section .count-box .icon {
            position: relative;
            display: inline-block;
            font-size: 30px;
            color: #ffffff;
            margin-bottom: 20px;
            height: 70px;
            width: 70px;
            line-height: 72px;
            border-radius: 50%;
            font-weight: 400;
            -webkit-transition: all 600ms ease;
            -ms-transition: all 600ms ease;
            -o-transition: all 600ms ease;
            -moz-transition: all 600ms ease;
            transition: all 600ms ease;
            background-color: #222222;
            box-shadow: 5px 10px 30px rgba(0,0,0,0.10);
        }

        .fun-fact-section .count-box:hover .icon {
            transform: rotateY(360deg);
        }

        .fun-fact-section .count-box .count-text {
            position: relative;
            display: block;
            font-size: 40px;
            line-height: 1em;
            color: #15212f;
            text-shadow: 10px 10px 10px rgba(0,0,0,0.10);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .fun-fact-section .count-box .counter-title {
            position: relative;
            display: block;
            font-size: 18px;
            line-height: 22px;
            font-weight: 700;
            color: #222222;
        }

    .fun-fact-section .counter-column:nth-child(4n + 1) .count-box .icon {
        background-color: #31b49f;
    }

    .fun-fact-section .counter-column:nth-child(4n + 2) .count-box .icon {
        background-color: #1d95d2;
    }

    .fun-fact-section .counter-column:nth-child(4n + 3) .count-box .icon {
        background-color: #e12454;
    }

    .fun-fact-section .counter-column:nth-child(4n + 4) .count-box .icon {
        background-color: #e6ac00;
    }

    .fun-fact-section .counter-column:nth-child(4n + 1) .counter-title {
        color: #31b49f;
    }

    .fun-fact-section .counter-column:nth-child(4n + 2) .counter-title {
        color: #1d95d2;
    }

    .fun-fact-section .counter-column:nth-child(4n + 3) .counter-title {
        color: #e12454;
    }

    .fun-fact-section .counter-column:nth-child(4n + 4) .counter-title {
        color: #e6ac00;
    }

    .fun-fact-section.style-two {
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

        .fun-fact-section.style-two:before {
            background: #1c94d2;
            opacity: 0;
        }

        .fun-fact-section.style-two .count-box .count-text {
            color: #ffffff;
        }

.event-info-tabs {
    position: relative;
}

    .event-info-tabs .tab-buttons {
        position: relative;
    }

    .event-info-tabs .tab-btn {
        position: relative;
        float: left;
        padding: 10px 25px;
        font-size: 14px;
        line-height: 20px;
        color: #ffffff;
        background-color: #1d95d2;
        font-weight: 600;
        cursor: pointer;
        margin-right: 5px;
        border: 1px solid #dddddd;
        border-bottom: 0;
        margin-bottom: -2px;
        z-index: 3;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

        .event-info-tabs .tab-btn:hover, .event-info-tabs .tab-btn.active-btn {
            color: #1d95d2;
            background-color: #ffffff;
        }

    .event-info-tabs .tabs-content {
        position: relative;
        background-color: #ffffff;
        border: 1px solid #dddddd;
        padding: 30px 30px;
        box-shadow: 0 30px 20px rgba(0,0,0,.05);
    }

        .event-info-tabs .tabs-content .tab {
            min-height: 155px;
        }

        .event-info-tabs .tabs-content h4 {
            position: relative;
            display: block;
            font-size: 24px;
            line-height: 1.2em;
            color: #3f4161;
            font-weight: 500;
            margin-bottom: 10px;
        }

            .event-info-tabs .tabs-content h4 .icon {
                color: #40cbb4;
                font-size: 20px;
                margin-right: 10px;
            }

        .event-info-tabs .tabs-content h5 {
            position: relative;
            display: block;
            font-size: 20px;
            line-height: 1.2em;
            color: #3f4161;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .event-info-tabs .tabs-content .text {
            font-size: 16px;
            line-height: 28px;
            color: #888888;
        }

        .event-info-tabs .tabs-content .info-list {
            position: relative;
            margin-top: 10px;
        }

            .event-info-tabs .tabs-content .info-list li {
                position: relative;
                padding-left: 30px;
                font-size: 16px;
                line-height: 26px;
                color: #616977;
                font-weight: 400;
            }

                .event-info-tabs .tabs-content .info-list li .icon {
                    position: absolute;
                    left: 0;
                    top: 0;
                    font-size: 14px;
                    line-height: 26px;
                    color: #ec167f;
                }

                .event-info-tabs .tabs-content .info-list li a {
                    color: #616977;
                    display: inline-block;
                    -webkit-transition: all 300ms ease;
                    -moz-transition: all 300ms ease;
                    -ms-transition: all 300ms ease;
                    -o-transition: all 300ms ease;
                    transition: all 300ms ease;
                }

                    .event-info-tabs .tabs-content .info-list li a:hover {
                        color: #f0228c;
                        text-decoration: underline;
                    }

.pricing-block .tag {
    position: absolute;
    top: -20px;
    right: 20px;
    padding: 7px 12px;
    background-color: teal;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    z-index: 999;
}

    .pricing-block .tag:before {
        content: "";
        position: absolute;
        right: -20px;
        top: 10px;
        border-right: 20px solid #ffffff;
        border-bottom: 15px solid teal;
        border-top: 15px solid teal;
    }

.pricing-block .free {
    position: absolute;
    right: 4%;
    top: 4%;
    text-transform: uppercase;
    color: white;
    font-size: 10pt;
    font-weight: bold;
    z-index: 10;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -sand-transform: rotate(45deg);
    transform: rotate(45deg);
    background: teal;
    padding-left: 10px;
    padding-right: 11px;
    border-radius: 20px;
}

.flip-card {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.flipped {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    width: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flip-card-front {
    background-color: #f1f1f1;
}

.flip-card-back {
    transform: rotateY(180deg);
    color: white;
}

.tdclass {
    background-color: #6c757d !important;
    color: white !important;
    font-weight: bold;
    font-size: 18px;
}

.tdprce i {
    font-size: 26px;
    margin-right: 2px;
    color: #31b49f;
}

.tdprce .price {
    font-size: 26px;
    font-weight: 500;
    color: #31b49f;
}

.clsYesText:before {
    left: 0;
    top: 5px;
    font-size: 16px;
    line-height: 30px;
    content: "\52";
    font-family: 'ElegantIcons';
    color: #2bd40f;
}

.clsNoText:before {
    color: #e12454;
    content: "\51";
    font-family: 'ElegantIcons';
    left: 0;
    top: 5px;
    font-size: 16px;
    line-height: 30px;
}

.tbclass_0 {
    background: #31b49f !important;
}

.tbclass_1 {
    background: #1d95d2 !important;
}

.tbclass_2 {
    background: #e12454 !important;
}

.tbclass_3 {
    background: #e6ac00 !important;
}

.ctbclass_0 {
    color: #31b49f !important;
}

.ctbclass_1 {
    color: #1d95d2 !important;
}

.ctbclass_2 {
    color: #e12454 !important;
}

.ctbclass_3 {
    color: #e6ac00 !important;
}

.ctbclass_0 .price, .ctbclass_0 i {
    color: #31b49f !important;
}

.ctbclass_1 .price, .ctbclass_1 i {
    color: #1d95d2 !important;
}

.ctbclass_2 .price, .ctbclass_2 i {
    color: #e12454 !important;
}

.ctbclass_3 .price, .ctbclass_3 i {
    color: #e6ac00 !important;
}

.clswidth95 {
    width: 95%;
    margin: auto;
}

.cusAnimatoin {
    visibility: visible;
    animation-name: fadeInUp;
}

.cusAnimatoin1 {
    visibility: visible;
    animation-delay: 400ms;
    animation-name: fadeInUp;
}

.cusAnimatoin2 {
    visibility: visible;
    animation-delay: 800ms;
    animation-name: fadeInUp;
}

.cusAnimatoin3 {
    visibility: visible;
    animation-delay: 1200ms;
    animation-name: fadeInUp;
}

.clsNolrmargin {
    margin-left: 0px;
    margin-right: 0px;
}

.clsPlansKnowmore {
    text-align: center;
    margin-top: 10px;
}

.clsPlanFullDetails {
    padding: 1px;
    max-height: 560px;
    overflow-y: scroll;
}

.clswidth100 {
    width: 100%;
}

.clsPlanHead {
    position: sticky;
    top: 0;
    z-index: 1;
}

.clswidth100Text {
    text-align: center;
    width: 100%;
}

.clsServiceName {
    color: #e12454;
    text-align: center;
    font-weight: bold;
}

.clsml30 {
    margin-left: 30px
}

.clstxtpt28 {
    text-align: center;
    padding-top: 28px;
}

.modal-confirm {
    color: #636363;
    width: 325px;
    font-size: 14px;
}

    .modal-confirm .modal-content {
        padding: 20px;
        border-radius: 5px;
        border: none;
    }

    .modal-confirm .modal-header {
        border-bottom: none;
        position: relative;
    }

    .modal-confirm h4 {
        text-align: center;
        font-size: 26px;
        margin: 30px 0 -15px;
    }

    .modal-confirm .form-control, .modal-confirm .btn {
        min-height: 40px;
        border-radius: 3px;
    }

    .modal-confirm .close {
        position: absolute;
        top: -5px;
        right: -5px;
    }

    .modal-confirm .modal-footer {
        border: none;
        text-align: center;
        border-radius: 5px;
        font-size: 13px;
    }

    .modal-confirm .icon-box {
        color: #fff;
        position: absolute;
        margin: 0 auto;
        left: 0;
        right: 0;
        top: -70px;
        width: 95px;
        height: 95px;
        border-radius: 50%;
        z-index: 9;
        background: #82ce34;
        padding: 15px;
        text-align: center;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    }

        .modal-confirm .icon-box i {
            font-size: 58px;
            position: relative;
            top: 3px;
        }

    .modal-confirm.modal-dialog {
        margin-top: 80px;
    }

    .modal-confirm .btn {
        color: #fff;
        border-radius: 4px;
        background: #82ce34;
        text-decoration: none;
        transition: all 0.4s;
        line-height: normal;
        border: none;
    }

        .modal-confirm .btn:hover, .modal-confirm .btn:focus {
            background: #6fb32b;
            outline: none;
        }

.trigger-btn {
    display: inline-block;
    margin: 100px auto;
}

.div-servicedetails ul {
    margin-left: 25px !important;
}
/* Style the currently selected (active) tab */
.nav-link.active {
    color: var(--tp-common-white) !important;
    background-color: var(--tp-common-black) !important;
}

    /* Style the icon inside the active tab */
    .nav-link.active i {
        color: var(--tp-common-white) !important;
        background: var(--tp-theme-1) !important;
    }
.social-graph-wrapper {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #101130;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
}
    .social-graph-wrapper.widget-facebook {
        background-color: lightblue;
    }