:root {
    --thm-font: "Cairo", sans-serif;
    --thm-font-2: "Cairo", sans-serif;
    --thm-gray: #b0bcc2;
    --thm-black: #0a0f14;
    --thm-black-rgb: 10, 15, 20;
    --thm-base: #eabf7f;
    --thm-gradient: linear-gradient(135deg, #eabf7f, #c0842b);
    --dark-bg: #0a0f14;
    --dark-card: #1a1f24;
    --dark-border: #2a2f34;
    --dark-text: #e0e0e0;
    --dark-muted: #8a8f94;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
}

html, body {
    height: 100%;
    background-color: var(--dark-bg);
}

body {
    color: var(--thm-gray);
    font-size: 18px;
    line-height: 34px;
    font-weight: 400;
    font-family: var(--thm-font);
    background-color: var(--dark-bg);
}

button:focus {
  outline: none;
}

button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-text);
    font-weight: 700;
    line-height: 1.25em;
    font-family: var(--thm-font-2);
    margin: 0px;
}

h3 {
    font-size: 24px;
    font-weight: 400;
}

a, a:hover, a:active, a:focus {
    text-decoration: none;
    outline: none;
    border: none;
    transition: 0.4s ease-in-out;
    color: rgb(255, 255, 255);
}

textarea:focus {
    outline: none;
}

::selection {
    background: var(--thm-base);
    color: var(--dark-bg);
    text-shadow: none;
}

::placeholder {
    color: var(--dark-muted);
    opacity: 1;
}

.parallax-scene {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fancybox-image, .fancybox-spaceball {
    border-radius: 10px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

img {
    max-width: 100%;
    height: auto;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
}

.map-data {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8em;
    padding: 5px 10px;
    background: var(--dark-card);
    color: var(--dark-text);
}

.map-data a {
    color: var(--thm-base);
    display: block;
}

.map-data h6 {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    color: var(--dark-text);
}

i {
    font-style: normal;
}

ul, li {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

ol, li {
    margin: 0px;
    padding: 0px;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0px auto;
}

.btn-one {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-left: 55px;
    padding-right: 55px;
    background-color: transparent;
    color: rgb(254, 254, 254);
    font-size: 16px;
    line-height: 70px;
    font-weight: 700;
    text-transform: capitalize;
    border-radius: 5px;
    transition: 0.3s linear;
    font-family: var(--thm-font);
    z-index: 2;
}

.btn-one::before {
    position: absolute;
    top: 0px;
    left: -50px;
    right: -50px;
    height: 170px;
    content: "";
    background: var(--dark-card);
    transform: translateY(70px);
    border-radius: 50%;
    transition-duration: 800ms;
    z-index: 1;
}

.btn-one:hover::before {
    transform: translateY(-70px);
}

.btn-one::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: var(--thm-gradient);
    opacity: 1;
    transform: scaleX(1);
    transition-duration: 800ms;
    z-index: -1;
}

.btn-one:hover::after {
    transform: scaleX(0);
    transition-duration: 1500ms;
}

.btn-one.style2 {
    color: var(--dark-text);
}

.btn-one.style2::after {
    background: var(--dark-card);
    border: 2px solid var(--dark-border);
}

.btn-one.style2:hover::after {
    transform: scaleX(0);
    transition-duration: 1500ms;
}

.btn-one.style2::before {
    background-color: var(--thm-base);
}

.btn-one .txt {
    position: relative;
    z-index: 1;
}

.btn-one:hover, .btn-one:focus {
    color: rgb(255, 255, 255);
}

.btn-two {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    transition: 200ms linear 0.1s;
}

.btn-two::before {
    font-family: Fontawesome;
    content: "";
    position: absolute;
    top: -2px;
    left: 0px;
    font-weight: 400;
    font-size: 22px;
    transform: rotate(-135deg);
    transition: 100ms linear 0.1s;
}

.btn-two:hover::before {
    transform: rotate(-90deg);
    top: 0px;
}

.btn-two:hover {
    color: var(--thm-base);
}

.checked-box1 {
    position: relative;
    display: block;
    min-height: 40px;
}

.checked-box1 label {
    position: relative;
    display: inline-block;
    padding-left: 50px;
    margin-right: 0px;
    margin-bottom: 0px;
    color: var(--dark-text);
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    cursor: pointer;
    min-height: 40px;
    font-family: var(--thm-font);
}

.checked-box1 input[type="checkbox"] {
    display: none;
}

.checked-box1 input[type="checkbox"] + label span {
    position: absolute;
    display: block;
    top: 4px;
    left: 0px;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    background-color: var(--dark-card);
    border: 1px solid var(--dark-border);
    cursor: pointer;
    border-radius: 50%;
    transition: 300ms;
}

.checked-box1 label span::before {
    position: absolute;
    inset: 0px;
    content: "";
    width: 30px;
    height: 30px;
    background: var(--thm-base);
    border-radius: 50%;
    margin: 4px;
    transform: scale(0);
    transition: 300ms;
}

.checked-box1 input[type="checkbox"]:checked + label span {
    border-color: var(--dark-border);
}

.checked-box1 input[type="checkbox"]:checked + label span::before {
    transform: scale(1);
}

.checked-box2 {
    position: relative;
    display: block;
    min-height: 30px;
}

.checked-box2 label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    color: var(--dark-text);
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    cursor: pointer;
    min-height: 30px;
    font-family: var(--thm-font);
}

.checked-box2 input[type="checkbox"] {
    display: none;
}

.checked-box2 input[type="checkbox"] + label span {
    position: absolute;
    top: 5px;
    left: 0px;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background-color: var(--dark-card);
    border: 1px solid var(--dark-border);
    cursor: pointer;
    border-radius: 3px;
    transition: 300ms;
}

.checked-box2 label span::before {
    font-family: FontAwesome;
    content: "";
    position: absolute;
    inset: 0px;
    width: 16px;
    height: 16px;
    margin: 0px;
    color: var(--thm-base);
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    opacity: 0;
    transition: 300ms;
}

.checked-box2 input[type="checkbox"]:checked + label span {
    border-color: var(--dark-border);
}

.checked-box2 input[type="checkbox"]:checked + label span::before {
    opacity: 1;
}

.thm-social-link1 {
    position: relative;
    display: block;
}

.thm-social-link1 ul {
    position: relative;
}

.thm-social-link1 ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.thm-social-link1 ul li:last-child {
    margin-right: 0px;
}

.thm-social-link1 ul li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background: var(--thm-gradient);
    border-radius: 50%;
    border: 2px solid transparent;
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    z-index: 1;
    transition: 500ms;
}

.thm-social-link1 ul li a::before {
    position: absolute;
    inset: 0px;
    background-color: var(--dark-card);
    content: "";
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transform-origin: center center;
    transform-style: preserve-3d;
    transition: 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.thm-social-link1 ul li a:hover::before {
    transform: scaleX(1);
}

.thm-social-link1 ul li a:hover {
    color: rgb(255, 255, 255);
}

.thm-social-link2 {
    position: relative;
    display: block;
}

.thm-social-link2 ul {
    position: relative;
    overflow: hidden;
}

.thm-social-link2 ul li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 20px;
}

.thm-social-link2 ul li:last-child {
    margin-right: 0px;
}

.thm-social-link2 ul li a {
    position: relative;
    display: block;
    color: var(--dark-muted);
    font-size: 16px;
    line-height: 30px;
    transition: 500ms;
}

.thm-social-link2 ul li a:hover {
    color: var(--thm-base);
}

.parallax-bg-one {
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.parallax-bg-one::before {
    background: none 0px 0px repeat scroll rgba(10, 15, 20, 0.95);
    content: "";
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: -1;
}

.owl-theme .owl-prev span, .owl-theme .owl-next span {
}

.owl-nav-style-one {
}

.owl-nav-style-one .owl-controls {
}

.owl-nav-style-one.owl-theme .owl-stage-outer {
    position: relative;
    display: block;
    padding-top: 0px;
    padding-bottom: 0px;
}

.owl-nav-style-one.owl-theme .owl-nav {
    position: relative;
    display: block;
    line-height: 0;
    z-index: 10;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 0%;
    margin: 0px;
    padding: 0px;
    transition: 700ms;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]::before {
    content: "";
    position: absolute;
    inset: 0px;
    border: 2px solid var(--dark-border);
    color: var(--thm-base);
    font-size: 18px;
    line-height: 56px;
    font-weight: 600;
    text-align: center;
    transition: 0.4s linear;
    font-family: flaticon !important;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover::before {
    border-color: var(--thm-base);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    display: none;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
    transform: rotate(-270deg);
    margin-right: 10px;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-next {
    margin-left: 0px;
    transform: rotate(270deg);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover {
    background: var(--thm-gradient);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover::before {
    color: rgb(255, 255, 255);
}

.owl-carousel.owl-dot-style1 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    display: block;
    margin-top: 50px !important;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--dark-border);
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: 100ms linear 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active {
    border-color: var(--thm-base);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active span {
}

@keyframes pulse {
    50% {
        box-shadow: rgba(255, 255, 255, 0.1) 0px 0px 0px 5px, rgba(238, 238, 238, 0.3) 0px 0px 0px 20px;
    }
}

@keyframes pulse2 {
    50% {
        box-shadow: rgba(255, 231, 1, 0.1) 0px 0px 0px 5px, rgba(255, 231, 1, 0.3) 0px 0px 0px 20px;
    }
}

.rating-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.rating-box ul {
    overflow: hidden;
}

.rating-box ul li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 5px;
}

.rating-box ul li:last-child {
    margin-right: 0px;
}

.rating-box ul li a {
    font-size: 20px;
    font-weight: 400;
    transition: 200ms linear 0.1s;
}

.boxed_wrapper {
    position: relative;
    margin: 0px auto;
    background: var(--dark-bg) none repeat scroll 0 0;
    width: 100%;
    min-width: 320px;
    overflow: hidden !important;
}

.styled-pagination {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 10px;
}

.styled-pagination.pdtop0 {
    padding-top: 0px;
}

.styled-pagination li {
    position: relative;
    display: inline-block;
    float: none;
    margin-right: 6px;
}

.styled-pagination li:last-child {
    margin-right: 0px;
}

.styled-pagination li.prev a {
    transform: rotate(0deg);
}

.styled-pagination li a span::before {
    font-size: 25px;
}

.styled-pagination li.prev a span.left {
    position: relative;
    top: 1px;
}

.styled-pagination li.next a span.right {
    position: relative;
    top: 2px;
}

.styled-pagination li a {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    border-radius: 0%;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--dark-text);
    font-size: 18px;
    line-height: 53px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    transition: 500ms;
    font-family: var(--thm-font-2);
    z-index: 1;
}

.styled-pagination li:hover a, .styled-pagination li.active a {
    color: rgb(255, 255, 255);
    border-color: var(--thm-base);
    background: var(--thm-gradient);
}

.styled-pagination li.prev a, .styled-pagination li.next a {
    color: var(--thm-base);
    transition: 200ms linear 0.1s;
}

.styled-pagination li.prev a:hover, .styled-pagination li.next a:hover {
    color: rgb(255, 255, 255);
}

.serach-button-style1 {
    position: relative;
    display: block;
    margin-left: 30px;
    margin-right: 5px;
}

.serach-button-style1 .search-toggler {
    position: relative;
    display: block;
    width: 75px;
    height: 55px;
    background: transparent;
    color: var(--dark-text);
    font-size: 25px;
    line-height: 55px;
    font-weight: 400;
    border-left: 1px solid var(--dark-border);
    cursor: pointer;
    transition: 500ms;
}

.serach-button-style1 .search-toggler:hover {
    color: var(--thm-base);
}

.search-popup {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    overflow: auto;
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(101%);
    transition: 700ms;
}

.search-popup.popup-visible {
    transform: translateY(0%);
    visibility: visible;
    opacity: 1;
}

.search-popup .overlay-layer {
    position: absolute;
    inset: 0px;
    display: block;
}

.search-popup .close-search {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 22px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    z-index: 5;
    transition: 500ms;
}

.search-popup .search-form {
    position: relative;
    padding: 0px 15px;
    max-width: 1024px;
    margin: 150px auto 100px;
    opacity: 0;
    transform: translateY(50px);
    z-index: 10;
}

.search-popup.popup-visible .search-form {
    opacity: 1;
    transform: translateY(0px);
    transition: 900ms 500ms;
}

.search-popup .search-form .form-group {
    margin-bottom: 30px;
}

.search-popup .search-form fieldset {
    position: relative;
    border-radius: 12px;
}

.search-popup .search-form fieldset input[type="search"] {
    position: relative;
    height: 70px;
    padding: 20px 250px 20px 30px;
    background: var(--dark-card);
    line-height: 30px;
    font-size: 24px;
    color: var(--dark-text);
    border-radius: 7px;
    border: 1px solid var(--dark-border);
}

.search-popup .search-form fieldset input[type="submit"] {
    position: absolute;
    display: block;
    right: 0px;
    top: 0px;
    text-align: center;
    width: 220px;
    height: 70px;
    padding: 20px 10px;
    line-height: 30px;
    font-size: 20px;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 0px 7px 7px 0px;
    background: var(--thm-gradient);
    color: rgb(255, 255, 255) !important;
}

.search-popup .search-form fieldset input[type="submit"]:hover {
    transform: translateY(0px);
}

.search-popup h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-align: center;
}

.search-popup .recent-searches {
    font-size: 16px;
    color: rgb(255, 255, 255);
    text-align: center;
}

.search-popup .recent-searches li {
    display: inline-block;
    margin: 0px 10px 10px 0px;
}

.search-popup .recent-searches li a {
    display: block;
    line-height: 24px;
    border: 1px solid rgb(255, 255, 255);
    padding: 7px 15px;
    color: rgb(255, 255, 255);
    border-radius: 3px;
    transition: 0.5s;
}

.search-popup .recent-searches li a:hover {
    border-color: var(--thm-base);
    background-color: var(--thm-base);
}

.serach-button-style1--instyle2 {
    margin-left: 0px;
    margin-right: 0px;
}

.serach-button-style1--instyle2 .search-toggler {
    color: rgb(255, 255, 255);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.serach-button-style1--instyle2 .search-toggler:hover {
    color: var(--thm-base);
}

.switcher {
    position: fixed;
    top: 320px;
    z-index: 99;
}

.switcher .switch_btn {
    position: absolute;
    top: 0px;
    right: -60px;
    z-index: -1;
}

.switcher .switch_btn button {
    width: 60px;
    height: 70px;
    color: rgb(255, 255, 255);
    line-height: 70px;
    cursor: pointer;
    border-radius: 0px;
    margin-left: 0px;
    transition: 500ms;
    background: rgba(0, 0, 0, 0.9);
}

.switcher .switch_menu {
    position: absolute;
    width: 220px;
    background: transparent;
    display: none;
    top: 0px;
    left: 65px;
    bottom: 0px;
    margin: 0px;
    padding: 0px;
}

.switcher_container {
    position: relative;
    display: block;
    line-height: 0;
    padding: 20px 0px;
}

.switcher #styleOptions li {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 3px;
}

.switcher #styleOptions li:last-child {
    margin-right: 0px;
}

.switcher #styleOptions li a {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 0%;
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px;
}

.switcher #styleOptions li a.blue-color {
    background: rgb(18, 102, 227);
}

.switcher #styleOptions li a.pink-color {
    background: rgb(231, 8, 135);
}

.switcher #styleOptions li a.violet-color {
    background: rgb(105, 54, 216);
}

.switcher #styleOptions li a.crimson-color {
    background: rgb(186, 9, 19);
}

.switcher #styleOptions li a.orange-color {
    background: rgb(255, 165, 0);
}

.switcher #styleOptions li a.green-color {
    background: rgb(149, 196, 31);
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 2147483647;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../images/icon/preloader.svg");
    background-color: var(--dark-bg);
}

.preloader-close {
    position: fixed;
    z-index: 999999;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    cursor: pointer;
    right: 0px;
    bottom: 0px;
    font-weight: 600;
    background-color: var(--dark-card);
}

.loader-wrap {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: var(--dark-bg);
}

.loader-wrap .layer-one {
    position: absolute;
    left: 0%;
    top: 0px;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-two {
    position: absolute;
    left: 33.3333%;
    top: 0px;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-three {
    position: absolute;
    left: 66.6666%;
    top: 0px;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer .overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--thm-base);
}

.scroll-top {
    position: fixed;
    right: 15px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--dark-card);
    border: 2px solid var(--dark-border);
    color: var(--thm-base);
    font-size: 20px;
    line-height: 56px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    display: none;
    cursor: pointer;
    transform: rotate(0deg);
    transition: 200ms linear 0.1s;
    z-index: 999999999;
}

.scroll-top span {
}

.scroll-top::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    z-index: -1;
    background: radial-gradient(rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    transform: translate(-50%, -50%);
    content: "";
    box-shadow: rgba(255, 255, 255, 0.9) 0px 0px 0px 0px;
    animation: 3s ease 0s infinite normal none running ripple;
    transition: 0.4s;
}

.scroll-top:hover {
    color: rgb(255, 255, 255);
    background: var(--thm-gradient);
    border-color: transparent;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--thm-base);
    outline: none;
}

#contact-form input[type="text"].error {
    border-color: rgb(231, 76, 60);
}

#contact-form input[type="email"].error {
    border-color: rgb(231, 76, 60);
}

#contact-form select.error {
    border-color: rgb(231, 76, 60);
}

#contact-form textarea.error {
    border-color: rgb(231, 76, 60);
}

.overlay-style-one {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(218, 60, 34, 0.8);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
    opacity: 0;
    z-index: 1;
}

.overlay-style-one .box {
    display: table;
    height: 100%;
    width: 100%;
}

.overlay-style-one .box .content {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.overlay-style-one .box .inner {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.overlay-style-two {
    position: absolute;
    inset: 0px;
    z-index: 2;
    opacity: 0;
    transition: 900ms;
}

.overlay-style-two::before {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 50%;
    display: block;
    opacity: 0;
    text-align: center;
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: center top;
    transition: 0.5s;
    background-color: rgba(18, 18, 18, 0.9);
}

.overlay-style-two::after {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
    display: block;
    opacity: 0;
    text-align: center;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: center bottom;
    transition: 0.5s;
    background-color: rgba(18, 18, 18, 0.9);
}

.review-box {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 16px;
}

.review-box > ul {
    display: block;
    overflow: hidden;
}

.review-box > ul > li {
    display: inline-block;
    float: left;
    margin-right: 4px;
}

.review-box > ul > li:last-child {
    margin-right: 0px;
}

.review-box > ul > li > i {
    position: relative;
    display: inline-block;
    color: rgb(85, 85, 85);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 200ms linear 0.1s;
}

.review-box > ul > li:hover > i {
    color: var(--thm-base);
}

@keyframes menu_sticky {
    0% {
        margin-top: -90px;
    }

    50% {
        margin-top: -74px;
    }

    100% {
        margin-top: 0px;
    }
}

.nav-outer .mobile-nav-toggler {
    position: relative;
    display: none;
    float: right;
    cursor: pointer;
    padding: 30px 0px;
}

.nav-outer.style1 .mobile-nav-toggler {
    padding: 25px 0px;
}

.nav-outer.style2 .mobile-nav-toggler {
    padding: 25px 0px;
}

.nav-outer.style3 .mobile-nav-toggler {
    padding: 45px 0px;
}

.nav-outer .mobile-nav-toggler .inner {
    position: relative;
    display: block;
    padding: 3px 5px;
    background: var(--thm-gradient);
}

.nav-outer.style2 .mobile-nav-toggler .inner {
    background-color: var(--dark-card);
}

.mobile-menu {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 300px;
    max-width: 100%;
    height: 100%;
    padding-right: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 16, 32, 0.95);
    transform: translateX(101%);
    transition: 900ms;
    z-index: 1;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 0.7;
    visibility: visible;
    transition: 0.7s;
    transform: translateX(0%);
}

.mobile-menu .mCSB_inside > .mCSB_container {
    margin-right: 5px;
}

.mobile-menu .navbar-collapse {
    display: block !important;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}

.mobile-menu .nav-logo a {
    position: relative;
    display: inline-block;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: var(--dark-card);
    padding: 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    transition: 0.7s;
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.9s;
}

.mobile-menu-visible .mobile-menu .close-btn {
    transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
    color: var(--thm-base);
    transform: rotate(90deg);
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid var(--dark-border);
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid var(--dark-border);
}

.mobile-menu .navigation li > ul > li:first-child {
    border-top: 1px solid var(--dark-border);
}

.mobile-menu .navigation li > a {
    position: relative;
    display: block;
    padding: 10px 25px;
    color: var(--dark-text);
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 500ms;
}

.mobile-menu .navigation li > a::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    height: 0px;
    border-left: 5px solid var(--thm-base);
    transition: 500ms;
}

.mobile-menu .navigation li.current > a::before {
    height: 100%;
}

.mobile-menu .navigation li.current > a, .mobile-menu .navigation li > a:hover {
    color: var(--thm-base);
}

.mobile-menu .navigation li ul li > a {
    font-size: 15px;
    font-weight: 400;
    margin-left: 20px;
    text-transform: capitalize;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    color: var(--dark-text);
    font-size: 16px;
    line-height: 32px;
    background: var(--dark-border);
    cursor: pointer;
    border-radius: 2px;
    transition: 500ms;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    transform: rotate(90deg);
}

.mobile-menu .navigation li > ul, .mobile-menu .navigation li > ul > li > ul, .mobile-menu .navigation > li.dropdown > .megamenu {
    display: none;
}

.mobile-menu .social-links {
    position: relative;
    text-align: center;
    padding: 50px 15px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 1px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    background: var(--thm-gradient);
    border-radius: 50%;
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 41px;
    transition: 500ms;
}

.mobile-menu .social-links li a:hover {
    color: var(--thm-base);
    background-color: var(--dark-card);
}

.xs-sidebar-group .xs-overlay {
    left: 0%;
    top: 0px;
    position: fixed;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    transition: 200ms linear 0.1s;
    cursor: url("../images/icon/cross-out.png"), pointer;
    z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.8;
    visibility: visible;
    transition-delay: 0.3s;
    right: 100%;
    background-color: rgb(0, 0, 0);
}

.xs-sidebar-widget {
    position: fixed;
    left: -100%;
    top: 0px;
    bottom: 0px;
    width: 100%;
    max-width: 365px;
    background-color: var(--dark-card);
    overflow: hidden auto;
    transition: 700ms 100ms;
    visibility: hidden;
    opacity: 1;
    z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    left: 0px;
    transition: 500ms 800ms;
}

.sidebar-textwidget {
    padding: 70px 30px;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    backface-visibility: hidden;
    transition: 300ms 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    backface-visibility: hidden;
    transition: 700ms 1500ms;
}

.xs-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 0.8;
    z-index: 0;
    background-color: rgb(0, 0, 0);
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 25px;
}

.xs-sidebar-group .widget-heading a {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 50%;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 400;
    transition: 200ms linear 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
    color: var(--thm-base);
    border-color: var(--thm-base);
}

.xs-sidebar-group .content-inner .logo {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
    position: relative;
    display: inline-block;
}

.xs-sidebar-group .content-inner h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 14px;
    margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 50px;
    height: 2px;
    background: var(--thm-base);
}

.xs-sidebar-group .content-inner .content-box {
    margin-bottom: 30px;
    padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
    position: relative;
    display: block;
    padding-top: 2px;
}

.xs-sidebar-group .content-inner .content-box p {
    color: var(--dark-muted);
    margin: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
    position: relative;
    margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
    margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type="text"], .xs-sidebar-group .content-inner .form-inner .form-group input[type="email"], .xs-sidebar-group .content-inner .form-inner .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 15px;
    padding: 10px 20px;
    color: var(--dark-text);
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    transition: 500ms;
}

.xs-sidebar-group .content-inner .form-inner .form-group .theme-btn-one {
}

.xs-sidebar-group .content-inner .form-inner .form-group .theme-btn-one:hover {
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
    resize: none;
    height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus, .xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
    border-color: var(--thm-base);
}

.sidebar-contact-info {
    position: relative;
    display: block;
    padding-top: 43px;
}

.sidebar-contact-info h3 {
}

.sidebar-contact-info ul {
    position: relative;
    display: block;
    padding-bottom: 22px;
}

.sidebar-contact-info ul li {
    position: relative;
    display: block;
    color: var(--dark-muted);
    line-height: 30px;
    margin-bottom: 6px;
}

.sidebar-contact-info ul li:last-child {
    margin-bottom: 0px;
}

.sidebar-contact-info ul li span {
    position: relative;
    display: inline-block;
    width: 25px;
}

.sidebar-contact-info ul li span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    top: 3px;
}

.sidebar-contact-info ul li a {
    color: var(--dark-muted);
}

.xs-sidebar-group .content-inner .thm-social-link1 {
    overflow: hidden;
}

.sec-title {
    position: relative;
    display: block;
    margin-top: -4px;
    padding-bottom: 49px;
}

.sec-title .sub-title {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 0;
    padding-bottom: 6px;
}

.sec-title.center .sub-title {
    justify-content: center;
}

.sec-title .sub-title p {
    color: var(--thm-base);
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0px;
}

.sec-title .sub-title .dotted {
    position: relative;
    display: block;
    width: 6px;
    height: 6px;
    background: var(--thm-base);
    border-radius: 50%;
    margin-right: 9px;
    animation: 10s linear 0s infinite normal none running slide5;
}

@keyframes slide5 {
    0% {
        background-position: 0px 0px;
    }

    100% {
        background-position: -200px 0px;
    }
}

@-webkit-keyframes slide5 {
    0% {
        background-position: 0px 0px;
    }

    100% {
        background-position: -200px 0px;
    }
}

.sec-title h2 {
    font-size: 50px;
    line-height: 1.2em;
    font-weight: 400;
    text-transform: none;
    color: rgb(215, 164, 88);
}

.video-holder-box1 {
    position: absolute;
    bottom: 70px;
    left: -175px;
    width: 250px;
    height: 290px;
    background: var(--dark-card);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 20px 40px 0px;
    border: 1px solid var(--dark-border);
}

.video-holder-box1 .icon {
    position: relative;
    display: block;
}

.video-holder-box1 .icon a {
    position: relative;
    display: block;
    width: 120px;
    height: 120px;
    background: var(--dark-card);
    border: 15px solid var(--thm-base);
    border-radius: 50%;
}

.video-holder-box1 .icon a::before {
    position: absolute;
    content: "";
    inset: -15px;
    border-radius: 50%;
    background: rgba(54, 124, 232, 0);
    z-index: -1;
    animation: 3s ease 0s infinite normal none running ripple2;
}

.video-holder-box1 .icon a span::before {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: var(--dark-text);
    font-size: 25px;
    line-height: 90px;
    text-align: center;
}

.video-holder-box1 .title {
    position: relative;
    display: block;
    padding-top: 25px;
}

.video-holder-box1 .title h4 {
    color: var(--dark-text);
    font-size: 20px;
    line-height: 26px;
}

.callto-action-area {
    position: relative;
    display: block;
    background: var(--dark-card);
    padding: 45px 0px;
    border-bottom: 1px solid var(--dark-border);
}

.callto-action__conent {
    position: relative;
    display: block;
    text-align: center;
}

.callto-action__conent h3 {
    color: var(--dark-text);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    font-family: var(--thm-font);
}

.callto-action__conent h3 a {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
}

.callto-action__conent h3 a::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
    height: 2px;
    background: var(--thm-base);
}

.callto-action-style2-area {
    position: relative;
    display: block;
    background: var(--dark-card);
    padding: 100px 0px;
    border: 1px solid var(--dark-border);
}

.callto-action-style2__conent {
    position: relative;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
}

.callto-action-style2__conent .title {
    position: relative;
    display: block;
}

.callto-action-style2__conent .title h2 {
    color: var(--dark-text);
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
}

.callto-action-style2__conent .button {
    position: relative;
    display: block;
    line-height: 0;
}

.callto-action-style2__conent .button .btn-one:hover {
    color: var(--thm-base);
}

.callto-action-style2__conent .button .btn-one::before {
    background: var(--dark-bg);
}

.contact-style1-area {
    position: relative;
    display: block;
    background: var(--dark-bg);
    padding-top: 120px;
    z-index: 1;
}

.form-style1__image-box {
    position: relative;
    display: block;
}

.form-style1__image-box .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid var(--dark-border);
}

.form-style1__image-box .img-holder::after {
    position: absolute;
    top: 0px;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: skewX(-5deg);
    z-index: 2;
}

.form-style1__image-box:hover .img-holder::after {
    animation: 1.2s ease 0s 1 normal none running shine;
}

.form-style1__image-box .img-holder img {
    width: 100%;
    transform: scale(1.01);
    transition: 700ms;
}

.form-style1__image-box .overlay-content {
    position: absolute;
    left: 15px;
    bottom: -15px;
    right: 15px;
    background: var(--thm-gradient);
    border-radius: 5px;
    text-align: center;
    padding: 20px 0px;
    z-index: 3;
    border: 1px solid rgba(0, 0, 0, 0);
}

.form-style1__image-box .overlay-content h3 {
    color: var(--dark-text);
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
}

.contact-form-box1 {
    position: relative;
    display: block;
    background: var(--dark-card);
    border-radius: 5px;
    padding: 40px;
    border: 1px solid var(--dark-border);
}

.contact-form-box1 .top-title {
    padding-bottom: 25px;
}

.contact-form-box1 .top-title p {
    color: var(--thm-base);
    font-size: 16px;
    line-height: 16px;
    margin: 0px 0px 6px;
}

.contact-form-box1 .top-title h2 {
    font-size: 24px;
    font-weight: 400;
    color: var(--dark-text);
}

.contact-form-box1 form {
    position: relative;
    display: block;
}

.contact-form-box1 form .input-box {
    position: relative;
    display: block;
    margin-bottom: 12px;
}

.contact-form-box1 form input[type="text"], .contact-form-box1 form input[type="email"], .contact-form-box1 form textarea {
    position: relative;
    display: block;
    background: var(--dark-bg);
    width: 100%;
    height: 60px;
    border: 1px solid var(--dark-border);
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 5px;
    transition: 500ms;
    font-family: var(--thm-font);
}

.contact-form-box1 form input[type="text"]:focus {
    color: var(--dark-text);
    border-color: var(--thm-base);
}

.contact-form-box1 form input[type="email"]:focus {
    color: var(--dark-text);
    border-color: var(--thm-base);
}

.contact-form-box1 form input[type="text"]::-webkit-input-placeholder {
    color: var(--dark-muted);
}

.contact-form-box1 form input[type="email"]::-webkit-input-placeholder {
    color: var(--dark-muted);
}

.contact-form-box1 form .button-box {
    position: relative;
    display: block;
}

.contact-form-box1 form .button-box button {
    display: block;
    line-height: 60px;
    width: 100%;
    padding: 0px;
    background: var(--thm-gradient);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-form-box1 form .button-box button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.contact-style1__content-box {
    position: relative;
    display: block;
    background: var(--thm-gradient);
    padding: 50px 40px 68px;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--dark-border);
}

.contact-style1__content-box .shape-bg {
    position: absolute;
    bottom: -25px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-position: right bottom;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: -1;
}

.contact-style1__content-box .icon {
    position: relative;
    display: block;
    padding-bottom: 20px;
}

.contact-style1__content-box .icon span::before {
    color: rgb(224, 224, 224);
    font-size: 65px;
    line-height: 65px;
}

.contact-style1__content-box h3 {
    color: var(--dark-text);
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    font-family: var(--thm-font);
}

.contact-style1__content-box ul {
    position: relative;
    display: block;
    padding-top: 39px;
}

.contact-style1__content-box ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    color: var(--dark-text);
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
}

.contact-style1__content-box ul li::before {
    position: absolute;
    content: "";
    left: 0px;
    color: rgb(194, 134, 46);
    font-family: flaticon !important;
}

.certificates-area {
    position: relative;
    display: block;
    background: var(--dark-bg);
    padding: 53px 0px 120px;
}

.certificates-area--style2 {
    padding-top: 113px;
}

.certificates-area .top-title {
    position: relative;
    display: block;
    padding-bottom: 38px;
}

.certificates-area .top-title h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    font-family: var(--thm-font);
    color: var(--dark-text);
}

.certificates-area .auto-container {
    max-width: 840px;
}

.single-certificates-box {
    position: relative;
    display: block;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px 0px;
    z-index: 1;
    background: var(--dark-card);
    border-radius: 5px;
    overflow: hidden;
}

.single-certificates-box .img-box {
    position: relative;
    display: block;
}

.single-certificates-box .img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--dark-card);
    border-radius: 5px;
}

.single-certificates-box .img-box .inner::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgba(0, 0, 0, 0.7);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
    opacity: 0;
    z-index: 5;
}

.single-certificates-box:hover .img-box .inner::before {
    opacity: 1;
}

.single-certificates-box .img-box img {
    width: 100%;
}

.certificates-carousel_1.owl-carousel.owl-dot-style1 .owl-dots {
    display: none;
}

.certificates-carousel_1.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.certificates-carousel_1.owl-carousel .owl-stage-outer .owl-item {
    opacity: 0;
    transition: 300ms 100ms;
}

.certificates-carousel_1.owl-carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
}

.slogan-area {
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 107px 0px 120px;
    z-index: 1;
}

.slogan-area.pdb220 {
    padding-bottom: 220px;
}

.slogan-area::before {
    background: rgba(var(--dark-bg-rgb), .80);
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
}

.slogan-area .title {
    position: relative;
    display: block;
    margin: 0px 0px 48px;
}

.slogan-area .title h2 {
    color: var(--dark-text);
    font-size: 60px;
    line-height: 70px;
    font-weight: 400;
}

.slogan-area .button {
    line-height: 0;
}

.slogan-style2-area {
    position: relative;
    display: block;
    padding: 107px 0px 120px;
    z-index: 10;
}

.slogan-style2-area__bg {
    position: absolute;
    inset: 0px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: var(--dark-card);
    background-blend-mode: color-burn;
    z-index: -1;
}

.slogan-style2-area__bg::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    opacity: 0.95;
}

.slogan-style2-area .title {
    position: relative;
    display: block;
    margin: 0px 0px 48px;
}

.slogan-style2-area .title h2 {
    color: var(--dark-text);
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
}

.slogan-style2-area .title h2 span {
    position: relative;
    display: inline-block;
}

.slogan-style2-area .title h2 span img {
    position: absolute;
    top: -20px;
    left: -30px;
}

.slogan-style2-area .button {
    line-height: 0;
    position: relative;
    display: inline-block;
}

.slogan-style2-area .button .arrow {
    position: absolute;
    bottom: 30px;
    right: -120px;
    animation: 5s ease-in 0s infinite normal none running animation1;
}

.slogan-style2-area .button .btn-one:hover {
    color: var(--thm-base);
}

.slogan-style2-area .button .btn-one::after {
    background: var(--thm-gradient);
}

.slogan-style2-area .button .btn-one::before {
    background-color: var(--dark-bg);
}

.before-after-work-area {
    position: relative;
    display: block;
    background: var(--dark-bg);
    padding: 120px 0px;
    overflow: hidden;
    z-index: 1;
}

.before-after-work-area .gray-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    background: var(--dark-card);
    height: 510px;
    border-radius: 5px;
    z-index: -1;
    max-width: 1570px;
    margin: 0px auto;
    border: 1px solid var(--dark-border);
}

.before-after-work-area .before-after-content .before-after {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid var(--dark-border);
}

.before-after-work-area .before-after-content .before-after .twentytwenty-container img {
    width: 100%;
}

.before-after-work-area .before-after-content .before-after .twentytwenty-horizontal .twentytwenty-before-label::before {
    position: absolute;
    left: -10px;
    top: -10px;
    width: 100px;
    height: 100px;
    line-height: 90px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin: 0px;
    padding: 0px;
    background: transparent;
    z-index: 1;
    transform: rotate(-45deg);
    text-transform: uppercase;
    display: none;
}

.before-after-work-area .before-after-content .before-after .twentytwenty-horizontal .twentytwenty-before-label::after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100px;
    height: 100px;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
}

.before-after-work-area .before-after-content .before-after .twentytwenty-horizontal .twentytwenty-after-label::before {
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100px;
    line-height: 140px;
    text-align: center;
    font-size: 16px;
    background: transparent;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin: 0px;
    padding: 0px;
    bottom: 0px;
    transform: rotate(-45deg);
    z-index: 1;
    text-transform: uppercase;
    display: none;
}

.before-after-work-area .before-after-content .before-after .twentytwenty-horizontal .twentytwenty-after-label::after {
    position: absolute;
    content: "";
    bottom: 0px;
    right: 0px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.twentytwenty-after-label, .twentytwenty-before-label {
    opacity: 1 !important;
}

.dental-practice-style1-area {
    position: relative;
    display: block;
    background-image: ;
    background-origin: ;
    background-clip: ;
    background-color: ;
    padding: 120px 0px;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.dental-practice-style1-area__bg {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;
    background-blend-mode: saturation;
    z-index: -1;
}

.dental-practice-style1-content {
    position: relative;
    display: block;
}

.dental-practice-style1-content .sec-title {
    padding-bottom: 29px;
}

.dental-practice-style1-content .text {
    position: relative;
    display: block;
}

.dental-practice-style1-content .text p {
    font-weight: 500;
    margin: 0px;
    color: rgb(0, 0, 0);
}

.dental-practice-style1-content-list {
    position: relative;
    display: block;
    margin-top: 42px;
}

.single-dental-practice-style1-content-list {
    position: relative;
    display: block;
}

.single-dental-practice-style1-content-list ul {
    position: relative;
    display: block;
}

.single-dental-practice-style1-content-list ul li {
    position: relative;
    display: block;
    color: rgb(6, 6, 6);
    font-size: 16px;
    line-height: 36px;
    font-weight: 700;
    font-family: var(--thm-font);
}

.single-dental-practice-style1-content-list ul li i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    padding-right: 8px;
}

.dental-practice-style1-content-btn {
    position: relative;
    display: block;
    margin-top: 42px;
    line-height: 0;
}

.dental-practice-style1-right {
    position: relative;
    display: block;
    max-width: 325px;
    width: 100%;
    height: 120px;
    background: var(--dark-bg);
    border-radius: 5px;
    padding: 30px 30px 30px 60px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 30px 0px;
    margin-top: 190px;
    margin-left: 25px;
    border: 1px solid var(--dark-border);
}

.dental-practice-style1-right::before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: -25px;
    width: 35px;
    height: 30px;
    border-top: 30px solid var(--dark-bg);
    border-left: 35px solid transparent;
}

.dental-practice-style1-right-inner {
    position: relative;
    display: block;
    padding-left: 80px;
}

.dental-practice-style1-right-inner .icon {
    position: absolute;
    top: 0px;
    left: 0px;
}

.dental-practice-style1-right-inner .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
    line-height: 60px;
}

.dental-practice-style1-right-inner .title {
    position: relative;
    display: block;
    top: 5px;
}

.dental-practice-style1-right-inner .title h4 {
    color: var(--dark-text);
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    font-family: var(--thm-font);
}

.video-gallery-style1-area {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 107px 0px 136px;
    z-index: 1;
    background: var(--dark-bg);
}

.video-gallery-style1-area__bg {
    position: absolute;
    inset: 0px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    z-index: -1;
}

.video-gallery-style1-area__bg::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: var(--dark-card);
    opacity: 0.95;
}

.video-gallery-style1_content {
    position: relative;
    display: block;
}

.video-gallery-style1__video-holder {
    position: relative;
    display: block;
}

.video-gallery-style1__video-holder h2 {
    color: var(--dark-text);
    font-size: 60px;
    line-height: 70px;
    font-weight: 400;
    margin: 0px 0px 54px;
}

.video-gallery-style1__video-holder .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    height: 115px;
    background: var(--thm-gradient);
    border-radius: 50%;
    margin-left: 16px;
}

.video-gallery-style1__video-holder .icon::before {
    position: absolute;
    content: "";
    inset: -16px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    z-index: -1;
}

.video-gallery-style1__video-holder .icon::before {
    box-shadow: rgba(234, 191, 127, 0.09) 0px 0px 0px 0px;
    animation: 3s ease 0s infinite normal none running ripple;
}

.video-gallery-style1__video-holder .icon::after {
    position: absolute;
    content: "";
    inset: -16px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    z-index: -1;
    box-shadow: rgba(234, 191, 127, 0.09) 0px 0px 0px 0px;
    animation: 4s ease 0s infinite normal none running ripple;
}

.video-gallery-style1__video-holder .icon .video-popup {
    position: relative;
    display: block;
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 115px;
    text-align: center;
}

.video-gallery-style1__video-holder .icon .video-popup span::before {
    position: relative;
    top: 2px;
}

.video-gallery-style1_content .text-box {
    position: absolute;
    bottom: -136px;
    right: 0px;
    background: var(--dark-card);
    width: 275px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 50px 40px 43px;
    animation: 5000ms ease 0s infinite normal none running float-bob-xx;
    border: 1px solid var(--dark-border);
}

.video-gallery-style1_content .text-box span::before {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-size: 60px;
    line-height: 60px;
}

.video-gallery-style1_content .text-box h2 {
    font-size: 30px;
    line-height: 34px;
    font-weight: 400;
    font-family: var(--thm-font);
    margin: 23px 0px 0px;
    color: var(--dark-text);
}

.features-style1-area {
    position: relative;
    display: block;
    background: var(--dark-bg);
    padding: 120px 0px;
    z-index: 1;
}

.features-style1__bg {
    position: absolute;
    inset: 120px 0px 0px 54%;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    border-top-left-radius: 5px;
    z-index: -1;
}

.features-style1__bg .icon {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 170px;
    height: 170px;
    line-height: 170px;
    background: var(--thm-gradient);
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 95px;
    border-top-right-radius: 5px;
}

.features-style1__content {
    position: relative;
    display: block;
}

.features-style1__content .sec-title {
    padding-bottom: 39px;
}

.features-style1__content .text {
    position: relative;
    display: block;
}

.features-style1__content .text p {
    font-weight: 500;
    margin: 0px;
    color: var(--dark-text);
}

.features-style1__content-middle {
    position: relative;
    display: block;
    margin-top: 33px;
}

.features-style1__content-middle ul {
    position: relative;
    display: flex;
    align-items: center;
}

.features-style1__content-middle ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.features-style1__content-middle ul li:first-child {
    margin-left: 0px;
}

.features-style1__content-middle ul li .icon {
    position: relative;
    display: block;
}

.features-style1__content-middle ul li .icon span::before {
    position: relative;
    display: inline-block;
    top: 5px;
    color: var(--thm-base);
    font-size: 55px;
    line-height: 55px;
}

.features-style1__content-middle ul li .title {
    position: relative;
    display: block;
    padding-left: 20px;
}

.features-style1__content-middle ul li .title h4 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--thm-font);
    color: var(--dark-text);
}

.features-style1__content-list {
    position: relative;
    display: block;
    margin-top: 33px;
}

.features-style1__content-list li {
    position: relative;
    display: block;
    font-weight: 500;
    color: var(--dark-text);
}

.features-style1__content-list li i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    line-height: 10px;
    padding-right: 10px;
}

.features-style1__content-btn {
    position: relative;
    display: block;
    margin-top: 54px;
    line-height: 0;
}

.features-style1__content-btn .btn-one::after {
    background: var(--thm-gradient);
}

.features-style1__content-btn .btn-one::before {
    background: var(--dark-card);
}

.google-map-style1-area {
    position: relative;
    display: block;
    background: var(--dark-bg);
}

.google-map-style1-area .auto-container {
    max-width: 100%;
    padding: 0px;
}

.home1-page-map-outer {
    position: relative;
    display: block;
    z-index: 10;
}

.home1-page-map-outer .map-canvas {
    position: relative;
    width: 100%;
    height: 580px;
}

.opening-hours-area {
    position: relative;
    display: block;
    background: var(--dark-bg);
}

.opening-hours__content {
    position: relative;
    display: none;
    padding-top: 66px;
    padding-left: 165px;
    padding-bottom: 67px;
    background: var(--dark-card);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: -60px;
    z-index: 100;
    border: 1px solid var(--dark-border);
}

.clock-icon-box {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 165px;
    background: var(--thm-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock-icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 65px;
    line-height: 65px;
}

.opening-hours__content-inner {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 60px;
    padding-right: 20px;
}

.opening-hours__content-inner .inner-title {
    position: relative;
    display: block;
}

.opening-hours__content-inner .inner-title h2 {
    color: var(--dark-text);
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
}

.opening-hours__content-inner ul {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 110px;
}

.opening-hours__content-inner ul li {
    position: relative;
    display: block;
    padding-left: 80px;
    padding-right: 80px;
    z-index: 1;
}

.opening-hours__content-inner ul li:first-child {
    padding-left: 0px;
}

.opening-hours__content-inner ul li:last-child {
    padding-right: 0px;
}

.opening-hours__content-inner ul li::before {
    position: absolute;
    top: -16px;
    left: 0px;
    bottom: -16px;
    width: 1px;
    background: var(--dark-border);
    opacity: 0.5;
    z-index: -1;
    content: "";
}

.opening-hours__content-inner ul li:first-child::before {
    display: none;
}

.opening-hours__content-inner ul li p {
    color: var(--dark-text);
    font-size: 16px;
    line-height: 20px;
    margin: 0px 0px 7px;
}

.opening-hours__content-inner ul li h3 {
    color: var(--thm-base);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    font-family: var(--thm-font);
}

.sidebar-info-contents {
    max-height: 90vh;
    overflow-y: auto;
    padding-right: 10px;
}

.sidebar-info-contents::-webkit-scrollbar {
    width: 5px;
}

.sidebar-info-contents::-webkit-scrollbar-track {
    background: rgb(241, 241, 241);
}

.sidebar-info-contents::-webkit-scrollbar-thumb {
    background: rgb(42, 139, 157);
    border-radius: 3px;
}

.form-inner h4 {
    color: rgb(42, 139, 157);
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgb(42, 139, 157);
    position: relative;
}

.form-inner h4::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0px;
    width: 50px;
    height: 2px;
    background: rgb(255, 123, 0);
}

.appointment-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.appointment-form input, .appointment-form select, .appointment-form textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid rgb(224, 224, 224);
    border-radius: 8px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    background: rgb(255, 255, 255);
    transition: 0.3s;
}

.appointment-form input:focus, .appointment-form select:focus, .appointment-form textarea:focus {
    border-color: rgb(42, 139, 157);
    box-shadow: rgba(42, 139, 157, 0.1) 0px 0px 0px 3px;
    outline: none;
}

.appointment-form input::placeholder, .appointment-form textarea::placeholder {
    color: rgb(153, 153, 153);
}

.appointment-form .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(42, 139, 157);
    font-size: 16px;
}

.appointment-form textarea {
    min-height: 100px;
    resize: vertical;
    padding-top: 15px;
}

.appointment-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a8b9d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
}

.appointment-form .form-check {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.appointment-form .form-check input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    transform: scale(1.2);
}

.appointment-form .form-check label {
    font-size: 13px;
    color: rgb(85, 85, 85);
    cursor: pointer;
    margin: 0px;
}

.appointment-form .form-check a {
    color: rgb(42, 139, 157);
    text-decoration: underline;
}

.appointment-form .form-check a:hover {
    color: rgb(255, 123, 0);
}

.appointment-form .message-btn button {
    width: 100%;
    background: linear-gradient(135deg, rgb(42, 139, 157), rgb(26, 106, 120));
    border: none;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.appointment-form .message-btn button:hover {
    background: linear-gradient(135deg, rgb(26, 106, 120), rgb(42, 139, 157));
    transform: translateY(-2px);
    box-shadow: rgba(42, 139, 157, 0.3) 0px 5px 15px;
}

.appointment-form .message-btn button i {
    font-size: 18px;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgb(255, 245, 245);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid rgb(255, 71, 87);
}

.emergency-icon {
    font-size: 24px;
    color: rgb(255, 71, 87);
}

.emergency-item h6 {
    margin: 0px 0px 5px;
    color: rgb(51, 51, 51);
    font-size: 14px;
}

.emergency-phone {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: rgb(255, 71, 87) !important;
}

.emergency-phone:hover {
    text-decoration: underline;
}

.clinic-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0px;
    border-bottom: 1px solid rgb(238, 238, 238);
}

.clinic-hours li:last-child {
    border-bottom: none;
}

.clinic-hours .day {
    color: rgb(85, 85, 85);
    font-weight: 500;
}

.clinic-hours .time {
    color: rgb(42, 139, 157);
    font-weight: 600;
}

.form-response {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.form-response.success {
    background: rgb(212, 237, 218);
    color: rgb(21, 87, 36);
    border: 1px solid rgb(195, 230, 203);
    display: block;
}

.form-response.error {
    background: rgb(248, 215, 218);
    color: rgb(114, 28, 36);
    border: 1px solid rgb(245, 198, 203);
    display: block;
}

.thm-social-link1 h4 {
    margin-bottom: 15px;
    color: rgb(51, 51, 51);
    font-size: 18px;
}

.thm-social-link1 .social-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.thm-social-link1 .social-box li {
    margin: 0px;
}

.thm-social-link1 .social-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(245, 245, 245);
    color: rgb(85, 85, 85);
    transition: 0.3s;
}

.thm-social-link1 .social-box a:hover {
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
}

.thm-social-link1 .social-box .facebook a:hover {
    background: rgb(24, 119, 242);
    color: white;
}

.thm-social-link1 .social-box .instagram a:hover {
    background: rgb(228, 64, 95);
    color: white;
}

.thm-social-link1 .social-box .twitter a:hover {
    background: rgb(29, 161, 242);
    color: white;
}

.thm-social-link1 .social-box .whatsapp a:hover {
    background: rgb(37, 211, 102);
    color: white;
}

.thm-social-link1 .social-box .youtube a:hover {
    background: rgb(255, 0, 0);
    color: white;
}

.thm-sidebar-box {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
}

.single-sidebar-box {
    position: relative;
    display: block;
    padding: 50px;
    background: var(--dark-card);
    border-radius: 5px;
    margin-top: 30px;
    border: 1px solid var(--dark-border);
}

.sidebar-search-box {
    position: relative;
    display: block;
    background: var(--thm-gradient);
    padding: 20px 30px;
    border-radius: 5px;
}

.sidebar-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.sidebar-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 60px;
    border-radius: 5px;
    font-family: var(--thm-font);
    transition: 500ms;
}

.sidebar-search-box .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 55px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    background: var(--thm-gradient);
    text-align: center;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 0px solid rgb(231, 231, 232);
    transition: 500ms;
}

.sidebar-search-box .search-form button i {
    position: relative;
    top: 0px;
    color: rgb(255, 255, 255);
}

.sidebar-search-box .search-form input[type="text"]:focus {
    color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.2);
}

.sidebar-search-box .search-form input[type="text"]:focus + button, .sidebar-search-box .search-form button:hover {
    color: rgb(255, 255, 255);
    background-color: var(--dark-card);
}

.sidebar-search-box .search-form input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.sidebar-title {
    position: relative;
    display: block;
    top: -7px;
    padding-bottom: 15px;
}

.sidebar-title h3 {
    position: relative;
    color: var(--dark-text);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.sidebar-blog-post {
    position: relative;
    display: block;
}

.sidebar-blog-post ul {
    position: relative;
    display: block;
}

.sidebar-blog-post ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--dark-border);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.sidebar-blog-post ul li:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
}

.sidebar-blog-post ul li .inner {
    position: relative;
    display: block;
    padding-left: 70px;
}

.sidebar-blog-post ul li .img-box {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 70px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
}

.sidebar-blog-post ul li .img-box img {
    width: 100%;
}

.sidebar-blog-post ul li .img-box .overlay-content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(225, 186, 121, 0.53);
    border-radius: 0%;
    opacity: 0;
    transform: perspective(0px) scale(0);
    transform-origin: center center;
    transition: 0.5s ease-in-out;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.sidebar-blog-post ul li:hover .img-box .overlay-content {
    opacity: 1;
    transform: perspective(400px) scale(1);
    transition: 0.3s ease-in-out 0.3s;
}

.sidebar-blog-post ul li .img-box .overlay-content a {
    color: rgb(255, 255, 255);
    font-size: 14px;
    transition: 200ms linear 0.1s;
}

.sidebar-blog-post ul li .title-box {
    position: relative;
    display: block;
    padding-left: 20px;
    min-height: 70px;
}

.sidebar-blog-post ul li .title-box .admin {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
}

.sidebar-blog-post ul li .title-box h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin: 12px 0px 0px;
}

.sidebar-blog-post ul li .title-box h4 a {
    color: var(--dark-text);
    transition: 200ms linear 0.1s;
}

.sidebar-blog-post ul li .title-box h4 a:hover {
    color: var(--thm-base);
}

.sidebar-categories-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: -9px;
}

.sidebar-categories-box li {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.sidebar-categories-box li:last-child {
    margin-bottom: 0px;
}

.sidebar-categories-box li a {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 17px;
    overflow: hidden;
    color: var(--dark-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
    font-family: var(--thm-font);
    letter-spacing: 0em;
    transition: 100ms linear 0.1s;
}

.sidebar-categories-box li:hover a {
    color: var(--thm-base);
}

.sidebar-categories-box li a::before {
    content: "";
    position: absolute;
    left: 0px;
    width: 7px;
    height: 7px;
    background: var(--dark-text);
    border-radius: 50%;
    transition: 200ms linear 0.1s;
}

.sidebar-categories-box li:hover a::before {
    background: var(--thm-base);
}

.popular-tag-box {
    position: relative;
    display: block;
}

.single-sidebar-box .popular-tag {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -5px;
    margin-right: -5px;
}

.single-sidebar-box .popular-tag li {
    position: relative;
    display: block;
    float: left;
    margin: 0px 5px 10px;
}

.single-sidebar-box .popular-tag li a {
    position: relative;
    display: block;
    padding: 9px 17px;
    background: var(--dark-bg);
    color: var(--dark-text);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    border-radius: 5px;
    transition: 500ms;
    font-family: var(--thm-font);
    border: 1px solid var(--dark-border);
}

.single-sidebar-box .popular-tag li:hover a {
    color: rgb(255, 255, 255);
    border-color: transparent;
    background: var(--thm-gradient);
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: rgb(26, 31, 36);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 20px;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgb(42, 48, 54);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 15px 30px;
    border-color: rgb(187, 145, 82);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img-wrapper .img-holder {
    height: 100%;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(26, 31, 36, 0.95);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 10px;
    border: 1px solid rgb(187, 145, 82);
}

.date-badge .day {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: rgb(187, 145, 82);
    line-height: 1;
}

.date-badge .month {
    display: block;
    font-size: 14px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    text-transform: uppercase;
}

.card-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgb(187, 145, 82);
    color: rgb(26, 31, 36);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 25px;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
}

.meta-box {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgb(187, 145, 82);
}

.meta-author, .meta-comments {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-box i {
    color: rgb(187, 145, 82);
    font-size: 13px;
}

.card-title {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
}

.card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.card-title a:hover {
    color: rgb(187, 145, 82);
}

.card-text {
    color: rgb(204, 204, 204);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1 1 0%;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.card-tag {
    background: rgba(187, 145, 82, 0.1);
    color: rgb(187, 145, 82);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(187, 145, 82, 0.3);
    transition: 0.3s;
}

.card-tag:hover {
    background: rgba(187, 145, 82, 0.2);
    border-color: rgb(187, 145, 82);
    cursor: default;
}

.card-footer {
    margin-top: auto;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgb(187, 145, 82);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.read-more-btn:hover {
    color: rgb(255, 255, 255);
    gap: 12px;
}

.read-more-btn i {
    color: rgb(187, 145, 82);
    font-size: 12px;
    transition: transform 0.3s, color 0.3s;
}

.read-more-btn:hover i {
    transform: translateX(5px);
    color: rgb(255, 255, 255);
}

.load-more-blog-post-button {
    text-align: center;
    margin-top: 40px;
}

.btn-one {
    display: inline-block;
    background: rgb(187, 145, 82);
    color: rgb(26, 31, 36);
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid rgb(187, 145, 82);
}

.btn-one:hover {
    background: rgb(26, 31, 36);
    color: rgb(187, 145, 82);
}

.sidebar-search-box {
    background: rgb(26, 31, 36);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgb(42, 48, 54);
}

.search-form input {
    background: rgb(42, 48, 54);
    border: 1px solid rgb(58, 64, 70);
    color: rgb(255, 255, 255);
    border-radius: 4px;
}

.search-form input::placeholder {
    color: rgb(136, 136, 136);
}

.search-form button {
    background: rgb(187, 145, 82);
    color: rgb(26, 31, 36);
    border: none;
}

.single-sidebar-box {
    background: rgb(26, 31, 36);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgb(42, 48, 54);
    margin-bottom: 20px;
}

.sidebar-title h3 {
    color: rgb(255, 255, 255);
    border-bottom: 2px solid rgb(187, 145, 82);
    padding-bottom: 10px;
}

.sidebar-categories-box li a {
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-categories-box li a:hover {
    color: rgb(187, 145, 82);
}

.popular-tag li a {
    background: rgb(42, 48, 54);
    color: rgb(187, 145, 82);
    border: 1px solid rgb(58, 64, 70);
}

.popular-tag li a:hover {
    background: rgb(187, 145, 82);
    color: rgb(26, 31, 36);
}

@media (max-width: 1199px) {
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-cards-grid {
        grid-template-columns: 1fr;
    }

    .card-img-wrapper {
        height: 200px;
    }
}

.error-page-area {
    position: relative;
    display: block;
    padding: 112px 0px 120px;
    z-index: 1;
    background: var(--dark-bg);
}

.error-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-content .big-title {
    position: relative;
    display: block;
    z-index: 1;
}

.error-content .big-title h2 {
    color: var(--thm-base);
    font-size: 72px;
    line-height: 70px;
    font-weight: 400;
}

.error-content .title {
    position: relative;
    display: block;
    padding-top: 11px;
    padding-bottom: 18px;
}

.error-content .title h2 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 400;
    color: var(--dark-text);
}

.error-content .text {
    position: relative;
    display: block;
    padding-bottom: 29px;
}

.error-content .text p {
    margin: 0px;
    color: var(--dark-text);
}

.error-page-search-box {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
    margin: 0px auto;
}

.error-page-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.error-page-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    border-radius: 0px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--dark-text);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding-left: 30px;
    padding-right: 60px;
    transition: 500ms;
    font-family: var(--thm-font);
}

.error-page-search-box .search-form button {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    background: var(--thm-gradient);
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 10px;
    display: block;
    text-align: center;
    border: 0px solid rgb(225, 225, 225);
    transition: 500ms;
}

.error-page-search-box .search-form button i {
    font-size: 16px;
}

.error-page-search-box .search-form input[type="text"]:focus {
    color: var(--dark-text);
    border-color: var(--thm-base);
}

.error-page-search-box .search-form input[type="text"]:focus + button, .error-page-search-box .search-form button:hover {
    color: rgb(255, 255, 255);
}

.error-page-search-box .search-form input::-webkit-input-placeholder {
    color: var(--dark-muted);
}

.error-content .btns-box {
    line-height: 0;
    padding-top: 20px;
}

.error-content .btns-box a {
    padding-left: 40px;
    padding-right: 40px;
}

.subscribe-area {
    position: relative;
    display: block;
    background: var(--dark-card);
    padding: 40px 0px 41px;
    overflow: hidden;
    width: 100%;
    z-index: 1;
    border-top: 1px solid var(--dark-border);
}

.subscribe-title {
    position: relative;
    display: block;
}

.subscribe-title h2 {
    color: var(--dark-text);
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin: 0px 0px 3px;
}

.subscribe-title p {
    color: var(--dark-muted);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0px;
}

.subscribe-area .subscribe-box {
    position: relative;
    display: block;
    padding: 4px 0px 5px;
}

.subscribe-area .subscribe-form {
    position: relative;
    display: block;
    width: 100%;
    margin: 0px;
}

.subscribe-area .subscribe-form input[type="email"] {
    position: relative;
    display: block;
    max-width: 390px;
    width: 100%;
    height: 60px;
    padding: 0px 20px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    color: var(--dark-text);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    transition: 500ms;
}

.subscribe-area .subscribe-form input::-webkit-input-placeholder {
    color: var(--dark-muted);
}

.subscribe-area .subscribe-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 170px;
    background: transparent;
    color: rgb(255, 255, 255);
    border: 2px solid var(--thm-base);
    transition: 300ms 100ms;
}

.subscribe-area .subscribe-form button.btn-one::before {
    background: var(--thm-base);
}

.subscribe-area .subscribe-form input[type="email"]:focus {
    color: var(--dark-text);
    border-color: var(--thm-base);
}

.subscribe-area .subscribe-form input[type="email"]:focus + button, .subscribe-area .subscribe-form button:hover {
}

#ui-datepicker-div.ui-widget-content {
    border: 1px solid var(--dark-border);
    background: var(--dark-card) none repeat scroll 0 0;
    color: var(--dark-text);
    font-family: Poppins, sans-serif;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--thm-base);
    border: 2px solid rgb(229, 192, 130);
    border-radius: 10px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    padding: 5px 0px;
    position: relative;
}

.ui-datepicker td a {
    text-align: center;
    color: var(--dark-text) !important;
    background: var(--dark-bg) !important;
    border: 1px solid var(--dark-border) !important;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid var(--thm-base) !important;
    background: var(--thm-base) !important;
    color: rgb(255, 255, 255) !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: 500ms;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover, .ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: rgb(255, 255, 255);
    border: none;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0px 0px 0.4em;
    width: 100%;
    z-index: 99999999;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover, .ui-datepicker-calendar .ui-state-default:active {
    background: var(--thm-base);
    color: rgb(255, 255, 255);
    border-color: var(--thm-base);
}

.service-block-carousel {
    position: relative;
    display: block;
}

.service-block-carousel.owl-carousel.owl-dot-style1 .owl-dots {
    margin-top: 20px !important;
}

.service-block-carousel.owl-carousel .owl-stage-outer {
    padding-bottom: 0px;
    overflow: visible;
}

.service-block-carousel.owl-carousel .owl-stage-outer .owl-item {
    opacity: 0.5;
    transform: scale(0.8);
    transform-origin: center top;
    transition: 900ms 100ms;
}

.service-block-carousel.owl-carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
    transform: scale(1);
    transition: 500ms 500ms;
}

.team-block2 {
    padding-bottom: 120px;
}

.team-block-carousel {
    position: relative;
    display: block;
}

.team-block-carousel.owl-carousel.owl-dot-style1 .owl-dots {
    margin-top: 20px !important;
}

.team-block-carousel.owl-carousel .owl-stage-outer {
    padding-bottom: 0px;
    overflow: visible;
}

.team-block-carousel.owl-carousel .owl-stage-outer .owl-item {
    opacity: 0.5;
    transform: scale(0.8);
    transform-origin: center top;
    transition: 900ms 100ms;
}

.team-block-carousel.owl-carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
    transform: scale(1);
    transition: 500ms 500ms;
}

.news-block-1 {
    padding-bottom: 120px;
}

.news-block-carousel {
    position: relative;
    display: block;
}

.news-block-carousel.owl-carousel.owl-dot-style1 .owl-dots {
    margin-top: 20px !important;
}

.news-block-carousel.owl-carousel .owl-stage-outer {
    padding-bottom: 0px;
    overflow: visible;
}

.news-block-carousel.owl-carousel .owl-stage-outer .owl-item {
    opacity: 0.5;
    transform: scale(0.8);
    transform-origin: center top;
    transition: 900ms 100ms;
}

.news-block-carousel.owl-carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
    transform: scale(1);
    transition: 500ms 500ms;
}

.fact-counter-block-1 {
    padding-top: 120px;
    padding-bottom: 120px;
    background: var(--dark-bg);
}

.fact-counter-block-1 .fact-counter-box {
    margin-top: 0px;
}

.fact-counter-block-2 {
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--dark-card);
}

.fact-counter-block-2 .fact-counter-box {
    margin-top: 0px;
    box-shadow: none;
}

.faq-block-2 {
}

.faq-block-2 .faq-style1-content {
    max-width: 830px;
    width: 100%;
    margin: 0px auto;
}

.main-logo-box img, .sticky-header .logo img, .mobile-menu .nav-logo img, .sidebar-textwidget .logo img {
    object-fit: contain;
    transition: 0.3s;
    filter: brightness(1.2);
    max-height: 60px !important;
    width: auto !important;
}

.sticky-header .logo img {
    max-height: 50px !important;
}

.mobile-menu .nav-logo img {
    max-height: 50px !important;
    max-width: 180px !important;
}

.main-logo-box {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0px;
}

.main-logo-box a {
    display: flex;
    align-items: center;
    height: 100%;
}

.sticky-header .logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.sticky-header .logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-left {
    display: flex;
    align-items: center;
}

.main-logo-box img:hover, .sticky-header .logo img:hover {
    transform: scale(1.05);
}

.main-logo-box img, .sticky-header .logo img, .mobile-menu .nav-logo img {
    mix-blend-mode: normal;
}

.main-logo-box {
    background: transparent;
    border-radius: 5px;
}

@media (max-width: 1199px) {
    .main-logo-box img {
        max-height: 55px !important;
    }

    .sticky-header .logo img {
        max-height: 45px !important;
    }
}

@media (max-width: 768px) {
    .main-logo-box img {
        max-height: 50px !important;
        max-width: 150px !important;
    }

    .sticky-header .logo img {
        max-height: 40px !important;
        max-width: 130px !important;
    }

    .mobile-menu .nav-logo img {
        max-height: 45px !important;
        max-width: 160px !important;
    }
}

@media (max-width: 480px) {
    .main-logo-box img {
        max-height: 45px !important;
        max-width: 130px !important;
    }

    .sticky-header .logo img {
        max-height: 35px !important;
        max-width: 120px !important;
    }
}

.xs-sidebar-group .content-inner .logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
    display: flex;
    align-items: center;
}

.xs-sidebar-group .content-inner .logo img {
    max-height: 60px !important;
    width: auto !important;
}

.header-top {
    border-bottom: 1px solid var(--dark-border);
    background: var(--dark-card) !important;
}

.header-top .welcome-text p {
    color: var(--dark-text) !important;
}

.header-top .welcome-text a {
    color: var(--thm-base) !important;
}

.header-contact-info h6 {
    color: var(--dark-text) !important;
}

.header-contact-info a {
    color: var(--dark-text) !important;
}

.header-contact-info a:hover {
    color: var(--thm-base) !important;
}

.header {
    border-bottom: 1px solid var(--dark-border);
    background: var(--dark-card) !important;
}

.sticky-header {
    border-bottom: 1px solid var(--dark-border);
    background: var(--dark-card) !important;
}

.main-menu .navigation > li > a {
    color: var(--dark-text) !important;
}

.main-menu .navigation > li:hover > a, .main-menu .navigation > li.current > a {
    color: var(--thm-base) !important;
}

.main-menu .navigation li ul {
    border: 1px solid var(--dark-border);
    background: var(--dark-card) !important;
}

.main-menu .navigation li ul li a {
    border-bottom: 1px solid var(--dark-border);
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255) !important;
}

.main-menu .navigation li ul li a:hover {
    background: var(--dark-bg);
    color: rgb(255, 255, 255) !important;
}

.megamenu {
    border: 1px solid var(--dark-border);
    background: var(--dark-card) !important;
}

.megamenu ul li a {
    color: var(--dark-text) !important;
}

.megamenu ul li a:hover {
    color: var(--thm-base) !important;
}

.phone-number-box1 .phone p {
    color: var(--dark-muted) !important;
}

.phone-number-box1 .phone a {
    color: var(--dark-text) !important;
}

.phone-number-box1 .phone a:hover {
    color: var(--thm-base) !important;
}

.serach-button-style1 .search-toggler {
    color: var(--dark-text) !important;
    border-left: 1px solid var(--dark-border) !important;
}

.serach-button-style1 .search-toggler:hover {
    color: var(--thm-base) !important;
}

.bottom-parallax {
    background: linear-gradient(rgba(10, 15, 20, 0.85), rgba(10, 15, 20, 0.9)) center center / cover, url("https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80") fixed;
    padding: 80px 0px 0px;
    position: relative;
    overflow: hidden;
}

.footer-area {
    position: relative;
    z-index: 2;
}

.footer-shape {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1200 120\" preserveAspectRatio=\"none\"><path d=\"M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z\" fill=\"%231a1f24\"></path></svg>") center top / cover;
    opacity: 0.7;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 15px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-logo img {
    max-height: 70px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgb(187, 187, 187);
    margin-bottom: 25px;
    font-size: 15px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgb(187, 187, 187);
}

.contact-info i {
    color: var(--thm-base);
    margin-right: 12px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: rgb(187, 187, 187);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--thm-base);
}

.footer-title {
    color: var(--dark-text);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 40px;
    height: 2px;
    background: var(--thm-gradient);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgb(187, 187, 187);
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: "▸";
    color: var(--thm-base);
    margin-right: 10px;
    font-size: 14px;
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: var(--thm-base);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.opening-hours li {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.opening-hours .day {
    color: var(--dark-text);
}

.opening-hours .time {
    color: var(--thm-base);
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border-radius: 50%;
    color: var(--dark-text);
    transition: 0.3s;
    border: 1px solid var(--dark-border);
}

.footer-social a:hover {
    background: var(--thm-gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: rgba(234, 191, 127, 0.3) 0px 5px 15px;
}

.footer-newsletter p {
    color: var(--dark-muted);
    margin-bottom: 20px;
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1 1 0%;
    padding: 12px 15px;
    background: var(--dark-card);

    border-right: none;
    color: var(--dark-text);
    border-radius: 5px 0px 0px 5px;
    outline: none;
}

.newsletter-form button {
    background: var(--thm-gradient);
    color: white;
    border: none;
    padding: 0px 20px;
    border-radius: 0px 5px 5px 0px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    opacity: 0.9;
}

.footer-map {
    height: 180px;
    background: var(--dark-card);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
    border: 1px solid var(--dark-border);
}

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)) center center / cover, url("https://images.unsplash.com/photo-1576086213369-97a306d36557?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1180&q=80");
    color: white;
    text-align: center;
}

.map-placeholder a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    background: var(--thm-gradient);
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.map-placeholder a:hover {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px;
}

.map-placeholder i {
    margin-right: 8px;
}

.footer-bottom {
    background: var(--dark-card);
    padding: 25px 0px;
    border-radius: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.copyright {
    color: var(--dark-muted);
    font-size: 14px;
}

.copyright a {
    color: var(--thm-base);
    text-decoration: none;
}


.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--dark-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--thm-base);
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        /* gap: 15px; */
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-right: 1px solid var(--dark-border);
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 5px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .bottom-parallax {
        padding: 60px 0px 0px;
    }

    .footer-social {
        justify-content: center;
    }
}

.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 20px;
    transition: 0.3s;
    position: relative;
    border: none;
    cursor: pointer;
    transform: scale(1);
    opacity: 1;
}

.floating-btn.whatsapp-btn {
    background: linear-gradient(135deg, rgb(226, 188, 124), rgb(188, 136, 54));
}

.floating-btn.phone-btn {
    background: linear-gradient(135deg, rgb(227, 189, 126), rgb(188, 136, 53));
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: rgba(234, 191, 127, 0.3) 0px 10px 15px;
}

[dir="rtl"] .floating-buttons {
    left: auto;
    right: 30px;
}

[dir="rtl"] .floating-btn:hover::before {
    right: auto;
    left: 75px;
}

@media (max-width: 767px) {
    .floating-buttons {
        bottom: 20px;
        left: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.demo-rtl {
  position: fixed;
  top: 260px;
  left: 0;
  z-index: 9999;
  background: var(--thm-gradient);
  display: block;
  text-indent: inherit;
  font-size: 12px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: 700;
  margin: 0px;
  color: #fff !important;
}

.demo-ltr {
  position: fixed;
  top: 260px;
  left: auto;
  right: 0;
  z-index: 9999;
}

.single-blog-style1 .text-holder {
    background: var(--dark-card) !important;
}

.single-blog-style1 .blog-title a {
    color: var(--dark-text) !important;
}

.single-blog-style1 .blog-title a:hover {
    color: var(--thm-base) !important;
}

.meta-info a {
    color: var(--dark-muted) !important;
}

.meta-info a:hover {
    color: var(--thm-base) !important;
}

.single-service-style1 {
    border: 1px solid var(--dark-border);
    background: var(--dark-card) !important;
}

.single-service-style1 .title-holder h3 a {
    color: var(--dark-text) !important;
}

.single-service-style1 .title-holder h3 a:hover {
    color: var(--thm-base) !important;
}

.single-service-style1 .text p {
    color: var(--dark-muted) !important;
}

.single-testimonials-style1 {
    border: 1px solid var(--dark-border);
    background: var(--dark-card) !important;
}

.single-testimonials-style1 .text p {
    color: var(--dark-text) !important;
}

.single-testimonials-style1 .name h3 {
    color: var(--dark-text) !important;
}

.single-testimonials-style1 .name span {
    color: var(--dark-muted) !important;
}

.partner-area {
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    background: var(--dark-bg) !important;
}

.bottom-parallax {
    background: var(--dark-bg) !important;
}

.main-slider.style1 {
    margin-bottom: 0px !important;
}

.callto-action-area {
    margin: 0px !important;
}

.contact-style1-area {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.certificates-area {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.about-style1-area {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.slogan-area {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.service-style1-area {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.before-after-work-area {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.testimonials-style1-area {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.dental-practice-style1-area {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.blog-style1-area {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.partner-area {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.slogan-style2-area {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

section {
    margin: 0px !important;
}

.auto-container, .container {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.contact-style1-area .row {
    margin: 0px !important;
}

.certificates-area .row {
    margin: 0px !important;
}

.about-style1-area .row {
    margin: 0px !important;
}

.service-style1-area .row {
    margin: 0px !important;
}

.service-style1__top-title {
    margin-bottom: 40px !important;
}

.testimonials-style1__content {
    margin-top: 40px !important;
}

.blog-style1-area .row {
    margin: -15px !important;
}

.blog-style1-area .col-xl-4 {
    padding: 15px !important;
}

.partner-box {
    padding: 20px 0px !important;
}

.bottom-parallax {
    margin-top: 0px !important;
}

section + section {
    border-top: none !important;
}
