:root {
    --theme-color: #0073e6;
    --title-color: #191825;
    --body-color: #74757b;
    --smoke-color: #f7f7f7;
    --smoke-color2: #e8f3ff;
    --black-color: #000000;
    --black-color2: #080e1c;
    --gray-color: #bdbdbd;
    --white-color: #ffffff;
    --light-color: #bdbdbd;
    --yellow-color: #ffb539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #e6e6e6;
    --title-font: "Raleway", sans-serif;
    --body-font: "Roboto", sans-serif;
    --icon-font: "Font Awesome 6 Pro";
    --main-container: 1220px;
    --container-gutters: 30px;
    --section-space: 80px;
    --section-space-mobile: 60px;
    --section-title-space: 60px;
    --ripple-ani-duration: 5s;
}
/* .theme-blue {
    --theme-color: #0052da;
} */
a{
    text-decoration: none !important;
    transition: all 0.6s;
}

body,
html {
  height: 100%;
}

p{
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
     margin: 0;
     padding: 0;
     scroll-behavior: smooth;
     transition: 0.5s;
}

button,
input,
select,
textarea {
  font-size: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  transition: 0.3s !important;
}

a:focus {
    outline: 0;
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}
.slick-track > [class*="col"] {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}

/*-- header css start --*/
.main-menu ul li.menu-item-has-children > a:before {
    content: "\2b";
    display: inline-block;
    position: relative;
    font-family: var(--icon-font);
    margin-right: 5px;
    font-weight: 600;
    top: 0;
    font-size: 0.9em;
    color: var(--theme-color);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.main-menu ul li.menu-item-has-children > a:hover:before {
    content: "\f068";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.main-menu ul li:first-child {
    margin-left: 0 !important;
}
.main-menu ul.sub-menu li.menu-item-has-children > a:before {
    content: "\2b";
    float: right;
    top: 1px;
    display: inline-block;
}
.main-menu ul.sub-menu li.menu-item-has-children > a:hover:before {
    content: "\f068";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.main-menu ul.sub-menu li a:before {
    content: "\f622";
    position: absolute;
    top: 9px;
    left: 10px;
    font-family: var(--icon-font);
    width: 11px;
    height: 11px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 1em;
    line-height: 1;
    color: var(--theme-color);
    font-weight: 900;
    opacity: 0;
    visibility: visible;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.main-menu ul.sub-menu li a:hover {
    padding-left: 23px;
}
.main-menu ul.sub-menu li a:hover:before {
    visibility: visible;
    opacity: 1;
    left: 0;
}
.slick-track > [class*="col"] {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}
.slick-track {
    min-width: 100%;
}
.slick-list {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}
.slick-slide img {
    display: inline-block;
}
.slick-dots {
    list-style-type: none;
    padding: 0;
    margin: 40px 0 0px 0;
    line-height: 0;
    text-align: center;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.slick-dots li {
    display: inline-block;
    margin-right: 15px;
}
.slick-dots li:last-child {
    margin-right: 0;
}
.slick-dots button {
    font-size: 0;
    padding: 0;
    width: 10px;
    height: 10px;
    line-height: 0;
    border-radius: 9999px;
    border: none;
    background-color: var(--border-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    position: relative;
    z-index: 2;
}
.slick-dots button:before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid var(--theme-color);
    border-radius: inherit;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
    z-index: -1;
    visibility: hidden;
}
.slick-dots button:hover {
    border-color: var(--theme-color);
}
.slick-dots .slick-active button {
    background-color: var(--theme-color);
}
.slick-dots .slick-active button::before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.slick-arrow {
    display: inline-block;
    padding: 0;
    background-color: var(--smoke-color);
    color: var(--title-color);
    position: absolute;
    top: 50%;
    border: 1px solid var(--border-color);
    left: var(--pos-x, -100px);
    width: var(--icon-size, 56px);
    height: var(--icon-size, 56px);
    line-height: var(--icon-size, 54px);
    font-size: var(--icon-font-size, 18px);
    margin-top: calc(var(--icon-size, 56px) / -2);
    z-index: 2;
    border-radius: 5px;
}
.slick-arrow.default {
    position: relative;
    --pos-x: 0;
    margin-top: 0;
}
.slick-arrow.slick-next {
    right: var(--pos-x, -100px);
    left: auto;
}
.slick-arrow:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}
.arrow-margin .slick-arrow {
    top: calc(50% - 30px);
}
.arrow-wrap .slick-arrow {
    opacity: 0;
    visibility: hidden;
}
.arrow-wrap:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}
.banner_bg {
    position: relative;
}
.ms-slide-info {
    position: absolute !important;
    width: 100% !important;
    top: 50% !important;
    right: 0 !important;
    transform: translatey(-50%) !important;
    z-index: 1;
}
.banner_disc {
    max-width: 670px;
}
.master-slider{
	margin: 0 !important;
	width: 100% !important;
}
.banner_subtitle{
	font-size: 16px;
    font-weight: 600;
    display: block;
    color: var(--white-color);
    margin-top: -0.36em;
    margin-bottom: 16px;
    text-transform: capitalize;
	text-shadow: 0px 0px 8px #5a5a5a;
}
.banner_hd {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.135;
    margin-bottom: 0;
    color: var(--white-color);
    margin-bottom: 0;
    text-shadow: 0px 0px 8px #5a5a5a;
}
.bn_flexbox {
    margin-top: 45px;
}
.ea-body {
    height: 130px;
    overflow-y: scroll !important;
}
.faq_info{
	background: url(../images/bg/faq_bg_3.png) no-repeat center;
	background-size: cover;
    padding-top: 80px;
	background-attachment: fixed;
}

.slick-3d-active {
    margin-left: -12%;
    margin-right: -12%;
}
.slick-3d-active .slick-list {
    padding-left: 30% !important;
    padding-right: 30% !important;
}
.slick-3d-active .slick-track {
    max-width: 100% !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
    -webkit-perspective: 100px;
    perspective: 100px;
}
.slick-3d-active .slick-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    width: 100% !important;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, -webkit-transform 1s;
    transition: transform 1s, opacity 1s;
    transition: transform 1s, opacity 1s, -webkit-transform 1s;
}
.slick-3d-active .slick-3d-next,
.slick-3d-active .slick-3d-prev,
.slick-3d-active .slick-3d-next2,
.slick-3d-active .slick-3d-prev2 {
    display: block;
}
.slick-3d-active .slick-current {
    opacity: 1;
    position: relative;
    display: block;
    z-index: 2;
}
.slick-3d-active .slick-3d-next {
    opacity: 1;
    -webkit-transform: translate3d(50%, 0, -21px);
    transform: translate3d(50%, 0, -21px);
    z-index: 1;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}
.slick-3d-active .slick-3d-next2 {
    opacity: 1;
    -webkit-transform: translate3d(40%, 0, -23px);
    transform: translate3d(40%, 0, -23px);
    z-index: 0;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}
.slick-3d-active .slick-3d-prev {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 0, -21px);
    transform: translate3d(-50%, 0, -21px);
}
.slick-3d-active .slick-3d-prev .testi-card {
    box-shadow: none;
}
.slick-3d-active .slick-3d-prev2 {
    opacity: 1;
    -webkit-transform: translate3d(-40%, 0, -23px);
    transform: translate3d(-40%, 0, -23px);
}
.th-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
}
.th-menu-wrapper .mobile-logo {
    padding-bottom: 30px;
    padding-top: 40px;
    display: block;
    text-align: center;
    background-color: var(--smoke-color2);
}
.th-menu-wrapper .mobile-logo svg {
    max-width: 185px;
}
.th-menu-wrapper .th-menu-toggle {
    border: none;
    font-size: 22px;
    position: absolute;
    right: -16.5px;
    top: 25px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 35px;
    font-size: 18px;
    z-index: 1;
    color: var(--white-color);
    background-color: var(--theme-color);
    border-radius: 50%;
}
.th-menu-wrapper .th-menu-toggle:hover {
    background-color: var(--title-color);
    color: var(--white-color);
}
.th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 310px;
    background-color: #fff;
    border-right: 3px solid var(--theme-color);
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
    z-index: 1;
}
.th-menu-wrapper.th-body-visible {
    opacity: 1;
    visibility: visible;
}
.th-menu-wrapper.th-body-visible .th-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 21px 30px !important;
    border-radius: 5px;
    display: inline-block !important;
}
.th-btn:before,
.th-btn:after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 50%;
    background-color: var(--title-color);
    z-index: -1;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    border-radius: 0;
}
.th-btn:before {
    -webkit-transform: scale(0) rotate(0);
    -ms-transform: scale(0) rotate(0);
    transform: scale(0) rotate(0);
}
.th-btn:after {
    -webkit-transform: scale(0) rotate(0);
    -ms-transform: scale(0) rotate(0);
    transform: scale(0) rotate(0);
    left: unset;
    right: 0;
}
.th-btn:hover,
.th-btn.active {
    color: var(--white-color);
    box-shadow: none;
}
.th-btn:hover::before,
.th-btn:hover:after,
.th-btn.active::before,
.th-btn.active:after {
    border-radius: 0;
    -webkit-transform: scale(1) rotate(360deg);
    -ms-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
}
.th-btn.style2 {
    background-color: transparent;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: 20px 40px;
    box-shadow: none;
}
.th-btn.style2:hover {
    color: var(--title-color);
    border-color: var(--white-color);
}
.th-btn.style2:hover:before,
.th-btn.style2:hover:after {
    background-color: var(--white-color);
}
.th-btn.style3:hover {
    color: var(--title-color);
}
.th-btn.style3:hover:before,
.th-btn.style3:hover:after {
    background-color: var(--white-color);
}
.th-btn.style4 {
    background-color: var(--theme-color);
    color: var(--white-color);
}
.th-btn.style4:hover {
    color: var(--white-color);
}
.th-btn.style4:hover:before,
.th-btn.style4:hover:after {
    background-color: var(--title-color);
}
.th-btn.style5 {
    background-color: var(--theme-color);
    color: var(--white-color);
}
.th-btn.style5:hover {
    color: var(--theme-color);
}
.th-btn.style5:hover:before,
.th-btn.style5:hover:after {
    background-color: var(--white-color);
}
.th-btn.style6 {
    background-color: var(--title-color);
}
.th-btn.style6:hover {
    color: var(--theme-color);
}
.th-btn.style6:hover:before,
.th-btn.style6:hover:after {
    background-color: var(--white-color);
}
.th-btn.btn-fw {
    width: 100%;
}
.th-btn.btn-fw:before,
.th-btn.btn-fw:after {
    display: none;
}
.th-btn.btn-fw:hover {
    background-color: var(--title-color);
}
.th-btn.btn-small {
    padding: 16px 25px;
    min-width: 152px;
}
.icon-btn {
    display: inline-block;
    width: var(--btn-size, 56px);
    height: var(--btn-size, 56px);
    line-height: var(--btn-size, 54px);
    font-size: var(--btn-font-size, 20px);
    background-color: var(--icon-bg, #f7f7f7);
    color: var(--title-color);
    text-align: center;
    border-radius: 0;
    border: 1px solid var(--border-color);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    position: relative;
}
.icon-btn:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
    border-color: var(--theme-color);
}
.play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
}
.play-btn > i {
    display: inline-block;
    width: var(--icon-size, 56px);
    height: var(--icon-size, 56px);
    line-height: var(--icon-size, 56px);
    text-align: center;
    background-color: var(--white-color);
    color: var(--theme-color);
    font-size: var(--icon-font-size, 1.4em);
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.play-btn:after,
.play-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white-color);
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.play-btn:after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.play-btn:hover:after,
.play-btn:hover::before,
.play-btn:hover i {
    background-color: var(--theme-color);
    color: var(--white-color);
}
.play-btn.style2:before,
.play-btn.style2:after {
    background-color: transparent;
    border: 1px solid var(--white-color);
}
.play-btn.style3 > i {
    --icon-size: 40px;
    font-size: 14px;
    border: 1px solid;
    background-color: var(--theme-color);
    color: var(--white-color);
}
.play-btn.style3:before,
.play-btn.style3:after {
    background-color: var(--white-color);
}
.play-btn.style3:hover > i {
    background-color: var(--white-color);
    color: var(--theme-color);
}
.play-btn.style3:hover:before,
.play-btn.style3:hover:after {
    background-color: var(--white-color);
}
.link-btn {
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    line-height: 0.8;
    position: relative;
    padding-bottom: 2px;
    margin-bottom: -2px;
    text-transform: uppercase;
    color: var(--theme-color);
}
.link-btn i {
    margin-left: 5px;
    font-size: 0.9rem;
}
.link-btn:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--theme-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.link-btn:hover {
    color: var(--theme-color);
}
.link-btn:hover::before {
    width: 100%;
}
.line-btn {
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    line-height: 0.8;
    position: relative;
    padding-bottom: 4px;
    margin-bottom: -1px;
    text-transform: uppercase;
    color: var(--title-color);
}
.line-btn i {
    margin-left: 5px;
    font-size: 0.9rem;
}
.line-btn:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--title-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.line-btn:hover {
    color: var(--theme-color);
}
.line-btn:hover::before {
    background-color: var(--theme-color);
    width: 45px;
}
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 1;
    visibility: hidden;
    -webkit-transform: translateY(45px);
    -ms-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.scroll-top:after {
    content: "\f062";
    font-family: var(--icon-font);
    position: absolute;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    color: var(--theme-color);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    border: 2px solid var(--theme-color);
    box-shadow: none;
    border-radius: 50%;
}
.scroll-top svg {
    color: var(--theme-color);
    border-radius: 50%;
    background: var(--white-color);
}
.scroll-top svg path {
    fill: none;
}
.scroll-top .progress-circle path {
    stroke: var(--theme-color);
    stroke-width: 20px;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.sec-title ,.main_text_hd{
    margin-bottom: calc(var(--section-title-space) - 12px);
    margin-top: -0.2em;
    text-transform: capitalize;
    font-weight: 800;
    font-size: 28px;
/* 	font-family: var(--title-font); */
}
.sub-title {
    display: block;
    font-size: 20px;
    font-weight: 500;
    font-family: var(--body-font);
    color: var(--theme-color);
    margin-bottom: 30px;
    text-transform: capitalize;
    line-height: 24px;
    margin-top: -0.34em;
}
.sub-title:has(img) {
    margin-top: 0;
}
.sub-title.h4 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    margin-top: -0.14em;
}
.sub-title img {
    margin: 0 8px 0 0;
}
.sub-title i {
    font-size: 32px;
    margin-right: 8px;
}
.sub-title .spin {
    -webkit-animation: spin 5s linear infinite;
    animation: spin 5s linear infinite;
}
.box-title {
    font-size: 20px !important;
    line-height: 1.417;
    font-weight: 700;
    margin-top: -0.32em;
}
.box-title a {
    color: #191825;
}
.box-title a:hover {
    color: var(--theme-color);
}
.box-title2 {
    font-size: 20px !important; 
    line-height: 1.5;
    font-weight: 700;
    margin-top: -0.35em;
}
.box-title2 a {
    color: inherit;
}
.box-title2 a:hover {
    color: var(--theme-color);
}
.number-line a{
	color: #fff;
}
.sec-text {
    max-width: 720px;
}
.title-area {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}
.title-area .sec-title ,.main_text_hd{
    margin-bottom: 10px;
    font-size: 40px;
/* 	font-family: var(--title-font); */
}
.title-area.mb-0 .sec-title {
    margin-bottom: -0.24em;
}
.title-area .th-btn {
    margin-top: 20px;
    margin-bottom: 10px;
}
hr.title-line {
    margin-top: 0;
    background-color: var(--border-color);
    opacity: 1;
}
.sec-btn {
    text-align: center;
}
.sec-btn,
.title-line {
    margin-bottom: var(--section-title-space);
}
.ea-header a {
    font-size: 17px !important;
}
.shadow-title {
    font-family: var(--title-font);
    font-size: 74px;
    font-weight: 900;
    line-height: 1;
    background-image: -webkit-linear-gradient(top, rgba(226, 232, 250, 0.7) 0%, rgba(226, 232, 250, 0) 88.54%);
    background-image: linear-gradient(180deg, rgba(226, 232, 250, 0.7) 0%, rgba(226, 232, 250, 0) 88.54%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin: -0.55em 0 -0.45em -0.25em;
}
.shadow-title.color2 {
    background-image: -webkit-linear-gradient(top, #232c47 0%, rgba(20, 29, 56, 0) 91.15%);
    background-image: linear-gradient(180deg, #232c47 0%, rgba(20, 29, 56, 0) 91.15%);
}
.shadow-title.color3 {
    background-image: -webkit-linear-gradient(top, #e0e0e0 0%, rgba(220, 214, 214, 0) 93.75%);
    background-image: linear-gradient(180deg, #e0e0e0 0%, rgba(220, 214, 214, 0) 93.75%);
}
.title-area2 {
    padding: 50px 100px;
}
.title-area2 .subtitle {
    color: var(--white-color);
    text-transform: uppercase;
    margin-top: -0.4em;
    margin-bottom: 5px;
    display: block;
}
.title-area2 .title {
    color: var(--white-color);
    max-width: 430px;
    margin-bottom: -0.26em;
}
.inner_text_hd{
    font-size: 28px;
    font-weight: 600;
    color: #050606;
    line-height: 35px;
    margin-bottom: 15px;
}
.inner_text_hd strong{
	font-weight: 600;
	color: #0073e6;
}
.contact_left_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
}
.cont_left_icon {
    width: 35px;
    height: 35px;
    background: #0073e6;
    line-height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_left_text {
    font-size: 16px;
    color: #4b4b4b;
    font-weight: 500;
    width: 80%;
    margin-left: 10px;
}
.contact_left_text a {
    color: #4b4b4b;
}
.rmp-menu-title-image {
    background: #fff;
    width: 160px;
    padding: 10px;
    margin-bottom: 40px !important;
    border-radius: 10px;
}
.shape-mockup-wrap {
    z-index: 2;
    position: relative;
}
.shape-mockup {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}
.shape-mockup.z-index-3 {
    z-index: 3;
    pointer-events: none;
}
.shape-mockup.z-index-1 {
    z-index: 1;
    pointer-events: none;
}
.shape-mockup .svg-img {
    height: 110px;
    width: 110px;
}
.z-index-step1 {
    position: relative;
    z-index: 4 !important;
}
.z-index-common {
    position: relative;
    z-index: 3;
}
.z-index-3 {
    z-index: 3;
}
.z-index-n1 {
    z-index: -1;
}
.media-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.badge {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    padding: 0.25em 0.45em;
    font-size: 0.7em;
    border-radius: 50%;
    top: 8px;
    right: 8px;
    font-weight: 400;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.th-social a {
    display: inline-block;
    width: var(--icon-size, 46px);
    height: var(--icon-size, 46px);
    line-height: var(--icon-size, 46px);
    background-color: var(--smoke-color);
    color: var(--body-color);
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
    border-radius: 5px;
}
.th-social a:last-child {
    margin-right: 0;
}
.th-social a:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}
.th-social.color-theme a {
    color: var(--body-color);
    border-color: var(--theme-color);
}
.slider-shadow .slick-list {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: -30px;
    margin-top: -30px;
}
.btn-group {
    display: flex;
    gap: 20px;
}
.btn-group.style2 {
    gap: 20px 70px;
}
.th-bg-img {
    position: absolute;
    inset: 0;
}
.th-bg-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.mfp-zoom-in .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}
.mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.mfp-zoom-in.mfp-ready .mfp-content {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.7;
}
.mfp-zoom-in.mfp-removing .mfp-content {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}
.font-icon {
    font-family: var(--icon-font);
}
.font-title {
    font-family: var(--title-font);
}
.font-body {
    font-family: var(--body-font);
}
.fw-extralight {
    font-weight: 100;
}
.fw-light {
    font-weight: 300;
}
.fw-normal {
    font-weight: 400;
}
.fw-medium {
    font-weight: 500;
}
.fw-semibold {
    font-weight: 600;
}
.fw-bold {
    font-weight: 700;
}
.fw-extrabold {
    font-weight: 800;
}
.fs-md {
    font-size: 18px;
}
.fs-xs {
    font-size: 14px;
}
.bg-theme {
    background-color: var(--theme-color) !important;
}
.bg-smoke {
    background-color: var(--smoke-color) !important;
}
.bg-smoke2 {
    background-color: var(--smoke-color2) !important;
}
.bg-white {
    background-color: var(--white-color) !important;
}
.bg-black {
    background-color: var(--black-color) !important;
}
.bg-black2 {
    background-color: var(--black-color2) !important;
}
.bg-title {
    background-color: var(--title-color) !important;
}
.gradient-body {
    background-image: -webkit-linear-gradient(349.38deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%);
    background-image: linear-gradient(100.62deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%);
}
.gr-bg1 {
    background-image: -webkit-linear-gradient(10deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 23.81%, rgba(198, 241, 255, 0.3) 45.3%, rgba(248, 242, 222, 0.3) 68.4%, rgba(212, 179, 253, 0.3) 99.5%);
    background-image: linear-gradient(80deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 23.81%, rgba(198, 241, 255, 0.3) 45.3%, rgba(248, 242, 222, 0.3) 68.4%, rgba(212, 179, 253, 0.3) 99.5%);
}
.gr-bg2 {
    background-image: -webkit-linear-gradient(349.38deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%);
    background-image: linear-gradient(100.62deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%);
}
.gr-bg3 {
    background-image: -webkit-linear-gradient(339.41deg, rgba(236, 207, 254, 0.4) 0%, rgba(255, 221, 221, 0.5) 46.79%, rgba(247, 255, 229, 0.7) 100%);
    background-image: linear-gradient(110.59deg, rgba(236, 207, 254, 0.4) 0%, rgba(255, 221, 221, 0.5) 46.79%, rgba(247, 255, 229, 0.7) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.gr-bg4 {
    background-image: -webkit-linear-gradient(344.56deg, rgba(255, 229, 133, 0.4) 0%, rgba(189, 255, 199, 0.4) 48.48%, rgba(223, 109, 223, 0.4) 100%);
    background-image: linear-gradient(105.44deg, rgba(255, 229, 133, 0.4) 0%, rgba(189, 255, 199, 0.4) 48.48%, rgba(223, 109, 223, 0.4) 100%);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}
.background-image,
[data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.bg-fluid {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
}
.bg-auto {
    background-size: auto auto;
}
.bg-top-center {
    background-size: auto;
    background-position: top center;
}
.bg-repeat {
    background-size: auto;
    background-repeat: repeat;
}
.bg-bottom-right {
    background-size: auto;
    background-position: bottom right;
}
.bg-top-right {
    background-size: auto;
    background-position: top right;
}
.bg-top-left {
    background-size: auto;
    background-position: top left;
}
.text-theme {
    color: var(--theme-color) !important;
}
.text-title {
    color: var(--title-color) !important;
}
.text-body {
    color: var(--body-color) !important;
}
.text-white {
    color: var(--white-color) !important;
}
.text-light {
    color: var(--light-color) !important;
}
.text-yellow {
    color: var(--yellow-color) !important;
}
.text-success {
    color: var(--success-color) !important;
}
.text-error {
    color: var(--error-color) !important;
}
.text-inherit {
    color: inherit;
}
.text-inherit:hover {
    color: var(--theme-color);
}
a.text-theme:hover,
.text-reset:hover {
    text-decoration: underline;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.position-center {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
[data-overlay] {
    position: relative;
    z-index: 2;
}
[data-overlay] [class^="col-"],
[data-overlay] [class*="col-"] {
    z-index: 1;
}
[data-overlay]:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
[data-overlay="theme"]:before {
    background-color: var(--theme-color);
}
[data-overlay="title"]:before {
    background-color: var(--title-color);
}
[data-overlay="smoke"]:before {
    background-color: var(--smoke-color);
}
[data-overlay="white"]:before {
    background-color: var(--white-color);
}
[data-overlay="black"]:before {
    background-color: var(--black-color);
}
[data-overlay="overlay1"]:before {
    background-color: #080e1c;
}
[data-opacity="1"]:before {
    opacity: 0.1;
}
[data-opacity="2"]:before {
    opacity: 0.2;
}
[data-opacity="3"]:before {
    opacity: 0.3;
}
[data-opacity="4"]:before {
    opacity: 0.4;
}
[data-opacity="5"]:before {
    opacity: 0.5;
}
[data-opacity="6"]:before {
    opacity: 0.6;
}
[data-opacity="7"]:before {
    opacity: 0.7;
}
[data-opacity="8"]:before {
    opacity: 0.8;
}
[data-opacity="9"]:before {
    opacity: 0.9;
}
[data-opacity="10"]:before {
    opacity: 1;
}
.ripple-animation,
.play-btn:after,
.play-btn:before {
    -webkit-animation-duration: var(--ripple-ani-duration);
    animation-duration: var(--ripple-ani-duration);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
}
@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
}
@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
}
@-webkit-keyframes ripple2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(2.8);
        transform: scale(2.8);
        opacity: 0;
    }
}
@keyframes ripple2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(2.8);
        transform: scale(2.8);
        opacity: 0;
    }
}
.fancy-animation {
    -webkit-animation: morph 8s ease-in-out infinite;
    animation: morph 8s ease-in-out infinite;
}
@-webkit-keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}
@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}
.movingX {
    -webkit-animation: movingX 8s linear infinite;
    animation: movingX 8s linear infinite;
}
@-webkit-keyframes movingX {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes movingX {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.movingCar {
    -webkit-animation: movingCar 25s linear infinite;
    animation: movingCar 25s linear infinite;
}
@-webkit-keyframes movingCar {
    0% {
        -webkit-transform: translateX(0) rotateY(0deg);
        transform: translateX(0) rotateY(0deg);
    }
    50% {
        -webkit-transform: translateX(calc(100vw * -1 + 108%));
        transform: translateX(calc(100vw * -1 + 108%));
    }
    51% {
        -webkit-transform: translateX(calc(100vw * -1 + 108%)) rotateY(180deg);
        transform: translateX(calc(100vw * -1 + 108%)) rotateY(180deg);
    }
    100% {
        -webkit-transform: translateX(0) rotateY(180deg);
        transform: translateX(0) rotateY(180deg);
    }
}
@keyframes movingCar {
    0% {
        -webkit-transform: translateX(0) rotateY(0deg);
        transform: translateX(0) rotateY(0deg);
    }
    50% {
        -webkit-transform: translateX(calc(100vw * -1 + 108%));
        transform: translateX(calc(100vw * -1 + 108%));
    }
    51% {
        -webkit-transform: translateX(calc(100vw * -1 + 108%)) rotateY(180deg);
        transform: translateX(calc(100vw * -1 + 108%)) rotateY(180deg);
    }
    100% {
        -webkit-transform: translateX(0) rotateY(180deg);
        transform: translateX(0) rotateY(180deg);
    }
}
.moving {
    -webkit-animation: moving 8s linear infinite;
    animation: moving 8s linear infinite;
}
@-webkit-keyframes moving {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes moving {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.jump {
    -webkit-animation: jumpAni 7s linear infinite;
    animation: jumpAni 7s linear infinite;
}
@-webkit-keyframes jumpAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes jumpAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.jump-reverse {
    -webkit-animation: jumpReverseAni 7s linear infinite;
    animation: jumpReverseAni 7s linear infinite;
}
@-webkit-keyframes jumpReverseAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes jumpReverseAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.spin {
    -webkit-animation: spin 10s linear infinite;
    animation: spin 10s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.bg-color-ani,
.color-animate {
    -webkit-animation: bgColor 6s linear infinite;
    animation: bgColor 6s linear infinite;
}
@-webkit-keyframes bgColor {
    0% {
        background-color: #f2ba4c;
    }
    25% {
        background-color: #81f24c;
    }
    50% {
        background-color: #41f27d;
    }
    75% {
        background-color: #0500ff;
    }
    100% {
        background-color: #f2ba4c;
    }
}
@keyframes bgColor {
    0% {
        background-color: #f2ba4c;
    }
    25% {
        background-color: #81f24c;
    }
    50% {
        background-color: #41f27d;
    }
    75% {
        background-color: #0500ff;
    }
    100% {
        background-color: #f2ba4c;
    }
}
@-webkit-keyframes animate-positive {
    0% {
        width: 0;
    }
}
@keyframes animate-positive {
    0% {
        width: 0;
    }
}
.scalein.th-animated {
    --animation-name: scalein;
}
.slidetopleft.th-animated {
    --animation-name: slidetopleft;
}
.slidebottomright.th-animated {
    --animation-name: slidebottomright;
}
.slideinleft.th-animated {
    --animation-name: slideinleft;
}
.slideinright.th-animated {
    --animation-name: slideinright;
}
.slideinup.th-animated {
    --animation-name: slideinup;
}
.slideindown.th-animated {
    --animation-name: slideindown;
}
.rollinleft.th-animated {
    --animation-name: rollinleft;
}
.rollinright.th-animated {
    --animation-name: rollinright;
}
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
    opacity: 0;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-name: var(--animation-name);
    animation-name: var(--animation-name);
}
.th-animated {
    opacity: 1;
}
@-webkit-keyframes slideinup {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70px);
        transform: translateY(70px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideinup {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70px);
        transform: translateY(70px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes slideinright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(70px);
        transform: translateX(70px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes slideinright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(70px);
        transform: translateX(70px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes slideindown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-70px);
        transform: translateY(-70px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideindown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-70px);
        transform: translateY(-70px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes slideinleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-70px);
        transform: translateX(-70px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes slideinleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-70px);
        transform: translateX(-70px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes slidebottomright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px) translateY(100px);
        transform: translateX(100px) translateY(100px);
    }
    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}
@keyframes slidebottomright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px) translateY(100px);
        transform: translateX(100px) translateY(100px);
    }
    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}
@-webkit-keyframes slidetopleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px) translateY(-100px);
        transform: translateX(-100px) translateY(-100px);
    }
    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}
@keyframes slidetopleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px) translateY(-100px);
        transform: translateX(-100px) translateY(-100px);
    }
    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}

.recent-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}
.recent-post:last-child {
    margin-bottom: 0;
}
.recent-post .media-img {
    margin-right: 15px;
    width: 85px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}
.recent-post .media-img img {
    width: 100%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.recent-post .media-img:after {
    content: "\f0c1";
    font-family: var(--icon-font);
    position: absolute;
    inset: 0;
    text-align: center;
    line-height: 85px;
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--theme-color);
    pointer-events: none;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.recent-post .post-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 8px 0;
    font-family: var(--title-font);
    text-transform: capitalize;
}
.recent-post .recent-post-meta a {
    text-transform: capitalize;
    font-size: 14px;
    color: var(--body-color);
    font-family: var(--body-font);
}
.recent-post .recent-post-meta a i {
    margin-right: 6px;
    color: var(--theme-color);
}
.recent-post .recent-post-meta a:hover {
    color: var(--theme-color);
}
.recent-post:hover .media-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.recent-post:hover .media-img:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.sidebar-area {
    margin-bottom: -10px;
}
.sidebar-area ul.wp-block-latest-posts {
    margin-bottom: 0;
}
.sidebar-area ul.wp-block-latest-posts li:last-child {
    margin-bottom: 0;
}
.sidebar-area select,
.sidebar-area input {
    background-color: var(--white-color);
}
.sidebar-area .sidebar-gallery {
    margin-bottom: 0 !important;
}
.sidebar-area .widget .wp-block-search {
    margin-bottom: 0;
}
.sidebar-area .wp-block-group__inner-container h2 {
    font-size: 20px;
    line-height: 1em;
    margin-bottom: 20px;
    margin-top: -0.07em;
}
.sidebar-area ol.wp-block-latest-comments {
    padding: 0;
    margin: 0;
}
.sidebar-area ol.wp-block-latest-comments li {
    line-height: 1.5;
    margin: 0 0 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}
.sidebar-area ol.wp-block-latest-comments li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.download-widget-wrap .th-btn {
    width: 100%;
}
.download-widget-wrap .th-btn:first-child {
    margin-bottom: 20px;
}
.download-widget-wrap .th-btn.style2 {
    color: var(--body-color);
}
.download-widget-wrap .th-btn.style2:before {
    background-color: var(--theme-color);
}
.download-widget-wrap .th-btn.style2:hover {
    color: var(--white-color);
    border-color: var(--theme-color);
}
.widget_call {
    background-color: var(--title-color);
    position: relative;
    padding: 0 !important;
}
.widget_call .widget_title {
    color: var(--white-color);
}
.widget-map iframe {
    min-height: 280px;
}
.widget-call {
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-align: center;
    padding: 0 10px var(--widget-padding-y, 40px) 10px;
}
.widget-call:before {
    content: "";
    width: 368px;
    height: 368px;
    background-color: var(--theme-color);
    border: 6px solid var(--white-color);
    position: absolute;
    bottom: calc(100% - 120px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}
.widget-call .text {
    display: block;
    margin: 22px auto 25px auto;
    color: var(--white-color);
    max-width: 310px;
}
.widget-call .call {
    font-size: 30px;
    font-weight: 600;
    color: var(--white-color);
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 30px auto 0 auto;
}
.widget-call .call:hover {
    color: var(--theme-color);
}
.widget-call .play-btn {
    --icon-size: 60px;
}
.widget-call .play-btn > i {
    font-size: 30px;
}
.widget-call .box-title {
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 35px;
    padding-top: 20px;
}
.widget_info .th-btn {
    width: 100%;
    margin-bottom: 10px;
    display: block;
}
.widget_info .th-video {
    margin-bottom: 20px;
}
.info-list {
    margin-top: -16px;
}
.info-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.info-list i {
    color: var(--theme-color);
    width: 16px;
    margin-right: 2px;
    font-size: 16px;
}
.info-list strong {
    font-weight: 500;
    color: var(--title-color);
}
.info-list li {
    border-bottom: 1px dashed #d3dbeb;
    padding: 12px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
.info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: -0.45em;
}
.price_slider_wrapper {
    margin-top: -0.5em;
}
.price_slider_wrapper .price_label span {
    display: inline-block;
    color: var(--body-color);
}
.price_slider_wrapper .ui-slider {
    height: 6px;
    position: relative;
    width: 100%;
    background-color: var(--theme-color);
    border: none;
    margin-top: 15px;
    margin-bottom: 25px;
    cursor: pointer;
    border-radius: 0;
}
.price_slider_wrapper .ui-slider-range {
    border: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 1;
    display: block;
    background-color: var(--title-color);
}
.price_slider_wrapper .ui-slider-handle {
    width: 16px;
    height: 16px;
    line-height: 16px;
    border-radius: 50%;
    text-align: center;
    padding: 0;
    cursor: pointer;
    position: absolute;
    margin-top: -5px;
    z-index: 2;
    background-color: var(--white-color);
    border: 3px solid var(--title-color);
    -webkit-transform: translateX(-1px);
    -ms-transform: translateX(-1px);
    transform: translateX(-1px);
}
.price_slider_wrapper .ui-slider-handle:focus {
    outline: none;
    box-shadow: 1.5px 2.598px 10px 0px rgba(0, 0, 0, 0.15);
}
.price_slider_wrapper .ui-slider-handle:last-child {
    -webkit-transform: translateX(-9px);
    -ms-transform: translateX(-9px);
    transform: translateX(-9px);
}
.price_slider_wrapper button,
.price_slider_wrapper .button {
    background-color: var(--theme-color);
    color: var(--white-color);
    font-weight: 500;
    line-height: 1.6;
    text-transform: capitalize;
    text-align: center;
    border: none;
    display: inline-block;
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 7px 20px;
    min-width: 100px;
    font-size: 14px;
    border-radius: 0;
    -webkit-transition: 0.4s ease-in;
    transition: 0.4s ease-in;
}
.price_slider_wrapper button:hover,
.price_slider_wrapper .button:hover {
    background-color: var(--title-color);
}
.widget_shopping_cart .widget_title {
    margin-bottom: 30px;
    border-bottom: none;
}
.widget_shopping_cart ul {
    margin: 0;
    padding: 0;
}
.widget_shopping_cart ul li {
    list-style-type: none;
}
.widget_shopping_cart .mini_cart_item {
    position: relative;
    padding: 30px 30px 30px 90px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    text-align: left;
}
.widget_shopping_cart .mini_cart_item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.widget_shopping_cart .cart_list a:not(.remove) {
    display: block;
    color: var(--body-color);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--title-color);
}
.widget_shopping_cart .cart_list a:not(.remove):hover {
    color: var(--theme-color);
}
.widget_shopping_cart .cart_list a.remove {
    position: absolute;
    top: 50%;
    left: 95%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--body-color);
}
.widget_shopping_cart .cart_list a.remove:hover {
    color: var(--theme-color);
}
.widget_shopping_cart .cart_list img {
    width: 75px;
    height: 75px;
    position: absolute;
    left: 0;
    top: 18px;
}
.widget_shopping_cart .quantity {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    white-space: nowrap;
    vertical-align: top;
    margin-right: 20px;
    font-size: 14px;
    font-weight: 500;
}
.widget_shopping_cart .total {
    margin-top: 20px;
    font-size: 18px;
    color: var(--title-color);
    font-family: var(--body-font);
}
.widget_shopping_cart .total strong {
    font-family: var(--title-font);
}
.widget_shopping_cart .amount {
    padding-left: 5px;
}
.widget_shopping_cart .th-btn {
    margin-right: 15px;
}
.widget_shopping_cart .th-btn:last-child {
    margin-right: 0;
}
.th-video-widget .video-thumb {
    position: relative;
}
.th-video-widget .play-btn {
    --icon-size: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.th-video-widget .play-btn i {
    font-size: 16px;
}
.th-video-widget .video-thumb-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 10px;
    margin-bottom: -0.3em;
}
.widget_recent_entries ul {
    margin: -0.3em 0 0 0;
    padding: 0;
    list-style: none;
}
.widget_recent_entries ul li > a {
    color: var(--body-color);
    font-weight: 500;
    display: inline-block;
}
.widget_recent_entries ul li > a:hover {
    color: var(--theme-color);
}
.widget_recent_entries ul li span.post-date {
    font-size: 14px;
}
.widget_recent_entries ul li:not(:last-child) {
    border-bottom: 1px solid #dadada;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.widget_recent_comments ul,
.wp-block-latest-comments ul {
    list-style-type: none;
    padding-left: 0;
}
ul.widget_recent_comments,
ol.widget_recent_comments,
.wp-block-latest-comments {
    margin-top: -0.11em;
    padding-left: 0;
}
.widget_recent_comments ol,
.widget_recent_comments ul,
.wp-block-latest-comments ol,
.wp-block-latest-comments ul {
    margin-bottom: 0;
}
.widget_recent_comments li,
.wp-block-latest-comments li {
    margin-bottom: 0;
    color: var(--body-color);
    padding-left: 30px;
    position: relative;
}
.widget_recent_comments li:before,
.wp-block-latest-comments li:before {
    content: "\f086";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--theme-color);
    font-family: var(--icon-font);
}
.widget_recent_comments.has-avatars li,
.wp-block-latest-comments.has-avatars li {
    padding-left: 0;
    padding-bottom: 0 !important;
}
.widget_recent_comments.has-avatars li:before,
.wp-block-latest-comments.has-avatars li:before {
    display: none;
}
.widget_recent_comments .avatar,
.wp-block-latest-comments .avatar {
    margin-top: 0.4em;
}
.widget_recent_comments li:not(:last-child),
.wp-block-latest-comments li:not(:last-child) {
    padding-bottom: 12px;
}
.widget_recent_comments article,
.wp-block-latest-comments article {
    line-height: 1.5;
}
.widget_recent_comments a,
.wp-block-latest-comments a {
    color: inherit;
}
.widget_recent_comments a:hover,
.wp-block-latest-comments a:hover {
    color: var(--theme-color);
}
.wp-block-latest-comments__comment {
    line-height: 1.6;
}
.wp-block-latest-comments__comment a {
    color: var(--body-color);
}
.wp-block-latest-comments__comment a:hover {
    color: var(--theme-color);
}
.wp-block-latest-comments__comment:last-child {
    margin-bottom: 0;
}
.wp-block-calendar tbody td,
.wp-block-calendar th {
    padding: 10px;
}
.wp-block-calendar,
.calendar_wrap {
    position: relative;
    background-color: #fff;
    padding-bottom: 0;
    border: none;
}
.wp-block-calendar span[class*="wp-calendar-nav"],
.calendar_wrap span[class*="wp-calendar-nav"] {
    position: absolute;
    top: 9px;
    left: 20px;
    font-size: 14px;
    color: var(--white-color);
    font-weight: 400;
    z-index: 1;
    line-height: 1.7;
}
.wp-block-calendar span[class*="wp-calendar-nav"] a,
.calendar_wrap span[class*="wp-calendar-nav"] a {
    color: inherit;
}
.wp-block-calendar span.wp-calendar-nav-next,
.calendar_wrap span.wp-calendar-nav-next {
    left: auto;
    right: 20px;
}
.wp-block-calendar caption,
.calendar_wrap caption {
    caption-side: top;
    text-align: center;
    color: var(--white-color);
    background-color: var(--theme-color);
}
.wp-block-calendar th,
.calendar_wrap th {
    font-size: 14px;
    padding: 5px 5px;
    border: none;
    text-align: center;
    border-right: 1px solid #fff;
    color: var(--title-color);
    font-weight: 500;
}
.wp-block-calendar th:first-child,
.calendar_wrap th:first-child {
    border-left: 1px solid #eee;
}
.wp-block-calendar th:last-child,
.calendar_wrap th:last-child {
    border-right: 1px solid #eee;
}
.wp-block-calendar table th,
.calendar_wrap table th {
    font-weight: 500;
}
.wp-block-calendar td,
.calendar_wrap td {
    font-size: 14px;
    padding: 5px 5px;
    color: #01133c;
    border: 1px solid #eee;
    text-align: center;
    background-color: transparent;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.wp-block-calendar #today,
.calendar_wrap #today {
    color: var(--theme-color);
    background-color: var(--white-color);
    border-color: #ededed;
}
.wp-block-calendar thead,
.calendar_wrap thead {
    background-color: #fff;
}
.wp-block-calendar .wp-calendar-table,
.calendar_wrap .wp-calendar-table {
    margin-bottom: 0;
}
.wp-block-calendar .wp-calendar-nav .pad,
.calendar_wrap .wp-calendar-nav .pad {
    display: none;
}
.wp-block-calendar a,
.calendar_wrap a {
    color: inherit;
    text-decoration: none;
}
.wp-block-calendar a:hover,
.calendar_wrap a:hover {
    color: var(--title-color);
}
.wp-block-calendar {
    margin-bottom: 30px;
    border: none;
    padding-bottom: 0;
}
.wp-block-calendar table caption {
    color: var(--white-color);
}

.widget_rss,
.wp-block-rss {
    list-style-type: none;
}
.widget_rss ul,
.wp-block-rss ul {
    margin: -0.2em 0 -0.5em 0;
    padding: 0;
    list-style: none;
}
.widget_rss ul .rsswidget,
.wp-block-rss ul .rsswidget {
    color: var(--title-color);
    font-family: var(--theme-font);
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}
.widget_rss ul .rssSummary,
.wp-block-rss ul .rssSummary {
    font-size: 14px;
    margin-bottom: 7px;
    line-height: 1.5;
}
.widget_rss ul a,
.wp-block-rss ul a {
    display: block;
    font-weight: 600;
    color: inherit;
}
.widget_rss ul a:hover,
.wp-block-rss ul a:hover {
    color: var(--theme-color);
}
.widget_rss ul .rss-date,
.wp-block-rss ul .rss-date {
    font-size: 14px;
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 400;
    color: var(--title-color);
}
.widget_rss ul .rss-date:before,
.wp-block-rss ul .rss-date:before {
    content: "\f073";
    font-family: var(--icon-font);
    margin-right: 10px;
    font-weight: 300;
    color: var(--theme-color);
}
.widget_rss ul cite,
.wp-block-rss ul cite {
    font-weight: 500;
    color: var(--title-color);
    font-family: var(--body-font);
    font-size: 14px;
}
.widget_rss ul cite:before,
.wp-block-rss ul cite:before {
    content: "";
    position: relative;
    top: -1px;
    left: 0;
    width: 20px;
    height: 2px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    background-color: var(--theme-color);
}
.widget_rss li:not(:last-child),
.wp-block-rss li:not(:last-child) {
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 16px;
}
.widget_rss a:hover,
.wp-block-rss a:hover {
    color: var(--theme-color);
}
.textwidget {
    margin-top: -0.1em;
}
.sidebar-area .widget_shopping_cart .th-btn {
    margin-right: 10px;
    padding: 8px 22px;
    font-size: 14px;
}
.sidebar-area .widget_shopping_cart .th-btn {
    margin-right: 10px;
    padding: 8px 22px;
    font-size: 14px;
}
.footer_area {
    padding-top: 60px;
    padding-bottom: 20px;
}
.footer_hdtext{
	font-weight: 600;
	color: #fff;
	text-transform: capitalize;
    margin: -0.12em 0 38px 0;
    padding: 0 0 17px 0;
	position: relative;
    font-size: 24px !important;
    font-family: var(--title-font);
}
.footer_hdtext::after{
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	border-radius: 10px;
    height: 3px;
    width: 112px;
    background-color: transparent;
    background-image: -webkit-linear-gradient(left, var(--theme-color) 0, var(--theme-color) 80px, transparent 80px, transparent 85px, var(--theme-color) 85px, var(--theme-color) 100px, transparent 100px, transparent 105px, var(--theme-color) 105px, var(--theme-color) 112px);
    background-image: linear-gradient(to right, var(--theme-color) 0, var(--theme-color) 80px, transparent 80px, transparent 85px, var(--theme-color) 85px, var(--theme-color) 100px, transparent 100px, transparent 105px, var(--theme-color) 105px, var(--theme-color) 112px);
}

.footer_menulist ul {
    padding: 0;
    margin: 0;
}
.footer_menulist ul li {
    list-style: none;
	margin-bottom: 10px;
}
.footer_menulist ul li a {
    font-size: 16px;
    font-weight: 400;
    padding: 0 0 0 20px;
    font-family: var(--body-font);
    display: inline-block;
    position: relative;
    color: #fff;
}
.footer_menulist ul li a::before{
	position: absolute;
	font-family: var(--icon-font);
	content: "\f061";
    font-weight: 600;
    left: 0;
    top: 2px;
    font-size: 0.9em;
		
}
.about-logo {
    margin-bottom: 15px;
}
.th-widget-about .about-logo {
    margin-bottom: 35px;
    margin-top: -8px;
}
.th-widget-about .about-text {
    margin-bottom: 30px;
    margin-top: -0.9em;
}
.footer-text {
    margin-top: -0.5em;
    margin-bottom: 25px;
    font-size: 16px;
}
.social-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.social-box .social-title {
    font-size: 20px;
    color: var(--white-color);
    font-weight: 600;
    margin-right: 20px;
    margin-bottom: 0;
}
.icon-group a {
    color: var(--white-color);
    font-size: 18px;
    margin-right: 17px;
}
.icon-group a:last-child {
    margin-right: 0;
}
.newsletter-form {
    position: relative;
    max-width: 465px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.newsletter-form .th-btn {
    min-width: 145px;
    padding: 21px 20px;
}
.th-header .icon-btn {
    border-radius: 99px;
}
.th-header .menu-area {
    position: relative;
    z-index: 2;
}
.sticky-wrapper {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.banner_info {
    margin-top: 120px;
}
.header-button {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
.header-button .th-btn {
    margin-left: 15px;
}
.header-button .icon-btn .badge {
    font-size: 12px;
    top: 0;
    right: 0;
}
.header-button .icon-btn:hover .badge {
    background-color: var(--title-color);
}
.social-links .social-title {
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    margin: 0 10px 0 0;
    color: var(--body-color);
}
.social-links a {
    font-size: 16px;
    display: inline-block;
    color: var(--body-color);
    margin: 0 15px 0 0;
}
.social-links a:last-child {
    margin-right: 0 !important;
}
.social-links a:hover {
    color: var(--theme-color);
}
.header-logo {
    padding-top: 10px;
    padding-bottom: 10px;
}
.header-links ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.header-links li {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 400;
}
.header-links li:not(:last-child) {
    margin: 0 55px 0 0;
}
.header-links li:not(:last-child):after {
    content: "";
    height: 26px;
    width: 1px;
    background-color: var(--body-color);
    position: absolute;
    top: 0px;
    right: -30px;
    opacity: 0.6;
}
.header-links li > i {
    margin-right: 6px;
}
.header-links li,
.header-links span,
.header-links p,
.header-links a {
    color: var(--body-color);
}
.header-links a:hover {
    color: var(--theme-color);
}
.header-links b,
.header-links strong {
    font-weight: 600;
    margin-right: 6px;
}
.header-notice {
    margin: 0;
}
.header-top {
    padding: 16px 0;
    background-color: var(--theme-color);
    --body-color: #fff;
}
.header-top a:hover {
    color: var(--title-color);
}
.header-layout1 {
    position: relative;
    margin-bottom: -99px;
    --gap: 40px;
}
.header-layout1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #2a2f3c;
}
.header-layout1 .menu-area {
    position: relative;
    z-index: 2;
    background-color: var(--white-color);
    padding: 0 var(--gap);
    border: 3px solid var(--theme-color);
    border-top: none;
    border-radius: 0 0 10px 10px;
}
.header-layout1 .header-top {
    position: relative;
    z-index: 2;
    border-radius: 10px 10px 0 0;
    padding: 12px var(--gap);
}
.header-layout1 .header-logo {
    position: relative;
    z-index: 2;
}
.header-layout1 .th-menu-toggle {
    margin-left: auto;
}
.header-layout1 .main-menu > ul > li > a {
    padding: 35px 0;
}
.simple-icon {
    border: none;
    background-color: transparent;
    padding: 0;
    font-size: 24px;
}
.header-layout2 .menu-area {
    background-color: var(--white-color);
}
.header-layout2 .menu-area:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 33.5%;
    background-color: var(--theme-color);
    -webkit-clip-path: polygon(60px 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(60px 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}
.header-layout2 .header-top {
    padding: 7px 0;
    background-color: var(--title-color);
    --body-color: #fff;
    position: relative;
    z-index: 2;
}
.header-layout2 .header-top a:hover {
    color: var(--theme-color);
}
.header-layout2 .header-top:before {
    content: "";
    height: 100%;
    width: 35%;
    background-color: var(--theme-color);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%);
    z-index: -1;
}
.header-layout2 .header-top .line-btn {
    --theme-color: #0073e6;
}
.header-layout2 .header-links li > i {
    color: var(--theme-color);
}
.header-layout2 .header-links li:after {
    height: 56px;
    top: -15px;
    background-color: #2a2f3c;
    opacity: 1;
}
.header-layout2 .call-btn {
    gap: 30px;
    margin-left: 20px;
}
.header-layout2 .call-btn .icon-btn {
    border: none;
    background-color: var(--theme-color);
    color: var(--white-color);
    position: relative;
    z-index: 2;
    line-height: 56px;
}
.header-layout2 .call-btn .icon-btn:before {
    content: "";
    position: absolute;
    inset: -15px;
    background-color: rgba(0, 115, 230, 0.3);
    border: 5px solid var(--white-color);
    border-radius: inherit;
    z-index: -1;
}
.header-layout2 .call-btn .icon-btn:hover {
    background-color: var(--title-color);
}
.header-layout2 .call-btn .icon-btn:hover:before {
    background-color: rgba(25, 24, 37, 0.3);
}
.header-layout2 .call-btn .link {
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 600;
    color: var(--white-color);
}
.header-layout2 .header-button {
    margin-left: 30px;
}
.header-layout3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 25px;
}
.header-layout3 .header-logo {
    position: relative;
    z-index: 2;
}
.header-layout3 .header-logo:before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    height: 100%;
    width: 358px;
    background-color: var(--white-color);
    border-radius: 10px 0 0 10px;
    z-index: -1;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 68px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 68px) 100%, 0% 100%);
}
.header-layout3 .main-menu {
    margin-left: 120px;
}
.header-layout3 .main-menu > ul > li > a {
    padding: 30px 0;
}
.header-layout3 .th-menu-toggle {
    position: relative;
    z-index: 3;
}
.footer-wrapper {
    --border-color: rgba(255, 255, 255, 0.3);
    --body-color: #bdbdbd;
    position: relative;
    z-index: 2;
    background-color: var(--title-color);
    overflow: hidden;
}
.footer-wrapper .th-social a {
    background-color: #3d4250;
    color: var(--white-color);
}
.footer-wrapper .th-social a:hover {
    background-color: var(--theme-color);
}
.footer-wrapper .social-links a {
    margin: 0 30px 0 0;
}
.widget-area {
    padding-top: var(--section-space);
    padding-bottom: 66px;
}
.footer-links ul {
    padding: 0;
    margin: 0;
}
.footer-links li {
    font-family: var(--body-font);
    display: inline-block;
    padding-right: 15px;
    margin-right: 10px;
    position: relative;
}
.footer-links li:after {
    content: "";
    height: 20px;
    width: 1px;
    background-color: var(--body-color);
    position: absolute;
    top: 50%;
    right: 0;
    margin: -10px 0;
}
.footer-links li:last-child {
    margin-right: 0;
    padding-right: 0;
}
.footer-links li:last-child:after {
    display: none;
}
.footer-links a {
    font-family: inherit;
    color: var(--body-color);
}
.footer-links a:hover {
    color: var(--theme-color);
}
.copyright-wrap {
    padding: 22px 0;
    background-size: 100% auto;
    background-color: #2a2f3c;
}
.copyright-text {
    color: #fff;
}
.copyright-text a {
    color: var(--theme-color);
}
.copyright-text a:hover {
    color: var(--white-color);
}
.th-widget-contact {
    max-width: 265px;
}
.footer-newsletter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 25px;
    padding-left: 60px;
}
.footer-newsletter .newsletter-title {
    max-width: 425px;
    margin-bottom: 0;
}
.schedule-info {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.schedule-info:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.th-widget-schedule {
    width: 280px;
    max-width: 100%;
}
.th-widget-schedule .title {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}
.newsletter-widget {
    max-width: 290px;
}
.newsletter-widget .newsletter-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
}
.newsletter-widget .newsletter-form .th-btn {
    width: 100%;
}
.newsletter-widget .form-group {
    margin-bottom: 0;
}
.newsletter-widget .icon-btn {
    border: none;
    background-color: var(--theme-color);
    color: var(--white-color);
    border-radius: 0;
    min-width: 56px;
    padding: 0;
}
.newsletter-widget .icon-btn:hover {
    background-color: var(--title-color);
}
.newsletter-widget .footer-text {
    margin-bottom: 25px;
}
.footer-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.footer-inner .footer-left {
    padding-right: var(--gap-x);
    border-right: 1px solid var(--border-color);
    padding-top: 105px;
    padding-bottom: 50px;
}
.footer-inner .footer-top {
    border-bottom: 1px solid var(--border-color);
    padding: var(--gap-y) 0 var(--gap-y) var(--gap-x);
}
.footer-inner .widget-area2 {
    padding-top: var(--gap-y);
    padding-left: var(--gap-x);
    padding-bottom: 10px;
}
.th-widget-contact {
    max-width: 280px;
}
.info-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}
.info-box:last-child {
    margin-bottom: 0;
}
.info-box_icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    line-height: 32px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--theme-color);
    border-radius: 6px;
    text-align: center;
    margin-right: 10px;
}
.info-box_text {
    display: block;
    color: var(--body-color);
    margin-top: -0.45em;
    margin-bottom: -0.45em;
}
.info-box_link {
    display: inline-block;
    color: var(--body-color);
}
.info-box_link:hover {
    color: var(--theme-color);
}
.footer-layout2 {
    --border-color: #2a2f3c;
    --gap-x: 60px;
    --gap-y: 60px;
}
.footer-layout2 .copyright-wrap {
    border-top: 1px solid var(--border-color);
    background-color: var(--title-color);
}
.footer-layout3 {
    --border-color: #e0e0e0;
    --body-color: #74757b;
    background-color: #f7f4ed;
}
.footer-layout3 .footer-top {
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}
.footer-layout3 .footer-logo {
    width: 100%;
    padding: 27px 40px;
    position: relative;
    background-color: var(--theme-color);
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0% 100%);
}
.footer-layout3 .widget-area {
    padding-top: 60px;
    padding-bottom: 20px;
}
.footer-layout3 .copyright-wrap {
    --body-color: #fff;
    background-color: var(--title-color);
}
.footer-layout3 .copyright-wrap a {
    color: var(--white-color);
}
.footer-layout3 .copyright-wrap a:hover {
    color: var(--theme-color);
}
.footer-layout3 .widget_title {
    color: var(--title-color);
}
.footer-layout3 .recent-post .post-title {
    color: var(--title-color);
}
.contact-media {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
}
.contact-media_text {
    font-size: 14px;
    display: block;
    margin-top: -0.5em;
    margin-bottom: 5px;
    color: #c7c7c7;
}
.contact-media .icon-btn {
    border: none;
    line-height: 56px;
    background-color: var(--white-color);
    border-radius: 10px;
    font-size: 36px;
    color: var(--theme-color);
    border-right: 2px solid var(--theme-color);
    border-bottom: 2px solid var(--theme-color);
}
.contact-media .box-title {
    margin-bottom: -0.24em;
}
.contact-media.has-border {
    border-left: 1px solid var(--border-color);
}
.breadcumb-menu {
    max-width: 100%;
    padding: 0;
    margin: 35px 0 -0.5em 0;
    list-style-type: none;
    position: relative;
}
.breadcumb-menu li {
    display: inline-block;
    margin-right: 3px;
    padding-right: 5px;
    list-style: none;
    position: relative;
}
.breadcumb-menu li:after {
    content: "\f054";
    position: relative;
    margin-left: 10px;
    font-weight: 500;
    font-size: 15px;
    color: var(--white-color);
    font-family: var(--icon-font);
}
.breadcumb-menu li:last-child {
    padding-right: 0;
    margin-right: 0;
    color: var(--theme-color);
}
.breadcumb-menu li:last-child:after {
    display: none;
}
.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
    white-space: normal;
    color: inherit;
    word-break: break-word;
    font-weight: 500;
    font-size: 18px;
    color: var(--white-color);
}
.breadcumb-title {
    color: var(--white-color);
    margin: -0.2em 0 -0.18em 0;
    line-height: 1.1;
    font-weight: 800;
}
.breadcumb-wrapper {
    background-color: var(--title-color);
    padding: 215px 0 135px 0;
    overflow: hidden;
    text-align: center;
    margin-top: 56px;
}
.share-links-title {
    font-size: 14px;
    color: var(--title-color);
    font-family: var(--title-font);
    font-weight: 700;
    margin: 0 15px 0 0;
    display: inline-block;
    text-transform: uppercase;
}
.share-links {
    margin: var(--blog-space-y, 35px) 0 0 0;
    padding: 20px;
    background-color: var(--smoke-color);
    border-radius: 10px;
}
.share-links > .row {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    --bs-gutter-y: 15px;
}
.share-links .wp-block-tag-cloud,
.share-links .tagcloud {
    display: inline-block;
}
.blog-details .blog-single {
    background-color: transparent;
}
.blog-details .blog-content > p:last-child {
    margin-bottom: 0;
}
.th-comment-form {
    margin-top: var(--blog-space-y, 40px);
    margin-bottom: 30px;
    padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
    position: relative;
}
.th-comment-form .row {
    --bs-gutter-x: 20px;
}
.th-comment-form .blog-inner-title {
    margin-bottom: 0px;
}
.th-comment-form .form-title {
    margin-top: -0.35em;
}
.th-comment-form .form-title a#cancel-comment-reply-link {
    font-size: 0.7em;
    text-decoration: underline;
}
.th-comment-form .form-text {
    margin-bottom: 25px;
}
.th-comment-form .form-group > i {
    color: var(--theme-color);
}
.blog-comment-area {
    margin-bottom: 25px;
}
.th-comment-form,
.th-comments-wrap {
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}
.th-comment-form:has(#wp-temp-form-div),
.th-comments-wrap:has(#wp-temp-form-div) {
    padding: 0;
    box-shadow: none;
    display: none;
}
.th-comments-wrap {
    margin-top: var(--blog-space-y, 40px);
    margin-bottom: 30px;
}
.th-comments-wrap .description p:last-child {
    margin-bottom: -0.5em;
}
.th-comments-wrap .comment-respond {
    margin: 30px 0;
}
.th-comments-wrap pre {
    background: #ededed;
    color: #666;
    font-size: 14px;
    margin: 20px 0;
    overflow: auto;
    padding: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
}
.th-comments-wrap li {
    margin: 0;
}
.th-comments-wrap .th-post-comment {
    padding: 0;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}
.th-comments-wrap .th-post-comment ol,
.th-comments-wrap .th-post-comment ul,
.th-comments-wrap .th-post-comment dl {
    margin-bottom: 1rem;
}
.th-comments-wrap .th-post-comment ol ol,
.th-comments-wrap .th-post-comment ol ul,
.th-comments-wrap .th-post-comment ul ol,
.th-comments-wrap .th-post-comment ul ul {
    margin-bottom: 0;
}
.th-comments-wrap ul.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: -30px;
}
.th-comments-wrap ul.comment-list ul ul,
.th-comments-wrap ul.comment-list ul ol,
.th-comments-wrap ul.comment-list ol ul,
.th-comments-wrap ul.comment-list ol ol {
    margin-bottom: 0;
}
.th-comments-wrap .comment-avater {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 8px;
}
.th-comments-wrap .comment-avater img {
    width: 100%;
}
.th-comments-wrap .comment-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: -6px;
    position: relative;
}
.th-comments-wrap .commented-on {
    font-size: 16px;
    display: inline-block;
    margin-bottom: 2px;
    font-weight: 400;
    color: var(--body-color);
}
.th-comments-wrap .commented-on i {
    color: var(--theme-color);
    margin-right: 7px;
    font-size: 0.9rem;
}
.th-comments-wrap .name {
    margin-bottom: 12px;
    font-size: 20px;
}
.th-comments-wrap .comment-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.th-comments-wrap .text {
    margin-bottom: 10px;
}
.th-comments-wrap .children {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-left: 80px;
}
.th-comments-wrap .reply_and_edit {
    margin-top: 12px;
    margin-bottom: -0.46em;
}
.th-comments-wrap .reply_and_edit a {
    margin-right: 15px;
}
.th-comments-wrap .reply_and_edit a:last-child {
    margin-right: 0;
}
.th-comments-wrap .reply-btn {
    font-weight: 500;
    font-size: 16px;
    color: var(--body-color);
    display: inline-block;
}
.th-comments-wrap .reply-btn i {
    color: var(--theme-color);
    margin-right: 4px;
}
.th-comments-wrap .reply-btn:hover {
    color: var(--theme-color);
}
.th-comments-wrap .star-rating {
    font-size: 12px;
    margin-bottom: 10px;
    position: absolute;
    top: 5px;
    right: 0;
    width: 80px;
}
ul.comment-list .th-comment-item:last-child > .th-post-comment {
    border-bottom: none;
    padding-bottom: 0;
}
ul.comment-list .children .th-comment-item > .th-post-comment {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}
ul.comment-list:has(> .th-comment-item ~ .th-comment-item):first-child > .th-post-comment {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}
.th-comments-wrap.th-comment-form {
    margin: 0;
}
.comment-respond .must-log-in {
    margin-bottom: 0;
    margin-top: 8px;
}
.th-hero-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.th-hero-wrapper .slick-arrow {
    border: none;
}
.th-hero-wrapper .slick-dots {
    position: absolute;
    top: 50%;
    left: 80px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.th-hero-bg {
    position: absolute;
    inset: 0;
}
.th-hero-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.hero-subtitle {
    font-family: var(--title-font);
    color: var(--theme-color);
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 17px;
    text-transform: uppercase;
    margin-top: -0.24em;
}
.hero-title {
    font-size: 74px;
    font-weight: 800;
    line-height: 1.135;
    margin-bottom: 0;
}
.hero-title:last-of-type {
    margin-bottom: 17px;
}
.hero-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}
.hero-1 {
    overflow: hidden;
}
.hero-style1 {
    position: relative;
    z-index: 6;
    padding: 220px 0;
    max-width: 620px;
}
.hero-style1 .hero-title {
    color: var(--white-color);
}
.hero-style1 .hero-text {
    color: var(--white-color);
    font-weight: 400;
}
.hero-style1 .sub-title {
    margin-bottom: 15px;
}
.hero-2 {
    overflow-x: hidden;
}
.hero-2 .hero-img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}
.hero-2 .hero-shape1 {
    position: absolute;
    bottom: 0;
    left: 0;
}
.hero-style2 .video-btn .play-btn {
    margin-right: 15px;
}
.hero-style2 .video-btn .play-btn > i {
    background-color: var(--theme-color);
    color: var(--white-color);
    border: 1px solid var(--white-color);
}
.hero-style2 .video-btn .play-btn:before,
.hero-style2 .video-btn .play-btn:after {
    background-color: var(--white-color);
}
.hero-style2 .video-btn .line-btn {
    --title-color: #fff;
}
.hero-style2 .btn-group {
    gap: 50px;
}
.hero-style2 .sub-title:before {
    content: "";
    width: 40px;
    height: 2px;
    display: inline-block;
    margin-right: 10px;
    background-color: var(--theme-color);
    position: relative;
    top: -5px;
}
.hero-title2 {
    font-size: 74px;
    line-height: 1.156;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: -0.24em;
}
.hero-title2:last-of-type {
    margin-bottom: 15px;
}
.hero-title2 b {
    color: var(--theme-color);
    font-weight: bold;
}
.hero-3 {
    background-color: #f7f4ed;
    overflow-x: hidden;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.hero-3 .hero-img {
    text-align: center;
    position: relative;
}
.hero-3 .hero-img .star {
    position: absolute;
    top: 25%;
    left: calc(50% - 30px);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
.hero-3 .hero-shape1,
.hero-3 .hero-shape2,
.hero-3 .hero-shape3,
.hero-3 .hero-shape4 {
    position: absolute;
    pointer-events: none;
}
.hero-3 .hero-shape1 {
    top: -300px;
    right: 220px;
}
.hero-3 .hero-shape2 {
    top: -200px;
    right: -200px;
}
.hero-3 .hero-shape3 {
    top: 0;
    right: 0;
}
.hero-3 .hero-shape4 {
    top: 0;
    left: 0;
}
.hero-3 .hero-shape4 .color-mask {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fdedc8;
    -webkit-animation: colorPosition 5s linear infinite;
    animation: colorPosition 5s linear infinite;
    opacity: 1;
    inset: 0;
}
@-webkit-keyframes colorPosition {
    0% {
        height: 0;
        width: 0;
        border-radius: 0 50% 50% 0;
    }
    100% {
        height: 100%;
        width: 100%;
        border-radius: 0;
    }
}
@keyframes colorPosition {
    0% {
        height: 0;
        width: 0;
        border-radius: 0 50% 50% 0;
    }
    100% {
        height: 100%;
        width: 100%;
        border-radius: 0;
    }
}
.hero-style3 {
    padding: 260px 0 32px 0;
    position: relative;
    z-index: 5;
    text-align: center;
}
.hero-style3 .hero-text {
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
}
.hero-style3 .btn-group {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.error-content {
    text-align: center;
}
.error-img {
    text-align: center;
    margin-bottom: 45px;
}
.error-title {
    margin-bottom: 20px;
}
.error-text {
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
#description {
    margin-bottom: 30px;
}
.product-details .th-comments-wrap {
    margin-top: 0;
}
.product-details .border-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.product-details .border-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 80px;
    background-color: var(--theme-color);
}
.product-inner-title {
    font-size: 32px;
    border-bottom: 1px solid var(--border-color);
    padding: 0 0 7px 0;
    margin: 0 0 30px 0;
}
.related-product-wrapper {
    padding-top: 115px;
}
.cart_table {
    border: 1px solid #eaf0f2;
    margin-bottom: 45px;
}
.cart_table thead {
    background-color: #ecf0f1;
}
.cart_table thead th {
    border: none !important;
}
.cart_table td:before,
.cart_table th {
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 800;
    border: none;
    padding: 27px 15px;
}
.cart_table td:before {
    content: attr(data-title);
    position: absolute;
    left: 15px;
    top: 50%;
    vertical-align: top;
    padding: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
}
.cart_table td {
    border: none;
    border-bottom: 1px solid #f3f3f3;
    color: #8b8b8b;
    padding: 20px 10px;
    position: relative;
    vertical-align: middle;
}
.cart_table .product-quantity {
    color: var(--title-color);
}
.cart_table .product-quantity input {
    position: relative;
    top: -2px;
}
.cart_table .cart-productname {
    font-weight: 400;
    font-family: var(--body-font);
    color: var(--body-color);
}
.cart_table .cart-productimage {
    display: inline-block;
    border: 2px solid var(--smoke-color);
}
.cart_table .remove {
    color: var(--theme-color);
    font-size: 18px;
}
.cart_table .quantity {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.cart_table td.product-quantity {
    min-width: 155px;
}
.cart_table .qty-btn {
    border: 2px solid var(--smoke-color) !important;
    background-color: transparent;
    color: #b8c6d0;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 14px;
    border-radius: 4px;
}
.cart_table .qty-btn:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}
.cart_table .qty-input {
    vertical-align: middle;
    border: 2px solid var(--smoke-color);
    width: 60px;
    height: 30px;
    font-size: 14px;
    text-align: center;
    color: var(--title-color);
    font-weight: 700;
    margin: 0 3px;
    border-radius: 4px;
    padding: 0;
}
.cart_table .qty-input::-moz-placeholder {
    color: var(--title-color);
}
.cart_table .qty-input::-webkit-input-placeholder {
    color: var(--title-color);
}
.cart_table .qty-input:-ms-input-placeholder {
    color: var(--title-color);
}
.cart_table .qty-input::-ms-input-placeholder {
    color: var(--title-color);
}
.cart_table .qty-input::placeholder {
    color: var(--title-color);
}
.cart_table .qty-input::-webkit-outer-spin-button,
.cart_table .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.cart_table .qty-input[type="number"] {
    -moz-appearance: textfield;
}
.cart_table .actions {
    text-align: right;
    vertical-align: middle;
    padding-left: 20px;
}
.cart_table .actions > .th-btn {
    font-size: 16px;
    padding: 20px 28px;
    margin-right: 15px;
}
.cart_table .actions > .th-btn:last-child {
    margin-right: 0;
}
.cart_table .th-cart-coupon {
    float: left;
    margin: 0;
    width: 455px;
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.cart_table .th-cart-coupon input {
    width: calc(100% - 200px);
    margin-right: 10px;
}
.cart_table .th-cart-coupon .th-btn {
    font-size: 16px;
    padding: 20px 25px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.cart_totals {
    border: 1px solid #ecf0f1;
}
.cart_totals th,
.cart_totals td {
    vertical-align: top;
    padding: 20px 20px;
    border: none;
    border-bottom: 1px solid #ecf0f1;
    font-size: 14px;
    color: var(--title-color);
    width: 55%;
}
.cart_totals th:first-child,
.cart_totals td:first-child {
    width: 45%;
    background-color: #f9fbfb;
    font-weight: 700;
    font-size: 14px;
    color: #333333;
}
.cart_totals .shipping-calculator-button {
    display: inline-block;
    border-bottom: 1px solid;
    color: var(--title-color);
    font-weight: 700;
}
.cart_totals .shipping-calculator-button:hover {
    color: var(--theme-color);
}
.cart_totals .woocommerce-shipping-destination {
    margin-bottom: 10px;
}
.cart_totals .woocommerce-shipping-methods {
    margin-bottom: 0;
}
.cart_totals .shipping-calculator-form {
    display: none;
}
.cart_totals .shipping-calculator-form p:first-child {
    margin-top: 20px;
}
.cart_totals .shipping-calculator-form p:last-child {
    margin-bottom: 0;
}
.cart_totals .amount {
    font-weight: 700;
}
.cart_totals .order-total .amount {
    color: var(--theme-color);
}
.empty-notice {
    margin: 40px auto;
}

@media (max-width: 767px) {
    tfoot.checkout-ordertable th {
        display: none;
    }
    .woocommerce-checkout-payment ul input[type="radio"] ~ label img {
        max-width: 150px;
    }
    .checkout-ordertable th,
    .checkout-ordertable td {
        padding: 5px 20px 5px 60px;
    }
}
.tinv-wishlist input[type="checkbox"] {
    display: inline-block;
    opacity: 1;
    visibility: visible;
    vertical-align: middle;
    width: auto;
    height: auto;
}
.tinv-wishlist .tinv-header {
    margin-top: -0.8rem;
    text-transform: capitalize;
}
.tinv-wishlist .cart-empty {
    padding: 12px 25px;
    background-color: #eee;
    border-radius: 0;
    font-weight: 700;
    font-size: 14px;
}
.tinv-wishlist p.return-to-shop .button {
    display: inline-block;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 14px;
    padding: 10px 25px;
    margin-top: 10px;
    font-weight: 700;
}
.tinv-wishlist p.return-to-shop .button:hover {
    background-color: var(--title-color);
    color: var(--white-color);
}
.tinv-wishlist table {
    border: none;
}
.tinv-wishlist table th {
    color: var(--title-color);
}
.tinv-wishlist table td,
.tinv-wishlist table th {
    padding: 15.3px 10px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}
.tinv-wishlist table thead {
    background-color: var(--smoke-color);
}
.tinv-wishlist .product-cb,
.tinv-wishlist .product-remove {
    width: 40px;
    text-align: center;
}
.tinv-wishlist .product-thumbnail {
    width: 110px;
}
.tinv-wishlist .stock.in-stock {
    margin-bottom: 0;
}
.tinv-wishlist ins {
    text-decoration: none;
}
.tinv-wishlist .product-remove button {
    border: none;
    height: 22px;
    width: 22px;
    text-align: center;
    font-size: 12px;
    line-height: 22px;
    border-radius: 0;
    padding-top: 0;
}
.tinv-wishlist .product-remove button i {
    line-height: 22px;
    font-size: 16px;
}
.tinv-wishlist .tinvwl-mobile {
    display: none;
}
.tinv-wishlist .social-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 295px;
    margin-left: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.tinv-wishlist .social-buttons ul {
    padding-left: 0;
    margin-bottom: 0;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
}
.tinv-wishlist table.tinvwl-table-manage-list {
    font-size: 16px;
}
.tinv-wishlist .product-stock .stock {
    display: block;
}
.tinv-wishlist .product-stock span {
    display: inline;
}
.tinv-wishlist .product-stock i {
    margin-right: 5px;
}
.tinv-wishlist .tinv-modal .icon_big_times {
    margin-bottom: 5px;
    color: var(--theme-color);
}
.tinv-wishlist button.button {
    border: none;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
    font-weight: 600;
    background-color: var(--theme-color);
    color: #fff;
    padding: 1px 15px;
    min-width: 140px;
}
.tinv-wishlist button.button i {
    font-size: 18px !important;
    margin-right: 3px !important;
}
.tinv-wishlist button.button:hover {
    background-color: var(--title-color);
    color: #fff;
}
.tinv-wishlist .tinvwl-buttons-group button i {
    font-size: 14px;
}
.tinv-wishlist th,
.tinv-wishlist td.product-name {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--title-font);
}
.tinv-wishlist td.product-name a {
    color: var(--body-color);
}
.tinv-wishlist td.product-name a:hover {
    color: var(--theme-color);
}
.tinv-wishlist td.product-price del {
    margin-left: 8px;
    font-size: 0.9em;
}
.tinv-wishlist .social-buttons > span {
    font-weight: 700;
    margin-right: 10px;
    font-family: var(--title-font);
    color: var(--title-color);
}
.tinv-wishlist .social-buttons li {
    display: inline-block;
    margin-right: 0;
}
.tinv-wishlist .social-buttons li a.social {
    background-color: var(--theme-color);
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    margin-left: 3px;
}
.tinv-wishlist .social-buttons li a.social:first-child {
    margin-left: 0;
}
.tinv-wishlist .social-buttons li a.social i {
    line-height: inherit;
}
.tinv-wishlist .social-buttons li a.social:hover {
    background-color: var(--title-color);
    color: var(--white-color);
}
.appoitment-form1 .box .form-control{
    width: 100%;
    background: #fff;
    outline: none;
    box-shadow: none;
    padding: 10px 15px;
    border-radius: 0;
    font-size: 14px;
}
.appoitment-form1 .box label {
    font-size: 13px;
    margin-bottom: 12px;
}
.appoitment-form1 .box textarea{
	resize: none;
	height: 90px;
}
.appoitment-form1 .box .th-btn {
    width: 100%;
}
.wpcf7-spinner {
    display: none !important;
}
.contact-feature {
    background-color: #f7f4ed;
    padding: 40px 10px;
    text-align: center;
    border-radius: 20px;
}
.contact-feature_icon {
    margin-bottom: 17px;
}
.contact-feature_subtitle {
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
}
.contact-feature .box-title {
    margin-bottom: -0.32em;
}
.contact-feature.bg-theme .contact-feature_subtitle {
    color: var(--white-color);
}
.contact-feature.bg-theme .contact-feature_icon img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.contact-feature.bg-theme .box-title {
    color: var(--white-color);
}
.contact-feature.bg-theme .box-title a:hover {
    color: var(--title-color);
}
.contact-form select,
.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea,
.contact-form input {
    background-color: var(--white-color);
}
.contact-form .form-group > i {
    background-color: var(--white-color);
    color: var(--theme-color);
    width: 18px;
    text-align: right;
}
.quote-form-box {
    padding: 50px;
}
.quote-form-box textarea {
    min-height: 120px;
}
.quote-form-box .form-title {
    margin-top: -0.24em;
    margin-bottom: 10px;
}
.quote-form-box .form-text {
    margin-bottom: 25px;
}
.rounded-20 {
    border-radius: 20px;
    overflow: hidden;
}
.form-text {
    font-size: 16px;
}
.contact-map {
    line-height: 0px;
    height: 100%;
}
.contact-map iframe {
    -webkit-filter: grayscale(100);
    filter: grayscale(100);
    height: 100%;
}
.img-box1 {
    position: relative;
    z-index: 2;
    padding-bottom: 105px;
}
.img-box1:before {
    content: "";
    background-color: var(--smoke-color);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 195px;
    width: 444px;
    max-width: 100%;
    -webkit-clip-path: path("M270 0H444L175 195H0L270 0Z");
    clip-path: path("M270 0H444L175 195H0L270 0Z");
    z-index: -1;
}
.img-box1 img {
    border-radius: 10px;
}
.img-box1 .img1 {
    display: inline-block;
    position: relative;
    z-index: 2;
}
.img-box1 .img1 img {
    width: 100%;
}
.img-box1 .img2 {
    position: absolute;
    bottom: 0px;
    right: 0;
    z-index: 3;
}
.img-box1 .year-counter-wrap {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--smoke-color);
    -webkit-clip-path: path("M325 0V140L195 235H0L325 0Z");
    clip-path: path("M325 0V140L195 235H0L325 0Z");
    height: 235px;
    width: 325px;
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 10px;
}
.year-counter {
    max-width: 135px;
    text-align: center;
    -webkit-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    transform: rotate(-35deg);
    padding-top: 6px;
}
.year-counter_number {
    font-family: var(--title-font);
    font-size: 44px;
    font-weight: 600;
    color: var(--theme-color);
    line-height: 46px;
    padding-left: 5px;
}
.year-counter_text {
    margin-bottom: 0;
}
.video-checklist {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}
.video-checklist .checklist {
    margin-top: -5px;
}
.about-feature {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}
.about-feature-wrap {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    margin-bottom: 40px;
}
.about-feature_title {
    font-size: 18px;
    margin-bottom: 10px;
}
.about-feature_text {
    margin-bottom: -0.5em;
}
.img-box3 {
    position: relative;
    z-index: 2;
    --space: 40px;
}
.img-box3:before {
    content: "";
    background-color: var(--theme-color);
    position: absolute;
    bottom: calc(var(--space) * -1);
    left: calc(var(--space) * -1);
    height: 200px;
    width: 212px;
    z-index: -1;
    border-radius: 10px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.img-box3 .img1 img {
    border-radius: 10px;
}
.img-box3 .img2 {
    position: absolute;
    top: 30px;
    right: 0;
    padding: 10px 0 10px 10px;
    display: inline-block;
    border-radius: 10px;
    background-color: var(--white-color);
    -webkit-animation: jumpAni 5s linear infinite;
    animation: jumpAni 5s linear infinite;
}
.img-box3 .img2 img {
    border-radius: inherit;
}
.img-box3 .shape1 {
    position: absolute;
    top: calc(var(--space) * -1);
    left: calc(var(--space) * -1);
    z-index: -1;
    -webkit-animation: jumpReverseAni 5s linear infinite;
    animation: jumpReverseAni 5s linear infinite;
}
.img-box3 .year-counter {
    position: absolute;
    right: 0;
    bottom: 30px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    background-color: var(--white-color);
    box-shadow: 0px 6px 20px rgba(191, 191, 191, 0.25);
    border-radius: 10px;
    z-index: 3;
    max-width: 205px;
    padding: 30px 35px;
}
.img-box3 .year-counter_number {
    padding-left: 0;
}
@media (max-width: 1199px) {
    .about-feature {
        max-width: 360px;
    }
    .about-feature-wrap {
        gap: 30px;
    }
    .img-box3 .img1 {
        display: inline-block;
        width: 80%;
    }
    .img-box3 .img1 img {
        width: 100%;
        max-height: 550px;
        object-fit: cover;
    }
}
@media (max-width: 767px) {
    .about-feature-wrap {
        grid-template-columns: auto;
    }
    .img-box3 .img1 {
        right: -42px;
    }
}
@media (max-width: 575px) {
    .img-box3 .img1 {
        right: 0;
        bottom: 25%;
    }
    .img-box3 .img1 img {
        max-width: 100%;
    }
}
.about-quote {
    padding-left: 19px;
    margin: -0.5em 0;
    font-style: italic;
    position: relative;
    font-weight: 600;
}
.about-quote:before {
    content: "";
    height: calc(100% - 15px);
    width: 4px;
    position: absolute;
    top: 8px;
    left: 0;
    background-color: var(--theme-color);
}
.call-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    text-align: left;
}
.call-btn .play-btn > i {
    --icon-size: 46px;
    font-size: 16px;
    background-color: var(--theme-color);
    color: var(--white-color);
    margin-right: 0;
}
.call-btn .play-btn:before,
.call-btn .play-btn:after {
    background-color: var(--theme-color);
}
.call-btn .play-btn:hover > i {
    background-color: var(--title-color);
}
.call-btn .play-btn:hover:before,
.call-btn .play-btn:hover:after {
    background-color: var(--title-color);
}
.call-btn .btn-text {
    font-size: 14px;
    font-weight: 500;
    display: block;
    color: var(--body-color);
    margin-bottom: 5px;
}
.call-btn .btn-title {
    font-size: 20px;
    color: var(--title-color);
    font-weight: 500;
}
.call-btn a:hover {
    color: var(--theme-color) !important;
}
.cta-1 {
    padding: 80px 0 80px 300px;
}
.cta-1 .call-btn .btn-text {
    color: var(--light-color);
}
.why-sec1 {
    background-size: auto;
    background-position: top left;
}
.service-card {
    position: relative;
    z-index: 2;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    border-radius: 10px;
    background-color: var(--white-color);
    padding: 30px;
}
.service-card_img {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}
.service-card_img > img {
    width: 100%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.page-title {
    margin-top: -0.3em;
    font-size: 36px;
    margin-bottom: 20px;
}
.title-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: -0.3em;
}
.title-wrap .page-title {
    margin-bottom: 0;
    margin-top: 0;
}
.page-img {
    margin-bottom: 40px;
    overflow: hidden;
}
.page-single {
    margin-bottom: 30px;
}
.service-feature {
    background-color: var(--smoke-color);
    padding: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
}
.service-feature-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.service-feature_icon {
    background: var(--white-color);
    box-shadow: 0px 4px 20px rgba(159, 159, 159, 0.15);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 10px;
    font-size: 44px;
    color: var(--theme-color);
}
.service-feature_title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: -0.3em;
}
.service-feature_text {
    margin-bottom: -0.5em;
}

.checklist li.unavailable {
    color: #c4c4c4;
}
.checklist li.unavailable > i {
    color: #c4c4c4;
}
.man-shape {
    margin-left: -6%;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.project-card .project-img {
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
    height: 100%;
}
.project-card .project-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.project-card .project-img:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    background: -webkit-linear-gradient(top, rgba(25, 24, 37, 0) 0%, #191825 100%);
    background: linear-gradient(180deg, rgba(25, 24, 37, 0) 0%, #191825 100%);
    opacity: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: 1;
    border-radius: inherit;
}
.project-card .project-content {
    position: absolute;
    left: 0;
    bottom: -100px;
    width: 100%;
    padding: 0 75px 30px 30px;
    z-index: 3;
    opacity: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.project-card .box-title2 {
    color: var(--white-color);
    margin-bottom: -0.3em;
    font-weight: 500;
}
.project-card .box-title2 a:hover {
    color: var(--theme-color);
}
.project-card .project-subtitle {
    font-weight: 500;
    margin-top: -0.45em;
    margin-bottom: 10px;
    color: var(--theme-color);
}
.project-card .project-btn {
    position: absolute;
    right: -136px;
    bottom: -136px;
    width: 136px;
    height: 136px;
    background-color: var(--theme-color);
    color: var(--white-color);
    font-size: 24px;
    padding: 36px 32px;
    border-radius: 50%;
    z-index: 3;
}
.project-card .project-btn:after,
.project-card .project-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -9px;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    border-radius: inherit;
    z-index: -1;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.project-card .project-btn:after {
    background-color: var(--theme-color);
    inset: 0;
}
.project-card .project-btn:hover:before {
    background-color: var(--title-color);
    left: 0;
}
.project-card .project-btn:hover:after {
    top: -9px;
    left: 0;
    z-index: -2;
}
.project-card:hover .project-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.project-card:hover .project-img:before {
    height: 100%;
    opacity: 1;
}
.project-card:hover .project-content {
    bottom: 0;
    opacity: 1;
}
.project-card:hover .project-btn {
    right: -58px;
    bottom: -47px;
}
.process-card {
    padding: 30px;
    box-shadow: 0px 0px 20px rgba(186, 186, 186, 0.15);
    border-radius: 10px;
    background-color: var(--white-color);
    position: relative;
    z-index: 2;
}
.process-card-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.process-card_number {
    font-size: 24px;
    font-weight: 600;
    color: var(--white-color);
    background-color: var(--theme-color);
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 25px;
}
.process-card_img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.process-card_img > img {
    width: 115px;
    -webkit-filter: brightness(0) invert(0);
    filter: brightness(0) invert(0);
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.process-card .box-title {
    margin-bottom: 10px;
}
.process-card_icon {
    position: absolute;
    top: 30px;
    right: 30px;
}
.process-card_text {
    margin-bottom: -0.5em;
}
.process-card:hover .process-card_img > img {
    opacity: 0.03;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
@media (max-width: 767px) {
    .process-card-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}
.line-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    margin: 0 auto 30px auto;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    position: relative;
    z-index: 2;
}
.line-icon img {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.line-icon:before,
.line-icon:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.line-icon:before {
    background-color: var(--smoke-color2);
    -webkit-clip-path: path(
        "M13.3881 76.4603C4.65737 67.4651 0.294678 56.9287 0.294678 44.8461C0.294678 36.791 2.54587 29.3421 7.04826 22.4942C11.5453 15.6463 17.4822 10.278 24.8483 6.38399C32.209 2.49515 39.9834 0.548157 48.1661 0.548157C60.1689 0.548157 70.3234 4.44728 78.6512 12.2301C86.9683 20.0181 91.1322 30.4928 91.1322 43.6388C91.1322 56.528 86.834 67.4702 78.2429 76.4603C69.6465 85.4606 58.9385 89.9557 46.1245 89.9557C33.031 89.9557 22.1135 85.4606 13.3881 76.4603Z"
    );
    clip-path: path(
        "M13.3881 76.4603C4.65737 67.4651 0.294678 56.9287 0.294678 44.8461C0.294678 36.791 2.54587 29.3421 7.04826 22.4942C11.5453 15.6463 17.4822 10.278 24.8483 6.38399C32.209 2.49515 39.9834 0.548157 48.1661 0.548157C60.1689 0.548157 70.3234 4.44728 78.6512 12.2301C86.9683 20.0181 91.1322 30.4928 91.1322 43.6388C91.1322 56.528 86.834 67.4702 78.2429 76.4603C69.6465 85.4606 58.9385 89.9557 46.1245 89.9557C33.031 89.9557 22.1135 85.4606 13.3881 76.4603Z"
    );
    inset: 4px;
}
.line-icon:after {
    -webkit-mask-image: url("../img/theme-img/feature_card_circle.svg");
    mask-image: url("../img/theme-img/feature_card_circle.svg");
    -webkit-animation: spin 10s linear infinite;
    animation: spin 10s linear infinite;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background-color: var(--theme-color);
}
.feature-card {
    padding: 35px 30px;
    background-color: var(--theme-color);
    border-radius: 10px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.feature-card:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: inherit;
    z-index: -1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.feature-card .box-title2 {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.feature-card_text {
    max-width: 300px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    margin: 0 auto 14px auto;
}
.feature-card .line-btn {
    color: var(--title-color);
}
.feature-card .line-btn:before {
    background-color: var(--title-color);
}
.feature-card:hover:before {
    height: 0;
    border-color: transparent;
}
.feature-card:hover .box-title2 {
    color: var(--white-color);
}
.feature-card:hover .line-btn {
    color: var(--white-color);
}
.feature-card:hover .line-btn:before {
    background-color: var(--white-color);
}
.feature-card:hover .line-icon img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.feature-card:hover .line-icon:before {
    background-color: var(--title-color);
}
.feature-card:hover .line-icon:after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.feature-card:hover .feature-card_text {
    color: var(--white-color);
}
.feature-sec1 {
    background-size: 100% 250px;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: -webkit-linear-gradient(right, var(--smoke-color), var(--smoke-color));
    background-image: linear-gradient(to left, var(--smoke-color), var(--smoke-color));
}
.feature-box {
    padding: 38px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    border-radius: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.feature-box:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: var(--theme-color);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: -1;
}
.feature-box .line-icon {
    width: 95px;
    height: 95px;
    line-height: 95px;
    margin-bottom: 10px;
}
.feature-box .line-icon:before {
    -webkit-clip-path: path(
        "M12.5183 72.3869C4.22412 63.8415 0.0795898 53.832 0.0795898 42.3535C0.0795898 34.7012 2.21821 27.6248 6.49546 21.1194C10.7676 14.6139 16.4076 9.51403 23.4054 5.81476C30.398 2.12038 37.7836 0.270752 45.5572 0.270752C56.9598 0.270752 66.6065 3.9749 74.5179 11.3685C82.419 18.7671 86.3747 28.718 86.3747 41.2067C86.3747 53.4513 82.2915 63.8463 74.13 72.3869C65.9634 80.9371 55.7909 85.2074 43.6176 85.2074C31.1789 85.2074 20.8074 80.9371 12.5183 72.3869Z"
    );
    clip-path: path(
        "M12.5183 72.3869C4.22412 63.8415 0.0795898 53.832 0.0795898 42.3535C0.0795898 34.7012 2.21821 27.6248 6.49546 21.1194C10.7676 14.6139 16.4076 9.51403 23.4054 5.81476C30.398 2.12038 37.7836 0.270752 45.5572 0.270752C56.9598 0.270752 66.6065 3.9749 74.5179 11.3685C82.419 18.7671 86.3747 28.718 86.3747 41.2067C86.3747 53.4513 82.2915 63.8463 74.13 72.3869C65.9634 80.9371 55.7909 85.2074 43.6176 85.2074C31.1789 85.2074 20.8074 80.9371 12.5183 72.3869Z"
    );
}
.feature-box .box-title2 {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.feature-box_text {
    margin-bottom: 15px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.feature-box:hover {
    border-color: var(--theme-color);
}
.feature-box:hover:before {
    width: 100%;
    left: 0;
    right: unset;
}
.feature-box:hover .box-title2 {
    color: var(--white-color);
}
.feature-box:hover .line-icon:before {
    background-color: transparent;
}
.feature-box:hover .line-btn {
    color: var(--white-color);
}
.feature-box:hover .line-btn:before {
    background-color: var(--white-color);
}
.feature-box:hover .feature-box_text {
    color: var(--white-color);
}
.feature-sec2 {
    background-color: var(--title-color);
    margin-top: -350px;
    padding-top: 350px;
}
@media (max-width: 1299px) {
    .feature-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
}
.course-meta {
    display: inline-block;
}
.course-meta > a,
.course-meta > span {
    color: var(--body-color);
    font-weight: 500;
    margin-right: 25px;
}
.course-meta > a i,
.course-meta > span i {
    margin-right: 5px;
    color: var(--theme-color);
}
.course-meta > a:last-child,
.course-meta > span:last-child {
    margin-right: 0;
}
.course-meta .meta-box {
    border-right: 1px solid var(--border-color);
    padding-right: 12px;
    margin-right: 8px;
}
.course-meta .meta-box:last-child {
    border-right: none !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
}
.course-meta a:hover {
    color: var(--theme-color);
}
.meta-box {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.meta-box .avater {
    border-radius: 50%;
    overflow: hidden;
}
.meta-box .icon {
    font-size: 36px;
    color: var(--theme-color);
}
.meta-box .title {
    font-size: 16px;
    margin-top: -0.4em;
    margin-bottom: 0;
}
.meta-box .info {
    font-size: 14px;
    display: block;
    margin-bottom: -0.4em;
    color: var(--theme-color);
}
.course-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    background-color: var(--white-color);
    box-shadow: 0px 0px 15px rgba(193, 193, 193, 0.15);
    border-radius: 10px;
    padding: 30px;
}
.course-card_img {
    -webkit-box-flex: 50%;
    -webkit-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    border-radius: 10px;
    overflow: hidden;
}
.course-card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.course-card_content {
    -webkit-box-flex: 50%;
    -webkit-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
}
.course-card_text {
    margin-bottom: 23px;
}
.course-card .course-meta {
    margin-bottom: 30px;
}
.course-card .price-wrap {
    background-color: var(--theme-color);
    padding: 9px 28px;
    color: var(--white-color);
    border-radius: 35px 0 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-right: -30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.course-card .price-wrap:before {
    content: "";
    height: 100%;
    width: 130px;
    background-color: var(--title-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0% 100%);
}
.course-card .price {
    color: var(--white-color);
    font-weight: 600;
    font-size: 24px;
}
.course-card .th-btn {
    background-color: var(--smoke-color);
    border: 1px solid var(--border-color);
    color: var(--title-color);
    font-weight: 600;
}
.course-card .th-btn:hover {
    color: var(--white-color);
    font-weight: 500;
}
.course-card.style2 {
    background-color: #2a2f3c;
    box-shadow: none;
    padding: 40px;
    gap: 40px;
}
.course-card.style2 .price-wrap {
    background-color: #2a2f3c;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 65px;
}
.course-card.style2 .price-wrap:before {
    background-color: var(--theme-color);
}
.course-card.style2 .course-meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.course-card.style2 .box-title {
    font-size: 36px;
    color: var(--white-color);
}
.course-card.style2 .course-card_text {
    color: var(--white-color);
}
.course-card.style2 .meta-box {
    padding-right: 30px;
    margin-right: 26px;
}
.course-card.style2 .meta-box .title {
    color: var(--white-color);
    font-weight: 500;
}
.course-card.style2 .th-btn {
    background-color: var(--theme-color);
    color: var(--white-color);
    border: none;
}
.course-box {
    background: var(--white-color);
    box-shadow: 0px 3px 15px rgba(193, 193, 193, 0.2);
    border-radius: 10px;
    padding: 20px;
}
.course-box_img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}
.course-box_img img {
    width: 100%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
	height: 190px !important;
    object-fit: cover;
    object-position: top;
}
.course-box .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    text-align: center;
    line-height: 46px;
    padding-right: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 46px;
    width: 116px;
    background-color: var(--theme-color);
    -webkit-clip-path: path("M0 0H82.8871C90.8496 0 98.0536 4.72328 101.228 12.0255L116 46H10C4.47715 46 0 41.5228 0 36V0Z");
    clip-path: path("M0 0H82.8871C90.8496 0 98.0536 4.72328 101.228 12.0255L116 46H10C4.47715 46 0 41.5228 0 36V0Z");
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.course-box .course-meta {
    margin-bottom: 23px;
}
.course-box_text {
    margin-bottom: 23px;
    color: var(--body-color);
    line-height: 22px;
    font-size: 15px;
}
.box-title3 p {
    color: #111;
    margin-bottom: 10px;
}
.course-box .th-btn {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    color: var(--title-color);
}
.course-box .th-btn:before,
.course-box .th-btn:after {
    background-color: var(--theme-color);
}
.course-box .th-btn:hover {
    color: var(--white-color);
    border-color: var(--theme-color);
}
.course-box:hover .price {
    background-color: var(--title-color);
}
.course-box:hover .course-box_img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.course-feature {
    background-color: var(--smoke-color);
    padding: 30px;
    border-radius: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
.course-feature-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.course-feature_icon {
    font-size: 44px;
    text-align: center;
    color: var(--theme-color);
}
.course-feature_title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 3px;
    margin-top: -0.3em;
}
.course-feature_text {
    margin-bottom: -0.5em;
}
.inner-box {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    --space: 30px;
}
.inner-box .header {
    background-color: var(--theme-color);
    padding: var(--space);
}
.inner-box .box-title {
    color: var(--white-color);
    margin-bottom: 3px;
}
.inner-box .subtitle {
    font-size: 14px;
    color: var(--white-color);
    margin-bottom: -0.5em;
}
.inner-box .content {
    padding: var(--space);
    background-color: var(--smoke-color);
}
.inner-box .content .text {
    margin-bottom: -0.5em;
    margin-top: -0.5em;
}
.buy-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: var(--title-color);
    padding: 30px;
    border-radius: 10px;
    gap: 15px;
}
.buy-area .buy-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 0;
}
.guide-map {
    text-align: center;
}
.guide-map-phone {
    display: none;
}
.guide-feature {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 20px;
    position: absolute;
}
.guide-feature .box-title2 {
    margin-bottom: 3px;
}
.guide-feature_text {
    font-size: 16px;
    margin-bottom: -0.5em;
    max-width: 260px;
    color: #000;
    font-weight: 600;
	line-height: 1.4;
}
.guide-feature.right-align {
    text-align: right;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.guideline-area {
    position: relative;
    margin-bottom: 85px;
}
.guideline-area .one {
    top: 7%;
    left: 3%;
}
.guideline-area .two {
    top: 38%;
    left: -4%;
}
.guideline-area .three {
    bottom: 10%;
    left: -2%;
}
.guideline-area .four {
    bottom: -25%;
    left: 5%;
}
.guideline-area .five {
    top: 18%;
    right: 0.5%;
}
.guideline-area .six {
    top: 49%;
    right: 0.5%;
}
.guideline-area .seven {
    bottom: 0%;
    right: 1.5%;
}
.guideline-area .eight {
    bottom: -25%;
    left: 47%;
}
.space,
.space-top {
    padding-top: var(--section-space);
}
.space,
.space-bottom {
    padding-bottom: var(--section-space);
}
.space-extra,
.space-extra-top {
    padding-top: calc(var(--section-space) - 30px);
}
.space-extra,
.space-extra-bottom {
    padding-bottom: calc(var(--section-space) - 30px);
}
.space-extra2,
.space-extra2-top {
    padding-top: calc(var(--section-space) - 40px);
}
.space-extra2,
.space-extra2-bottom {
    padding-bottom: calc(var(--section-space) - 40px);
}
.th-hero-wrapper .social-links {
    position: absolute;
    z-index: 2;
    left: 0%;
    top: 50%;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.th-hero-wrapper .social-links a {
    color: var(--white-color);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    margin: 0 10px;
}
.th-hero-wrapper .social-links a:hover {
    color: var(--theme-color);
}
.th-hero-wrapper .social-links .social-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    letter-spacing: 0.06em;
}
.th-hero-wrapper .social-links .social-title:after {
    content: "";
    position: relative;
    background-color: var(--white-color);
    height: 1px;
    width: 90px;
    display: inline-block;
    top: -6px;
    margin-left: 15px;
}
.hero-1 .th-hero-bg img {
    height: 100%;
    width: auto;
    object-fit: fill;
}
.number-dots .slick-dots button {
    --size: 55px;
    font-size: 18px;
    padding: 0;
    width: var(--size);
    height: var(--size);
    line-height: var(--size);
    text-align: center;
    background-color: transparent;
    border: 1px solid;
    color: var(--white-color);
    font-weight: 500;
}
.number-dots .slick-dots button:before {
    inset: -1px;
    background-color: var(--theme-color);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.number-dots .slick-dots .slick-active button {
    --size: 66px;
}
.th-hero-wrapper .slick-dots {
    left: unset;
    right: 8%;
    width: 66px;
    margin: 0;
}
.th-hero-wrapper .slick-dots li {
    margin-right: 0;
    margin: 10px 0;
}
.th-hero-wrapper .slick-arrow {
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    --pos-x: 5%;
    color: var(--white-color);
}
.th-hero-wrapper .slick-arrow:hover {
    background-color: var(--white-color);
    color: var(--theme-color);
}
.sub-title.has-line:before {
    content: "";
    width: 40px;
    height: 2px;
    display: inline-block;
    margin-right: 10px;
    background-color: var(--theme-color);
    position: relative;
    top: -5px;
}
.sub-title.has-line.text-theme:before {
    background-color: var(--theme-color);
}
.hero-text .text-body {
    font-weight: 500;
}
.hero-6 .hero-img-wrap {
    position: absolute;
    bottom: 15px;
    right: 12%;
}
.hero-6 .social-links .social-title {
    color: var(--title-color);
}
.hero-6 .social-links .social-title:after {
    background-color: var(--title-color);
}
.hero-6 .social-links a {
    color: var(--title-color);
}
.hero-6 .social-links a:hover {
    color: var(--theme-color);
}

.header-logo {
    position: relative;
    z-index: 3;
}
.header-layout4 {
    --top-bg: 34%;
    --logo-bg: 20%;
}
.header-layout4 .header-top:before {
    width: var(--top-bg);
    background-color: #ad5700;
    -webkit-clip-path: polygon(0 0, calc(100% - 10px) 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, calc(100% - 10px) 0%, 100% 100%, 0% 100%);
}
.header-layout4 .header-top:after {
    content: "";
    height: 100%;
    width: calc(var(--top-bg) - 10px);
    background-color: var(--theme-color);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0% 100%);
    z-index: -1;
	display: none;
}
.header-layout4 .menu-area:before {
    display: none;
}
.header-layout4 .main-menu {
    margin-left: 150px;
}
.header-layout4 .header-button {
    margin-left: 0;
}
.header-layout4 .logo-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: var(--logo-bg);
    height: 100%;
    z-index: 0;
}
.header-layout4 .logo-bg:after,
.header-layout4 .logo-bg:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--border-color);
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 46px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 46px) 100%, 0% 100%);
    z-index: -1;
}
.header-layout4 .logo-bg:before {
    background-color: #f7f4ed;
    -webkit-clip-path: polygon(0 0, calc(100% - 52px) 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, calc(100% - 52px) 0%, 100% 100%, 0% 100%);
}
.header-layout6 {
    --logo-bg: 21.8%;
}
.header-layout6 .logo-bg {
    height: 100%;
    width: var(--logo-bg);
    position: absolute;
    bottom: 0;
    left: 0;
}
.header-layout6 .logo-bg:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f7f4ed;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 75px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 75px) 100%, 0% 100%);
}
.header-layout6 .main-menu {
    margin-left: 100px;
}
.dropdown-link {
    position: relative;
    display: inline-block;
}
.dropdown-link > a {
    color: var(--white-color);
}
.dropdown-link > a i {
    color: var(--theme-color);
    margin-right: 6px;
}

.btn-group:has(.video-btn) {
    gap: 45px;
}
.hero-form {
    --bs-gutter-x: 14px;
    position: absolute;
    top: 260px;
    right: 8%;
    max-width: 400px;
    background-color: rgba(252, 252, 252, 0.2);
    border: 1px solid rgba(252, 252, 252, 0.47);
    -webkit-backdrop-filter: blur(7.5px);
    backdrop-filter: blur(7.5px);
    border-radius: 10px;
    text-align: center;
    padding: 46px;
}
.hero-form .form-title {
    margin-top: -0.24em;
}

.about-feature .box-title {
    margin-bottom: 8px;
}
.recent-post .post-title,
.project-card .box-title2,
.skill-feature_title,
.skill-feature .progress-value {
    font-weight: 600;
}
.counter-number,
.price-card_price {
    font-weight: 800;
    -webkit-font-feature-settings: "pnum" on, "lnum" on;
    font-feature-settings: "pnum" on, "lnum" on;
}
.number-line {
    -webkit-font-feature-settings: "pnum" on, "lnum" on;
    font-feature-settings: "pnum" on, "lnum" on;
}
.course-feature_title,
.testi-box_name,
.counter-number,
.counter-card_number .counter-number {
    font-weight: 700 !important;
}
.service-feature_title,
.th-product .product-title {
    font-weight: 700;
}
.page-title,
.blog-single .blog-title {
    font-weight: 800;
}
.feature-sec1.style2 {
    background-size: 100% 430px;
}
.counter-card.style2 {
    border-color: #74757b;
}
.counter-card.style2 .counter-number {
    color: var(--theme-color);
}
.accordion-card.style2 {
    background-color: rgba(255, 255, 255, 0.2);
}
.accordion-card.style2:not(:last-child) {
    margin-bottom: 20px;
}
.accordion-card.style2 .accordion-button {
    background-color: transparent;
    color: var(--white-color);
}
.accordion-card.style2 .faq-text {
    color: var(--white-color);
}
.faq-form {
    background-color: var(--white-color);
    box-shadow: 0px 10px 40px rgba(191, 191, 191, 0.3);
    border-radius: 10px;
    padding: 50px;
    margin-bottom: -18px;
}
.faq-form .form-title {
    margin-bottom: 30px;
}
.faq-form .row {
    --bs-gutter-x: 16px;
}
.faq-form .form-title {
    margin-top: -0.24em;
}
.faq-form .form-control,
.faq-form .form-select {
    box-shadow: 0px 0px 30px rgba(191, 191, 191, 0.3);
}
.footer-widget .widget_title {
    font-weight: 600;
}
.footer-widget .recent-post .post-title {
    font-weight: 600;
}
.footer-layout3 .footer-top {
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}
.footer-layout3.black {
    --body-color: #bdbdbd;
    --border-color: #2a2f3c;
}
.footer-layout3.black .recent-post .post-title,
.footer-layout3.black .box-title,
.footer-layout3.black .widget_title {
    --title-color: #fff;
}
.footer-layout3.black .copyright-wrap {
    background-color: #2a2f3c;
}
.th-btn.style7 {
    background-color: var(--white-color);
    color: var(--theme-color);
    box-shadow: none;
}
.th-btn.style7:before,
.th-btn.style7:after {
    background-color: var(--smoke-color);
}
.th-btn.style7:hover {
    color: var(--white-color);
}
.th-btn.style7:hover:before,
.th-btn.style7:hover:after {
    background-color: var(--title-color);
}
.header-layout4 .header-top:before {
    background-color: #004489;
	display: none;
}
.header-layout4 .logo-bg:before {
    background-color: #d9ebff;
}
.header-layout5 .logo-bg:before {
    background-color: #0452a1;
}
@media (min-width: 993px) {
    .footer-layout3 .footer-logo {
        padding: 32px 40px;
    }
}
@media (max-width: 991px) {
    .footer-layout3 .footer-top {
        border-left: 1px solid var(--border-color);
    }
    .footer-layout3 .contact-media {
        border-left: none;
    }
    .footer-layout3 .footer-logo {
        text-align: center;
        -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 45px) 100%, 45px 100%);
        clip-path: polygon(0 0, 100% 0, calc(100% - 45px) 100%, 45px 100%);
    }
}
.contact-feature {
    background-color: var(--smoke-color2);
}
.video-link .play-btn {
    --icon-size: 56px;
    margin-right: 20px;
}
.video-link .play-btn > i {
    background-color: var(--theme-color);
    color: var(--white-color);
}
.video-link .play-btn:before,
.video-link .play-btn:after {
    background-color: transparent;
    border: 1px solid var(--white-color);
}
.video-link .btn-text {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--title-font);
    text-transform: uppercase;
    color: var(--white-color);
}
.video-link:hover .btn-text {
    color: var(--theme-color);
}
.btn-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px 40px;
}
.main-menu a .new-label {
    font-size: 13px;
    background-color: var(--theme-color);
    color: var(--white-color);
    padding: 2px 5px;
    border-radius: 4px;
    position: relative;
    top: -1px;
}
.header-link {
    display: inline-block;
    color: var(--white-color);
    margin-right: 40px;
}
.header-link:last-child {
    margin-right: 0;
}
.header-link:hover {
    color: var(--theme-color);
}
.header-link .icon-btn {
    margin-right: 10px;
    font-size: 14px;
    border: none;
    line-height: 45px;
}
.icon-btn.style2 {
    display: inline-block;
    padding: 0;
    background-color: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
    line-height: 54px;
}
.icon-btn.style2:hover {
    background-color: var(--title-color);
    border-color: var(--title-color);
}
.icon-btn.style3 {
    display: inline-block;
    padding: 0;
    background-color: transparent;
    border: 2px dashed var(--white-color);
    color: var(--white-color);
    line-height: 54px;
}
.icon-btn.style3:hover {
    background-color: var(--title-color);
}
.wishlist-custom-btn .icon-btn.style2 {
    --btn-size: 45px;
    line-height: 43px;
    border: 1px solid #d0dbe9;
    color: var(--title-color);
}
.wishlist-custom-btn .icon-btn.style2:hover {
    border-color: var(--theme-color);
    color: var(--white-color);
    background-color: var(--theme-color);
}

.dropdown-link {
    position: relative;
}
.dropdown-link > a {
    color: var(--white-color);
}
.dropdown-toggle::after {
    content: "\f107";
    border: none;
    font-family: var(--icon-font);
    vertical-align: middle;
    font-weight: 400;
    margin-left: 6px;
}
.dropdown-menu {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: auto;
    top: calc(100% + 10px) !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    padding: 8px 20px !important;
    text-align: center;
    border-color: var(--border-color);
}
.dropdown-menu li {
    padding-right: 0;
    margin-right: 0;
}
.dropdown-menu li:after {
    display: none;
}
.dropdown-menu li a {
    display: block;
}
.dropdown-menu a {
    color: var(--title-color) !important;
}
.dropdown-menu a:hover {
    color: var(--theme-color) !important;
}
.dropdown-menu:before {
    content: "";
    position: absolute;
    left: 50%;
    top: -7px;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    background-color: var(--white-color);
    z-index: -1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}
.simple-icon {
    border: none;
    background-color: transparent;
}
.simple-icon.style2 {
    font-size: 28px;
}
.simple-icon:hover {
    color: var(--theme-color);
}
.th-hero-wrapper .text-bg {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
    padding: 0 33px 0 30px;
    z-index: 2;
}
.th-hero-wrapper .text-bg::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff url("../img/bg/pattern_bg_1.png") repeat;
    z-index: -1;
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
}
@media (max-width: 375px) {
    .th-hero-wrapper .text-bg {
        padding: 0 25px 0 25px;
    }
}
.hero-img-wrap .line-shape2 {
    background-color: var(--title-color);
}
.scroll-bottom {
    color: var(--white-color);
    border: 2px solid;
    padding: 29px 9px 2px 9px;
    border-radius: 999px;
    position: relative;
}
.scroll-bottom:before {
    content: "";
    height: 15px;
    width: 2px;
    background-color: var(--white-color);
    position: absolute;
    top: 10px;
    left: 15px;
    border-radius: 10px;
    -webkit-animation: lineDown 1.5s infinite;
    animation: lineDown 1.5s infinite;
}
.scroll-bottom:hover {
    color: var(--theme-color);
}
.scroll-bottom:hover::before {
    background-color: var(--theme-color);
}
@-webkit-keyframes lineDown {
    0% {
        -webkit-transform: 0;
        transform: 0;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
        opacity: 0;
    }
}
@keyframes lineDown {
    0% {
        -webkit-transform: 0;
        transform: 0;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
        opacity: 0;
    }
}
.hero-10 {
    padding-right: 80px;
}
.hero-10 .slick-dots {
    --dots-bg: #fff;
    margin: 0;
    position: absolute;
    top: 55%;
    left: 5%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.hero-10 .slick-dots li {
    display: block;
    margin: 30px 0;
}
.hero-10 .slick-dots button:before {
    border-color: var(--white-color);
}
.hero-10 .slick-dots .slick-active button {
    background-color: var(--white-color);
}
.hero-10 .hero-shape {
    display: inline-block;
    height: 350px;
    width: 80px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--theme-color);
    -webkit-clip-path: polygon(100% 0, 100% calc(100% - 100px), calc(100% - 140px) 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% calc(100% - 100px), calc(100% - 140px) 100%, 0 100%, 0 0);
    z-index: -1;
}
.hero-10 .scroll-bottom {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.hero-slider-10 .th-hero-slide {
    padding: 230px 0;
}
.hero-style10,
.hero-style11,
.hero-style12 {
    padding-left: 40px;
    position: relative;
    z-index: 4;
}
.hero-style10 .hero-subtitle,
.hero-style11 .hero-subtitle,
.hero-style12 .hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    display: block;
    color: var(--white-color);
    margin-top: -0.36em;
    margin-bottom: 16px;
    text-transform: capitalize;
}
.hero-style10 .hero-title,
.hero-style11 .hero-title,
.hero-style12 .hero-title {
    color: var(--white-color);
    margin-bottom: 0;
}
.hero-style10 .hero-title:last-of-type,
.hero-style11 .hero-title:last-of-type,
.hero-style12 .hero-title:last-of-type {
    margin-bottom: 50px;
}
.hero-style10 .hero-text,
.hero-style11 .hero-text,
.hero-style12 .hero-text {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 36px;
    margin-top: -5px;
}

.hero-11 .icon-box {
    position: absolute;
    top: 50%;
    right: 115px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 60px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.hero-11 .icon-box .slick-arrow {
    --pos-x: 0;
    border-radius: 0;
    margin: 5px 0;
    border: none;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white-color);
}
.hero-11 .icon-box .slick-arrow:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}
.hero-11 .icon-box .slick-arrow:first-child {
    margin-right: 0;
}
.hero-slider-11 .th-hero-slide {
    padding: 140px 0;
}
.hero-style11 .hero-title {
    font-weight: 800;
}
.hero-slider-12 .slick-dots {
    position: absolute;
    top: 54%;
    right: unset;
    left: 120px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
}
.hero-slider-12 .slick-dots li {
    display: block;
    margin: 30px 0;
}
.hero-slider-12 .slick-dots button {
    border-radius: 0 !important;
    visibility: visible;
    opacity: 1;
}
.hero-slider-12 .slick-dots button:before {
    border-radius: 0 !important;
}
.hero-style12 {
    max-width: unset;
}
.hero-slider-12 .th-hero-slide {
    padding: 365px 0 225px 0;
}
.hero-slider-12 .hero-style12 {
    padding-left: 478px;
}
.th-container4 {
    max-width: 1760px;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
}
.checklist li.text-white {
    font-weight: 400;
}
.list-two-column {
    display: inline-grid;
    grid-template-columns: auto auto;
    gap: 8px 40px;
}
.th-btn.style8 {
    background-color: var(--white-color);
    color: var(--theme-color);
}
.th-btn.style8:before,
.th-btn.style8:after {
    background-color: var(--theme-color);
}
.th-btn.style8:hover {
    color: var(--white-color);
}
.about-feature.style2 {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
}
.about-feature.style2 .box-title {
    margin: 0;
    font-size: 20px;
}
.about-feature.style2:hover .box-icon img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.img-box6 {
    padding: 0 50px 47px 50px;
    margin-right: 50px;
    position: relative;
}
.img-box6 .img1 img {
    border-radius: 999px;
}
.img-box6 .img2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.img-box6 .img2:before {
    content: "";
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 450px;
    height: 450px;
    background-color: var(--theme-color);
    border-radius: 999px;
}

.service-box-tab {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 15px 15px;
    position: relative;
}
.service-box-tab .tab-btn {
    padding: 25px 5px;
    text-align: center;
    cursor: pointer;
}
.service-box-tab .tab-btn .box-icon img {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.service-box-tab .tab-btn .box-title {
    margin-bottom: -0.3em;
    font-size: 20px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.service-box-tab .tab-btn.active .box-icon {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.service-box-tab .tab-btn.active .box-title {
    color: var(--white-color);
    font-weight: 600;
}
.service-box-tab .indicator {
    display: inline-block;
    width: var(--width-set);
    height: var(--height-set);
    position: absolute;
    left: var(--pos-x);
    top: var(--pos-y);
    background-color: var(--title-color);
    border-radius: 8px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: -1;
}
.service-box .box-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
}
.service-box .box-img img {
    width: 100%;
}

.service-box .box-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
.service-box .content {
    -webkit-box-flex: 490px;
    -webkit-flex: 490px;
    -ms-flex: 490px;
    flex: 490px;
}
.service-box .sec-title {
    margin-bottom: 15px;
}
.service-box .sec-title a {
    color: inherit;
}
.service-box .sec-title a:hover {
    color: var(--theme-color);
}
.service-box .progress-wrap {
    margin-bottom: 35px;
}
.service-box .box-text {
    margin-bottom: 28px;
}
.service-box .skill-feature:not(:last-child) {
    margin-bottom: 25px;
}
.project-grid {
    position: relative;
    text-align: center;
}
.project-grid .box-img {
    border-radius: 6px;
    overflow: hidden;
}
.project-grid .box-img img {
    width: 100%;
}
.project-grid .box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    background-color: var(--white-color);
    background-image: url('data:image/svg+xml,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1120_331)"><path fill-rule="evenodd" clip-rule="evenodd" d="M22.7064 5.13688L18.6526 0.908467L10.3538 12.7035L22.7064 5.13688Z" fill="%23FF8F1F"/><path fill-rule="evenodd" clip-rule="evenodd" d="M5.23329 3.80518L0.092937 3.54294L1.51114 13.5981L5.23329 3.80518Z" fill="%230073E6"/><path fill-rule="evenodd" clip-rule="evenodd" d="M21.0779 18.1963L21.0926 23.251L11.0356 20.8967L21.0779 18.1963Z" fill="%230073E6"/></g><defs><clipPath id="clip0_1120_331"><rect width="22.4558" height="22.4558" fill="white" transform="translate(22.4053 0.65625) rotate(86.1549)"/></clipPath></defs></svg>');
    border-radius: 5px;
    padding: 22px 10px;
    background-repeat: no-repeat;
    background-position: bottom 35px left 35px;
}
.project-grid .box-title {
    font-size: 20px;
    margin: 0;
}
.project-grid .box-subtitle {
    font-size: 14px;
    color: var(--theme-color);
    margin-bottom: 5px;
}
.project-grid:hover .box-content {
    visibility: visible;
    opacity: 1;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-position: bottom left;
}
.img-box7 {
    margin-right: 50px;
    position: relative;
    z-index: 2;
}
.img-box7 .img1 img {
    width: 100%;
    border-radius: 10px;
}
.img-box7 .shape {
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: -1;
}
.counter-card {
    --border-color: #d4d4d4;
}
.counter-card-wrap.style2 {
    padding: 50px 10px;
    margin-bottom: -50px;
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
    border-radius: 6px 6px 0 6px;
    overflow: hidden;
}
.counter-card-wrap.style2 .counter-card {
    padding: 10px 0;
    border-right: 1px dashed #74757b;
}
.counter-card-wrap.style2 .counter-card:last-child {
    border-right: none;
}
.subscribe-sec1 {
    position: relative;
    z-index: 2;
    padding-top: 50px;
}
.subscribe-sec1:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 4000px;
    height: 100%;
    background-color: var(--theme-color);
    z-index: -1;
}
.subscribe-sec1 .newsletter-wrap {
    border-radius: 0 0 6px 0;
    padding-left: 0;
    background-image: -webkit-linear-gradient(left, var(--theme-color), var(--theme-color));
    background-image: linear-gradient(to right, var(--theme-color), var(--theme-color));
    background-color: transparent;
    background-size: 51% 100%;
    background-repeat: no-repeat;
    background-position: right center;
}
.ripple-shape {
    position: absolute;
    height: 44px;
    width: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}
.ripple-1,
.ripple-2,
.ripple-3,
.ripple-4,
.ripple-5,
.ripple-6 {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: transparent;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    -webkit-animation: heroripple 8s ease-out infinite;
    animation: heroripple 8s ease-out infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.ripple-1 {
    -webkit-animation-delay: 0;
    animation-delay: 0;
}
.ripple-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.ripple-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    opacity: 0.5;
}
.ripple-4 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    opacity: 0.5;
}
.ripple-4 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    opacity: 0.5;
}
.ripple-5 {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    opacity: 0.5;
}
.ripple-6 {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
    opacity: 0.5;
}
.ripple-7 {
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
    opacity: 0.5;
}
.ripple-8 {
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
    opacity: 0.5;
}
@-webkit-keyframes heroripple {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        width: 300px;
        height: 300px;
    }
}
@keyframes heroripple {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        width: 300px;
        height: 300px;
    }
}
.course-grid {
    background: var(--white-color);
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 30px;
}

.course-grid_img {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin-bottom: 22px;
}
.course-grid_img img {
    width: 100%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.course-grid .price {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color);
    line-height: 46px;
    leading-trim: both;
    text-edge: cap;
    -webkit-font-feature-settings: "pnum" on, "lnum" on;
    font-feature-settings: "pnum" on, "lnum" on;
}
.course-grid .price .number {
    font-size: 30px;
}
.course-grid_text {
    margin-bottom: 23px;
}
.course-grid .box-title {
    margin-bottom: 0;
}
.course-grid .title-wrap {
    margin-bottom: 8px;
}
.course-grid .th-btn {
    padding: 12px 20px;
    width: 100%;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    color: var(--title-color);
}
.course-grid .th-btn:before,
.course-grid .th-btn:after {
    background-color: var(--theme-color);
}
.course-grid .th-btn:hover {
    color: var(--white-color);
    border-color: var(--theme-color);
}
.course-grid:hover .course-grid_img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.footer-layout5 .widget select,
.footer-layout5 .widget input,
.footer-layout5 .widget .form-select,
.footer-layout5 .widget .form-control,
.footer-layout5 .widget textarea {
    background-color: #2c3240;
    border: none;
}
.footer-layout5 .copyright-wrap {
    background-color: transparent;
    border-top: 1px solid var(--border-color);
}
.hero-13 .th-btn.style7:before,
.hero-13 .th-btn.style7:after {
    background-color: var(--theme-color);
}
.hero-13 .hero-subtitle {
    color: var(--white-color);
    text-transform: capitalize;
    font-size: 24px;
}
.hero-13 .hero-shape-wrap {
    top: 17%;
    left: 37%;
}

.hero-13 .hero-img {
    position: absolute;
    top: 22%;
    right: 10px;
    z-index: 2;
}
.img-box8 {
    margin-left: -125px;
    margin-right: 30px;
}
.about-profile {
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
.about-profile .box-img {
    width: 56px;
    border-radius: 99px;
    border: 2px solid var(--theme-color);
    overflow: hidden;
}
.about-profile .box-title {
    margin-bottom: 0;
    font-size: 20px;
}
.about-profile .box-text {
    margin-bottom: -0.5em;
}
.choose-counter-wrap.style2 {
    margin: 0 0 40px 0;
    padding: 0;
    background-color: transparent;
}
.choose-counter-wrap.style2:before {
    display: none;
}
.service-grid {
    margin-top: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 80px;
    padding: 0 15px;
}
.service-grid-tab {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 40px 5px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}
.service-grid-tab:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background-color: var(--theme-color);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    border-radius: inherit;
}
.service-grid-tab .box-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.service-grid-tab .box-icon {
    --smoke-color2: #eff3fa;
    margin: 0 auto 30px auto;
    width: 90px;
    height: 90px;
    line-height: 90px;
    background-color: var(--smoke-color2);
    text-align: center;
    -webkit-clip-path: path(
        "M12.9727 76.4152C4.32247 67.3604 0 56.7542 0 44.5915C0 36.483 2.23044 28.9847 6.69131 22.0915C11.1469 15.1982 17.029 9.7943 24.3272 5.87451C31.62 1.95989 39.3228 0 47.4301 0C59.3222 0 69.3831 3.92496 77.6341 11.7594C85.8745 19.5989 90 30.1431 90 43.3762C90 56.3508 85.7414 67.3655 77.2296 76.4152C68.7124 85.4752 58.1032 90 45.4072 90C32.4345 90 21.6177 85.4752 12.9727 76.4152Z"
    );
    clip-path: path(
        "M12.9727 76.4152C4.32247 67.3604 0 56.7542 0 44.5915C0 36.483 2.23044 28.9847 6.69131 22.0915C11.1469 15.1982 17.029 9.7943 24.3272 5.87451C31.62 1.95989 39.3228 0 47.4301 0C59.3222 0 69.3831 3.92496 77.6341 11.7594C85.8745 19.5989 90 30.1431 90 43.3762C90 56.3508 85.7414 67.3655 77.2296 76.4152C68.7124 85.4752 58.1032 90 45.4072 90C32.4345 90 21.6177 85.4752 12.9727 76.4152Z"
    );
    position: relative;
    z-index: 3;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.service-grid-tab .box-icon img {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.service-grid-tab .box-title {
    font-size: 20px;
    margin-bottom: -0.34em;
    position: relative;
    z-index: 3;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.service-grid-tab-slide .slick-list {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}
.service-grid .box-img {
    -webkit-box-flex: 525px;
    -webkit-flex: 525px;
    -ms-flex: 525px;
    flex: 525px;
    padding: 2% 1% 2% 5%;
    background-size: 100% 100%;
}
.service-grid .box-img img {
    width: 100%;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.service-grid .box-content {
    -webkit-box-flex: 576px;
    -webkit-flex: 576px;
    -ms-flex: 576px;
    flex: 576px;
}
.service-grid .sec-title {
    margin-bottom: 30px;
}
.service-grid .sec-title a {
    color: inherit;
}
.service-grid .sec-title a:hover {
    color: var(--theme-color);
}
.service-grid .box-text {
    border-left: 2px solid var(--theme-color);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.06);
    background-color: var(--white-color);
    padding: 18px 25px;
    margin-bottom: 35px;
}
.service-grid .list-two-column {
    margin-bottom: 35px;
}
.slick-current .service-grid-tab:before {
    width: 100%;
}
.slick-current .service-grid-tab .box-title {
    color: var(--white-color);
}
.slick-current .service-grid-tab .box-icon {
    background-color: var(--title-color);
}
.slick-current .service-grid-tab .box-icon img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.slick-current .service-grid-tab .box-shape {
    opacity: 0.05;
    visibility: visible;
}
.why-feature {
    background-color: var(--white-color);
    padding: 30px;
    text-align: left;
}
.why-feature-wrap {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 640px;
    background-size: auto;
}
.why-feature:nth-child(1) {
    -webkit-clip-path: polygon(100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0 0);
}
.why-feature:nth-child(2) {
    -webkit-clip-path: polygon(100% 0, 100% 100%, 40px 100%, 0 calc(100% - 40px), 0 0);
    clip-path: polygon(100% 0, 100% 100%, 40px 100%, 0 calc(100% - 40px), 0 0);
}
.why-feature:nth-child(3) {
    -webkit-clip-path: polygon(calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%, 0 0);
}
.why-feature:nth-child(4) {
    -webkit-clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px);
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px);
}

.why-feature .box-title {
    font-size: 22px;
    margin-bottom: 7px;
}

.why-feature .box-text {
    margin-bottom: -0.5em;
    line-height: 1.6;
}
.img-box9 {
    margin-left: -30px;
}
.course-info {
    --smoke-color2: #eff3fa;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    background-color: var(--smoke-color2);
    padding: 25px;
    gap: 20px;
    -webkit-clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.course-info-wrap {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}
.course-info .box-title {
    font-size: 22px;
    margin-bottom: 4px;
}
.course-info .box-info {
    margin-bottom: -0.5em;
}
.course-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 65px;
    margin-bottom: 65px;
}
.course-block:last-child {
    margin-bottom: 0 !important;
}
.course-block .box-img img {
    width: 100%;
    -webkit-clip-path: polygon(100px 0, 100% 0, 100% calc(100% - 100px), calc(100% - 100px) 100%, 0 100%, 0 100px);
    clip-path: polygon(100px 0, 100% 0, 100% calc(100% - 100px), calc(100% - 100px) 100%, 0 100%, 0 100px);
}
.course-block .price-content {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--theme-color);
    -webkit-clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    padding: 20px 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.course-block .price-content .text {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    margin: 0;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.course-block .box-price {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
}
.course-block .box-price .number {
    font-size: 44px;
    font-weight: 800;
}
.course-block:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.course-block:nth-child(even) .box-img img {
    -webkit-clip-path: polygon(0 0, calc(100% - 100px) 0, 100% 100px, 100% 100%, 100px 100%, 0 calc(100% - 100px));
    clip-path: polygon(0 0, calc(100% - 100px) 0, 100% 100px, 100% 100%, 100px 100%, 0 calc(100% - 100px));
}
.course-block:nth-child(even) .price-content {
    right: unset;
    left: 0;
    -webkit-clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.course-block .box-content {
    -webkit-box-flex: 664px;
    -webkit-flex: 664px;
    -ms-flex: 664px;
    flex: 664px;
}
.course-block .box-btn {
    font-size: 18px;
    font-weight: 400;
    display: block;
    width: 100%;
    color: var(--white-color);
    padding: 17px;
    text-align: center;
    background-color: var(--title-color);
    position: relative;
    z-index: 2;
}
.course-block .box-btn:before {
    content: "";
    position: absolute;
    inset: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    background-color: var(--title-color);
    z-index: -1;
}
.course-block .box-btn:hover:before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}
.team-round {
    --smoke-color2: #eff3fa;
    border-radius: 500px 500px 0 0;
    background-color: var(--smoke-color2);
    background-size: auto;
    background-position: bottom center;
    text-align: center;
    padding: 18px;
    padding-bottom: 30px;
    border: 1px solid transparent;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.team-round .team-img {
    border-radius: 500px;
    margin-bottom: 30px;
}
.team-round .th-social {
    margin-top: 24px;
}
.team-round .th-social a {
    background-color: var(--title-color);
    color: var(--white-color);
    border-radius: 99px;
}
.team-round .th-social a:not(:last-child) {
    margin-right: 10px;
}
.team-round .th-social a:hover {
    background-color: var(--theme-color);
}
.team-round:hover {
    border-color: var(--theme-color);
}
.counter-block {
    padding: 53px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}
.counter-block-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: var(--theme-color);
    position: relative;
    z-index: 3;
}

.counter-block_number {
    font-size: 44px;
    color: var(--white-color);
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: -0.24em;
}
.counter-block_text {
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 20px;
    display: block;
    margin-bottom: -0.3em;
    color: var(--white-color);
    line-height: 1.5;
}
.cta-sec3 .play-btn {
    --icon-size: 120px;
}
.cta-sec3 .play-btn i {
    font-size: 40px;
}
.th-widget-contact {
    max-width: 240px;
}
.hero-style14 {
    max-width: 660px;
}
.header-layout13 .logo-bg:before {
    background-image: none;
    -webkit-clip-path: none;
    clip-path: none;
}
.header-layout13 .logo-bg:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -1px;
    height: 100%;
    width: 120px;
    background-color: var(--white-color);
    border-radius: 0 0 0 100%;
    pointer-events: none;
}
.header-layout13 .main-menu {
    margin-left: 155px;
}
.header-layout13 .th-menu-toggle {
    position: relative;
    z-index: 4;
}

.default-pad {
    padding: 80px 0px !important;
}

.section-bdr-bttm {
    border-bottom: 4px solid #000;
}
.hov-white:hover {
    color: #fff !important;
}
.faq-img1 img {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    border-radius: 30px 0 0 0;
}

#sp-testimonial-free-wrapper-24 .sp-testimonial-free {
    background: #fff !important;
    border: 0px solid #e3e3e3;
    border-radius: 8px !important;
    padding: 30px !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
    position: relative !important;
}
.sp-testimonial-free-section .sp-testimonial-client-rating {
    margin: 0 0 6px 0;
    text-align: left !important;
    line-height: 1;
    position: absolute !important;
    top: 30px !important;
    left: 30px !important;
}
.sp-testimonial-free-section .sp-testimonial-client-image img {
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 60px !important;
    height: 60px !important;
    border: 4px solid #fff !important;
    position: absolute !important;
    left: 30px !important;
    bottom: 30px !important;
    z-index: 2;
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial, .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
    font-size: 16px;
    line-height: 26px;
    text-transform: none;
    text-align: left !important;
    letter-spacing: normal;
    font-weight: 400;
    font-style: italic !important;
    margin: 35px 0 20px 0 !important;
}

#sp-testimonial-free-wrapper-24 .sp-testimonial-free-section .sp-testimonial-client-name {
    color: #000 !important;
}

.sp-testimonial-free-section .sp-testimonial-client-name {
    font-size: 20px !important;
    line-height: 24px;
    text-transform: none;
    text-align: left !important;
    letter-spacing: normal;
    font-weight: 500 !important;
    font-style: normal;
    margin: 0 0 5px 0 !important;
    padding: 0;
    margin-left: 80px !important;
}

.sp-testimonial-free-section .sp-testimonial-client-designation {
    font-size: 16px;
    line-height: 24px;
    text-transform: none;
    text-align: left !important;
    letter-spacing: normal;
    font-weight: 400;
    font-style: normal;
    margin-left: 81px !important;
}

#sp-testimonial-free-wrapper-24 .sp-testimonial-free-section .sp-testimonial-client-designation {
    color: #0073e6 !important;
}

#sp-testimonial-free-wrapper-24 .sp-testimonial-free::before {
    content: "";
    height: 90px;
    width: 108px;
    background-color: var(--theme-color);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    -webkit-clip-path: path("M0 0H40L108 90H10C4.47715 90 0 85.5229 0 80V0Z");
    clip-path: path("M0 0H40L108 90H10C4.47715 90 0 85.5229 0 80V0Z");
    z-index: 2;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

#sp-testimonial-free-wrapper-24 .sp-testimonial-free::after {
    content: "\f10e" !important;
    font-family: FontAwesome !important;
    display: block !important;
    position: absolute !important;
    bottom: 20px !important;
    left: 20px !important;
    font-size: 30px !important;
    color: #ffffff !important;
    z-index: 5;
}
.site-content, .site-main .widecolumn {
    margin-left: 0px !important;
}
.page .entry-header, .blog_page_header {
    background: url("../images/inr-pg-bnnr.jpg") #fff no-repeat center !important;
    background-size: cover !important;
    max-width: 100% !important;
    padding: 210px 0 120px !important;
    margin: 0 0 !important;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page .entry-header:before, .blog_page_header:before {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.page .entry-content {
    max-width: 100% !important;
    padding: 0px !important;
}
.content-area, .content-sidebar {
    padding-top: 0px !important;
}
.page .entry-title, .blog_page_title {
    color: #fff;
    position: relative;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 99;
    margin-bottom: 3px;
}
.breadcrumb-container {
    width: 100%;
    color: #f26d20;
    position: relative;
    font-size: 15px;
}
.breadcrumb-container a {
    color: #f26d20;
}

.inner_pgimg img {
    width: 100% !important;
    border-radius: 10px !important;
}

.box-title3 {
    font-size: 16px !important;
    line-height: 1.5;
    margin-bottom: 10px;
	color: #111;
}

.loc-iconn {
	width: 40px !important;
	height: 40px !important;
}

.txt-link {
	font-size: 16px;
	font-weight: 600;
	color: #000;
	text-decoration: none !important;
}

.sp-testimonial-content p{
    height: 130px;
    overflow-y: scroll;
}

/* width */
.sp-testimonial-content p::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.sp-testimonial-content p::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}
   
/* Handle */
.sp-testimonial-content p::-webkit-scrollbar-thumb {
    background: #0073e6; 
    border-radius: 5px;
}
  
/* Handle on hover */
.sp-testimonial-content p::-webkit-scrollbar-thumb:hover {
    background: #1176bb; 
}
.img-box3 {
    margin-right: 50px;
}
.ms-nav-next {
    right: 35px !important;
    top: 50% !important;
    width: 50px !important;
    height: 50px !important;
    background: rgb(255 255 255 / 70%) url(../images/banner_rightarrow.png) no-repeat center !important;
    background-size: 20px !important;
}
.ms-nav-prev {
    position: absolute;
    right: 35px !important;
    left: auto !important;
    top: 40% !important;
    width: 50px !important;
    height: 50px !important;
    background: rgb(255 255 255 / 70%) url(../images/banner_leftarrow.png) no-repeat center !important;
    background-size: 20px !important;
}

.footer_fixed_buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 99;
    display: flex;
}
.footer_btn1 {
    width: 50%;
    background: #0073e6;
    color: #fff !important;
    padding: 10px 0;
    font-weight: bold;
    display: inline-block;
}

.footer_btn2 {
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translatex(-50%);
    padding: 9px 12px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
}
.footer_btn3 {
    width: 50%;
    background: #000;
    color: #fff !important;
    padding: 10px 0;
    font-weight: bold;
    display: inline-block;
}

.error_container {
   display: flex;
   min-height: 100vh;
   align-items: center;
   text-align: center;
}
.inner_page_list ul{
	padding: 0;
	margin: 0;
}
.inner_page_list ul li {
    background: url('/wp-content/uploads/2026/06/checkmark.png') no-repeat left 4px;
    color: #4b4b4b;
    padding: 0px 0 7px 28px;
    line-height: 25px;
    font-weight: 400;
    list-style: none;
    background-size: 20px;
}
.inner_text_para {
    font-size: 16px;
    color: #484848;
    margin-bottom: 10px;
}
.inner_text_para p{
    margin-bottom: 10px;
}
.inner_ctabox {
    background: #d9ebff;
    margin-top: 50px;
    padding: 50px 25px;
    text-align: center;
}
.inner_ctabox .inner_text_para{
	font-size: 17px;
	color: #000;
	font-weight: 600;
}
/*-- responsive css start --*/
@media only screen and (min-width : 320px) and (max-width : 1024px) {
.header-top ,.header_navlink ,.header_topbd{
    display: none;
}
.banner_hd {
    font-size: 24px;
}
.banner_posbox .container {
    padding: 0;
}
.ms-slide-bgcont img {
    object-fit: cover !important;
    height: 100% !important;
}
.ms-view, .ms-slide, .ms-slide-bgcont {
    height: 280px !important;
}
.bn_flexbox {
    margin-top: 20px;
}
.th-btn {
    padding: 15px !important;
}
.banner_disc {
    max-width: 320px;
    padding-left: 15px;
}
.ms-nav-prev {
    right: 10px !important;
    top: 30% !important;
}
.ms-nav-next {
    right: 10px !important;
    top: 55% !important;
}	
.ea-body {
    height: 195px;
}
.shape-mockup {
    display: none;
}
.banner_info {
    margin-top: 80px;
}
.cta-1 {
    padding: 60px 0 40px 0px;
}
.title-area .sec-title, .main_text_hd {
    font-size: 24px;
}
.guide-map {
        display: none;
}
.guide-map-phone {
	display: block;
	text-align: center;
	position: relative;
	z-index: 2;
	margin-bottom: 30px;
}
.guide-map-phone img {
	border: 3px dashed var(--theme-color);
	padding: 16px;
	border-radius: 50%;
	background-color: var(--white-color);
}
.guide-map-phone:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 50%;
	height: 20px;
	border-top: 3px dashed var(--theme-color);
	border-left: 3px dashed var(--theme-color);
	border-radius: 15px 0 0 0;
	z-index: -1;
}
.guide-feature {
	position: relative;
	inset: 0 !important;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	max-width: 100%;
	margin: 0 0 35px 160px !important;
}
.guide-feature:last-child {
	margin-bottom: 0 !important;
}
.guide-feature.right-align {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	text-align: left;
}
.guide-feature:before {
	content: "";
	position: absolute;
	top: 20px;
	right: calc(100% + 30px);
	width: 130px;
	border-top: 3px dashed var(--theme-color);
}
.guide-feature:after {
	content: "";
	position: absolute;
	top: 17px;
	right: calc(100% + 30px);
	width: 8px;
	height: 8px;
	background-color: var(--theme-color);
	border-radius: 50%;
}
.guide-feature_icon {
	width: 50px;
	text-align: center;
}
.guideline-area {
	margin-bottom: 0;
}
.guideline-area:before {
	content: "";
	height: calc(100% - 152px);
	width: 0;
	border-left: 3px dashed var(--theme-color);
	position: absolute;
	top: 152px;
	left: 0;
}
.guideline-area:after {
	content: "";
	position: absolute;
	top: 100%;
	left: -3px;
	width: 9px;
	height: 9px;
	background-color: var(--theme-color);
	border-radius: 50%;
}
.faq-img1 img {
	width: 100%;
	max-width: 100%;
	max-height: 500px;
	border-radius: 20px;
	object-fit: cover;
}
.copyright-wrap {
    padding: 22px 0 60px;
}
.scroll-top {
    bottom: 80px;
}
.page .entry-header, .blog_page_header {
    padding: 120px 0 55px !important;
}
.page .entry-title, .blog_page_title {
    font-size: 22px;
}
.sec-title, .main_text_hd {
    font-size: 24px;
}	
.inner_pgimg {
    margin-bottom: 40px;
}
}

@media only screen and (max-width : 320px) {

}

@media only screen and (min-width : 321px) and (max-width : 480px) {

}

@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {

}

@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : portrait) {

}

@media only screen and (min-width : 481px) and (max-width : 767px) {

}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
.banner_info {
    margin-top: 55px;
}
.appoitment-form1 .box .th-btn {
    width: auto;
}
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
.banner_info {
    margin-top: 55px;
}
.appoitment-form1 .box .th-btn {
    width: auto;
}
}

/* iPhone X/XS */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {

}

/* iPhone XR */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {

}

/* iPhone XS Max */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {

}

/* iPad Pro 10.5 inch */
@media only screen and (min-device-width: 1112px) and (max-device-width: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {

}

/* iPad Pro 12.9 inch */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {

}

@media only screen and (min-width : 1024px) and (max-width : 1200px) {
.header-layout4 .main-menu {
    margin-left: 25px;
}
.primary-navigation li {
    margin-left: 20px !important;
}
.th-btn {
    font-size: 13px;
    padding: 15px !important;
}
}

@media screen and (min-width: 1424px) {

}

@media screen and (min-width: 1624px) {

}

@media screen and (min-width: 1920px) {
.container-fluid {
  max-width: 1600px;
}
}

@media screen and (min-width: 2048px) {
.container-fluid {
  max-width: 1600px;
}
}

@media screen and (min-width: 2550px) {
.container-fluid {
  max-width: 1600px;
}
}   
