/* Reset CSS */
@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-Black.woff2') format('woff2'),
        url('../font/Outfit-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-Bold.woff2') format('woff2'),
        url('../font/Outfit-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-SemiBold.woff2') format('woff2'),
        url('../font/Outfit-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-ExtraLight.woff2') format('woff2'),
        url('../font/Outfit-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-Regular.woff2') format('woff2'),
        url('../font/Outfit-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-ExtraBold.woff2') format('woff2'),
        url('../font/Outfit-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-Light.woff2') format('woff2'),
        url('../font/Outfit-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-Medium.woff2') format('woff2'),
        url('../font/Outfit-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/Outfit-Thin.woff2') format('woff2'),
        url('../font/Outfit-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}


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

html,
body {
  height: 100%;
  line-height: 1.5;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  color: #24272c;
  font-family: "Outfit", sans-serif;
  font-display: swap;
}

body p {
  color: #555555;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a:hover {
  color: #00a8d0;
}

ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
}
.tf-container {
  max-width: 1470px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.tf-container.w1 {
  max-width: 1324px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Container helper */
.container {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Top bar */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px solid #ededed;
}

.top-bar .left-info span {
  font-size: 14px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
}

.top-bar .left-info span:not(:last-child) {
  margin-right: 24px;
}

.top-bar .left-info i {
  font-size: 14px;
  margin-right: 6px;
}

.top-bar .right-social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.right-social a {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-block;
  border-radius: 100px;
  line-height: 28px;
  text-align: center;
  font-size: 12px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}

.right-social a:hover {
  border: 1px solid #00a8d0;
  background-color: #00a8d0;
  color: #fff;
}

/* Main Header */
.main-header {
  z-index: 100;
  position: relative;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-sticky {
  position: fixed;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 9999;
}

.header-sticky.is-fixed {
  transform: translateY(0%);
}

.main-header .logo img {
  width: 130px;
}

.main-menu .menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 33px;
  margin: 0;
  padding: 0;
}

.main-menu .menu > li > a {
  font-weight: 600;
  font-size: 18px;
  line-height: 101px;
  position: relative;
  vertical-align: middle;
}

/* Blog main */

.blog-post-item .post-thumbnail {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.blog-post-item .post-thumbnail a:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
  pointer-events: none;
}

.blog-post-item:hover .post-thumbnail a:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.blog-post-item .post-thumbnail img {
  object-fit: cover;
  width: 100%;
  transition: all 1s;
}

.blog-post-item:hover .post-thumbnail img {
  transform: scale(1.1);
}

.blog-post-item .post-content .post-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-content .post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #696665;
}

.post-content .post-meta {
  margin-bottom: 24px;
}

.post-content .post-meta .author {
  font-weight: 500;
  color: #24272c;
}

.post-content .post-meta .author .avatar {
  width: 18px;
  height: 18px;
  border-radius: 100px;
}

.post-content .item-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #b6b6b6;
  position: relative;
}

.post-content .item-meta:not(last-child) {
  margin-right: 25px;
}
.post-content .item-meta:last-child {
  margin-right: 0px;
}
.post-content .item-meta:last-child::after {
  height: 0px;
  width: 0px;
}
.post-content .item-meta:not(last-child)::after {
  position: absolute;
  height: 12px;
  width: 1px;
  content: "";
  background-color: #e4e4e4;
  right: -13px;
}

.post-content .post-excerpt p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 24px;
}

.post-content .read-more {
  background: #f3fbfd;
  padding: 14px 24px;
  display: inline-flex;
  border-radius: 14px;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #00a8d0;
  transition: all 0.3s ease-in-out;
}

.post-content .read-more:hover {
  background: #00a8d0;
  color: #f3fbfd;
}

.post-content .read-more i {
  rotate: -45deg;
  font-size: 20px;
}

.footer-wrap {
  padding-bottom: 56px;
}

.footer-top .actionbox-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 30px;
  text-align: center;
}

.footer-top a.btn-action-box {
  position: relative;
  transition: all 0.3s ease-in-out;
  padding: 14px 24px 14px 24px;
  border: 1px solid #00a8d0;
  border-radius: 14px;
  display: inline-block;
  color: #00a8d0;
  outline: none;
  overflow: hidden;
  letter-spacing: 0px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
}

.footer-top a.btn-action-box:hover {
  border: 1px solid #00a8d0;
  background: #00a8d0;
  color: #fff;
}

.footer-bottom .copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .footer-menu-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.footer-menu-bottom li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
  position: relative;
  letter-spacing: 0.1px;
}

.footer-menu-bottom li a:hover {
  color: #00a8d0;
}

.site-footer {
  background: #00a8d0;
  padding: 58px 0px 0px 0;
  border-radius: 48px;
  overflow: hidden;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.site-footer::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.82);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.site-footer .tf-container.w1 {
  position: relative;
  z-index: 2;
}

.footer-bottom {
  padding: 40px 0;
  text-align: center;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 42px 0 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-form {
  margin-top: 18px;
}

.footer-form input#email {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  outline: none;
  padding: 15px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #ffffff;
  width: 100%;
  margin-bottom: 18px;
}

.footer-form input[type="submit"] {
  outline: none;
  padding: 13px 20px;
  border-radius: 14px;
  background: #00a8d0;
  color: #ffffff;
  width: 100%;
  font-family: Outfit;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: unset;
}

.social-footer {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-footer a {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-block;
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.social-footer a:hover {
  background: #00a8d0;
  color: #fff;
}

.footer-form input[type="submit"]:hover {
  background: #ffffff;
  color: #00a8d0;
}

.footer-form input#email::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #ffffff;
  background: transparent;
}

.footer-form input#email:focus {
  border: 1px solid #00a8d0;
}

.footer-col h4 {
  margin-bottom: 21px;
  color: #fff;
  font-weight: 400;
  font-size: 22px;
  line-height: 140%;
  vertical-align: middle;
}

.footer-col > p {
  font-weight: 400;
  margin-top: 24px;
  font-size: 14px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .logo img {
  width: 168px;
}

.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 40px;
}

.site-footer .footer-top .line {
  position: relative;
}

.site-footer .footer-top .line:not(:last-child):after {
  height: 100%;
  width: 1px;
  position: absolute;
  content: "";
  right: -94px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-top .footer-action-box {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-action-box h2 {
  font-weight: 600;
  font-size: 26px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 9px;
}

.footer-action-box p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
}

.site-footer .copyright {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li:not(:last-child) {
  margin-bottom: 8px;
}

.footer-menu li a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  position: relative;
}
.footer-menu li a::before {
    height: 1px;
    background: #00a8d0;
    bottom: 0;
    z-index: 1;
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    width: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.3s ease;
}
.footer-menu li a:hover:before {
    width: 100%;
    left: 0;
}
.footer-menu li a:hover {
  color: #00a8d0;
}

.list-infor-footer i {
  width: 40px;
  height: 40px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #ffffff;
  flex-shrink: 0;
}

.list-infor-footer li:not(:last-child) {
  margin-bottom: 12px;
}

.list-infor-footer a,
.list-infor-footer p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 0;
  opacity: 1;
  letter-spacing: 0;
  vertical-align: middle;
}

.list-infor-footer a {
  color: #00a8d0;
  position: relative;
}

.list-infor-footer a::before {
  height: 1px;
  background: #00a8d0;
  bottom: 0;
  z-index: 1;
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  width: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.3s ease;
}

.list-infor-footer a:hover:before {
  width: 100%;
  left: 0;
}

.stm_newsletter_form {
  position: relative;
  margin-bottom: 16px;
}

.stm_newsletter_form input {
  font-size: 16px;
  font-weight: 400;
  padding: 16px 56px 13px 24px;
  border-radius: 999px;
  border: solid 1px #ebebeb;
  width: 100%;
}

.stm_newsletter_form input:focus {
  border: solid 1px #00a8d0;
}

.stm_newsletter_form input::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #0a172286;
}

.site-footer .footer-form p {
  margin-bottom: 22px;
}

.stm_newsletter_form button {
  position: absolute;
  right: 24px;
  top: 51%;
  transform: translateY(-50%);
  font-size: 24px;
  background: unset;
  border: unset;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.stm_newsletter_form button:hover i {
  color: #00a8d0;
}

.social-infor-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.social-infor-footer a {
  color: rgba(255, 255, 255, 0.7);
}

.social-infor-footer a:hover {
  color: #00a8d0;
}

.social-infor-footer i {
  font-size: 20px;
}

.nice-select-dropdown .list::-webkit-scrollbar {
  width: 5px !important;
}

.nice-select-dropdown .list::-webkit-scrollbar-thumb {
  background-color: #00a8d0 !important;
  border-radius: 4px !important;
}

.nice-select-dropdown .list::-webkit-scrollbar-thumb:hover {
  background-color: #00a8d0 !important;
}

/* MAIN MENU */
.main-menu {
  flex: 1;
}

.main-menu .menu > li {
  position: relative;
}

.main-menu > ul > li.menu-item-has-children > a::after {
  font-family: clevercarsale;
  content: "\e910";
  font-weight: 500;
  font-size: 15px;
  margin-left: 8px;
  line-height: 10px;
  vertical-align: middle;
}

.main-menu .menu > li > a {
  text-decoration: none;
  color: #000000;
  display: block;
  transition: background 0.3s;
}

.current-menu-ancestor > a,
.main-menu .menu .current-menu-item > a {
  color: #00a8d0 !important;
}

.current-menu-ancestor > a::before,
.main-menu .menu > li.current-menu-item > a::before {
  width: 100% !important;
}

.main-menu .menu > li > a::before {
  height: 3px;
  background: #00a8d0;
  bottom: 0;
  z-index: 1;
  border-radius: 3px 3px 0px 0px;
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  width: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.3s ease;
}

.main-menu .menu > li > a:hover:before {
  width: 100%;
  left: 0;
}

/* SUBMENU */
.main-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #00a8d0;
  color: #fff;
  min-width: 260px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10;
  border-radius: 12px;
}

.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.main-menu .sub-menu > li {
  position: relative;
}

.main-menu .sub-menu > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.main-menu .sub-menu > li.menu-item-has-children:after {
  position: absolute;
  font-family: "clevercarsale";
  content: "\e910";
  right: 15px;
  font-size: 10px;
  top: 50%;
  transform: translateY(-50%);
}

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

.main-menu .sub-menu li a {
  padding: 12px 20px;
  display: block;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.main-menu .sub-menu .current-menu-ancestor > a,
.main-menu .sub-menu .current-menu-item > a {
  color: #000 !important;
}

.main-menu .sub-menu li a:hover {
  color: #000;
}

.mobile-menu .sub-menu {
  display: none;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  width: 25px;
  height: 20px;
  justify-content: space-between;
  cursor: pointer;
  border: none;
  background: none;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
}

.main-header .menu-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  cursor: pointer;
  width: 40px;
  height: 32px;
  display: none;
}

.main-header .menu-toggle span {
  position: absolute;
  left: 10px;
  top: 50%;
  background: #00a8d0;
  height: 2px;
  width: 20px;
  padding: 0;
  border: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  outline: none !important;
  margin: -1px 0 0;
}

.main-header .menu-toggle span::before {
  content: "";
  position: absolute;
  left: 0;
  top: -7px;
  width: 20px;
  height: 2px;
  background: #00a8d0;
  -webkit-transform-origin: 1.5px center;
  -moz-transform-origin: 1.5px center;
  -o-transform-origin: 1.5px center;
  transform-origin: 1.5px center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.main-header .menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 20px;
  height: 2px;
  background: #00a8d0;
  -webkit-transform-origin: 1.5px center;
  -moz-transform-origin: 1.5px center;
  -o-transform-origin: 1.5px center;
  transform-origin: 1.5px center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.main-header .menu-toggle.active span {
  background: transparent;
}

.main-header .menu-toggle.active span::after {
  bottom: 0;
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  -moz-transform: rotate3d(0, 0, 1, 45deg);
  -o-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.main-header .menu-toggle.active span::before {
  top: 0;
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  -moz-transform: rotate3d(0, 0, 1, -45deg);
  -o-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.mobile-sidebar-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9999;
}

.mobile-menu-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: #fff;
  padding: 25px 20px;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-content .logo {
  margin-bottom: 20px;
}
.mobile-menu-content .mobile-menu li {
  position: relative;
}
.mobile-menu-content .mobile-menu a {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 10px 50px 10px 0px;
  color: #0a1722;
  position: relative;
}
.mobile-menu-content .mobile-menu .current-menu-item a {
    color: #00A8D0 !important;
}
.mobile-menu .menu-item-has-children:after {
    content: "\e910";
    font-family: "clevercarsale";
    position: absolute;
    top: 12px;
    right: 0;
    font-size: 15px;
    color: #000;
}
.mobile-menu .sub-menu {
    padding-left: 20px;
}
.mobile-menu-content.mobile-menu li:not(:last-child) {
  margin-bottom: 15px;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 50px;
  position: absolute;
  top: 27px;
  right: 11px;
  color: #fff;
}

/* pagetitle */


.page-title-section .inner-pagetitle {
  position: relative;
  z-index: 50;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 193px;
  padding-bottom: 187px;
  border-radius: 48px;
  overflow: hidden;

}
.single .page-title-section .inner-pagetitle {
    background-attachment: unset;
}

.single .wrapper-content {
  padding: 102px 15px 102px 15px;
}

.single .page-title-section .inner-pagetitle {
  padding-top: 145px;
  padding-bottom: 146px;
}

.single .page-title-section .breadcrumb {
  display: none;
}

.single .page-title-section .inner-pagetitle h1 {
  margin-bottom: 14px;
}

.single-post .post-content p strong {
  color: #00a8d0;
      font-weight: 500;

}
.single-post .post-content h5.wp-block-heading {
    font-size: 18px;
}
.single-post .post-content p {
  font-weight: 400;
  font-size: 16px;
 line-height: 1.6em;
}

.single-post .post-content .wp-block-heading {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  margin-bottom: 16px;
}
.single-post .post-content h4.wp-block-heading {
    font-size: 20px;
}

.single-post .post-content .wp-block-group {
  margin-bottom: 32px;
  margin-top: 30px;
}

.related-post .box-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  margin-bottom: 61px;
}

.related-post .related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.single-post .post-content .wp-block-group p:not(:last-child) {
  margin-bottom: 16px;
}

.tags-links,
.wp-block-tag-cloud {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.tags-links h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

.tags-links a,
.wp-block-tag-cloud a {
  font-weight: 400;
  font-size: 16px !important;
  line-height: 140%;
  color: #696665;
  padding: 10px 16px;
  border: 1px solid #ededed;
  border-radius: 99px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin: 0;
}

.tags-links a:hover,
.wp-block-tag-cloud a:hover {
  color: #fff;
  border: 1px solid #00a8d0;
  background-color: #00a8d0;
}

.entry-footer {
  padding-top: 16px;
  margin-bottom: 48px;
  border-top: 1px solid #ededed;
}

#respond {
  padding-top: 48px;
  margin-bottom: 105px;
}

.page-title-section .inner-pagetitle::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.single-post .post-content .wp-block-image {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 12px;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.page-title-section .inner-pagetitle h1 {
  color: #fff;
  position: relative;
  z-index: 5;
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.28;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}

.page-title-section .breadcrumb {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  vertical-align: middle;
  text-align: center;
  z-index: 5;
  position: relative;
}

.page-title-section .list-meta-single {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  flex-wrap: nowrap;
  justify-content: center;
  padding: 11px;
  color: #fff;
  z-index: 2;
  position: relative;
  border-radius: 100px;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  gap: 25px;
}

.page-title-section .center {
  text-align: center;
}

.list-meta-single .item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.list-meta-single .item-meta i {
  font-size: 15px;
}

.list-meta-single .post-author img {
  width: 18px;
  height: 18px;
  border-radius: 100px;
}

.page-title-section .breadcrumb .sep {
  vertical-align: middle;
  margin: 0px 10px;
  font-size: 10px;
}

.wrapper-content {
  padding: 107px 15px 101px 15px;
}

.blog-layout .header-blog {
  text-align: center;
}

.blog-layout .header-blog h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  margin-bottom: 21px;
  color: #000000;
}

.blog-layout .header-blog p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 56px;
}

.blog .blog-layout .blog-main,
.archive .blog-layout .blog-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
}

.single .blog-layout {
  display: flex;
}

.single .wrap-blog .content-blog {
  width: 74.2%;
}

.single .wrap-blog .sidebar {
  width: 25.8%;
  padding-left: 48px;
  padding-top: 3px;
}

/* panigation */
.archive-pagination .clevercarsale-pagination {
  padding-top: 56px;
  margin-top: 56px !important;
  border-top: 1px solid #ededed;
}

.archive-pagination .page-numbers {
  position: relative;
  padding: 0;
  list-style: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive-pagination .page-numbers li .page-numbers {
  vertical-align: middle;
  width: 56px;
  height: 56px;
  display: flex;
  margin: 0 5px;
  border: 1px solid #f6f6f6;
  border-radius: 50px;
  transition: all 0.3s ease;
  justify-content: center;
  align-items: center;
  color: #24272c;
  letter-spacing: 0px;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
}

.archive-pagination .page-numbers li span.page-numbers {
  border: 2px solid #00a8d0;
  background-color: #00a8d0;
  color: #fff;
}

.archive-pagination .page-numbers li .page-numbers i {
  font-size: 15px;
}

.archive-pagination .page-numbers li .page-numbers:hover {
  border: 2px solid #00a8d0;
  background-color: #00a8d0;
  color: #fff;
}

.mobile-sidebar-menu .logo img {
  width: 160px;
}

#menu-main-menu-2 ul {
  list-style: none;
  margin: 0;
  padding: 0px 20px;
}

#menu-main-menu-2 ul.sub-menu {
  padding: 0px 15px;
}

#menu-main-menu-2.mobile-menu > li {
  width: 100%;
  position: relative;
  border-top: 1px solid #eeefef;
}

#menu-main-menu-2 .menu-item-has-children:after {
  content: "\e937";
  font-family: "clevercarsale";
  position: absolute;
  top: 12px;
  right: 0;
  font-size: 12px;
}

#menu-main-menu-2 > ul > li:last-child {
  border-bottom: 1px solid #eeefef;
}

#menu-main-menu-2 ul > li {
  position: relative;
}

.menu-main-menu-2 .current-menu-parent .menu-item-has-children .btn-submenu {
  right: -15px;
}

#menu-main-menu-2 ul > li:last-child {
  border-bottom: 1px solid transparent;
}

#menu-main-menu-2 ul li a > span {
  background: var(--theme-secondary-color);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

#menu-main-menu-2 .sub-menu a {
  padding: 8px 20px 8px 0px;
}

#menu-main-menu-2 > ul > li:last-child {
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.15);
  border-bottom-width: 1px;
}

#menu-main-menu-2 ul li.current-menu-item > a,
#menu-main-menu-2 ul li.current_page_item > a {
  color: #00a8d0;
}

/* RESPONSIVE */

/* mega menu */

.main-menu .mega-menu {
  position: unset !important;
}

.main-menu .mega-menu > .sub-menu {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  left: 50%;
  transform: translateX(-50%) !important;
}

.main-menu .mega-menu > .sub-menu > li {
  width: 25%;
}

.main-menu .mega-menu > .sub-menu > li .sub-menu {
  box-shadow: 0 4px 8px rgb(255 255 255 / 24%);
}

.page-title-section,
.site-footer {
  margin: 0 15px;
}

@media (min-width: 1740px) {
  .page-title-section,
  .site-footer {
    margin: 0 150px;
  }
}

@media (max-width: 1320px) {
  .top-bar .left-info span:not(:last-child) {
    margin-right: 10px;
  }

  .top-bar .left-info span {
    font-size: 13px;
  }
}

@media (max-width: 1200px) {
  .site-footer .footer-top .line:not(:last-child):after {
    display: none;
  }
  .top-bar .left-info span:not(:last-child) {
    margin-right: 10px;
  }

  .main-menu .menu {
    gap: 20px;
  }

  .main-menu .menu > li > a {
    font-size: 16px;
  }


  .main-header {
    border-radius: 0;
  }

  .main-header .logo {
    margin-top: 0px;
  }

}
@media (max-width: 1160px) {
  .top-bar {
    display: none;
  }
}
@media (max-width: 1024px) {
  .main-header .logo img {
    height: 39px;
    width: auto;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .header-right {
    padding-left: unset !important;
    padding-right: 20px;
    border-left: unset !important;
    border-right: 1px solid #e6e6e6;
    margin-left: 30px;
    margin-right: 55px;
}
  .blog .blog-layout .blog-main,
  .archive .blog-layout .blog-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-bottom .footer-menu-bottom {
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-bottom-wrap {
    flex-direction: column;
    text-align: center;
  }

  .single-page .main-content {
    padding-right: 0px !important;
  }

  ul.page-numbers {
    margin: 0px 0 30px;
    align-items: center;
  }

  .wrap-blog {
    flex-direction: column;
    margin-left: 0px;
  }

  .wrap-blog .content-blog {
    width: 100% !important;
    margin-left: 0px !important;
  }

  .wrap-blog .sidebar {
    width: 100% !important;
    margin-left: 0px !important;
        padding-left: 0px !important;
  }

  .page-title-section .inner-pagetitle {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .page-title-section .inner-pagetitle {
    border-radius: 20px;
  }

  .page-title-section .inner-pagetitle h1 {
    font-size: 30px;
    margin-bottom: 9px;
  }
  .wrapper-content {
    padding: 70px 15px 70px 15px;
  }

  .header-container {
    padding: 20px 0px 20px 0px !important;
  }
  .main-header .menu-toggle {
    display: block;
    right: 5px;
  }

  .main-header .main-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .error-search-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
  .error-search-form input.search-submit {
    padding: 11px 20px 11px 20px !important;
}
  .error-search-form input.search-field {
    width: 97% !important;
    padding: 11px 16px !important;
}
  .error-search-title {
    font-size: 30px !important;
}
  .footer-top a.btn-action-box {
    padding: 10px 24px 10px 24px;
  }
  .footer-action-box h2 {
    font-size: 20px;
    line-height: 140%;
  }
  .footer-top .footer-action-box {
    gap: 15px;
  }
  .header-sticky {
    top: 0 !important;
  }
}

@media (max-width: 600px) {
  html .formcraft-css .fc-form .form-element {
    width: 100% !important;
}
  .input-wrap.flex {
    grid-template-columns: 1fr !important;
    gap: 0px !important;
  }
  .form-homepage {
    grid-template-columns: 1fr !important;
    gap: 0px !important;
  }

  .form-homepage .inner {
    margin-bottom: 15px !important;
  }

  .form-homepage textarea {
    height: 120px !important;
  }

  .footer-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .leftleft-image,
.top-bottom-image,
.toptop-image,
.rotate-image {
  animation: unset !important;
}
}

@media (max-width: 480px) {
      .main-header .logo img {
        height: 100%;
        width: 100px;
    }
  .form-service .heading-cover span {
    font-size: 28px !important;
}
  .form-service .fc-pagination.width-100 {
    width: 100% !important;
    flex-direction: column !important; 
}
  .blog .blog-layout .blog-main,
  .archive .blog-layout .blog-main {
    grid-template-columns: repeat(1, 1fr);
  }
}

.header-sticky .main-menu .menu > li > a {
  line-height: 75px;
}

.header-sticky .main-header .logo {
  margin-top: 0px;
}

.single-page {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.single-page .main-content {
  width: 75%;
}

.single-page .page-sidebar {
  width: calc(25% - 36px);
  margin-left: 36px;
}

.elementor-widget-text-editor ul li,
.accordion-content ul li {
  position: relative;
  margin: 0 0 5px;
  padding-left: 14px;
  color: #777777;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
  vertical-align: middle;
}
.elementor-widget-text-editor a,
.accordion-content ul li a {
  position: relative;
  color: #00a8d0;
}
.elementor-widget-text-editor a::before,
.accordion-content ul li a::before {
   height: 1px;
    background: #00a8d0;
    bottom: 0;
    z-index: 1;
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    width: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.3s ease;
}

.elementor-widget-text-editor a:hover::before,
.accordion-content ul li a:hover::before {
  width: 100%;
    left: 0;
}

.elementor-widget-text-editor ul li:before,
.accordion-content ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 18px;
  color: #00a8d0;
}

.elementor-widget-text-editor strong {
  color: #404040;
}

@media only screen and (max-width: 991px) {
  .single-page .page-sidebar,
  .single-page .main-content {
    width: 100%;
    margin: 0;
  }
}

@media only screen and (max-width: 600px) {
  .footer-bottom .footer-menu-bottom {
    display: none;
  }

  .single-post .content-right .inner {
    gap: 20px !important;
  }
}

.scroll-image-wrapper {
  perspective: 1000px;
}

.elementor-widget-container {
  transition: transform 0.2s ease;
  will-change: transform;
  transform-style: preserve-3d;
}

.elementor-widget-container img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.go-top {
  position: fixed !important;
  right: -100px;
  bottom: 100px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #00a8d0;
  color: #fff;
  cursor: pointer;
  line-height: 50px;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  overflow: hidden;
}

.go-top.show {
  right: 15px;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.go-top i {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 50px;
  transition: 0.3s;
  rotate: -90deg;
}

.go-top:hover i {
  color: #fff;
  animation: 1s linear infinite alternate tf-buzz-out;
}

@keyframes tf-buzz-out {
  10%,
  30% {
    transform: translateY(3%) rotate(2deg);
  }

  20%,
  40% {
    transform: translateY(-3%) rotate(-2deg);
  }

  50%,
  70% {
    transform: translateY(2%) rotate(1deg);
  }

  60%,
  80% {
    transform: translateY(-2%) rotate(-1deg);
  }

  90% {
    transform: translateY(1%) rotate(0);
  }

  to {
    transform: translateY(-1%) rotate(0);
  }
}

.comment-reply-title,
.comment-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  margin-bottom: 28px;
}

.comment-fields-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.comment-fields-row .field {
  flex: 1;
}

.comment-message {
  margin-bottom: 15px;
}

.comment-message textarea {
  min-height: 120px;
  resize: vertical;
}

/* Responsive: mobile xuống hàng */
@media (max-width: 768px) {
  .comment-fields-row {
    flex-direction: column;
  }
}

.single-comment:not(:last-child) {
  margin-bottom: 30px;
  border-bottom: 1px solid #ededed;
  padding-bottom: 30px;
}

.comment-avatar .avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.comment-body {
  flex: 1;
}

.comment-author {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #000;
  margin-bottom: 4px;
}

.comment-date {
  color: #b6b6b6;
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
}

.comment-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  margin-top: 20px;
  color: #555555;
}

/* Comment form */
.comment-form .comment-fields-row {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.comment-form .field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.comment-form label {
  margin-bottom: 11px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #000;
  display: inline-block;
}

.comment-form input,
.comment-form textarea {
  padding: 16px 12px;
  border: 1px solid #ededed;
  border-radius: 14px;
  font-size: 14px;
  outline: none;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border: 1px solid #00a8d0;
}

.comment-form textarea {
  width: 100%;
  height: 120px;
  resize: vertical;
}

.comment-form .form-submit input[type="submit"] {
  background: #00a8d0;
  border: none;
  padding: 14px 32px;
  border-radius: 14px;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  transition: all 0.3s ease-in-out;
}

.comment-form .form-submit input[type="submit"]:hover {
  background: #000;
}

.comment-header {
  display: flex;
  gap: 20px;
  align-items: center;
}

.sidebar .wp-block-heading,
.sidebar .widget-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 22px;
}

.sidebar .wp-block-search__inside-wrapper input {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #696665;
  padding: 17px 16px 17px 48px;
  border-radius: 14px;
  border: 1px solid #ededed;
  outline: none;
}

.wp-block-search__inside-wrapper {
  position: relative;
}

.wp-block-search__inside-wrapper button {
  background: transparent;
  border: unset;
  color: #b6b6b6;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.sidebar .widget {
  margin-bottom: 40px;
}

.wp-block-categories .cat-item:not(:last-child) {
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid #f6f6f6;
}

.wp-block-categories .cat-item a {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  vertical-align: middle;
  padding: 10px 0;
  position: relative;
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
}

.wp-block-categories .cat-item a:after {
  content: "\e900";
  color: #00a8d0;
  right: 0;
  font-family: "clevercarsale";
  rotate: -45deg;
  font-size: 22px;
}

.recent-news-widget .recent-news-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.recent-news-widget .news-thumb {
  width: 112px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: clip;
}
.recent-news-widget .news-thumb a> img {
  height: 74px;
  object-fit: cover;
}

.recent-news-widget .news-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
  margin-bottom: 10px;
}

.recent-news-widget .news-date {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #696665;
  display: flex;
  align-items: center;
  gap: 4px;
}

.recent-news-widget .recent-news-item:not(last-child) {
     padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f6f6f6;
}

.wp-block-group p {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
}

.sidebar .newsletter {
  margin-top: 20px;
  position: relative;
}

.sidebar .newsletter input {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #696665;
  padding: 17px 48px 17px 16px;
  border-radius: 14px;
  border: 1px solid #ededed;
  outline: none;
  width: 100%;
}

.sidebar .newsletter .btn-submit input {
  font-size: 0px;
  padding: 16px;
  color: #00a8d0;
  border-radius: 14px;
  border: 1px solid #ededed;
  outline: none;
}

.newsletter .custom-submit {
  padding: 10px;
  cursor: pointer;
  color: #00a8d0;
  font-size: 20px;
  position: absolute;
  background: unset;
  border: unset;
  right: 6px;
  top: 55%;
  transform: translateY(-50%);
}
.mobie-top-bar {
  margin-top: 40px;
}
.mobie-top-bar .left-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobie-top-bar .left-info span {
  font-size: 16px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
}
.mobie-top-bar .left-info span i {
  font-size: 17px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  flex-shrink: 0;
  margin-right: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
  color: #000000;
}
.mobie-top-bar .right-social {
  margin-top: 20px;
}
.wrapper-body {
  width: 100%;
}
.form-contact input,
.form-contact select,
.form-contact textarea {
  padding: 15px 16px;
  border: 1px solid #ededed;
  border-radius: 14px;
  background-color: transparent;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #696665;
  outline: none;
  margin-bottom: 24px;
}
.form-contact input:focus,
.form-contact select:focus,
.form-contact textarea:focus {
  border: 1px solid #00a8d0;
}
.input-wrap.flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-contact label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 11px;
}

.nice-select:after {
  border-bottom: 1px solid #000000 !important;
  border-right: 1px solid #000000 !important;
  height: 8px !important;
  margin-top: -4px !important;
  right: 17px !important;
  top: 50%;
  transform-origin: 46% 49%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 8px !important;
}

.nice-select {
  height: 56px !important;
  padding: 15px 16px !important;
  width: 100% !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  letter-spacing: 0 !important;
  vertical-align: middle !important;
  outline: none;
  border: 1px solid #ededed !important;
  border-radius: 14px !important;
  margin-bottom: 24px;
}
.nice-select .nice-select-dropdown {
  width: 100%;
}
.form-contact textarea {
  height: 110px;
}
.form-contact input.wpcf7-submit {
  position: relative;
  transition: all 0.3s ease-in-out;
  padding: 14px 32px 14px 32px;
  background-color: #00a8d0;
  border-radius: 14px;
  display: inline-block;
  color: #ffff;
  outline: none;
  overflow: hidden;
  letter-spacing: 0px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  width: auto;
  margin-bottom: 0 !important;
}

.rotate-image {
  animation: 15s rotate infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.toptop-image {
  animation: 10s toptop infinite;
}
@keyframes toptop {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.top-bottom-image {
  animation: top-bottom 2s infinite;
}

@keyframes top-bottom {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  60% {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}
.leftleft-image {
  animation: 10s leftleft infinite;
}
@keyframes leftleft {
  0% {
    transform: translatex(0);
  }
  50% {
    transform: translatex(20px);
  }
  100% {
    transform: translatex(0px);
  }
}
.hover-image-box {
  overflow: hidden;
  position: relative;
}

.hover-image-box img {
  object-fit: cover;
  width: 100%;
  transition: all 1s;
}

.hover-image-box:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
  pointer-events: none;
}

.hover-image-box:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.single-post ul.wp-block-list{
    list-style-type: disc;
}
.single-post .wp-block-list li:not(:last-child) {
    margin-bottom: 10px;
}
.single-post ol.wp-block-list {
    list-style-type: auto;
}
.single-post ul.wp-block-list, .single-post ol.wp-block-list {
    padding-left: 33px;
    margin-bottom: 20px;
    color: #555555;
}
.form-service .formcraft-css .fc-pagination-cover {
    height: unset;
}
.form-service .pagination-trigger {
    padding: 14px 38px !important;
    background: #F7F7F7;
        color: #000000 !important;
    display: flex !important;
    align-items: center;
}
.form-service .page-number,.form-service .page-name {
  font-weight: 700;
    font-size: 16px !important;
    line-height: 140%;
    text-transform: capitalize !important;
        display: contents !important;
            text-shadow: unset !important;
}
.form-service .formcraft-css .fc-pagination>div:first-child:after,
.form-service .formcraft-css .fc-pagination>div:last-child:after {
    display: none;
}
.form-service  .page-number {
    background-color: unset !important;
    margin-bottom: 0 !important;
    border: unset !important;
    box-shadow: unset !important;
}
.form-service .pagination-trigger.active {
    background: #00A8D0;
    color: #fff;
}
.form-service .pagination-trigger.active .page-name {
   color: #fff !important;
}
.form-service .page-number {
    padding: 0 !important;
    margin-top: 0 !important;
}
.form-service .fc-pagination.width-100 {
    width: fit-content;
    border-radius: 14px 14px 0px 0px;
    padding: 0 !important;
    overflow: hidden;
    display: flex !important;
        justify-content: flex-start;
    margin: unset !important;
}
.form-service .form-live .form-cover {
    border-radius: 0px 24px 24px 24px;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #F7F7F7;
        padding: 30px 0px 30px 30px;
}
.form-service .formcraft-css .fc-form .form-page-content {
    padding: 0 !important;
    box-shadow: unset !important;
}
.form-service .formcraft-css .fc-form {
       box-shadow: unset !important;
}
.form-service input, .form-service textarea, .form-service select {
    padding: 16px 16px !important;
    border-radius: 14px !important;
    border: 1px solid #ededed !important;
    background-color: transparent !important;
    color: #696665 !important;
}
.form-service .heading-cover span {
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    vertical-align: middle;
    margin-bottom: 16px;
    color: #24272c;
}
.form-service .form-page-0 .customText-cover span{
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    color: #000000;
}
.form-service .formcraft-css .fc-form .form-page-content .form-element-type-heading:first-child .heading-cover {
    padding-bottom: 0em !important;
}
.form-service .formcraft-css .prev-next > div {
    width: 48.5% !important;
}
.form-service .formcraft-css .inactive.page-next, .form-service .formcraft-css .inactive.page-prev {
    background: #ededed !important;
    color: #000000 !important;
    opacity: 0.5 !important;
    cursor: no-drop;
}
.form-service .prev-next > div span {
    padding: 14px 14px !important;
    text-transform: capitalize !important;
    letter-spacing: 0px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 140%;
    border-radius: 14px !important;
    opacity: 1 !important;
    background: #00a8d0 !important;
    color: #fff !important;
    transition: all 0.3s 
ease-in-out;
}
.form-service .prev-next {
    letter-spacing: 0px !important;
    border-radius: 0px !important;
    box-shadow: unset !important;
    padding: 0px 30px 0px 0px !important;
    margin: 0 !important;
    border-radius: 14px !important;
}
.form-service .prev-next > div span:hover {
    background: #000000 !important;
}
.form-service .formcraft-css .prev-next > div:last-child {
    border-left: 1px solid transparent !important;
}
.form-service .formcraft-css .fc-form.label-placeholder.remove-asterisk- .is-required-true .field-cover.dropdown-cover::after{
  content: unset;
}
html .formcraft-css .powered-by,
.blog .action-box,
.single-post .action-box,
.archive .action-box,
.author .action-box,
.error404 .action-box,
.error404 .page-title-section{
    display: none;
}
.wrapper-content .action-box {
    display: block !important;
}
.error-404.not-found {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url('../img/ueberuns-bewertungen1.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 48px;
    position: relative;
        overflow: hidden;
}
.error-box-404.vertical-center {
    z-index: 2;
    position: relative;
}
.error-404.not-found::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.error-404 h4 {
    font-weight: 600;
    font-size: 200px;
    line-height: 100%;
        color: #fff;
}
.error-404-text {
    margin-bottom: 40px;
}
.error-404-text p{
        color: #fff;
}
.error-404 .tf-btn {
    position: relative;
    transition: all 0.3s ease-in-out;
    padding: 14px 24px 14px 24px;
    background-color: #00A8D0;
    border-radius: 14px;
    display: inline-block;
    color: #ffff;
    outline: none;
    overflow: hidden;
    letter-spacing: 0px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
}
.error-404 .tf-btn:hover {
  background-color: #24272C;
  color: #fff;
}
.error-404 .tf-btn:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.error-404 .tf-btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

@media only screen and (max-width: 768px) {
.error-404 .tf-btn {
    padding: 12px 20px 12px 20px;
    font-size: 14px;
}
.error-404.not-found {
    padding-top: 60px;
    padding-bottom: 80px;
}
.error-404 h4 {
    font-size: 100px;
}
}
.error-search-section {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
     max-width: 1000px;
    margin: 0 auto;
}
.error-search-form {
       position: relative;
    max-width: 500px;
    margin: 0 auto;
}
.error-search-title {
    font-size: 40px;
    line-height: 1.3;
    padding-bottom: 20px;
}
.error-search-text {
    padding-bottom: 40px;
    max-width: 900px;
    margin: auto;
}
.error-search-form input.search-field {
    width: 95%;
    padding: 15px 16px;
    border: 1px solid #ededed;
    border-radius: 14px;
    background-color: transparent;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #696665;
    outline: none;
}

.error-search-form input.search-submit {
        transition: all 0.3s 
ease-in-out;
    padding: 16px 32px 16px 32px;
    background-color: #00a8d0;
    border-radius: 14px;
    display: inline-block;
    color: #ffff;
    outline: none;
    letter-spacing: 0px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    border: none;
}

.error-search-form input.search-submit:hover {
    background: #000000;
}

.wrap-blog.blog-layout {
    display: flex;
}
.content-blog.blog-main {
    width: 74.2%;
}
aside.sidebar.blog-sidebar {
    width: 25.8%;
    padding-left: 48px;
    padding-top: 3px;
}
form.search-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.final-success h3 {
    color: #24272C !important;
    margin-bottom: 20px !important;
}
.final-success .final-success-check {
    border: 2px solid #00A8D0 !important;
    color: #00A8D0 !important;
    font-size: 40px !important;
}
.final-success .sub-title {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    color: #00A8D0 !important;
    margin-bottom: 20px;
}
.final-success p {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
        margin-bottom: 20px;
}
.final-success p strong{
     color: #00A8D0 !important;
}
.final-success ul {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
        justify-content: center;
}
.final-success li {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
        display: flex;
    align-items: center;
    gap: 5px;
}
.final-success li i {
    color: #00A8D0;
    border: 1px solid #00A8D0;
    border-radius: 100px;
    padding: 2px;
}
.final-success .prev-next {
    display: block;
    max-width: 100%;
    display: none;
}

  .header-right {
   padding-left: 20px;
    border-left: 1px solid #e6e6e6;
    margin-left: 30px;
  }

.header-right .search-icon {
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;

}
.header-right .search-icon path {
  fill: #555555;
}

.search-form {
  display: flex;
  align-items: center;
  border: none;
  background: transparent;
}

.search-toggle {
    background: unset;
    border: unset;
    font-weight: 500;
    font-size: 18px;
    color: #555555;
    cursor: pointer;
    line-height: 16px;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

.search-popup {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-popup-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.search-popup-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: #fff;
  padding: 50px 30px;
  border-radius: 8px;
  text-align: center;
      margin: 0 20px;
}

.search-popup input[type="search"] {
  font-size: 16px;
  font-weight: 400;
  padding: 16px 20px 13px 20px;
  border-radius: 15px;
  border: solid 1px #ebebeb;
  width: 85%;
  outline: none;
}

.search-popup .search-submit {
  padding: 12px 19px;
  font-size: 20px;
  background: #00A8D0;
  color: #fff;
  border: none;
  border-radius: 15px;
  margin-left: 10px;
  cursor: pointer;
}
.search-popup .search-icon path {
    fill: #fff;
}
.search-popup-close {
  position: absolute;
  top: 0px;
  right: 10px;
  background: transparent;
  color: #333;
  font-size: 32px;
  border: none;
  cursor: pointer;
}
html .formcraft-css .fc-form .form-element .checkbox-cover>div label>span {
    vertical-align: middle;
    padding-left: 30px;
    display: inline-block;
}
html .formcraft-css .fc-form .form-element .checkbox-cover>div label input {
    position: absolute;
}
.form-element-html .checkbox-cover {
    margin-bottom: 20px;
}
.formcraft-css input[type=checkbox], .formcraft-css input[type=radio] {
    padding: 10px !important;

}
.formcraft-css input[type=checkbox]:before, .formcraft-css input[type=radio]:before {
    left: 9px;
    top: 9px;
    border-left: 2px solid #00A8D0;
    border-bottom: 2px solid #00A8D0;
}

.formcraft-css input[type=checkbox] {
    border-radius: 2px !important;
}
.form-element-type-checkbox .form-element-html {
    padding-bottom: 0 !important;
}
html .formcraft-css .fc-form .form-element-type-fileupload .form-element-html {
    padding: 0 !important;
}
.slide-form .field-cover.customText-cover p {
    margin: 0 !important;
}

html .formcraft-css .fc-form .form-element.error-field .error {
  display: none;
}

html .wrapper-body .formcraft-css .fc-form .form-element.error-field .form-element-html input[type="password"],
 html .wrapper-body .formcraft-css .fc-form .form-element.error-field .form-element-html input[type="tel"],
  html .wrapper-body .formcraft-css .fc-form .form-element.error-field .form-element-html input[type="text"],
   html .wrapper-body .formcraft-css .fc-form .form-element.error-field .form-element-html select,
    html .wrapper-body .formcraft-css .fc-form .form-element.error-field .form-element-html textarea {
    border-color: #ededed !important;
}

html .formcraft-css .fc-form .form-element.error-field.has-error .error {
  display: block;
}

html .wrapper-body .formcraft-css .fc-form .form-element.error-field.has-error .form-element-html input[type="password"],
 html .wrapper-body .formcraft-css .fc-form .form-element.error-field.has-error .form-element-html input[type="tel"],
  html .wrapper-body .formcraft-css .fc-form .form-element.error-field.has-error .form-element-html input[type="text"],
   html .wrapper-body .formcraft-css .fc-form .form-element.error-field.has-error .form-element-html select,
    html .wrapper-body .formcraft-css .fc-form .form-element.error-field.has-error .form-element-html textarea {
   border: 1px solid #ff0000 !important;
}

html .formcraft-css .fc-form.label-placeholder.remove-asterisk- .is-required-true .field-cover.oneLineText-cover::after{
      content: unset !important;
}