/* --------------- font family ----------------- */
@font-face {
  font-family: "lexend-regular";
  src: url(../fonts/lexend/Lexend-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: "lexend-medium";
  src: url(../fonts/lexend/Lexend-Medium.ttf);
  font-display: swap;
}
@font-face {
  font-family: "lexend-semibold";
  src: url(../fonts/lexend/Lexend-SemiBold.ttf);
  font-display: swap;
}
@font-face {
  font-family: "lexend-bold";
  src: url(../fonts/lexend/Lexend-Bold.ttf);
  font-display: swap;
}
/* --------------- root ------------------- */
:root {
  --primary-color: #062b6c;
  --secondary-color: #fbcc11;
  --white-color: #ffffff;
  --black-color: #000000;
  --charcoal-color: #16171a;
  --light-grey: #d1d1d1;
  --light-grey-two: #e3e3e3;
  --light-grey-three: #d9d9d9;
  --smoke-color: #f2f3f6;
  --dark-grey: #494949;
  --body-color: #4d5765;
  --dark-grey-two: #888686;
  --border-color: #e4e4e4;
  --bg-light-yellow: #fbcc111f;
  --primary-rgb: 6, 43, 108;
  --secondary-rgb: 251, 204, 17;
  --white-rgb: 255, 255, 255;
  --black-rgb: 0, 0, 0;
  --primary-background: #072c6df0;
  --background-light: #f8f8f8;
  --carousel-dot-bg: #eaeaea;
  --primary-regular-font: "lexend-regular";
  --primary-semibold-font: "lexend-semibold";
  --primary-medium-font: "lexend-medium";
  --primary-bold-font: "lexend-bold";
  --secondary-regular-font: "lexend-regular";
  --secondary-bold-font: "lexend-semibold";
  --fs-xsmall: 12px;
  --fs-small: 14px;
  --fs-regular: 16px;
  --fs-large: 18px;
  --fs-xl: 20px;
  --fs-xxl: 24px;
  --fs-26: 26px;
  --fs-28: 28px;
  --title-fs: 32px;
  --section-title-fs: 40px;
  --banner-title-fs: 60px;
  --fs-40: 40px;
  --big-fs: 40px;
}
/* --------------- general ------------------- */
@media (max-width: 767px) {
    .paymentImg {
        width: 100%;
        object-fit: contain;
        height: auto;
        display: block;
    }
}
body {
  font-size: var(--fs-regular);
  line-height: 30px;
  color: var(--black-color);
  font-family: var(--primary-regular-font);
  overflow-x: hidden;
}
.section {
  padding-top: 60px;
  padding-bottom: 60px;
}
a {
  text-decoration: none;
  color: var(--black-color);
}
.form-control:focus,
.form-select:focus,
.accordion-button:focus,
.form-check-input:focus {
  box-shadow: none;
  border-color: var(--light-grey);
}
.btn-close:focus {
  box-shadow: none;
}
.section-title p,
.section-title p.title-border {
  position: relative;
  color: var(--secondary-color);
  display: inline-block;
}
.section-title .title-border::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -10px;
  width: 85%;
  height: 100%;
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #072c6d12;
  z-index: -1;
}
.section-title h1,.section-title h3 {
  color: var(--primary-color);
  font-size: var(--section-title-fs);
  line-height: 60px;
  text-transform: uppercase;
  font-family: var(--primary-semibold-font);
}
.section-title h2 {
  color: var(--primary-color);
  font-size: var(--section-title-fs);
  line-height: 60px;
  text-transform: uppercase;
  font-family: var(--primary-semibold-font);
}
.section-title h1 .title-span-text,
.section-title h3 .title-span-text {
  color: var(--secondary-color);
}
h3.title {
  font-size: var(--title-fs);
  font-family: var(--primary-bold-font);
  color: var(--primary-color);
  text-transform: uppercase;
} 
.section-title h2 .title-span-text {
  color: var(--secondary-color);
}
h2.title {
  font-size: var(--title-fs);
  font-family: var(--primary-bold-font);
  color: var(--primary-color);
  text-transform: uppercase;
}
.text-transform-unset {
  text-transform: unset !important;
}
.mw-450 {
  max-width: 450px;
}
.text-main {
  color: var(--primary-color);
}
.hover-secondary:hover,
.text-secondary-color {
  color: var(--secondary-color);
}
.pb-80 {
  padding-bottom: 80px;
}
.owl-carousel .owl-item img {
  width: auto !important;
}
.owl-carousel .owl-stage {
  display: flex;
}
.owl-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.owl-carousel .item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mini-title {
  color: var(--black-color);
  font-family: var(--primary-semibold-font);
}
h4.title {
  font-family: var(--primary-semibold-font);
  color: var(--primary-color);
}
.idea-section .container-fluid,
.web-service-bg .container-fluid {
  max-width: 1920px;
}
.logo {
  width: auto;
  height: 55px;
}
.small-logo {
  width: auto;
  max-height: 45px !important;
}
.form-select option {
  background-color: var(--white-color);
}
.focus .ts-control {
  box-shadow: none;
}
/* ------------------- typography ----------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-semibold-font);
}
/* ------------------- buttons ----------------- */
.btn-header,
.btn-header:focus {
  color: var(--black-color) !important;
  font-family: var(--primary-medium-font) !important;
  background-color: var(--secondary-color);
  padding: 4px 10px;
  border-radius: 5px;
}
.btn-header:hover {
  color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  background-color: transparent !important;
}
.form-btn,
.form-btn:focus {
  padding: 10px 20px;
  color: var(--black-color);
  background-color: var(--secondary-color);
  font-family: var(--primary-semibold-font);
  transition: all 0.5s;
}
.form-btn:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.call-back-form .form-btn {
  font-size: var(--fs-xl);
}
.btn-main,
.btn-main:focus {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 7px 20px;
  border-radius: 5px;
  font-family: var(--primary-semibold-font);
  color: var(--white-color);
  background-color: var(--primary-color);
  transition: all 0.5s;
}
.btn-main:hover {
  color: var(--black-color);
  background-color: var(--secondary-color);
}
.btn-outline {
  padding: 7px 15px;
  color: var(--primary-color);
  background-color: transparent;
  border: 1px solid var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.5s;
}
.btn-outline:hover,
.btn-outline:focus {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.btn-outline-secondary,
.btn-outline-secondary:focus {
  padding: 7px 15px;
  color: var(--secondary-color);
  background-color: transparent;
  font-family: var(--primary-semibold-font);
  border: 1px solid var(--secondary-color);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.5s;
}
.btn-outline-secondary:hover {
  color: var(--black-color);
  border-color: transparent;
  background-color: var(--secondary-color);
}
.btn-outline-secondary img {
  width: auto !important;
}
.btn-white,
.btn-white:focus {
  padding: 7px 15px;
  font-family: var(--primary-semibold-font) !important;
  color: var(--primary-color) !important;
  background-color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.5s;
}
.top-header .btn-white:hover img {
  transition: all 0.5s;
  filter: brightness(0) invert(1);
}
.btn-white:hover {
  color: var(--white-color) !important;
  border-color: var(--white-color) !important;
  background-color: transparent;
}
/* ------------------- list ------------------ */
.common-list,
.common-list-two,
.common-list-three,
.common-list-four,
.common-list-five,
.common-list-six,
.common-list-eight {
  list-style: none;
  padding-left: 0px;
  margin: 0px;
}
.common-list li,
.common-list-two li,
.common-list-three li,
.common-list-four li,
.common-list-five li,
.common-list-six li,
.common-list-eight li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
}
.common-list li::before {
  content: "\f061" !important;
  font-family: "Font Awesome 6 Pro", sans-serif;
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 100%;
  line-height: 22px;
  text-align: center;
  font-size: 13px;
}
.common-list-two li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  background-image: url(../img/icons/tick-circle.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.common-list-three li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  background-image: url(../img/icons/right.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.common-list-four li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background-image: url(../img/icons/list-four.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.common-list-five li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background-image: url(../img/icons/list-five.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.common-list-five li ul {
  padding: 0px;
  list-style: none;
  margin-top: 5px;
  margin-bottom: 7px;
}
.common-list-five li ul li::before {
  content: "\f061" !important;
  font-family: "Font Awesome 6 Pro", sans-serif;
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 100%;
  line-height: 22px;
  text-align: center;
  font-size: 13px;
}
.common-list-six li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background-image: url(../img/icons/list-six.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.common-list-eight li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background-image: url(../img/icons/list-seven.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.list-bg {
  padding: 20px;
  background-color: var(--bg-light-yellow);
}
.list-bg li {
  margin-bottom: 7px;
}
.list-bg li a {
  transition: all 0.3s;
}
.list-bg li a:hover {
  color: var(--secondary-color);
}
/* ------------------- header ------------------ */
.top-header {
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: var(--primary-color);
  font-family: var(--primary-semibold-font);
}
.header-list {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}
.header-list li {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header-list li img {
  flex-shrink: 0;
  width: auto;
  max-height: 20px;
}
.header-list li a {
  font-family: var(--primary-regular-font);
  color: var(--white-color);
}
.navbar .header-list li a {
  font-family: var(--primary-semibold-font);
  color: var(--primary-color);
}
.header .navbar {
  background-color: var(--white-color);
  box-shadow: 4px 1px 14px 1px rgba(var(--black-rgb), 0.17);
}
.header .navbar-toggler {
  border: 0px;
}
.header .navbar-toggler img {
  height: 20px;
}
.header .navbar-toggler:focus {
  box-shadow: none;
}
.header .navbar-nav li {
  margin-right: 10px;
}
.header .navbar-nav li a,
.header .navbar-nav li a:focus {
  font-family: var(--primary-regular-font);
  color: var(--primary-color);
}
.header .navbar-nav li a.dropdown-toggle {
  position: relative;
  padding-right: 18px;
  margin-right: 10px;
}
.header .navbar-nav li a.show,
.header .navbar-nav li a:hover,
.header .navbar-nav li a.active {
  color: var(--secondary-color) !important;
  background-color: transparent;
}
.header .navbar-nav li a.dropdown-toggle.show::after,
.header .navbar-nav li a.dropdown-toggle:hover::after {
  content: "-";
}
.header .navbar-nav li a.dropdown-item:active {
  color: var(--white-color) !important;
  background-color: var(--primary-color);
}
.header .navbar.fixed-header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 1024;
}
.header .dropdown-toggle::after {
  border: 0;
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.header .dropdown-menu {
  border: 0px;
  box-shadow: 4px 1px 14px 1px rgba(var(--black-rgb), 0.17);
  padding: 10px;
  border-radius: 0px;
  min-width: 120px;
  border-top: 3px solid var(--primary-color);
}
.header .nav-item:hover .dropdown-menu {
  display: block;
}
.header .navbar-nav {
  position: relative;
}
.header .megamenu .dropdown-menu {
  box-shadow: none;
  padding: 0px;
  position: static;
  border: 0px;
  margin-top: 0px;
}
.header .megamenu .dropdown-menu li {
  margin-right: 0px;
}
.header .megamenu .show + .megamenu-content,
.header .megamenu:hover .megamenu-content {
  display: block;
}
.header .megamenu .megamenu-content li a {
  text-wrap: wrap;
}
.header .megamenu .megamenu-content {
  position: absolute;
  right: 0px;
  display: none;
  width: 100%;
  padding: 20px !important;
  background-color: var(--white-color) !important;
  top: 100%;
  z-index: 9;
  border-top: 3px solid var(--primary-color);
  box-shadow: 4px 1px 14px 1px rgba(var(--black-rgb), 0.17);
}
.header .cart-dropdown .dropdown-menu {
  position: absolute;
  right: 0px;
  width: 100%;
  padding: 20px !important;
  min-width: 190px;
  top: 100%;
  z-index: 9;
  border-top: 3px solid var(--secondary-color);
}
.header .cart-dropdown .dropdown-menu.show,
.header .cart-dropdown .dropdown-menu {
  position: absolute;
  right: 0px;
  width: 100%;
  padding: 20px !important;
  min-width: 190px;
  top: 100%;
  z-index: 9;
  border-top: 3px solid var(--secondary-color);
}
.header .cart-dropdown .dropdown-menu.show {
  inset: 0px auto auto auto !important;
  margin: unset !important;
  transform: unset !important;
  right: 0px !important;
  top: 100% !important;
}
.header .cart-dropdown .dropdown-menu h6 {
  color: var(--primary-color);
  padding: 0.25rem 1rem;
  font-family: var(--primary-bold-font);
}
.header .cart-dropdown .dropdown-menu li a {
  background: var(--primary-color);
  color: var(--white-color);
  text-align: center;
}
.header .cart-dropdown .dropdown-menu li a:hover {
  background: var(--secondary-color);
  color: var(--black-color);
}
.header .cart-dropdown .dropdown-toggle::after {
  content: none;
}
/* --------------------- footer ------------------- */
.footer {
  color: var(--white-color);
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: var(--primary-color);
}
.footer-title {
  text-transform: uppercase;
  font-family: var(--primary-semibold-font);
  color: var(--secondary-color);
  margin-bottom: 20px;
}
.footer p {
  color: var(--white-color);
  font-family: var(--secondary-regular-font);
}
.footer-list {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.footer-list li {
  margin-bottom: 7px;
  display: flex;
  align-items: start;
  gap: 10px;
  font-family: var(--secondary-regular-font);
}
.footer-list li img {
  margin-top: 5px;
  flex-shrink: 0;
  width: 20px;
}
.footer-list li a {
  color: var(--white-color);
}
.footer-list.footer-link li a:hover {
  color: var(--secondary-color);
}
.footer hr {
  opacity: 0.5;
  border-color: var(--white-color);
}
.footer h5 {
  font-size: var(--fs-large);
  margin-right: 20px;
  font-family: var(--secondary-bold-font);
  color: var(--white-color);
}
.social-links {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}
.social-links li img {
  height: 20px;
}
.footer .copy-right {
  text-transform: uppercase;
  margin-bottom: 0px;
  font-family: var(--secondary-bold-font);
}
.fixed-footer {
  padding-top: 10px;
  background: #1a4591f0;
  padding-bottom: 10px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1024;
  opacity: 1;
}
.fixed-footer-link {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: space-around;
  margin: 0;
  padding: 0;
}
.fixed-footer-link li {
  display: flex;
  align-items: center;
}
.fixed-footer-link li img {
  width: 18px;
}
.fixed-footer-link li a {
  display: flex;
  color: var(--white-color);
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.fixed-footer-link li span {
  color: var(--white-color);
}
.fixed-footer-link li span.text {
  color: var(--secondary-color);
}
.fixed-footer-two {
  position: fixed;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  z-index: 10;
}
.fixed-footer-link-two {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.fixed-footer-link-two li {
  position: relative;
  margin-bottom: 1px;
  padding: 5px 5px 5px 12px;
  transition: all 0.3s ease-in-out;
  width: fit-content;
  margin-left: auto !important;
}
.fixed-footer-link-two li:last-child {
  margin: 0px;
}
.fixed-footer-link-two li a {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  text-decoration: none;
  color: var(--white-color);
}
.fixed-footer-link-two li .img-box {
  background: #1a4591f0;
  width: 34px;
  height: 34px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  line-height: 32px;
}
.fixed-footer-link-two li span.text {
  color: var(--secondary-color);
}
.fixed-footer-link-two li img {
  transition: all 0.3s ease-in-out;
  width: 18px;
}
.fixed-footer-link-two li span {
  display: none;
  transition: all 0.3s ease-in-out;
}
.fixed-footer-link-two li:hover {
  background-color: #1a4591f0;
  border-radius: 5px;
}
.fixed-footer-link-two li:hover span {
  display: block;
}
.fixed-footer-link-two li:hover img {
  background-color: transparent;
}
/* --------------------- login and register ----------------- */
.login-regiter-modal .modal-content {
  border-radius: 0px;
}
.login-regiter-modal .btn-close {
  position: absolute;
  right: 15px;
  top: 20px;
  opacity: 1;
}
.login-regiter-modal .btn-close:focus {
  box-shadow: none;
}
.login-regiter-modal .left-content {
  text-align: center;
  padding: 30px;
}
.login-regiter-modal .login-form {
  padding: 25px 20px;
  background-color: var(--white-color);
}
.login-regiter-modal .login-form h4 {
  text-transform: uppercase;
  font-family: var(--primary-semibold-font);
  margin-bottom: 0px;
}
.login-regiter-modal .login-form hr {
  opacity: 1;
  margin: 0px;
  border-color: var(--secondary-color);
}
.login-regiter-modal .login-form span a {
  display: inline-block;
  color: var(--primary-color);
  font-family: var(--primary-semibold-font);
  position: relative;
}
.login-regiter-modal .login-form span a::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -1px;
}
/* -------------------- scroll to top ------------------  */
#scrollToTopBtn {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background: var(--secondary-color);
  color: var(--black-color);
  border: none;
  padding: 8px 15px;
  border-radius: 50%;
  font-size: 20px;
  display: none;
  z-index: 1024;
  width: 45px;
  height: 45px;
  transition: all 0.5s;
}
#scrollToTopBtn:hover {
  color: var(--white-color);
  background: var(--primary-color);
}
/* ------------------ cards ---------------------- */
.form-card {
  border: 0;
  border-radius: 0px;
  padding: 10px;
  background-color: var(--white-color);
  box-shadow: 0px 2px 10px 0px rgba(var(--black-rgb), 0.099);
}
.form-card h4 {
  font-family: var(--primary-bold-font);
  color: var(--primary-color);
  text-transform: uppercase;
  background-color: var(--bg-light-yellow);
  padding: 20px 20px 17px;
  text-align: center;
  border-bottom: 2px dashed var(--secondary-color);
  margin-bottom: 20px;
}
.form-card .titleH4 {
  font-family: var(--primary-bold-font);
  color: var(--primary-color);
  text-transform: uppercase;
  background-color: var(--bg-light-yellow);
  padding: 20px 20px 17px;
  text-align: center;
  border-bottom: 2px dashed var(--secondary-color);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.form-card hr {
  opacity: 0;
  margin: 0px;
  border-color: var(--light-grey);
}
.detail-form h4 {
  text-align: start;
  background: transparent;
  padding: 0px 0px 15px;
}
/* ------------------- forms --------------------- */
.call-back-form .form-control,
.call-back-form .form-select {
  border-radius: 3px;
  padding: 7px 20px;
  border: 1px solid var(--light-grey);
}
.call-back-form .form-label,
.call-back-form .form-check-label {
  color: var(--dark-grey);
}
.phone-field .form-select {
  max-width: 150px;
}
.border-box {
  padding: 15px;
  border: 1px solid var(--light-grey);
}
.form-check-input {
  width: 18px;
  height: 18px;
  border-radius: 0px !important;
  margin-right: 12px;
  background-color: var(--light-grey-two);
}
.radio-btn .form-check-input {
  margin-top: 7px;
  margin-right: 7px;
  border-radius: 100% !important;
}
.form-check-input:checked {
  border-color: var(--primary-background);
  background-color: var(--primary-color);
}
.custom-phone-field .iti {
  display: block;
}
.custom-phone-field .iti--separate-dial-code .iti__selected-flag {
  background-color: var(--white-color);
  border-right: 1px solid var(--light-grey);
  padding: 5px 10px;
}
.custom-phone-field .form-control {
  padding-left: 105px !important;
}
/* --------------------- backgrounds ------------------- */
.bg-light-yellow {
  background-color: var(--bg-light-yellow);
}
.bg-linear-gradient {
  background: linear-gradient(
    282.57deg,
    #062b6c08 0.89%,
    #fbcc111a 54.81%,
    #062b6c08 100%
  );
}
/* --------------------- banner ------------------- */
.banner-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url(../img/home/banner/1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.banner-two::before {
  content: "";
  background-color: rgba(var(--primary-rgb), 0.95);
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: -1;
}
.banner-section h1 {
    font-size: var(--banner-title-fs);
    color: var(--white-color);
    font-family: var(--secondary-bold-font);
    margin-bottom: 15px;
}
.banner-section h2 {
  font-size: var(--banner-title-fs);
  color: var(--white-color);
  font-family: var(--secondary-bold-font);
  margin-bottom: 15px;
}
.banner-section h3 {
  color: var(--secondary-color);
}

.banner-section .notHead {
  color: var(--secondary-color);
  font-size: 1.75rem;
}
.banner-carousel.owl-theme .owl-nav {
  margin: 0px;
}
.banner-carousel .owl-nav .owl-prev,
.banner-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(var(--white-rgb), 0.7) !important;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  transition: all 0.5s;
}
.banner-carousel .owl-nav .owl-prev:hover,
.banner-carousel .owl-nav .owl-next:hover {
  background-color: rgba(var(--white-rgb), 1) !important;
}
.banner-carousel .owl-nav .owl-prev {
  left: 3%;
}
.banner-carousel .owl-nav .owl-next {
  right: 3%;
}
.banner-carousel .owl-dots .owl-dot span {
  width: 50px;
  height: 4px;
  background-color: var(--carousel-dot-bg);
}
.banner-carousel .owl-dots .owl-dot.active span {
  background-color: var(--primary-color);
}
/* ------------------ breadcrumb ------------------- */
.breadcrumb-banner {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(../img/breadcrumb/bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.breadcrumb-banner.breadcrumb-padding {
  padding-top: 150px;
  padding-bottom: 150px;
}
.breadcrumb-banner h1 {
    color: var(--white-color);
    font-size: 50px;
    font-family: var(--primary-semibold-font);
    margin: 0px;
    text-align: center;
}
.breadcrumb-banner h3 {
  color: var(--white-color);
  font-size: 50px;
  font-family: var(--primary-semibold-font);
  margin: 0px;
  text-align: center;
}
.breadcrumb-section {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: var(--bg-light-yellow);
}
.breadcrumb-section .breadcrumb {
  gap: 10px;
  margin-bottom: 0px;
}
.breadcrumb-section .breadcrumb-item img {
  width: auto;
  height: 15px;
}
.breadcrumb-section .breadcrumb-item::before {
  content: unset;
}
.breadcrumb-section .breadcrumb-item {
  color: var(--black-color);
  font-family: var(--primary-regular-font);
}
.breadcrumb-section .breadcrumb-item.active {
  font-family: var(--primary-bold-font);
}
/* ------------------ home ---------------------- */
.about-section {
  position: relative;
  z-index: 1;
}
.about-section .shape-1 {
  position: absolute;
  top: 50%;
  left: 0px;
  z-index: -1;
  display: none;
}
.about-section .shape-2 {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
}
.about-section .shape-3 {
  position: absolute;
  top: 0px;
  left: -20%;
  z-index: -1;
}
.about-count {
  padding: 30px;
  background-color: var(--white-color);
  box-shadow: 10px 5px 62px 0px #a8a8a840;
  border-radius: 10px;
  position: absolute;
  top: 10px;
  right: -20px;
}
.about-count p {
  color: #5b6d84;
  margin-bottom: 0px;
  line-height: 15px;
}
.about-count h4 {
  font-size: var(--big-fs);
  color: var(--primary-color);
  font-family: var(--primary-bold-font);
}
.about-count .Abouth4 {
  font-size: var(--big-fs);
  color: var(--primary-color);
  font-family: var(--primary-bold-font);
}
.counter-section {
  background-color: var(--white-color);
  padding: 40px 60px;
  border-radius: 0px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border-color);
}
.counter-section:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--secondary-color);
  width: 46%;
  clip-path: polygon(0 0, 70% 0, 0% 40%, 0% 100%);
  z-index: -1;
}
.counter-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
  justify-items: center;
}
.counter-list li {
  font-size: var(--fs-large);
  font-family: var(--primary-medium-font);
  position: relative;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 10px;
  width: 100%;
  transition: all 0.5s;
}
.counter-list li .icon-box {
  background-color: var(--white-color);
  width: 80px;
  height: 80px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: all 0.5s;
  box-shadow: 0px 10px 50px rgba(30, 40, 58, 0.12);
}
.counter-list li .icon-box img {
  width: 50px;
}
.counter-list li .content-box {
  transition: all 0.5s;
}
.counter-list li:hover .icon-box,
.counter-list li:hover .content-box {
  transform: translateY(-10px);
}
.counter-list li:nth-child(1),
.counter-list li:nth-child(2),
.counter-list li:nth-child(3) {
  border-bottom: 1px solid var(--border-color);
}
.counter-list li:nth-child(1),
.counter-list li:nth-child(2),
.counter-list li:nth-child(4),
.counter-list li:nth-child(5) {
  border-right: 1px solid var(--border-color);
}
.counter-list h4 {
  font-size: var(--fs-40);
  color: var(--primary-color);
  margin-bottom: 5px;
  font-family: var(--primary-bold-font);
}
.counter-list .counterH4 {
  font-size: var(--fs-40);
  color: var(--primary-color);
  margin-bottom: 5px;
  font-family: var(--primary-bold-font);
}
.service-carousel .owl-stage {
  display: flex;
}
.service-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.service-carousel .item {
  display: flex;
  flex-direction: column;
}
.service-carousel .owl-prev,
.service-carousel .owl-next {
  color: var(--white-color) !important;
  background-color: transparent !important;
  border: 1px solid var(--primary-color) !important;
  width: 45px;
  height: 45px;
  border-radius: 100px !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.service-carousel .owl-prev {
  left: -100px;
}
.service-carousel .owl-next {
  right: -100px;
}
.service-carousel .owl-dots .owl-dot span {
  width: 50px;
  height: 4px;
  background-color: var(--carousel-dot-bg);
}
.service-carousel .owl-dots .owl-dot.active span {
  background-color: var(--primary-color);
}
.service-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(
    282.57deg,
    #062b6c08 0.89%,
    #fbcc111a 54.81%,
    #062b6c08 100%
  );
}
.service-card {
  border: 0px;
  border-radius: 0px;
  margin: 10px;
  transition: all 0.5s;
  position: relative;
  background: transparent;
  height: 100%;
  padding-bottom: 50px;
}
.service-card .card-body {
  padding: 0px;
}
.service-card .content {
  height: 100%;
  padding: 25px;
  border: 1px solid var(--border-color);
  background-color: var(--white-color);
}
.service-card .icon {
  width: 100px;
  height: 100px;
  border-bottom: 4px solid var(--secondary-color);
  border-radius: 8px;
  position: relative;
  z-index: 3;
  bottom: 0px;
  background-color: var(--primary-color);
}
.service-card .icon img {
  width: 60px !important;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  filter: brightness(0) invert(1);
  transition: all 0.5s;
}
.service-card .title {
  font-size: var(--fs-xl);
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-family: var(--primary-bold-font);
}
.service-card .service-bottom {
  position: absolute;
  align-items: end;
  bottom: 0px;
  left: 50px;
}
.service-card .service-bottom i {
  font-size: var(--fs-xsmall);
  margin-left: 10px;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  line-height: 22px;
  color: var(--white-color);
  background-color: var(--dark-grey);
}
.service-card .service-card-bottom {
  text-align: end;
}
.service-card .service-bottom-btn {
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  padding: 3px;
  position: relative;
  right: 15px;
  text-align: center;
}
.service-card .service-bottom-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.service-card .service-bottom-btn a img {
  width: 22px !important;
  height: auto;
}
.service-card .service-card-bottom a {
  position: relative;
  z-index: 2;
  color: var(--primary-color);
}
.service-card .card-body:hover .service-card-bottom a {
  color: var(--white-color);
}
.service-card .card-body:hover .content {
  background: var(--primary-background);
  color: var(--white-color);
}
.service-card .card-body:hover .content h4 {
  color: var(--secondary-color);
}
.service-card .card-body:hover .service-bottom .icon {
  background-color: var(--white-color);
  border-color: var(--primary-color);
}
.service-card .card-body:hover .service-bottom .icon img {
  filter: unset;
}
.service-card .card-body:hover .service-bottom a {
  color: var(--primary-color);
}
.service-card .card-body:hover .service-bottom a i {
  background-color: var(--primary-color);
}
.service-card .card-body:hover .icon img {
  transform: translate(-50%, -50%) rotateY(180deg);
}
.certified-section {
  padding-top: 60px;
  padding-bottom: 60px;
  color: var(--white-color);
  background-image: url(../img/home/banner/2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
}
.certified-section::before {
  content: "";
  background-color: rgba(var(--primary-rgb), 0.95);
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: -1;
}
.certified-section .section-title h3 {
  color: var(--white-color);
}
.certified-section .section-title h2 {
  color: var(--white-color);
}
.certified-card {
  border: 0px;
  margin: 10px;
  border-radius: 10px;
  height: 100%;
}
.certified-card .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
}
.certified-card img {
  transition: all 0.5s;
  transform: scale(0.9);
  width: auto !important;
  height: 50px;
}
.certified-card:hover img {
  transform: scale(1);
}
.certified-carousel {
  background-color: var(--white-color);
  box-shadow: 0 2px 4px 0 rgba(var(--black-rgb), 0.12);
  border-radius: 4px;
}
.certified-carousel .owl-stage {
  display: flex;
}
.certified-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.certified-carousel .item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
/* --------------------- home help you ---------------  */
.help-you-tab {
  position: relative;
}
.help-you-tab .nav-tabs {
  gap: 30px;
  border: 0px;
  margin-bottom: 30px;
  overflow-x: auto;
  flex-wrap: nowrap;
  overflow-y: visible;
  padding: 12px 10px 32px;
  justify-content: center;
}
.help-you-tab .nav-tabs .nav-link {
  position: relative;
  padding: 25px;
  box-shadow: 0px 0px 40px 0px rgba(var(--black-rgb), 0.05);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--black-color);
  background-color: var(--white-color);
}
.help-you-tab .nav-tabs .nav-link.active {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.help-you-tab .nav-tabs .nav-link img {
  height: 45px;
  margin-right: 15px;
}
.help-you-tab .nav-tabs .nav-link.active img {
  filter: brightness(0) invert(1);
}
.help-you-tab .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-1px);
  bottom: -22px;
  width: 30px;
  height: 25px;
  z-index: 1;
  background-color: var(--primary-color);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.help-card {
  border: 0px;
  margin: 10px;
  height: 100%;
  border-radius: 0px;
  background-color: transparent;
}
.help-card .content-box h3 {
  margin-bottom: 20px;
}
.help-card img {
  border-radius: 20px;
  max-height: 500px;
}
.help-carousel .owl-stage {
  display: flex;
}
.help-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.help-carousel .owl-item .item {
  display: flex;
  flex-direction: column;
}
.help-carousel .owl-dots .owl-dot span {
  width: 50px;
  height: 4px;
  background-color: var(--carousel-dot-bg);
}
.help-carousel .owl-dots .owl-dot.active span {
  background-color: var(--primary-color);
}
.help-card .content-box p {
  font-size: var(--fs-regular);
  line-height: 32px;
}
.tools-section {
  padding: 40px 30px 60px;
  margin: 10px;
  background-image: url(../img/backgrounds/tools-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 40px;
}
.tools-carousel .item {
  padding: 10px;
  background-color: var(--white-color);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-color);
}
.tools-carousel .item img {
  width: auto;
  border-radius: 10px;
  height: 45px;
}
.divider-one {
  border: 0;
  opacity: 1;
  border-bottom: 2px dashed var(--light-grey-three);
}
.why-us-section {
  position: relative;
  padding-top: 60px;
  padding-bottom: 100px;
  overflow: hidden;
}
.why-us-section .shape-left {
  position: absolute;
  bottom: 0;
  left: 0px;
}
.why-us-section .shape-right {
  position: absolute;
  top: 0px;
  right: 0px;
}
.why-us-carousel .owl-nav {
  position: absolute;
  bottom: -60px;
  filter: invert(1);
  right: -60px;
}
.why-us-carousel .owl-nav .owl-prev {
  margin-right: 7px;
}
.why-us-carousel .owl-stage {
  display: flex;
}
.why-us-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.why-us-carousel .item {
  display: flex;
  flex-direction: column;
}
.why-us-carousel .owl-nav .owl-prev:hover,
.why-us-carousel .owl-nav .owl-next:hover {
  background-color: transparent;
}
.why-us-card {
  height: 100%;
  display: flex;
  gap: 10px;
  background-color: transparent;
  overflow: hidden;
}
.why-us-card .img-box {
  flex-shrink: 0;
  width: 40%;
}
.why-us-card .img-box img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 60px 60px 0px;
}
.why-us-card .content-box {
  padding: 30px;
  height: 100%;
}
.partners-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partners-carousel .item img {
  width: auto;
  height: 50px;
  transform: scale(0.9);
  transition: all 0.5s;
}
.partners-carousel .item:hover img {
  transform: scale(1);
}
.idea-section h3,.idea-section h2,
.idea-section .common-list {
  color: var(--white-color);
}
.idea-section .container-fluid {
  padding: 200px 70px 80px;
  background-image: url(../img/backgrounds/service-bg.webp);
}
.idea-section .border-box {
  padding: 10px;
  margin-bottom: -10px;
}
.idea-section .form-btn {
  font-family: var(--primary-semibold-font);
  font-size: var(--fs-regular);
}
.our-partners-section .container {
  margin-bottom: -120px;
  background-color: var(--white-color);
  position: relative;
  border-radius: 35px;
  padding-bottom: 60px;
}
/* ---------------- home work featured ------------ */
.featured-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.featured-carousel .item img {
  width: auto;
  max-height: 60px;
}
/* ----------------------- home portfolio -----------------  */
.portfolio-carousel .owl-stage {
  display: flex;
}
.portfolio-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.portfolio-carousel .item {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.portfolio-carousel .owl-dots .owl-dot span {
  width: 50px;
  height: 4px;
  background-color: var(--carousel-dot-bg);
}
.portfolio-carousel .owl-dots .owl-dot.active span {
  background-color: var(--primary-color);
}
.portfolio-card {
  border-radius: 0px;
  border: 1px solid var(--light-grey-two);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.portfolio-carousel .portfolio-card {
  margin: 15px;
}
.portfolio-card .img-box {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}
.clients-card img {
  display: inline-block !important;
  width: auto !important;
  max-height: 70px;
}
.portfolio-card img {
  display: inline-block !important;
  width: auto !important;
  max-height: 30px;
}
.portfolio-card .img-box img {
  transition: all 0.4s linear;
  width: 100% !important;
  max-height: 215px;
  height: 215px;
}
.portfolio-card .img-box:after {
  background: #ffffff4d;
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 0.4s linear;
}
.portfolio-card:hover .img-box:after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.4s linear;
}
.portfolio-card:hover .img-box img {
  transform: scale(1.1);
}
.portfolio-card h4, .portfolio-card .Porth4 {
  font-family: var(--secondary-bold-font);
  padding: 10px;
  display: inline-block;
  margin-bottom: 0;
  border-bottom: 1px solid var(--light-grey);
  color: var(--white-color);
  background-color: var(--primary-color);
  font-size: var(--fs-regular);
  position: absolute;
  right: 20px;
  top: -40px;
}
.portfolio-card h5 {
  font-size: var(--fs-large);
  color: var(--black-color);
  font-family: var(--primary-bold-font);
}
.portfolio-card h5 span {
  font-size: var(--fs-xxl);
  color: var(--secondary-color);
}
.portfolio-card .PRotth5 {
  font-size: var(--fs-large);
  color: var(--black-color);
  font-family: var(--primary-bold-font);
}
.portfolio-card .PRotth5 span {
  font-size: var(--fs-xxl);
  color: var(--secondary-color);
}
.portfolio-card .btn-outline {
  display: flex;
  gap: 30px;
  border: 0px;
  width: 100%;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 0px;
  color: var(--white-color);
  font-family: var(--primary-medium-font);
  background-color: var(--primary-color);
  justify-content: space-between;
  padding: 7px 20px;
}
.portfolio-card .btn-outline:hover {
  color: var(--secondary-color);
}
.portfolio-card .btn-outline i {
  height: 30px;
  width: 30px;
  color: var(--black-color);
  background-color: var(--secondary-color);
  font-size: var(--fs-small);
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}
.portfolio-card .card-body {
  padding: 0px;
}
.portfolio-card .content-box {
  position: relative;
  padding: 15px 15px 50px;
}
.portfolio-card .content-box p {
  color: var(--black-color);
  font-family: var(--primary-regular-font);
}
/* ------------------ home service tab ------------------ */
.service-tab-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/backgrounds/tools-bg.webp);
  margin: 10px;
  border-radius: 30px;
  background-color: #fbcc110d;
}
.serives-tab .nav-tabs {
  border: 1px solid var(--border-color);
  gap: 10px;
  width: 90%;
  flex-wrap: nowrap;
  overflow-x: auto;
  border-radius: 0px;
  position: relative;
  z-index: 1;
  background-color: var(--white-color);
  left: 50%;
  transform: translateX(-50%);
}
.serives-tab .nav-tabs .nav-item {
  min-width: 150px;
}
.serives-tab .nav-tabs .nav-link {
  position: relative;
  font-size: var(--fs-large);
  font-family: var(--primary-medium-font);
  color: var(--dark-grey-two);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 0px;
  padding: 20px 15px;
  width: 100%;
  height: 100%;
  border-bottom: 4px solid transparent;
}
.serives-tab.single-service .nav-tabs .nav-link {
  font-size: var(--fs-regular);
  line-height: 24px;
  text-transform: none;
}
.serives-tab .nav-tabs .nav-item .nav-link:before {
  content: "";
  position: absolute;
  height: 75%;
  top: 15px;
  border-right: 1px dashed var(--light-grey);
  right: -7px;
}
.serives-tab .nav-tabs .nav-item:last-child .nav-link::before {
  border-right: 0px;
}
.serives-tab .nav-tabs .nav-link:hover,
.serives-tab .nav-tabs .nav-link.active {
  color: var(--primary-color);
  border: 0px;
  border-bottom: 4px solid var(--secondary-color);
}
.serives-tab .nav-tabs .nav-link img {
  margin-bottom: 15px;
  filter: grayscale(100%);
  opacity: 0.5;
  max-height: 50px;
}
.serives-tab .nav-tabs .nav-link.active img,
.serives-tab .nav-tabs .nav-link:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.serives-tab .tab-content {
  margin-top: 25px;
  border-radius: 0px;
  background-color: var(--primary-color);
  padding: 30px 60px 20px;
  overflow: hidden;
}
.serives-tab .tab-content h3 {
  color: var(--secondary-color);
}
.serives-tab .tab-content p {
  color: var(--light-grey);
}
.serives-tab .tab-content .divider-one {
  width: 150%;
  margin-left: -60px;
}
.serives-tab h3.title,.serives-tab div.title,
.serives-tab .nav-tabs .nav-link {
  text-transform: uppercase;
}
/* --------------------------- home client logo ------------------ */
.client-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fbcc110d;
  background-image: url(../img/backgrounds/tools-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.clients-carousel .owl-stage {
  display: flex;
}
.clients-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.clients-carousel .item {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.clients-carousel .owl-dots .owl-dot span {
  width: 50px;
  height: 4px;
  background-color: var(--carousel-dot-bg);
}
.clients-carousel .owl-dots .owl-dot.active span {
  background-color: var(--primary-color);
}
.clients-card {
  box-shadow: 4px 1px 14px 1px #0000002b;
  border: 0px;
  position: relative;
  height: 100%;
  margin: 15px;
}
.clients-card .img-box {
  height: 280px;
}
.clients-card .img-box img {
  width: 100% !important;
  height: 100% !important;
  /*max-height: 280px;*/
  max-height: 240px;
}
.clients-card .content-box {
  margin: 20px 20px 0px;
  padding-top: 20px;
  border-top: 1px solid var(--light-grey);
}
.clients-card .content-box .title {
  font-size: var(--fs-xl);
  margin-bottom: 10px;
  color: var(--black-color);
  font-family: var(--primary-bold-font);
}
.clients-card .youtube-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* ------------------------ home blog --------------------- */
.blog-section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.blog-section .shape-1 {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  display: none;
}
.blog-section .shape-2 {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
}
.blog-section .shape-3 {
  position: absolute;
  top: 0px;
  left: -20%;
  z-index: -1;
}
.blog-card {
  border-radius: 0px;
  margin: 20px 0px;
  border: 0px;
  box-shadow: 0px 0px 25px 4px rgba(var(--black-rgb), 0.03);
}
.blog-page .blog-card {
  margin: 0px;
}
.blog-card::after {
  background-color: #ffffff4d;
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 0.4s linear;
}
.blog-card:hover:after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.4s linear;
}
.blog-card .card-body {
  padding: 0px;
}
.blog-card .detail-box {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px dashed var(--secondary-color);
}
.blog-card .detail-box .detail p {
  font-family: var(--primary-semibold-font);
  color: var(--primary-color);
  margin-bottom: 3px;
}
.blog-card .content-box {
  padding: 20px;
  border: 1px solid var(--border-color);
}
.blog-card .content-box img {
  width: auto;
  transition: all 0.5s;
  max-height: 35px;
}
.blog-card .img-box {
  overflow: hidden;
}
.blog-card .img-box img {
  transition: all 0.5s;
  max-height: 235px;
  width: 100% !important;
  object-fit: cover;
}
.blog-card:hover .img-box img {
  transform: scale(1.1);
}
.blog-card h5 {
  font-size: var(--fs-large);
  font-family: var(--primary-regular-font);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-card .blogh5 {
  font-size: var(--fs-large);
  font-family: var(--primary-regular-font);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-carousel .owl-dots .owl-dot span,
.blog-detail-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background-color: var(--carousel-dot-bg);
  margin: 0px 7px 0px 0px;
}
.blog-carousel .owl-dots .owl-dot.active span,
.blog-detail-carousel .owl-dots .owl-dot.active span {
  background-color: var(--primary-color);
}
.blog-btn {
  display: inline-block;
  width: 80%;
  vertical-align: middle;
  border: none;
  outline: none !important;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 16px;
  padding: 11px 30px;
  transition: 500ms;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 2;
  position: relative;
  text-align: center;
  margin-bottom: -46px;
  border-radius: 0;
  left: 50%;
  transform: translate(-50%);
}
.blog-btn:hover {
  color: var(--black-color);
  background-color: var(--secondary-color);
}
/* ---------------------- home faq -------------------- */
.faq-accordion .accordion-item {
  border: 0px;
  margin-bottom: 15px;
  border-radius: 30px !important;
  overflow: hidden;
  box-shadow: 0px 0px 10px 7px rgba(var(--black-rgb), 0.03);
}
.faq-accordion .accordion-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 52px 20px 30px;
  line-height: 1.3;
  font-size: 18px;
  font-family: var(--primary-semibold-font);
  background: var(--white-color);
  color: var(--black-color);
  border-radius: 30px 30px 0 0;
  border: 0px;
  box-shadow: none;
}
.faq-accordion .accordion-button:after {
  position: absolute;
  font-family: "Font Awesome 6 Pro", sans-serif;
  content: "\f068";
  font-weight: 900;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 12px;
  color: var(--white-color);
  background-image: linear-gradient(
    250deg,
    #4e95ed 0%,
    var(--primary-color) 100%
  );
  width: 30px;
  height: 30px;
  line-height: 31px;
  border-radius: 100%;
  background-size: cover;
}
.faq-accordion .accordion-button.collapsed:after {
  color: var(--white-color);
  content: "\f067";
}
.faq-accordion .accordion-body {
  padding: 0px 30px 20px;
}
/* ------------------------- home review tab ------------------------ */
.review-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.review-tab .quote-shape img {
  position: absolute;
  max-width: 220px;
  bottom: 0px;
  left: 15%;
}
.review-tab .tab-content {
  margin-top: 25px;
  padding: 45px;
  position: relative;
  z-index: 3;
  background-color: var(--primary-color);
  background-image: url(../img/backgrounds/review-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.review-tab .tab-content h3.title {
  color: var(--white-color);
  font-size: var(--big-fs);
  line-height: 66px;
  font-family: var(--secondary-bold-font);
}
.review-tab .nav-tabs {
  gap: 20px;
  justify-content: center;
  border-bottom: 0px;
  flex-wrap: nowrap;
}
.review-tab .nav-link {
  border: 0;
  position: relative;
  color: var(--primary-color);
  background-color: #fbcc1117;
  padding: 25px 40px;
  border-radius: 0;
  font-family: var(--primary-medium-font);
  text-transform: uppercase;
}
.review-tab .nav-link:hover,
.review-tab .nav-link.active {
  background: var(--primary-color);
  color: var(--white-color);
}
.review-tab .nav-link:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 1s;
  opacity: 0;
}
.review-tab .nav-link:hover:before,
.review-tab .nav-link.active:before {
  border: 2px solid var(--primary-color);
  transform: scale(1);
  opacity: 1;
}
.review-tab .nav-link span {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  position: relative;
  padding-right: 25px;
  margin-bottom: 0px;
  text-align: center;
  display: block;
}
.review-tab .nav-link i {
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-block;
  transform: translateY(-50%) rotate(45deg);
  color: var(--primary-color);
  transition: 0.5s;
}
.review-tab .nav-link:hover i,
.review-tab .nav-link.active i {
  transform: translateY(-50%) rotate(0deg);
  color: var(--secondary-color);
}
.review-section .review-carousel-column {
  margin-top: -130px;
  padding: 20px;
}
.review-card {
  padding: 10px;
  margin: 15px;
  height: 100%;
  border-radius: 0px;
  border: 1px solid var(--border-color);
}
.review-card .profile-box {
  margin-bottom: 15px;
}
.review-card .profile-box img,
.review-card .logo-box img {
  width: auto;
  max-width: 100px;
}
.review-card .logo-box,
.review-card .profile-box {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.review-card .profile-box .title {
  font-size: var(--fs-xl);
  margin-bottom: 0px;
  color: var(--black-rgb);
  font-family: var(--secondary-bold-font);
}
.review-card .content-box p {
  font-family: var(--secondary-regular-font);
}
.review-carousel .owl-stage {
  display: flex;
}
.review-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.review-carousel .item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.review-carousel .owl-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -90px;
}
.review-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #e0e0e0;
  margin: 0px 7px 0px 0px;
}
.review-carousel .owl-dots .owl-dot.active span {
  background-color: var(--primary-color);
}
.review-card .logo-box .rating img {
  height: 15px;
  display: unset;
}
/* -------------------------- we serve ------------------- */
.serve-tab .nav-tabs {
  border: 0px;
  gap: 30px;
  justify-content: center;
  flex-wrap: nowrap;
}
.serve-tab .nav-tabs .nav-link {
  font-size: var(--fs-xl);
  text-transform: capitalize;
  color: var(--primary-color);
  background-color: var(--white-color);
  font-family: var(--primary-medium-font);
  border: 0;
  border-radius: 10px;
  padding: 14px 30px;
  box-shadow: 10px 0px 25px 0px rgba(var(--black-rgb), 0.1);
  transition: all 0.5s;
}
.serve-tab .nav-tabs .nav-link:hover,
.serve-tab .nav-tabs .nav-link.active {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.serve-tab .tab-content {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--light-grey);
}
.serve-card {
  border: 0px;
  position: relative;
  min-width: 150px;
  border-radius: 6px;
  border-left: 3px solid var(--primary-color);
  height: 100%;
  box-shadow: 4px 1px 14px 1px #0000001a;
  transition: all 0.3s;
}
.serve-card .card-body {
  display: flex;
  justify-content: center;
  align-items: center;
}
.serve-card h5 {
  margin: 0px;
}
.serve-card h5 a {
  font-family: var(--primary-medium-font);
  color: var(--primary-color);
}
.city-serve .serve-card h5 a {
  font-size: var(--fs-regular);
}
.serve-card:hover {
  transform: translateY(-7px);
}
/* ---------------- benefit card ---------------- */
.benefit-card {
  padding: 30px;
  height: 100%;
}
.benefit-card .img-box img {
  max-height: 50px;
  margin-bottom: 20px;
}
.benefit-card .content-box h4 {
  font-size: var(--fs-26);
  text-transform: uppercase;
  color: var(--primary-color);
  font-family: var(--primary-bold-font);
}
/* ----------------- approach tab ------------------ */
.approach-tab .nav-tabs {
  border: 0px;
  gap: 30px;
  justify-content: space-around;
  overflow-x: auto;
  flex-wrap: nowrap;
  padding: 10px;
}
.approach-tab .nav-tabs .nav-item {
  position: relative;
}
.approach-tab .nav-tabs .nav-item::after {
  content: "";
  position: absolute;
  width: 10vw;
  max-width: 170px;
  height: 20px;
  background-size: cover;
  background-position: right;
  background-image: url(../img/icons/long-arrow.webp);
  top: 50%;
  left: 100%;
  transform: translate(0px, -50%);
  background-repeat: no-repeat;
}
.approach-tab .nav-tabs .nav-item:last-child::after {
  display: none;
}
.approach-tab .nav-tabs .nav-item .nav-link {
  border-radius: 100%;
  border: 1px solid var(--dark-grey-two);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  background-color: var(--white-color);
}
.approach-tab .nav-tabs .nav-item img {
  max-height: 50px;
}
.approach-tab .nav-tabs .nav-item .nav-link.active {
  background-color: var(--primary-color);
  border-color: var(--primary-background);
}
.approach-tab .nav-tabs .nav-item .nav-link.active img {
  filter: brightness(0) invert(1);
}
.approach-tab .tab-content {
  padding-top: 50px;
}
.approach-tab .tab-content h5 {
  font-size: var(--fs-xxl);
  font-family: var(--primary-bold-font);
  color: var(--primary-color);
}
/* -------------------- designing and development service ---------------------- */
.web-service-bg {
  background: linear-gradient(
    282.57deg,
    #062b6c08 0.89%,
    #fbcc111a 54.81%,
    #062b6c08 100%
  );
}
.web-service-carousel .owl-dots {
  margin-top: 25px !important;
}
.web-service-carousel .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  background-color: var(--carousel-dot-bg);
  margin: 5px 7px 5px 0px;
}
.web-service-carousel .owl-dots .owl-dot.active span {
  background-color: var(--primary-color);
}
.web-service-carousel .owl-stage {
  display: flex;
}
.web-service-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.web-service-carousel .item {
  display: flex;
}
.web-service-card {
  position: relative;
  text-align: center;
  z-index: 1;
  color: var(--white-color);
  padding: 30px;
  height: 100%;
}
.web-service-card:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 65px;
  background-color: var(--primary-color);
  z-index: -1;
}
.web-service-card img {
  width: auto !important;
}
.web-service-card .icon {
  position: relative;
  background: var(--white-color);
  width: 100px;
  height: 100px;
  margin-bottom: 35px;
  box-shadow: 0px 0px 20px 0px rgba(var(--black-rgb), 0.15);
  left: 50%;
  transform: translate(-50%);
}
.web-service-card .icon span {
  position: relative;
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.web-service-card .icon:before {
  position: absolute;
  content: "";
  border: 15px solid transparent;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 0px 0px 20px 0px rgba(var(--black-rgb), 0.15);
  background: var(--white-color);
}
.web-service-card .count {
  position: relative;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  font-size: 20px;
  color: var(--white-color);
  font-family: var(--primary-semibold-font);
  margin: 0 auto;
  margin-bottom: 30px;
  border-radius: 50%;
  transition: 0.5s;
  background-color: #163468;
}
.web-service-card .count:before {
  position: absolute;
  content: "";
  top: -8px;
  left: -8px;
  width: 86px;
  height: 86px;
  background-image: url(../img/web-development-service/design-development/shape.webp);
  transition: 0.5s;
  background-repeat: no-repeat;
  background-position: top center;
}
.web-service-card a {
  color: var(--white-color);
}
.web-service-card a i {
  margin-right: 5px;
  transform: rotate(45deg);
  transition: 0.5s;
}
.web-service-card:hover a {
  color: var(--secondary-color);
}
.web-service-card:hover a i {
  transform: rotate(0deg);
}
/* --------------------- benefits of web development ---------------- */
.benefits-web-service-card {
  position: relative;
  text-align: center;
  padding: 35px 20px;
  height: 100%;
  background-color: var(--white-color);
  box-shadow: 0px 0px 50px 0px rgba(var(--black-rgb), 0.1);
  transition: all 0.5s;
}
.benefits-web-service-card:hover .icon,
.benefits-web-service-card:hover .content {
  transform: translateY(-10px);
}
.benefits-web-service-card .icon {
  transition: all 0.5s;
  margin-bottom: 20px;
}
.benefits-web-service-card .content {
  transition: all 0.5s;
}
.benefits-web-service-card .content p {
  margin-bottom: 0px;
}
.benefits-web-service-card .content h4 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: var(--primary-semibold-font);
}
.benefits-web-service-card .content h4:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 100px;
  background-image: url(../img/web-development-service/benefits/shape.webp);
  transform: translateX(-50%);
}
.benefits-web-service-card.before:before {
  content: "";
  width: 50%;
  height: 50%;
  background: linear-gradient(
    45deg,
    var(--secondary-color) 15%,
    var(--primary-color) 65%
  );
  position: absolute;
  z-index: -1;
}
.benefits-web-service-card.before.first:before {
  top: -10px;
  left: -10px;
}
.benefits-web-service-card.before.last:before {
  bottom: -10px;
  right: -10px;
}
/* ------------------------- web approach section --------------------- */
.web-approach-section {
  background: url(../img/web-development-service/approach/bg.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 120px;
}
.web-approach-tab .tab-content {
  background: var(--white-color);
  box-shadow: 0px 0px 50px 0px rgba(var(--black-rgb), 0.03);
  margin-top: 30px;
  padding: 30px 40px 50px 60px;
  border-radius: 5px;
}
.web-approach-tab .tab-content h4 {
  color: var(--primary-color);
  font-family: var(--primary-semibold-font);
  margin-bottom: 20px;
}
.web-approach-tab .tab-buttons {
  border: 0px;
  gap: 20px;
  justify-content: center;
}
.web-approach-tab .nav-link {
  border: 0px;
  background: var(--white-color);
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0px 0px 10px 7px rgba(var(--black-rgb), 0.1);
}
.web-approach-tab .nav-link.active {
  background-color: var(--primary-color) !important;
}
.web-approach-tab .nav-link.active img {
  filter: brightness(0) invert(1);
}
.web-approach-tab .nav-link img {
  width: 50px;
  height: auto;
}
.web-approach-tab .tab-img {
  margin: 0px 0px -136px 0px;
}
.web-approach-tab .tab-img img {
  max-height: 600px;
}
/* --------------------------- web development business------------------ */
.web-business-tab {
  padding: 30px;
  border: 1px solid var(--border-color);
  align-items: center;
}
.web-business-tab .nav-pills {
  max-height: 400px;
  overflow-y: auto;
  display: block;
}
.web-business-tab .nav-pills .question {
  display: none;
}
.web-business-tab .nav-pills::-webkit-scrollbar {
  width: 7px;
}
.web-business-tab .nav-pills::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}
.web-business-tab .nav-pills::-webkit-scrollbar-track {
  background: var(--light-grey-two);
}
.web-business-tab .nav-link {
  background-color: #fbcc1108;
  border: 1px solid var(--secondary-color);
  border-radius: 0px;
  margin-bottom: 20px;
  color: var(--black-color);
  width: 100%;
}
.web-business-tab .nav-link i {
  margin-right: 10px;
  transform: rotate(45deg);
  transition: all 0.2s;
}
.web-business-tab .nav-pills .nav-link.active,
.web-business-tab .nav-pills .show > .nav-link {
  color: var(--white-color);
  background-color: var(--secondary-color);
}
.web-business-tab .nav-pills .nav-link.active i,
.web-business-tab .nav-pills .show > .nav-link i {
  transform: rotate(0deg);
}
.web-business-tab .tab-content .tab-pane {
  padding: 30px;
  box-shadow: 0px 0px 10px 7px rgba(var(--black-rgb), 0.03);
}
.web-business-tab .tab-content .tab-pane h4 {
  color: var(--primary-color);
  font-family: var(--primary-semibold-font);
  margin-bottom: 15px;
}
.web-business-tab .tab-content .tab-pane p {
  margin-bottom: 0px;
}
.web-business-tab .tab-content .tab-pane hr {
  border-color: var(--secondary-color);
  opacity: 1;
}
/* ----------------------- automobile business -------------------- */
.automobile-about {
  position: relative;
  display: inline-block;
  height: 100%;
  text-align: center;
}
.automobile-about .about-img-1 {
  border-radius: 5px;
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 30px 0 0 30px;
}
.automobile-about .about-img-1:after {
  content: "";
  position: absolute;
  inset: 12px 150px 94px 12px;
  background: var(--secondary-color);
  z-index: -1;
  border-radius: 8px;
}
.automobile-about .about-img-1::before {
  content: "";
  position: absolute;
  inset: 100px -20px -20px 100px;
  background: var(--primary-color);
  z-index: -1;
  border-radius: 8px;
}
.automobile-about .about-img-1 img {
  border: 7px solid var(--white-color);
  border-radius: 8px;
}
/* -------------------- automobile affordable service --------------- */
.automobile-business-carousel .owl-dots {
  margin-top: 25px !important;
}
.automobile-business-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 8px;
  background-color: var(--carousel-dot-bg);
  margin: 5px 7px 5px 0px;
}
.automobile-business-carousel .owl-dots .owl-dot.active span {
  width: 20px;
  background-color: var(--primary-color);
}
.automobile-business-card {
  background: var(--white-color);
  padding: 0 30px 18px 30px;
  text-align: center;
  position: relative;
  z-index: 9;
  height: 100%;
  margin: 45px 15px 15px;
}
.automobile-business-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -16px;
  width: 213px;
  height: 100%;
  background-image: url(../img/automobile-business/affordable-service/bg-shape.webp);
  background-repeat: no-repeat;
  transform: translateX(-50%);
  z-index: -1;
}
.automobile-business-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: var(--secondary-color);
  z-index: -2;
  transition: all 400ms ease;
  clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
}
.automobile-business-card .icon {
  display: flex;
  justify-self: center;
  align-items: center;
}
.automobile-business-card img {
  margin-top: -5px;
}
.automobile-business-card .title {
  margin: 25px 0px 20px;
  font-family: var(--primary-semibold-font);
  text-transform: uppercase;
}
/* --------------------- automobile benefit section ---------------- */
.automobile-benefit-section {
  position: relative;
  z-index: 1;
  background-image: url(../img/automobile-business/benefits/bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.automobile-benefit-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(var(--primary-rgb), 0.5);
}
.automobile-benefit-section .section-title h3 {
  color: var(--white-color);
}
.automobile-card {
  color: var(--white-color);
  padding: 20px;
  height: 100%;
  text-align: center;
  transition: all 0.5s;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    125.07deg,
    hsla(0, 0%, 100%, 0.2),
    hsla(0, 0%, 100%, 0.1)
  );
}
.automobile-card .icon {
  margin-bottom: 20px;
  background-color: var(--primary-color);
  display: inline-flex;
  justify-content: center;
  padding: 20px;
  border-radius: 100%;
  border: 2px solid var(--secondary-color);
}
.automobile-card .icon img {
  width: 50px;
}
.automobile-card h4 {
  text-transform: uppercase;
  font-family: var(--primary-semibold-font);
}
.automobile-card:hover {
  transform: translateY(-10px);
}
/* ---------------------- social media optimization in automobile business --------------------- */
.social-media-automobile-bg1 {
  padding-left: 0px;
  background-image: url(../img/automobile-business/social-media-automobile/bg-1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.social-media-automobile-bg1 .nav-pills {
  position: relative;
  float: right;
  max-width: 600px;
  width: 100%;
  margin: 116px 0px;
}
.social-media-automobile-bg1 .nav-pills .nav-link {
  position: relative;
  list-style: none;
  background: rgba(var(--white-rgb), 0.85);
  margin-top: 3px;
  transition: all 500ms ease;
  border-radius: 0px;
  margin-left: 30%;
  margin-right: -4%;
  text-align: start;
  display: flex;
  align-items: center;
}
.social-media-automobile-bg1 .nav-pills .nav-link .question {
  display: none;
}
.social-media-automobile-bg1 .nav-pills .nav-link .icon img {
  width: 24px;
}
.social-media-automobile-bg1 .nav-pills .nav-link span {
  font-size: 14px;
  line-height: 28px;
  color: var(--primary-color);
  padding: 10px;
  text-transform: uppercase;
  font-family: var(--primary-semibold-font);
  margin: 0px;
}
.social-media-automobile-bg1 .nav-pills .nav-link.active span {
  color: var(--white-color);
}
.social-media-automobile-bg1 .nav-pills .nav-link.active {
  background: var(--primary-color);
  transition: all 500ms ease;
}
.social-media-automobile-bg2 {
  position: relative;
  float: left;
  z-index: 1;
  background-image: url(../img/automobile-business/social-media-automobile/bg-2.webp);
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.social-media-automobile-bg1 .nav-pills .nav-link.active .icon img {
  display: none;
}
.social-media-automobile-bg2 .tab-content .tab-pane {
  position: relative;
  float: left;
  width: 100%;
  max-width: 600px;
  padding: 100px 10px 100px 50px;
}
.social-media-automobile-bg2:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(var(--secondary-rgb), 0.4);
}
.social-media-automobile-bg2 .tab-content .tab-pane h3 {
  position: relative;
  line-height: 42px;
  padding-bottom: 20px;
  margin-bottom: 45px;
}
.social-media-automobile-bg2 .tab-content .tab-pane h3::after {
  position: absolute;
  left: 0px;
  content: "";
  bottom: 0px;
  background: var(--primary-color);
  height: 3px;
  width: 55px;
}
/* ----------------------- automobile approach tab -------------------- */
.automobile-approach-tab {
  padding: 40px 20px 20px;
  background-color: var(--white-color);
}
.automobile-approach-tab .nav-tabs {
  justify-content: space-evenly;
  border-bottom: 1px solid var(--light-grey-two);
}
.automobile-approach-tab .nav-tabs .nav-link {
  background: transparent;
  border: 0px;
}
.automobile-approach-tab .nav-tabs .nav-link.active {
  border-bottom: 3px solid var(--secondary-color);
}
.automobile-approach-tab .tab-content {
  padding: 40px 30px 20px;
}
.automobile-approach-tab .tab-content h3 {
  margin-bottom: 20px;
}
.automobile-approach-tab .tab-content img {
  border-radius: 20px;
}
/* --------------------------- digital marketing ------------------ */
.digital-marketing-carousel .owl-dots {
  margin-top: 25px !important;
}
.digital-marketing-carousel .owl-dots .owl-dot span {
  margin: 0px 7px 0px 0px;
  width: 20px;
  height: 7px;
  background-color: var(--carousel-dot-bg);
}
.digital-marketing-carousel .owl-dots .owl-dot.active span {
  background-color: var(--primary-color);
}
.digital-marketing-img {
  position: relative;
  overflow: hidden;
  padding: 30px;
}
.digital-marketing-img img {
  box-shadow: -20px 20px 0 var(--secondary-color);
}
.digital-marketing-img .shape {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0px;
  bottom: 95px;
  width: 180px;
  height: 180px;
  text-align: center;
  background: rgba(var(--white-rgb), 0.2);
  border-radius: 50%;
  padding: 15px 20px;
  z-index: 1;
}
.digital-marketing-img .shape:before {
  position: absolute;
  content: "";
  width: 290px;
  height: 290px;
  border-radius: 50%;
  left: -55px;
  top: -55px;
  border: 20px solid rgba(var(--white-rgb), 0.2);
}
.digital-marketing-card {
  position: relative;
  padding-top: 50px;
  padding-bottom: 40px;
  margin: 10px;
  height: 100%;
}
.digital-marketing-card .icon-box {
  position: absolute;
  top: -10px;
  right: 30px;
  z-index: 2;
}
.digital-marketing-card .icon {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  overflow: hidden;
  z-index: 1;
}
.digital-marketing-card .icon-box::before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: 0;
  border-top: 40px solid var(--primary-background);
  border-right: 30px solid transparent;
  transition: all 500ms ease;
}
.digital-marketing-card .icon::after {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  background-color: var(--carousel-dot-bg);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}
.digital-marketing-card .content {
  position: relative;
  display: block;
  background-color: var(--white-color);
  box-shadow: 0px 0px 10px 0px rgba(var(--black-rgb), 0.06);
  padding: 45px 25px 25px;
  height: 100%;
}
.digital-marketing-card .content h4 {
  position: relative;
  color: var(--primary-color);
  font-family: var(--primary-semibold-font);
  margin-bottom: 25px;
  display: inline-block;
  text-transform: uppercase;
}
.digital-marketing-card .content h4::after {
  content: "";
  display: block;
  width: 50%;
  border-bottom: 2px dashed var(--secondary-color);
  position: absolute;
  bottom: -12px;
}
.digital-marketing-card .content p {
  margin-bottom: 0px;
}
.digital-marketing-card .bottom-readmore {
  position: absolute;
  bottom: 4px;
  width: 100%;
  padding: 5px;
  background-color: var(--primary-color);
  text-align: center;
}
.digital-marketing-card .bottom-readmore a {
  color: var(--white-color);
}
.digital-marketing-card .bottom-readmore i {
  margin-left: 10px;
}
.digital-marketing-card:hover .icon::after {
  top: -40%;
}
.digital-marketing-card .icon img {
  filter: brightness(0) invert(1);
  transition: all 500ms linear;
}
.digital-marketing-card:hover .icon-box::before {
  border-top: 40px solid #e0e0e7;
}
.digital-marketing-card:hover .icon img {
  filter: unset;
}
.digital-marketing-card:hover .bottom-readmore {
  background-color: var(--primary-color);
}
.digital-marketing-card:hover .bottom-readmore a {
  color: var(--secondary-color);
}
/* ----------------------- digital marketing benefits ----------------- */
.digital-benefit-card {
  text-align: center;
  color: var(--white-color);
  padding: 30px;
  border-radius: 20px;
  transition: all 0.5s;
  height: 100%;
  background-image: url(../img/digital-marketing/benefits/bg.webp);
}
.digital-benefit-card .icon {
  margin-bottom: 25px;
  display: inline-block;
  background: var(--white-color);
  padding: 15px;
  position: relative;
  border-radius: 25px;
  width: 90px;
  z-index: 1;
  box-shadow: -7px -7px 0 var(--secondary-color);
}
.digital-benefit-card .content h4 {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-family: var(--primary-semibold-font);
  margin-bottom: 20px;
}
.digital-benefit-card:hover {
  transform: translateY(-10px);
}
.digital-benefit-card p {
  margin-bottom: 0px;
}
/* ------------------- digital marketing approach ---------------- */
.digital-approach-tab {
  position: relative;
  align-items: center;
}
.digital-approach-tab-column {
  max-height: 620px;
  overflow-y: auto;
}
.digital-approach-tab-column::-webkit-scrollbar {
  width: 7px;
}
.digital-approach-tab-column::-webkit-scrollbar-thumb {
  background: rgba(var(--secondary-rgb), 0.7);
  border-radius: 10px;
}
.digital-approach-tab-column::-webkit-scrollbar-track {
  background: transparent;
}
.digital-approach-tab .nav-link {
  position: relative;
  font-family: var(--primary-semibold-font);
  color: var(--primary-color);
  background-color: var(--white-color);
  padding: 25px;
  margin-left: 30px;
  margin-bottom: 20px;
  z-index: 1;
  box-shadow: 0px 0px 10px 7px rgba(var(--black-rgb), 0.015);
}
.digital-approach-tab .nav-link .shape {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.1s;
  filter: brightness(0) invert(1);
  z-index: -1;
}
.digital-approach-tab .nav-link:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 12px;
  background-color: var(--white-color);
  left: -45px;
  top: 0;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 7px rgba(var(--black-rgb), 0.015);
}
.digital-approach-tab .nav-link.active {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.digital-approach-tab .nav-link.active .icon {
  filter: brightness(0) invert(1);
}
.digital-approach-tab .nav-link .icon {
  width: 45px;
  display: none;
}
.digital-approach-tab .nav-link.active .shape {
  filter: unset;
}
.digital-approach-tab .nav-link.active::after {
  background-color: var(--primary-color);
}
.digital-approach-tab .tab-content {
  position: relative;
  padding: 35px 25px 80px;
  background-color: var(--white-color);
  box-shadow: 0px 0px 10px 7px rgba(var(--black-rgb), 0.015);
}
.digital-approach-tab .tab-pane .main-img {
  position: absolute;
  right: 30px;
  bottom: 15px;
  opacity: 0.03;
  height: 180px;
}
/* ------------------ digital market things tab -------------- */
.digital-market-things {
  border-radius: 20px;
  padding: 20px 40px;
  margin-top: 110px;
  background-image: url(../img/digital-marketing/things-tab/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.digital-market-things .nav-tabs {
  justify-content: space-evenly;
  gap: 10px;
  margin-top: -100px;
  border: 0px;
  flex-wrap: nowrap;
}
.digital-market-things .nav-link {
  color: var(--primary-color);
  font-family: var(--primary-semibold-font);
  background-color: var(--white-color);
  border: 0px;
  padding: 20px 10px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px 7px rgba(var(--black-rgb), 0.04);
}
.digital-market-things .nav-link img {
  width: 50px;
}
.digital-market-things .nav-link span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 24px;
}
.digital-market-things .nav-link span.question {
  display: none;
}

.digital-market-things .nav-link.active {
    color: #000000;
    background-color: #fbcc11;
}
.digital-market-things .nav-link.active img {
  filter: brightness(0);
}
.digital-market-things .tab-content {
  padding-top: 60px;
  padding-bottom: 30px;
}
.digital-market-things .tab-content h3 {
  color: var(--secondary-color);
  margin-bottom: 25px;
  text-transform: none;
}
.digital-market-things .tab-content p {
  color: var(--white-color);
}
.digital-market-things .tab-content .main-img {
  box-shadow: 15px 15px 0px 0px rgba(var(--secondary-rgb), 0.5);
  border-radius: 8px;
}
/* ---------------------Purchase Page---------------------- */
.border-top-primary {
  border-top: 3px solid var(--primary-color);
}
.addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--light-grey);
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 0px;
  background: var(--white-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.addon-row.selected {
  background-color: rgba(var(--secondary-rgb), 0.3);
  color: var(--black-color);
  border: 1px solid rgba(var(--secondary-rgb), 0.3) !important;
}
.count-box {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 15px;
}
.count-box button {
  padding: 4px 12px !important;
  cursor: pointer;
  border-radius: 3px;
  border: 0;
}
.count-box .input-box {
  display: flex;
  align-items: center;
}
.count-box .input-box .form-control {
  max-width: 135px;
  border: 0px;
  margin-right: 0px;
  text-align: center;
  background: var(--white-color);
  border-bottom: 2px solid var(--secondary-color);
  box-shadow: 0px -1px 17px rgba(var(--black-rgb), 0.07);
  border-radius: 8px;
}
.radio-group {
  margin-bottom: 15px;
}
.price-display {
  font-weight: bold;
  margin-left: 10px;
  color: var(--secondary-color);
}
#billing-cycle,
#package-group {
  display: flex;
  gap: 5px;
}
.addon-row label.addon-name {
  display: inline;
}
.addon-row input[type="checkbox"]:checked,
#billing-cycle .single-radio input[type="radio"]:checked,
#package-group .single-radio input[type="radio"]:checked {
  accent-color: var(--secondary-color);
  color: var(--white-color);
}
#billing-cycle .single-radio,
#package-group .single-radio {
  border: 0;
  position: relative;
  color: var(--primary-color);
  background-color: rgba(var(--secondary-rgb), 0.2);
  padding: 10px 20px;
  border-radius: 0;
  margin: 0 5px;
  font-family: var(--primary-medium-font);
  text-transform: uppercase;
  min-width: 150px;
  width: fit-content;
  cursor: pointer;
}
#billing-cycle .single-radio label,
#package-group .single-radio label {
  cursor: pointer;
}
.single-radio:has(input:checked) {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
  border-color: var(--primary-background);
}
.addon-row input[type="checkbox"]:checked {
  accent-color: var(--primary-color);
}
.total-container h3.title,
.package-details .form-label {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-family: var(--primary-bold-font);
}
.summary-detail-box {
  position: sticky;
  bottom: 50px;
  width: 100%;
  z-index: 5;
  padding: 20px 50px 15px !important;
}
.package-details,
.addon-details,
.summary-detail-box,
.order-summary-box {
  padding: 40px 20px;
  box-shadow: 4px 1px 14px 1px rgba(var(--black-rgb), 0.05);
  background: var(--white-color);
}
#selected-billing,
#selected-package {
  text-transform: capitalize;
}
.order-summary-box h6,
.order-summary-box li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  gap: 15px;
}
#addon-summary li,
.order-summary-box li span {
  font-family: var(--primary-regular-font);
}
.addon-row input {
  margin-right: 10px;
}
.fixed-box {
  position: sticky;
  top: 100px;
}
.summary-detail-box hr {
  margin-top: 20px;
  border: 0px;
  border-bottom: 2px dashed var(--secondary-color);
  opacity: 1;
}
.order-summary-box p {
  margin-bottom: 0px;
}
.project-details {
  padding: 40px 50px;
  box-shadow: 4px 1px 14px 1px #0000000f;
  background: var(--white-color);
}
.order-summary-box h6 {
  font-family: var(--primary-semibold-font);
  color: var(--primary-color);
}
.order-summary-box .total {
  padding: 20px;
  background-color: rgba(var(--secondary-rgb), 0.3);
  color: var(--black-color);
}
.order-summary-box hr {
  border: 0px;
  border-bottom: 1px solid var(--light-grey);
  opacity: 0.5;
}
.package-details h3.title,
.project-details h3.title,
.order-summary-box h3.title {
  border-bottom: 2px dashed var(--secondary-color);
  padding-bottom: 12px;
}
.payment-section {
  display: none;
}
.coupon-input {
  max-width: 160px;
}
/* --------------- thankyou page ---------------- */
.thank-you-section {
  padding: 80px 0px;
}
.divider-three {
  border: 0px;
  opacity: 1;
  border-bottom: 1px solid var(--secondary-color);
  margin-bottom: 10px;
  margin-top: 0px;
}
.thank-you-section .thankyou-main-img {
  margin-bottom: 30px;
}
.thank-you-section h2 {
  font-family: var(--primary-bold-font);
  color: var(--primary-color);
  font-size: var(--big-fs);
  text-transform: uppercase;
}
.thank-you-section .btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}
.thank-you-section .project-detail {
  padding-top: 1rem;
  padding-bottom: 0.25rem;
  display: flex;
  gap: 20px;
}
.thank-you-section .project-detail p.title {
  font-family: var(--primary-semibold-font);
  width: 150px;
}
.thank-you-section .project-detail a:hover {
  color: var(--secondary-color);
}
.thank-you-section .btn-box .btn {
  padding: 12px 35px;
  font-size: var(--fs-xl);
  font-family: var(--primary-semibold-font);
}
.thankyou-card .btn-box .btn-outline {
  padding: 7px 20px;
}
.thankyou-card .btn-box .btn-outline:focus {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-color: transparent;
}
.thankyou-card .btn-box .btn-outline i {
  margin-right: 7px;
}
.thankyou-card {
  background: var(--white-color);
  padding: 30px;
  box-shadow: 0px 0px 10px 7px rgba(var(--black-rgb), 0.03);
  border-radius: 30px;
}
.thankyou-card .logo-box {
  border-bottom: 2px dashed var(--secondary-color);
}
.top-list {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.thankyou-list-one {
  list-style: none;
  padding: 0;
  line-height: 35px;
}
.smoke-card {
  border-radius: 0px;
  background-color: var(--bg-light-yellow);
  border: 0;
  height: 100%;
  padding: 10px;
}
.smoke-card ul {
  padding: 0px 5px;
  margin: 0;
  list-style: none;
}
.flex-box,
.smoke-card ul li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.secondary-border-card {
  border-radius: 0px;
  border: 1px dashed var(--secondary-color);
}
/* ----------------- sidebar card ----------------- */
.sidebar-card {
  border-radius: 0px;
  border: 0px;
  border-top: 3px solid var(--primary-color);
  box-shadow: 0px 0px 25px 0px rgba(var(--black-rgb), 0.1);
  padding: 15px;
}
.sidebar-card h4.title {
  color: var(--primary-color);
  font-family: var(--primary-semibold-font);
  border-bottom: 2px dashed var(--secondary-color);
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.sidebar-card .tag-box {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.sidebar-card .tag-box .tag {
  background-color: var(--smoke-color);
  padding: 3px 10px;
  border-radius: 10px;
  font-size: var(--fs-small);
}
.sidebar-card .tag-box .tag:hover {
  background-color: var(--bg-light-yellow);
}
.sidebar-list {
  display: flex;
  list-style: none;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.sidebar-list li a {
  padding: 10px;
  background: rgba(var(--secondary-rgb), 0.3);
  border-radius: 100%;
  width: 35px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: var(--fs-regular);
  transition: all 0.5s;
}
.sidebar-social-icons img {
  width: auto;
  height: 14px;
  filter: brightness(0);
}
.sidebar-social-icons img.facebook {
  width: auto;
  height: 17px;
}
.sidebar-list li a:hover {
  transform: translateY(-5px);
}
.sidebar-card .common-list li a span.title {
  color: var(--primary-color);
  font-family: var(--primary-semibold-font);
}
.sidebar-card .common-list li {
  transition: all 0.5s;
}
.sidebar-card .common-list li:hover {
  transform: translateX(7px);
}
.post-card {
  background-color: var(--bg-light-yellow);
  border: 0px;
  border-radius: 0px;
  transition: all 0.5s;
  margin-bottom: 10px;
}
.sidebar-card .post-card:last-child {
  margin-bottom: 0px;
}
.post-card .card-body {
  padding: 15px 20px 10px;
}
.post-card h6 {
  color: var(--primary-color);
  font-family: var(--primary-semibold-font);
  margin-bottom: 3px;
}
.post-card p {
  margin: 0px;
  font-size: 15px;
  line-height: 26px;
}
.post-card:hover {
  background-color: var(--smoke-color);
}
/* ----------------- blog detail -------------------- */
.date-list {
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.date-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--black-color);
  font-family: var(--primary-semibold-font);
}
.date-list li .icon {
  font-size: var(--fs-large);
  color: var(--primary-color);
}
.blog-detail-card {
  padding: 15px;
  border: 0px;
  box-shadow: 0px 0px 25px 0px rgba(var(--black-rgb), 0.1);
}
.blog-detail-card .card-body p {
  margin-bottom: 0px;
}
.divider-two {
  opacity: 1;
  border-color: var(--secondary-color);
  margin-top: 25px;
  margin-bottom: 30px;
}
.conclusion-box {
  padding: 20px;
  border: 1px solid var(--smoke-color);
  margin-top: 35px;
  border-left: 3px solid var(--secondary-color);
}
.conclusion-box h3 {
  margin-bottom: 20px;
}
/* -------------------------------------------------------------- */
.law-firm-img .img-one img {
  box-shadow: -20px 20px 0px var(--secondary-color);
  border-radius: 150px;
}
.law-firm-img .img-two {
  position: absolute;
  top: calc(51% + 1px);
  transform: translateY(-50%);
  right: 0px;
}
.law-firm-tab-one .nav-link img {
  display: block;
  margin: 0 auto 10px auto;
}
.law-firm-tab-one .nav-link.active img {
  filter: brightness(0);
}
.law-firm-tab-one .nav-link.active {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: var(--white-color);
}
.law-firm-tab-one .nav-link {
  padding: 22px 20px 15px 20px;
  margin: 0px 15px 40px 15px;
  background-color: var(--white-color);
  border-radius: 5px 5px 5px 5px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #e6e6e6;
  position: relative;
}
.law-firm-tab-one .nav-link.active::after {
  border-right-color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}
.law-firm-tab-one .nav-link.active span {
  color: var(--black-color);
}
.law-firm-tab-one .nav-link span {
  font-size: 14px;
  color: var(--black-color);
  line-height: 20px;
  font-weight: 600;
}
.law-firm-tab-one .nav-link span.question {
  display: none;
  margin-top: 10px;
}
.law-firm-tab-one .nav-link::after {
  content: "";
  font-size: 13px;
  line-height: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  transition: 0.4s;
  border-radius: 0 0 5px 0;
  border: 1em solid transparent;
  transform: translateY(1em) translateX(-50%) rotate(45deg);
}
.law-firm-tab-one .tab-content {
  box-shadow: 6px 5px 30px 0px rgba(var(--black-rgb), 0.12);
  padding: 75px 55px 75px;
  background-color: var(--white-color);
  border-radius: 10px 10px 10px 10px;
}
.law-firm-tab-one .tab-content .img-box {
  position: relative;
  width: 95%;
}
.law-firm-tab-one .tab-content img {
  border-radius: 50px 50px 0px 50px;
  position: relative;
  z-index: 2;
}
.law-firm-tab-one .tab-content .img-box::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 50px 50px 0px 50px;
  transform: rotate(8deg);
  z-index: 1;
}
.law-firm-section-two {
  position: relative;
  z-index: 1;
  background-image: url("../img/law-firm/approach/1.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.law-firm-section-two::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(var(--primary-rgb), 0.45);
}
.law-firm-section-two .nav-link.active {
  color: var(--black-color);
  background: var(--secondary-color);
}
.law-firm-section-two .tab-content {
  background: rgba(var(--white-rgb), 0.1);
  padding: 40px 40px;
  border-radius: 10px;
  backdrop-filter: blur(100px);
}
.law-firm-section-two .nav-link {
  margin: 0;
  margin-bottom: 15px !important;
  border: none;
  background: rgba(var(--white-rgb), 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-family: var(--primary-semibold-font);
  color: var(--white-color);
  padding: 15px 35px 15px 25px;
  position: relative;
  transition: all 0.3s ease-out 0s;
}
.law-firm-section-two .nav-link span {
  font-size: 16px;
  text-align: start;
}
.law-firm-section-two .nav-link span.question {
  display: none;
}
.law-firm-section-two .nav-link .icon {
  width: 40px;
}
.law-firm-section-two .nav-link .shape {
  position: absolute;
  right: 14px;
  transform: rotate(45deg);
}
.law-firm-section-two .nav-link.active .shape {
  filter: invert(1);
  transform: rotate(0deg);
}
.law-firm-section-two .nav-link.active .icon {
  filter: invert(1);
}
.law-firm-benefit-card {
  background: var(--white-color);
  box-shadow: 0px 6px 30px 0px rgba(var(--black-rgb), 0.06);
  text-align: center;
  position: relative;
  margin-top: 50px;
  padding: 85px 40px 0px;
  transition: 0.4s;
  z-index: 1;
  height: 100%;
}
.law-firm-benefit-card .shape-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: -1;
  overflow: hidden;
}
.law-firm-benefit-card .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 0;
  background: var(--white-color);
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.4s;
  box-shadow: 0px 6px 30px 0px rgba(var(--black-rgb), 0.1);
}
.law-firm-benefit-card .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  height: 12px;
  width: 22px;
  background: transparent;
  border-top: 12px solid var(--white-color);
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-bottom: 0;
  transform: translate(-50%, 0);
  transition: 0.4s;
}
.law-firm-benefit-card:hover .icon::after {
  border-top: 12px solid var(--secondary-color);
}
.law-firm-benefit-card .icon img {
  transition: 0.4s;
}
.law-firm-benefit-card .content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
  transition: 0.4s;
}
.law-firm-benefit-card .content p {
  color: var(--black-color);
  line-height: 1.75;
  margin-bottom: -0.5em;
}
.law-firm-benefit-card:hover {
  background: var(--primary-color);
}
.law-firm-benefit-card:hover .shape-bg {
  opacity: 0.15;
}
.law-firm-benefit-card:hover .icon {
  background: var(--secondary-color);
}
.law-firm-benefit-card:hover .icon img {
  transform: rotateY(180deg);
  filter: brightness(0);
}
.law-firm-benefit-card:hover .content h4,
.law-firm-benefit-card:hover .content p {
  color: var(--white-color);
}
.law-firm-card-two {
  position: relative;
  transition: all 0.4s ease-in-out;
  height: 100%;
  text-align: center;
}
.law-firm-card-two .icon {
  height: 90px;
  width: 90px;
  text-align: center;
  line-height: 90px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
}
.law-firm-card-two h3.count {
  font-weight: 500;
  color: var(--primary-color);
  background: var(--secondary-color);
  box-shadow: 0px 4px 30px rgba(var(--black-rgb), 0.08);
  height: 32px;
  width: 32px;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 95px;
  border-radius: 50%;
  font-size: var(--fs-large);
  line-height: 32px;
}
.law-firm-card-two .icon img {
  height: 100%;
  padding: 15px;
  filter: brightness(0) invert(1);
  transition: all 0.4s ease-in-out;
}
.law-firm-card-two:hover .icon {
  background: var(--secondary-color);
}
.law-firm-card-two:hover .icon img {
  filter: brightness(0);
  transform: rotateY(360deg);
}
.law-firm-card-two:hover h3.count {
  background: var(--primary-color);
  color: var(--white-color);
}
.law-firm-card-two .circle img {
  margin: 0 auto;
}
.law-firm-card-two .content {
  text-align: center;
  background: var(--primary-color);
  padding: 28px 24px;
  margin-top: 60px;
  position: relative;
  transition: all 0.4s ease-in-out;
  color: var(--white-color);
  border-radius: 4px;
  height: 100%;
}
.law-firm-card-two:hover .content .btn-main {
  background: var(--secondary-color);
  color: var(--black-color);
}
.law-firm-card-two:hover .content {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-5px);
  transition: all 0.4s ease-in-out;
}
.law-firm-card-two .content .form-btn {
  padding: 8px 20px;
}
.law-firm-card-two .content .triangle-icon {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  filter: brightness(0.99);
  transition: all 0.4s ease-in-out;
}
.law-firm-card-two:hover .content .triangle-icon {
  filter: unset;
}
.law-firm-carousel .owl-dots {
  margin-top: 25px !important;
}
.law-firm-carousel .owl-dots .owl-dot span {
  margin: 0px 7px 0px 0px;
  width: 20px;
  height: 7px;
  background-color: var(--carousel-dot-bg);
}
.law-firm-carousel .owl-dots .owl-dot.active span {
  background-color: var(--primary-color);
}
/* ------------------- portfolio ----------------- */
.portfolio-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  padding: 0px;
}
.portfolio-filter::-webkit-scrollbar {
  width: 4px;
}
.portfolio-filter::-webkit-scrollbar-thumb {
  background: rgba(var(--secondary-rgb), 0.7);
  border-radius: 10px;
}
.portfolio-filter::-webkit-scrollbar-track {
  background: var(--smoke-color);
}
.portfolio-filter .btn-filter,
.portfolio-filter .btn-filter:focus {
  padding: 7px 15px;
  color: var(--secondary-color);
  background-color: transparent;
  font-family: var(--primary-semibold-font);
  border: 1px solid var(--secondary-color);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.5s;
}
.portfolio-filter .btn-filter:hover,
.portfolio-filter .btn-filter.active {
  color: var(--white-color);
  border-color: var(--primary-background);
  background-color: var(--primary-color);
}
.box-shadow-img {
  width: auto;
  height: auto;
  box-shadow: 0px 0px 15px rgba(var(--black-rgb), 0.07);
}
.filter-select {
  display: none;
}
.filter-select .form-select {
  background-color: #f3f3f3;
  border: 0px;
  padding: 15px;
  color: var(--black-color);
}
.apply-coupon-btn {
  font-size: 14px;
  padding: 5px;
}
/* -------------------Contact---------------------- */
.address-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 35px;
  padding: 50px 20px 10px;
  height: 100%;
  position: relative;
  margin-bottom: 25px;
  border-radius: 50px 50px 50px 50px;
  background: var(--white-color);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all 0.5s ease-in-out;
}
.address-box::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -8px;
  background: var(--primary-color);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  height: 20px;
  z-index: -1;
  transition: all 0.5s;
}
.address-box .icon img {
  width: 40px;
  margin-bottom: 10px;
  transition: all 0.5s;
}
.address-box .icon {
  font-size: 35px;
  color: var(--white-color);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  position: relative;
  border-radius: 30px;
  background: var(--primary-color);
  transition: all 0.5s;
}
.address-box .icon::before {
  content: "";
  position: absolute;
  left: -15px;
  right: -15px;
  top: -15px;
  bottom: -15px;
  border: 3px solid var(--primary-color);
  border-radius: 40px;
}
.address-box .content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black-color);
}
.address-box .content p {
  color: var(--black-color);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
}
.address-box:hover .icon img {
  filter: brightness(0);
}
.address-box:hover .icon {
  background: var(--secondary-color);
}
.address-box:hover .icon::before {
  border: 3px solid var(--secondary-color);
}
.address-box:hover::before {
  background: var(--secondary-color);
}
.contact-section .form-card {
  box-shadow: 0px 0px 10px -2px rgba(var(--black-rgb), 0.1);
  border: 0px;
  height: 100%;
}
.contact-section .form-card .call-back-form input[type="text"],
.contact-section .form-card .call-back-form input[type="tel"],
.contact-section .form-card .call-back-form input[type="email"] {
  height: 48px;
  border: 1px solid #d1d1d175;
}
.contact-section .form-card .call-back-form .border-box,
.contact-section .form-card .call-back-form textarea {
  border: 1px solid #d1d1d175;
}
.contact-section .form-card .call-back-form input[type="text"]:focus,
.contact-section .form-card .call-back-form input[type="tel"]:focus,
.contact-section .form-card .call-back-form textarea:focus,
.contact-section .form-card .call-back-form input[type="email"]:focus {
  border: 1px solid var(--primary-color);
}
.contact-section .contact-info-box {
  display: flex;
  align-items: center;
  background-color: var(--white-color);
  padding: 35px 25px;
  box-shadow: 0px 0px 10px -2px rgba(var(--black-rgb), 0.1);
  background-position: center center;
  background-size: cover;
  border-top: 3px solid var(--secondary-color);
  border-radius: 20px 0px;
  background-repeat: no-repeat;
  gap: 30px;
  transition: all 0.4s;
}
.contact-section .contact-info-box .icon img {
  width: 40px;
  margin-bottom: 5px;
}
.contact-section .contact-info-box .icon {
  font-size: 35px;
  color: var(--black-color);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  border-radius: 10px;
  background: var(--primary-color);
}
.contact-section .contact-info-box .content h4 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: 2px dashed var(--secondary-color);
  padding-bottom: 3px;
}
.contact-section .contact-info-box .content p {
  font-size: 16px;
  line-height: 26px;
  padding: 0;
  margin: 0;
  font-weight: 400;
}
.contact-section .contact-info-box:hover {
  transform: translateY(-5px);
}
/* -------------------- about -------------------- */
.about-img img {
  max-height: 650px;
}
.about-img-two {
  box-shadow: -14px 10px 0px var(--secondary-color);
  border-radius: 125px;
}
.img-border {
  display: inline-block;
  position: relative;
  padding: 10px;
  margin: 10px;
  z-index: 1;
}
.img-border::before {
  content: "";
  position: absolute;
  top: 35px;
  left: -15px;
  right: 35px;
  bottom: -20px;
  border: 1px solid var(--secondary-color);
  z-index: 1;
  background-color: rgba(var(--secondary-rgb), 0.04);
}
.about-six-img {
  text-align: center;
}
.about-six-img img {
  transition: all 0.5s;
  border-radius: 80px;
  box-shadow: 0px 0px 30px 10px rgba(var(--black-rgb), 0.1);
}
.about-section-four {
  padding-top: 80px;
  padding-bottom: 20px;
  background: linear-gradient(
      to bottom,
      rgba(var(--primary-rgb), 0.95) 100%,
      transparent 50%
    ),
    url(../img/about/bg4.webp);
  background-size: 100% 70%;
  background-position: top;
  background-repeat: no-repeat;
}
.about-four-card {
  border: 0px;
  padding: 40px;
  border-radius: 0px;
  box-shadow: 0px 10px 100px 0px rgba(var(--black-rgb), 0.06);
}
.about-four-card .content-left h5 {
  color: var(--primary-color);
  font-family: var(--primary-bold-font);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.about-four-card .content-left h5::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 50%;
  height: 4px;
  border-radius: 15px;
  border-bottom: 2px dashed var(--secondary-color);
}
.about-four-card .content-card {
  border: 1px dashed rgba(var(--secondary-rgb), 0.7);
  border-radius: 0px;
  text-align: center;
  height: 100%;
  color: var(--white-color);
  background-color: var(--primary-color);
}
.about-four-card .content-card .icon-box {
  margin-bottom: 20px;
  display: inline-flex;
  padding: 15px;
  border-radius: 100px;
  width: 100px;
  background-color: var(--white-color);
  box-shadow: 0px 0px 15px 7px rgba(var(--black-rgb), 0.03);
  height: 100px;
  justify-content: center;
  align-items: center;
}
.about-four-card .content-card .icon-box img {
  width: 60px;
  height: auto;
  transition: all 0.7s;
}
.about-four-card .content-card:hover .icon-box img {
  transform: rotateY(180deg);
}
.about-four-card .content-card .content-box h4 {
  color: var(--secondary-color);
  font-family: var(--primary-semibold-font);
}
.vision-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.vision-card {
  position: relative;
  z-index: 1;
  border: 0px;
  border-radius: 8px;
  transition: all 0.4s;
  perspective: 1000px;
  height: 100%;
  box-shadow: 0px 0px 7px 3px rgba(var(--black-rgb), 0.015);
}
.vision-card .card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s;
}
.vision-card .card-body {
  backface-visibility: hidden;
}
.vision-card .content-two {
  transform: rotateY(180deg);
  backface-visibility: hidden;
  display: none;
}
.vision-card.flipped .card-inner {
  transform: rotateY(180deg);
}
.vision-card.flipped .content-one {
  display: none;
}
.vision-card.flipped .content-two {
  backface-visibility: visible;
  display: block;
}
.vision-card .icons-box {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 2px dashed var(--secondary-color);
  padding-bottom: 20px;
}
.vision-card .icons-box .icon {
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  transition: all 0.4s;
  background: #072c6d14;
  display: inline-block;
}
.vision-card .icons-box .icon img {
  width: 50px;
  transition: all 0.4s;
}
.vision-card .icons-box .number h4 {
  transition: all 0.4s;
  font-size: 60px;
  opacity: 0.3;
  color: var(--secondary-color);
}
.vision-card .content-box p {
  transition: all 0.4s;
}
.vision-card .btn-click {
  color: var(--primary-color);
  transition: all 0.4s;
  background: transparent;
  border: 0;
}
.vision-card .btn-click i {
  transform: rotate(45deg);
  margin-left: 3px;
}
.vision-card .btn-click:hover {
  color: var(--secondary-color) !important;
}
.vision-card .btn-click:hover i {
  transform: rotate(0deg);
}
.vision-card::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  transition: all 0.4s;
  background: var(--primary-color);
  left: 50%;
  border-radius: 8px;
  top: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.vision-card.flipped::after,
.vision-card:hover::after {
  height: 100%;
  left: 0;
  top: 0;
  transition: all 0.4s;
  visibility: visible;
  opacity: 1;
  width: 100%;
}
.vision-card.flipped,
.vision-card:hover,
.vision-card.flipped p,
.vision-card:hover p,
.vision-card.flipped .btn-click,
.vision-card:hover .btn-click {
  color: var(--white-color);
}
.vision-card.flipped h4,
.vision-card:hover h4 {
  color: var(--secondary-color);
}
.vision-card.flipped .icons-box .icon,
.vision-card:hover .icons-box .icon {
  background: var(--white-color);
}
.vision-card.flipped .icons-box .number h4,
.vision-card:hover .icons-box .number h4 {
  color: var(--white-color);
}
/* ---------------------------------Testimonial--------------------------------- */
.client-section.client-section-two {
  background: var(--white-color);
}
.client-section.client-section-two .clients-card {
  margin: 0px;
}
.review-section.review-section-two {
  margin-top: 25px;
  position: relative;
  z-index: 3;
  background-color: var(--primary-color);
  background-image: url(../img/backgrounds/blog-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.review-section.review-section-two .review-card,
.review-section.review-section-two .review-card .card-body {
  padding-bottom: 0px;
}
/* ------------------------Testimonial card----------------- */
.testi-card {
  position: relative;
  padding: 40px;
  box-shadow: 0px 10px 70px rgba(var(--black-rgb), 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testi-card-body {
  flex: 1 1 auto;
}
.testi-card .quotes-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 20px;
  border-bottom: 2px dashed var(--light-grey);
  padding-bottom: 20px;
  flex-shrink: 0;
}
.testi-card .quotes-wrapper > img {
  height: 50px;
  flex-shrink: 0;
}
.testi-card .quotes-wrapper .rating {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  margin-left: auto;
}
.testi-card .quotes-wrapper .rating img {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}
.testi-card .author-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-top: 40px;
  border-radius: 6px;
  position: relative;
  background: var(--bg-light-yellow);
  flex-shrink: 0;
}
.testi-card .author-wrapper::before {
  content: "";
  position: absolute;
  left: 40px;
  top: -10px;
  transform: rotate(45deg);
  width: 20px;
  height: 20px;
  background: linear-gradient(
    135deg,
    var(--bg-light-yellow) 50%,
    transparent 50%
  );
}
.testi-card .author-wrapper .author-img {
  width: 60px;
  border-radius: 50%;
  border: none;
  box-shadow: none;
  height: 60px;
  object-fit: cover;
}
.testi-card .author-wrapper .author-info h5 {
  font-size: 20px;
  line-height: 30px;
  padding: 0;
  margin: 0;
  color: var(--primary-color);
  font-family: var(--primary-semibold-font);
}
/* -------------------- coupon modal ------------------- */
.coupon-modal .modal-content {
  border-radius: 0px;
  padding: 5px 20px 10px;
}
.coupon-modal .modal-header {
  border-color: var(--secondary-color);
  padding: 15px 5px;
}
.coupon-modal .modal-header h5.title {
  color: var(--primary-color);
  margin: 0px;
  font-family: var(--primary-semibold-font);
}
.coupon-modal .btn-close {
  position: absolute;
  right: 25px;
  top: 25px;
  opacity: 1;
}
.coupon-modal .btn-close:focus {
  box-shadow: none;
}
.coupon-modal .radio-btn {
  max-height: 400px;
  overflow: hidden;
  overflow-y: auto;
  padding-right: 20px;
}
.coupon-modal .radio-btn .form-check {
  display: flex;
  align-items: start;
  gap: 3px;
}
.coupon-modal .radio-btn::-webkit-scrollbar {
  width: 7px;
}
.coupon-modal .radio-btn::-webkit-scrollbar-track {
  background: var(--smoke-color);
  border-radius: 5px;
}
.coupon-modal .radio-btn::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}
.coupon-modal .modal-body {
  padding: 15px 0px;
}
/* -----------------------Law Firm card three------------------ */
.law-firm-carousel {
  width: 102%;
}
.law-firm-carousel .item {
  margin-right: 20px;
}
.law-firm-card-three {
  position: relative;
  display: block;
  height: 100%;
  width: 98%;
}
.law-firm-card-three .content {
  position: relative;
  display: block;
  background: var(--white-color);
  padding: 33px 40px 32px;
  z-index: 5;
  height: 100%;
  border: 1px solid rgba(var(--black-rgb), 0.04);
  transition: all 0.4s;
}
.law-firm-card-three .content h4 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 14px;
  color: var(--primary-color);
  border-bottom: 2px dashed var(--secondary-color);
  padding-bottom: 12px;
}
.law-firm-card-three .icon {
  position: absolute;
  right: -24px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  transition: all 0.2s linear;
  transition-delay: 0.1s;
  z-index: 5;
}
.law-firm-card-three .icon img {
  filter: brightness(0) invert(1);
}
.law-firm-card-three .icon::before {
  position: absolute;
  top: -20px;
  right: 0;
  width: 25px;
  border-bottom: 20px solid var(--primary-background);
  border-left: 0 solid transparent;
  border-right: 25px solid transparent;
  content: "";
}
.law-firm-card-three:hover .content {
  background-color: var(--primary-color);
}
.law-firm-card-three:hover .content h4,
.law-firm-card-three:hover .content p {
  color: var(--white-color);
}
.law-firm-card-three:hover .content::after {
  transform: scale(1);
  transform-origin: top center;
}
.law-firm-card-three:hover .icon {
  background-color: var(--white-color);
}
.law-firm-card-three:hover .icon::before {
  border-bottom: 20px solid var(--carousel-dot-bg);
}
.law-firm-card-three:hover .icon img {
  transform: rotateY(360deg);
  filter: unset;
}

/* --------------------Pagination---------------- */
.pagination li a.page-link {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 40px;
  background-color: #f3f5f5;
  margin: 0 4px;
  transition: all 0.3s;
  display: block;
  color: var(--black-color);
  font-size: 18px;
  font-family: var(--primary-semibold-font);
  border-radius: 8px;
  position: relative;
  border: 0px;
}

.pagination li a.page-link:hover,
.pagination li.active a.page-link {
  background: var(--primary-color);
  transition: all 0.3s;
  color: var(--white-color);
}
.pagination li a.page-link:focus {
  box-shadow: none;
}

/* ------------------------Case Study Detail---------- */
.common-list-seven {
  padding-left: 0px;
  margin: 0px;
}
.common-list-seven li {
  position: relative;
  border-bottom: 0;
  background-color: var(--bg-light-yellow);
  margin-bottom: 15px;
  padding: 10px 10px 10px 20px;
  border-left: 2px solid var(--secondary-color);
}
.common-list-seven li span.mini-title {
  color: var(--primary-color);
}
.count-card {
  box-shadow: rgba(14, 18, 29, 0.06) 0px 6px 30px;
  position: relative;
  background: rgb(var(--white-rgb));
  border-radius: 10px;
  padding: 18px 40px 24px 120px;
  text-align: end;
  border-top: 4px solid var(--secondary-color);
  transition: all 0.5s;
}
.count-card:hover {
  transform: translateY(-5px);
}
.count-card .icon-box {
  display: inline-flex;
  width: 75px;
  height: 75px;
  background-color: var(--primary-color);
  position: absolute;
  top: 0px;
  left: 30px;
  text-align: center;
  border-radius: 0px 0px 99px 99px;
  align-items: center;
  justify-content: center;
}
.count-card .icon-box img {
  width: 40px;
}
.count-card h4 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 0px;
  font-family: var(--primary-semibold-font);
}
/* ------------------------ common table ------------------------- */
.table-responsive {
  max-height: 1000px;
}
.max-ht-600 {
  max-height: 600px;
}
.common-table {
  width: 100%;
  border-collapse: collapse;
}
.common-table th,
.common-table td {
  border: 0px;
  padding: 15px;
  border-bottom: 1px solid var(--light-grey);
  text-align: left;
}
.common-table tr:nth-child(even) {
  background: var(--background-light);
}
.common-table th {
  padding: 10px 15px;
  background: var(--primary-color);
  color: var(--white-color);
  white-space: nowrap;
  border: 1px solid #d1c8c826;
  text-transform: uppercase;
  font-family: var(--primary-semibold-font);
}
.common-table-small {
  width: 100%;
  border-collapse: collapse;
}
.common-table-small th,
.common-table-small td {
  border: 0px;
  padding: 5px;
  border-bottom: 1px solid var(--light-grey);
  text-align: left;
}
.common-table-small tr:nth-child(even) {
  background: var(--background-light);
}
.common-table-small thead {
  position: sticky;
  top: 0px;
}
.common-table-small th {
  padding: 10px 15px;
  background: var(--primary-color);
  color: var(--white-color);
  border: 1px solid #d1c8c826;
  text-transform: uppercase;
  font-family: var(--primary-semibold-font);
}
.common-table-small tr td {
  text-align: center;
  font-size: var(--fs-small);
  line-height: 24px;
}
.common-table-small tr td:first-child {
  text-align: start;
  min-width: 200px;
}
/* ------------------- results --------------------- */
.result-card {
  border-radius: 0px;
  border: 1px solid var(--light-grey-two);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.result-card .card-body {
  padding: 0px;
}
.result-card .img-box {
  display: flex;
  height: 210px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.result-card .img-box img {
  transition: all 0.4s linear;
  width: auto !important;
  max-height: 180px;
}
.result-card .img-box:after {
  background: #ffffff4d;
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 0.4s linear;
}
.result-card .content-box {
  position: relative;
  padding: 40px 15px 50px;
  background-color: var(--bg-light-yellow);
  border-top: 2px dashed var(--secondary-color);
}
.result-card h4 {
  font-family: var(--secondary-bold-font);
  padding: 10px;
  display: inline-block;
  margin-bottom: 0;
  color: var(--white-color);
  background-color: var(--primary-color);
  font-size: var(--fs-regular);
  position: absolute;
  right: 20px;
  top: -20px;
}
.result-card h5 {
  font-family: var(--primary-bold-font);
}
.result-card h5 span {
  font-size: var(--fs-xxl);
  color: var(--black-color);
}
.result-card .content-box p {
  color: var(--black-color);
  font-family: var(--primary-regular-font);
}
.result-card .btn-outline {
  display: flex;
  gap: 30px;
  border: 0px;
  width: 100%;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 0px;
  color: var(--white-color);
  font-family: var(--primary-medium-font);
  background-color: var(--primary-color);
  justify-content: space-between;
  padding: 7px 20px;
}
.result-card .btn-outline i {
  height: 30px;
  width: 30px;
  background-color: var(--secondary-color);
  font-size: var(--fs-small);
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  color: var(--black-color);
}
.result-card:hover {
  transform: translateY(-5px);
}
.result-card:hover .img-box:after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.4s linear;
}
.result-card .btn-outline:hover {
  color: var(--secondary-color);
}
.result-overview-section {
  position: relative;
  z-index: 3;
  background-color: var(--primary-color);
  background-image: url(../img/backgrounds/blog-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 100px;
  border-radius: 30px;
}
.result-overview-section .table-responsive {
  padding: 15px;
  border-radius: 20px;
  background-color: var(--white-color);
}
.result-overview-section .common-table th {
  padding: 20px;
  color: var(--black-color);
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  text-align: center;
}
.result-overview-section .common-table th:first-child {
  text-align: start;
}
.result-overview-section .common-table tr:nth-child(even) {
  background-color: #fbcc1112;
}
.result-overview-section .common-table tr:hover {
  background-color: var(--bg-light-yellow);
}
.result-overview-section .common-table tr td:first-child {
  white-space: nowrap;
  text-align: start;
}
.result-overview-section .common-table td {
  border: 1px dashed var(--secondary-color);
  text-align: center;
}
.result-overview-section .increment-row {
  margin-bottom: -150px;
}
.campaign-section {
  background: linear-gradient(to top, var(--bg-light-yellow), transparent);
}
.campaign-box {
  position: relative;
  z-index: 1;
  padding: 60px;
  background-image: url(../img/results/campaigns/bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.campaign-box:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(var(--secondary-rgb), 0.4);
}
/*.result-logo {*/
/*  max-height: 70px;*/
/*}*/
.result-logo {
    max-height: 100px;
    object-fit: contain;
}
.result-founder-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 15px;
  background-color: var(--bg-light-yellow);
  padding: 20px;
  border-top: 2px solid var(--secondary-color);
}
.result-founder-box p {
  margin-bottom: 0px;
}
.snapshot-card {
  box-shadow: 0px 0px 10px 2px rgba(var(--black-rgb), 0.1);
  margin: 10px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
}
.snapshots-carousel .owl-dots .owl-dot span {
  background: var(--carousel-dot-bg);
  width: 16px;
  height: 5px;
  margin: 0 10px 0px 0px;
}
.snapshots-carousel .owl-dots .owl-dot.active span {
  background: var(--primary-color);
}
.result-counter-section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
  background-image: url(../img/result-detail/result-bg.webp);
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.result-counter-section::before {
  content: "";
  background-color: rgba(var(--primary-rgb), 0.95);
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: -1;
}
.result-counter-card {
  position: relative;
  border: 1px dashed var(--secondary-color);
  border-radius: 0px 0px 0px 30px;
  text-align: center;
  padding: 15px 5px 5px;
  height: 100%;
  margin: 10px;
  transition: all 0.4s;
  border-bottom: 7px solid var(--secondary-color);
  overflow: hidden;
}
.result-counter-card .card-body {
  padding: 10px;
}
.result-counter-card:hover h4 span {
  color: var(--black-color);
}
.result-counter-card * {
  position: relative;
  z-index: 1;
}
.result-counter-card h4 {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-family: var(--primary-bold-font);
}
.result-counter-card h4 span {
  color: var(--secondary-color);
  font-size: var(--fs-40);
}
.result-counter-card p {
  margin: 0;
  font-family: var(--primary-bold-font);
}
.result-counter-card:hover {
  transform: translateY(-7px);
  border-color: var(--primary-background);
}
.result-counter-carousel .owl-dots .owl-dot span {
  width: 15px;
  height: 4px;
  background-color: var(--carousel-dot-bg);
  margin: 0px 7px 0px 0px;
}
.result-counter-carousel .owl-dots .owl-dot.active span {
  background-color: var(--secondary-color);
}
/* ------------------ packages ------------------ */
.pricing-tab .nav-tabs {
  justify-content: center;
  border: 0px;
  gap: 10px;
  flex-wrap: nowrap;
}
.pricing-tab .nav-tabs li {
  width: 22%;
}
.pricing-tab .nav-tabs .nav-link {
  position: relative;
  border: 0px;
  border-radius: 10px;
  color: var(--black-color);
  background-color: var(--white-color);
  line-height: 22px;
  padding: 20px;
  font-size: var(--fs-large);
  font-family: var(--primary-semibold-font);
  box-shadow: 0 0 60px 0 rgba(var(--black-rgb), 0.1);
  width: 100%;
  transition: all 0.4s;
}
.pricing-tab .nav-tabs .nav-link span {
  display: block;
  font-size: var(--fs-small);
  margin-top: 5px;
}
.pricing-tab .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-1px);
  bottom: -22px;
  width: 30px;
  height: 25px;
  z-index: 1;
  background-color: var(--primary-color);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.pricing-tab .nav-tabs .nav-link:hover,
.pricing-tab .nav-tabs .nav-link.active {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.pricing-tab .nav-tabs .nav-link.active span {
  color: var(--secondary-color);
}
.pricing-tab .tab-content {
  padding-top: 60px;
}
.pricing-card {
  padding-top: 70px;
  padding-bottom: 10px;
  text-align: center;
  border: 0px;
  height: 100%;
  border-radius: 4px;
  transition: all 0.5s;
  box-shadow: 0 0 60px 0 rgba(var(--black-rgb), 0.1);
}
.pricing-card .package {
  background-color: rgba(var(--secondary-rgb), 0.3);
  color: var(--black-color);
  padding: 12px 35px;
  display: flex;
  top: 23px;
  font-family: var(--primary-semibold-font);
  text-transform: uppercase;
  position: absolute;
  border-radius: 0px 50px 50px;
  width: 95%;
  left: 10px;
  justify-content: center;
}
.pricing-card .price h3 {
  font-family: var(--primary-bold-font);
  color: var(--primary-color);
  font-size: 40px;
  margin-bottom: 20px;
}
.pricing-card .price h3 span {
  color: var(--black-color);
  font-size: 14px;
}
.pricing-card hr {
  opacity: 1;
  border: 0;
  border-bottom: 2px dashed var(--secondary-color);
  margin: 25px 0px 20px;
}
.pricing-card h4 {
  font-size: var(--fs-regular);
  font-family: var(--primary-bold-font);
  margin-bottom: 15px;
}
.pricing-card ul {
  text-align: start;
}
.pricing-card ul li {
  font-size: var(--fs-small);
  line-height: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.pricing-card.active ul li {
  color: var(--white-color);
}
.pricing-card .form-btn,
.pricing-card-two .form-btn {
  padding: 7px 14px;
}
.pricing-card.active .form-btn:hover,
.pricing-card-two.active .form-btn:hover {
  color: var(--primary-color);
  background-color: var(--white-color);
}
.pricing-card:hover {
  transform: translateY(-7px);
}
.pricing-card.active {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.pricing-card.active .package {
  background-color: rgba(var(--white-rgb), 0.07);
  color: var(--white-color);
}
.pricing-card.active h3 {
  color: var(--secondary-color);
}
.pricing-card.active h3 span {
  color: var(--white-color);
}
.pricing-card.active .btn-main {
  background-color: var(--white-color);
  color: var(--primary-color);
}
.pricing-card.active .btn-main:hover {
  background-color: var(--secondary-color);
  color: var(--black-color);
}
.pricing-card .popular {
  position: absolute;
  background-color: rgba(var(--secondary-rgb), 1);
  padding: 0px 10px;
  color: var(--black-color);
  top: -20px;
  right: 10%;
  font-size: 14px;
  border-radius: 4px;
}
.package-table img {
  width: 22px;
}
.package-table th {
  white-space: nowrap;
  border-bottom: 2px dashed var(--secondary-color);
}
.package-table td {
  padding: 1.25rem 0.5rem;
  border: 0px;
  min-width: 150px;
}
.package-table tr:nth-child(even) td {
  background-color: rgba(var(--black-rgb), 0.03);
}
.fixed-box-two {
  position: sticky;
  top: 85px;
  z-index: 2;
  border-bottom: 2px dashed var(--secondary-color);
  background-color: var(--white-color);
  padding-bottom: 30px;
}
.price-feature-card {
  text-align: center;
  background-color: var(--bg-light-yellow);
  border: 1px dashed var(--secondary-color);
  border-radius: 0px;
  margin-bottom: 15px;
  padding-bottom: 20px;
}
.price-feature-card h4 {
  font-family: var(--primary-bold-font);
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--secondary-color);
}
.price-feature-card .price {
  margin-top: 5px;
}
.price-feature-card .price h3 {
  margin: 0;
}
.price-feature-card .btn {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
}
.pricing-tab .common-table td {
  min-width: 250px;
  border-bottom: 0px;
  padding: 15px 5px;
}
.pricing-tab .common-table.table-center td {
  text-align: center;
  padding: 15px;
  border: 1px solid var(--border-color);
}
.pricing-tab .common-table.table-center td:first-child {
  text-align: start;
}
.pricing-tab .common-table.table-center img {
  width: 22px;
  height: auto;
}
.pricing-selection {
  padding: 30px;
  box-shadow: 0 0 20px 0 rgba(var(--black-rgb), 0.1);
  border: 0px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  border-top: 2px solid var(--secondary-color);
  justify-content: center;
}
.pricing-selection .form-select {
  max-width: 450px;
  padding: 15px;
  border-radius: 0px;
}
.feature-section {
  scroll-margin-top: 50px;
}
.pricing-card-two {
  box-shadow: 0 0 60px 0 rgba(var(--black-rgb), 0.1);
  border-radius: 10px;
  border: 0px;
  text-align: center;
  height: 100%;
  transition: all 0.5s;
}
.pricing-card-two .pricing-details {
  background: linear-gradient(90deg, var(--primary-color), #002d97) !important;
  border-radius: 10px;
  padding: 15px 10px;
  margin-bottom: 15px;
}
.pricing-card-two .pricing-details .package {
  font-size: 35px;
  color: var(--white-color);
  font-family: var(--primary-semibold-font);
  border-bottom: 2px dashed var(--secondary-color);
  display: block;
  padding-bottom: 15px;
  margin-bottom: 10px;
}
.pricing-card-two h4 {
  font-family: var(--primary-semibold-font);
  font-size: var(--fs-regular);
}
.pricing-card-two .price h3 {
  color: var(--secondary-color);
  font-family: var(--primary-bold-font);
  margin-bottom: 10px;
}
.pricing-card-two .price h3 span {
  color: var(--white-color);
  font-size: var(--fs-regular);
}
.pricing-card-two ul {
  text-align: start;
}
.pricing-card-two ul li {
  font-size: var(--fs-small);
  line-height: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.pricing-card-two.active ul li {
  color: var(--white-color);
}
.pricing-card-two .discount {
  color: var(--light-grey);
}
.pricing-card-two.active {
  position: relative;
  padding-top: 15px;
  color: var(--white-color);
  background: linear-gradient(90deg, var(--primary-color), #002d97) !important;
}
.pricing-card-two .popular {
  position: absolute;
  top: 10px;
  right: 0px;
  background-color: var(--secondary-color);
  border-radius: 4px 0px 0px 4px;
  padding: 0px 3px 0px 7px;
  font-size: 14px;
  color: var(--black-color);
}
.pricing-card-two.active .pricing-details {
  background-color: transparent;
  padding-top: 5px;
}
.pricing-card-two:hover {
  transform: translateY(-7px);
}
.pricing-card-two.active .common-list-five li::before {
  filter: brightness(0) invert(1);
}
.pricing-accordion .accordion-item {
  border: 0px;
  margin-bottom: 10px;
}
.pricing-accordion .accordion-button {
  background-color: var(--bg-light-yellow);
  box-shadow: none;
  padding: 20px;
  border-radius: 0px !important;
  font-family: var(--primary-bold-font);
  font-size: var(--fs-xl);
  border: 1px solid rgba(var(--secondary-rgb), 0.5);
}
.pricing-accordion .accordion-body {
  padding: 20px 0px;
}
.pricing-accordion .accordion-button::after {
  background-size: var(--fs-xsmall);
  background-image: url(https://cdn-icons-png.flaticon.com/512/3524/3524388.png);
}
.pricing-accordion .accordion-button:not(.collapsed)::after {
  transform: unset;
  background-image: url(https://cdn-icons-png.flaticon.com/512/1828/1828901.png);
}
.price-main-card {
  border: 1px dashed var(--secondary-color);
  border-radius: 0px;
  position: relative;
}
.price-main-card .plan-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 15px;
  flex-wrap: wrap;
  gap: 15px;
}
.price-main-card .plan-details h4 {
  font-size: var(--fs-26);
}
.price-main-card .plan-details h4,
.price-main-card .plan-details h3 {
  margin: 0px;
}
.price-main-card .plan-details h3 span {
  color: var(--black-color);
  font-size: 14px;
}
.price-main-card .plans {
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--light-grey);
  margin-bottom: 20px;
}
.price-main-card .plans h4 {
  color: var(--black-color);
  position: relative;
  display: inline-block;
  font-size: var(--fs-large);
  margin-bottom: 25px !important;
}
.price-main-card .plans h4::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -10px;
  width: 40%;
  height: 3px;
  border-radius: 4px;
  background-color: var(--secondary-color);
}
.price-main-card .plans h4::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 42%;
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 100%;
}
.price-main-card .card-body .plans:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.price-main-card .plans .plan-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.price-main-card .plans .plan-box p {
  margin-right: 35px;
}
.price-main-card .plans .plan-box p span {
  font-family: var(--primary-semibold-font);
  color: var(--primary-color);
  margin-right: 10px;
}
.price-main-card .plans .plan-box img {
  width: 22px;
  height: auto;
}
.plan-box table td {
  vertical-align: top;
  max-width: 260px;
}
.plan-box table td:not(:last-child) {
  padding-right: 12px;
}
.common-modal {
  border-radius: 0px;
  padding: 0px 20px 10px;
}
.common-modal .btn-close {
  opacity: 1;
}
.common-modal .modal-header {
  border-bottom: 1px dashed var(--secondary-color);
}
.common-modal .modal-header h3 {
  margin-bottom: 0px;
}
.common-modal .modal-footer {
  border-top: 1px dashed var(--secondary-color);
}
.common-modal .modal-body {
  max-height: 500px;
  overflow-y: auto;
  padding: 30px 15px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.common-modal .modal-body::-webkit-scrollbar {
  width: 7px;
}
.common-modal .modal-body::-webkit-scrollbar-track {
  background: var(--smoke-color);
  border-radius: 5px;
}
.common-modal .modal-body::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 5px;
}
.common-modal .card.plans {
  border: 0px;
  border-radius: 0px;
  height: 100%;
  position: relative;
  transition: all 0.5s;
  box-shadow: 0px 0px 60px 2px rgba(var(--black-rgb), 0.06);
}
.common-modal .card.plans:hover {
  transform: translateY(-7px);
}
.common-modal .card.plans h4 {
  font-size: var(--fs-xl);
  color: var(--primary-color);
  border-bottom: 2px dashed var(--secondary-color);
  padding-bottom: 15px;
}
.common-modal .card.plans .bg-img {
  position: absolute;
  bottom: 10px;
  right: 10px;
  opacity: 0.1;
  height: 80px;
  transition: all 0.5s;
}
.common-modal .card.plans:hover .bg-img {
  transform: rotateY(180deg);
}
.common-modal .card.plans .plan-box p {
  margin-bottom: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.common-modal .card.plans .plan-box span.title {
  font-family: var(--primary-semibold-font);
}
.common-modal .card.plans .plan-box .icon-img {
  width: 22px;
  height: auto;
}
.pricing-modal h3 span {
  font-size: var(--fs-small);
  color: var(--black-color);
}
.pricing-modal .main-detail {
  display: flex;
  gap: 10px;
  background-color: var(--bg-light-yellow);
  padding: 10px 20px;
  border-top: 2px solid var(--secondary-color);
  margin-bottom: 5px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.pricing-modal .modal-body {
  max-height: unset;
  overflow: unset;
  padding: 0px 10px;
}
.pricing-modal .modal-header h3 {
  margin: 0px;
  font-size: var(--fs-26);
}
.pricing-modal .main-detail h3 {
  margin-bottom: 0px;
}
.pricing-modal h5 {
  text-align: center;
  margin: 10px 0px 15px 0px;
}
/* -------------------- country flag -------------- */
.iti__flag {
  background-image: url(../img/flags.webp) !important;
}
