@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600&display=swap");

html {
  --primary-color: #ec1b1b;
  --secondary-color: #000;
  --ternary-color: #ec774b;
  --dark-color: #4e4f54;
  --text-color: #4e4f54;
  --light-color: #fff;
  --white-color: #fff;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 15px;
  letter-spacing: 0;
  color: var(--dark-color);
  overflow-x: hidden;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  text-rendering: optimizeLegibility;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  --text-opacity: 1;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: auto;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
}

a {
  color: var(--primary-color);
  transition: all 0.5s;
  text-decoration: none;
  outline: none;
  border: none;
}

a:hover,
a:active,
a:focus {
  color: var(--secondary-color);
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

button {
  border: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  transition: all 0.5s;
}

.overflow-hidden {
  overflow: hidden;
}

/* ---------------------------- Theme Heading CSS Start --------------------------- */
.main-heading {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.main-heading h2 {
  font-size: 24px;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .main-heading h2 {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .main-heading h2 {
    font-size: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .main-heading h2 {
    font-size: 22px;
  }
}

.main-heading p {
  margin-bottom: 0;
}

.main-heading.heading-dark h2 {
  color: var(--primary-color);
}

.main-heading.heading-dark p {
  color: var(--dark-color);
}

.main-heading.heading-light h2 {
  color: var(--light-color);
}

.main-heading.heading-light p {
  color: var(--light-color);
}

/* ---------------------------- Theme Heading CSS End --------------------------- */

/* ---------------------------- Theme Button Start ------------------------------------- */
.theme-btn a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 20px;
  min-width: 165px;
  border-radius: 3px;
  text-transform: capitalize;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .theme-btn a {
    padding: 8px 15px;
    min-width: 125px;
    font-size: 14px;
  }
}

.theme-btn.primary-btn a {
  color: var(--light-color) !important;
  border: 1px solid var(--primary-color) !important;
  background-color: var(--primary-color) !important;
}

.theme-btn.primary-btn a:hover,
.theme-btn.primary-btn a:focus,
.theme-btn.primary-btn a:active {
  color: var(--light-color) !important;
  border: 1px solid var(--secondary-color) !important;
  background-color: var(--secondary-color) !important;
}

.theme-btn.secondary-btn a {
  color: var(--light-color) !important;
  border: 1px solid var(--secondary-color) !important;
  background-color: var(--secondary-color) !important;
}

.theme-btn.secondary-btn a:hover,
.theme-btn.secondary-btn a:focus,
.theme-btn.secondary-btn a:active {
  color: var(--light-color) !important;
  border: 1px solid var(--primary-color) !important;
  background-color: var(--primary-color) !important;
}

.theme-btn.white-btn a {
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;
  background-color: var(--white-color) !important;
}

.theme-btn.white-btn a:hover,
.theme-btn.white-btn a:focus,
.theme-btn.white-btn a:active {
  color: var(--secondary-color) !important;
  border: 1px solid var(--secondary-color) !important;
  background-color: var(--white-color) !important;
}

/* ------------------------------------ Theme Button End ---------------------------------------- */

/* ------------------------------------- Page Banner CSS Start  ---------------------------------*/
.page-banner-section {
  padding-top: 125px !important;
  padding: 125px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  text-align: left;
}

.page-banner-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  z-index: -1;
}

@media (max-width: 767px) {
  .page-banner-section {
    padding-top: 60px !important;
    padding: 60px 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-banner-section {
    padding-top: 90px !important;
    padding: 90px 0;
  }
}

.page-banner-section h1 {
  font-size: 32px;
  color: var(--light-color);
}

@media (max-width: 767px) {
  .page-banner-section h1 {
    font-size: 20px;
  }
}

.page-banner-section ul {
  font-size: 0;
  padding: 0;
  margin: 0;
}

.page-banner-section ul li {
  color: var(--light-color);
  text-transform: capitalize;
  font-size: 16px;
}

.page-banner-section ul li a {
  color: var(--light-color);
  font-size: 16px;
  transition: all 0.5s;
  text-transform: capitalize;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .page-banner-section ul li a {
    font-size: 13px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-banner-section ul li a {
    font-size: 14px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-banner-section ul li a {
    font-size: 15px;
  }
}

.page-banner-section ul li:hover a {
  color: var(--light-color);
  opacity: 0.85;
  transition: all 0.5s;
}

/* ------------------------------------- Page Banner CSS End  ---------------------------------*/


/*---------------------------- Header CSS Start ------------------------- */
.site-header {
  background: #f9f9f9;
  box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 11;
  transition: all 0.5s;
}

@media (max-width: 991px) {
  .site-header .container {
    padding: 0;
  }
}

.site-header .header-top {
  background-color: var(--dark-color);
  padding: 5px 0;
  position: relative;
  z-index: 1;
}

.site-header .header-top .contact-info {
  text-align: right;
}

@media (max-width: 991px) {
  .site-header .header-top {
    display: none;
  }
}

@media (max-width: 991px) {
  .site-header .header-bottom {
    padding: 10px 0px;
  }
}

.site-header .navbar-brand {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.site-header .navbar-brand img {
  max-width: 140px;
  width: 100%;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .site-header .navbar-brand img {
    max-width: 150px;
  }
}

.site-header .navbar {
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
}

@media (max-width: 991px) {
  .site-header .navbar {
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .site-header .navbar .navbar-nav {
    margin: 0;
  }
}

.site-header .navbar .navbar-nav li {
  display: inline-block;
}

.site-header .navbar .navbar-nav li.dropdown:nth-last-child(2) .dropdown-menu,
.site-header .navbar .navbar-nav li.dropdown:last-child .dropdown-menu {
  left: auto;
  right: 0;
}

.site-header .navbar .navbar-nav li.dropdown.show a::after {
  transform: rotate(-180deg);
}

@media (max-width: 767px) {
  .site-header .navbar .navbar-nav li {
    display: block;
  }
}

.site-header .navbar .navbar-nav li a {
  text-transform: capitalize;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 35px;
  font-weight: 500;
  color: var(--dark-color);
  display: block;
  text-align: center;
  transition: all 0.5s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.site-header .navbar .navbar-nav li a:hover,
.site-header .navbar .navbar-nav li a:active,
.site-header .navbar .navbar-nav li a:focus {
  outline: 0;
  box-shadow: none;
  color: var(--light-color);
  background: var(--primary-color);
  transition: all 0.5s;
}

@media (max-width: 991px) {
  .site-header .navbar .navbar-nav li a {
    color: var(--dark-color);
    font-size: 16px;
    line-height: 26px !important;
    border-top: 1px solid #eee;
  }

  .site-header .navbar .navbar-nav li a:hover,
  .site-header .navbar .navbar-nav li a:active,
  .site-header .navbar .navbar-nav li a:focus {
    outline: 0 !important;
    box-shadow: none;
  }
}

@media (max-width: 991px) {
  .site-header .navbar .navbar-nav li:last-child a {
    border-bottom: 1px solid #eee;
  }
}

.site-header .navbar .navbar-toggler {
  background: transparent;
  border-radius: 0;
  outline: none;
  padding: 0;
  border: 0;
  box-shadow: none;
  margin: 0;
}

.site-header .navbar .navbar-toggler:focus {
  box-shadow: none;
}

.site-header .navbar .navbar-toggler .icon-bar {
  width: 22px;
  height: 2px;
  background-color: var(--primary-color);
  display: block;
  transition: all 0.5s;
  margin: 4px 0;
}

.site-header .navbar .navbar-toggler .top-bar {
  transform: rotate(-42deg);
  transform-origin: 90% 90%;
}

.site-header .navbar .navbar-toggler .middle-bar {
  opacity: 0;
}

.site-header .navbar .navbar-toggler .bottom-bar {
  transform: rotate(42deg);
  transform-origin: 90% 10%;
}

.site-header .navbar .navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}

.site-header .navbar .navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}

.site-header .navbar .navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}

.site-header .menu-main-menu-container {
  margin-left: auto;
}

.site-header .navbar-collapse {
  position: relative;
}

@media (max-width: 991px) {
  .site-header .navbar-collapse {
    position: absolute;
    top: 58px;
    left: -100%;
    padding: 0;
    width: 100%;
    text-align: center;
    overflow-y: scroll;
    height: calc(100vh - 58px);
    display: block;
    transition: all 0.5s;
    overflow-y: scroll;
  }

  .site-header .navbar-collapse.collapsing {
    height: calc(100vh - 58px);
    margin-right: 50%;
    display: block;
    transition: all 0.5s;
  }

  .site-header .navbar-collapse.show {
    left: 0;
    background: var(--light-color);
  }
}

@media(min-width:1200px) {
  #header .sub-menu {
    display: none
  }
}

#header .sub-menu.dropdown-menu {
  border: none;
  border-top: none;
  border-bottom: none;
  border-radius: 0;
  padding: 0;
  top: 45px;
  background-color: var(--white-color);
  min-width: 14rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-top: 0px;
}

#header .sub-menu li {
  cursor: pointer;
  display: block;
}

#header .navbar .navbar-nav li.dropdown:last-child .dropdown-menu {
  left: auto;
  right: 0;
}

#header .sub-menu li:last-child a,
#header .sub-menu li:last-child a:hover {
  border-bottom: 0px dotted transparent;
}

#header .sub-menu li a {
  background: #f6bd9a;
  color: var(--secondary-color);
  border-bottom: 1px dotted var(--secondary-color);
  width: 100%;
  font-size: 14px;
  line-height: 1;
  padding: 11px;
  border-radius: 0;
  display: inline-block;
  text-align: left;
  text-transform: capitalize;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
}

#header .sub-menu li a::before {
  background: transparent;
  height: 0;
}

#header .sub-menu li a:hover {
  background: #f9f9f9;
  color: var(--primary-color);
  border-bottom: 1px dotted var(--white-color);
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
}

@media (max-width: 1199px) {
  #header .sub-menu li a {
    text-align: center;
    border-bottom: 0;
    font-size: 13px;
    padding: 7px;
  }

  #header .sub-menu li a:hover {
    border-bottom: 0;
  }
}

.contact-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0;
}

.contact-info ul li {
  display: inline-block;
}

.contact-info ul li a {
  font-size: 13px;
  font-weight: 500;
  display: block;
  color: var(--light-color);
  margin-right: 15px;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}

.contact-info ul li a:hover {
  text-decoration: underline;
}

.contact-info ul li a img {
  margin-right: 5px;
  max-width: 20px;
}

.contact-info ul li:last-child a {
  margin-right: 0;
}

.contact-social ul {
  margin: 0;
  padding: 0;
  font-size: 0;
}

.contact-social ul li {
  display: inline-block;
  padding-left: 0px;
}

.contact-social ul li a {
  display: block;
  text-align: center;
  transition: all 0.5s;
}

.contact-social ul li a img {
  max-width: 30px;
}

ul.site-social-media li a.social-media-common-style {
  background: transparent !important;
}

/*---------------------------- Header CSS End ------------------------- */
.site-footer {
  position: relative;
  background-color: var(--dark-color);
  z-index: 1;
}

.site-footer .pre-footer {
  padding: 40px 0;
}

@media (max-width: 991px) {
  .site-footer .footer-menu {
    margin: 15px 0;
  }
}

.site-footer .footer-menu .widget-title {
  color: var(--white-color);
  text-transform: capitalize;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  z-index: 1;
  position: relative;
}

@media (max-width: 991px) {
  .site-footer .footer-menu .widget-title {
    margin-bottom: 8px;
    font-size: 16px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .site-footer .footer-menu .widget-title {
    font-size: 18px;
  }
}

.site-footer .footer-menu .widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 60px;
  background: var(--white-color);
  display: block;
  z-index: -1;
}

.site-footer .footer-menu.footer-content .textwidget p {
  color: var(--white-color);
  margin-bottom: 0;
  line-height: 1.9;
  font-size: 14px;
}

@media (max-width: 991px) {
  .site-footer .footer-menu.footer-content .textwidget p {
    font-size: 13px;
  }
}

.site-footer .footer-menu ul {
  padding-left: 15px;
}

.site-footer .footer-menu ul li {
  list-style: square;
  color: var(--white-color);
  padding: 3px 0;
}

.site-footer .footer-menu ul li:hover {
  color: var(--white-color);
}

.site-footer .footer-menu ul li a {
  font-size: 14px;
  position: relative;
  color: var(--white-color);
  display: inline-block;
  transition: all 0.5s;
  font-weight: 400;
}

@media (max-width: 991px) {
  .site-footer .footer-menu ul li a {
    font-size: 13px;
    text-transform: capitalize;
    padding: 3px 0;
  }
}

.site-footer .footer-menu ul li a::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--white-color);
  transition: all 0.5s;
  display: inline-block;
}

.site-footer .footer-menu ul li a:hover {
  opacity: 0.75;
  text-decoration: none;
  color: var(--primary-color);
}

.site-footer .footer-menu ul li a:hover::before {
  width: 100%;
}

.site-footer .footer-menu .contact-info ul {
  padding: 0;
}

.site-footer .footer-menu .contact-info ul li {
  display: block;
}

.site-footer .footer-menu .contact-info ul li a {
  margin-right: 0;
}

.site-footer .footer-menu .contact-social {
  margin-top: 15px;
}

.site-footer .footer-menu .contact-social ul {
  padding: 0;
}

.site-footer .footer-menu .contact-social ul li a {
  margin-right: 5px;
}

.site-footer .footer-menu .contact-social ul li a::before {
  height: 0;
}

.site-footer .copyright-footer {
  padding: 15px 0;
  background-color: var(--primary-color);
}

@media (max-width: 767px) {
  .site-footer .copyright-footer {
    text-align: center;
  }
}

.site-footer .copyright-footer .copyright-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .site-footer .copyright-footer .copyright-footer-inner {
    display: block;
  }
}

.site-footer .copyright-footer p {
  margin-bottom: 0;
  color: var(--light-color);
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .site-footer .copyright-footer p {
    margin-top: 25px;
  }
}

.site-footer .copyright-footer p a {
  color: var(--light-color);
  transition: all 0.5s;
}

.site-footer .copyright-footer p:hover a {
  color: var(--secondary-color);
  text-decoration: underline;
  transition: all 0.5s;
}

.site-footer .copyright-footer .footer-bottom-menu ul li {
  display: inline-block;
  margin-left: 5px;
}

.site-footer .copyright-footer .footer-bottom-menu ul li:first-child {
  margin-left: 0;
}

.site-footer .copyright-footer .footer-bottom-menu ul li a {
  color: var(--light-color);
  font-size: 14px;
  transition: all 0.5s;
}

.site-footer .copyright-footer .footer-bottom-menu ul li a:hover,
.site-footer .copyright-footer .footer-bottom-menu ul li a:focus,
.site-footer .copyright-footer .footer-bottom-menu ul li a:active {
  color: var(--secondary-color);
  text-decoration: underline;
}

.latest-news-wrapper {
  position: relative;
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
}

.latest-news-wrapper .latest-news-image {
  display: block;
  height: 200px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  z-index: 1;
}

.latest-news-wrapper .latest-news-image .latest-news-category {
  color: var(--light-color);
  background-color: var(--primary-color);
  display: inline-block;
  padding: 6px 10px;
  line-height: 1;
  font-size: 12px;
  text-align: center;
  border-radius: 0;
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 0px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
}

.latest-news-wrapper .latest-news-content {
  position: relative;
  padding: 15px 0 20px;
}

.latest-news-wrapper .latest-news-content::before,
.latest-news-wrapper .latest-news-content::after {
  position: absolute;
  content: "";
  bottom: 3px;
  left: 3px;
  height: 7px;
  width: 7px;
  background-color: var(--primary-color);
  transform: rotate(-45deg);
}

.latest-news-wrapper .latest-news-content:after {
  left: 17px;
}

.latest-news-wrapper .latest-news-content .latest-news-title {
  color: var(--dark-color);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
  min-height: 45px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .latest-news-wrapper .latest-news-content .latest-news-title {
    font-size: 16px;
  }
}

.latest-news-wrapper .latest-news-content .latest-news-title a {
  color: var(--dark-color);
  display: block;
}

.latest-news-wrapper .latest-news-content .latest-news-text {
  font-size: 15px;
  line-height: 1.45;
  padding-top: 6px;
  color: var(--dark-color);
  padding-bottom: 4px;
  margin-bottom: 0;
}

.latest-news-wrapper:hover .latest-news-content .latest-news-title a {
  color: var(--primary-color);
}

/* ------------------------------------- Page Scrolling CSS Start  ---------------------------------*/
.scrollToTop {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  bottom: 20px;
  display: block;
  height: 32px;
  width: 32px;
  opacity: 1;
  position: fixed;
  right: 20px;
  line-height: 30px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  z-index: 100;
  transition: all 0.5s;
}

.scrollToTop:hover,
.scrollToTop:focus,
.scrollToTop:active {
  background-color: var(--primary-color);
  color: var(--light-color);
  transition: all 0.5s;
}

/* ------------------------------------- Page Scrolling CSS End  ---------------------------------*/

/* ------------------------------------- Home Banner Slider CSS Start  ---------------------------------*/
.home-slider-section {
  position: relative;
  z-index: 1;
}

.home-slider-section .carousel-inner {
  overflow: unset !important;
}

.home-slider-section .carousel-fade {
  opacity: 1;
}

.home-slider-section .carousel-fade .carousel-item {
  top: 0;
  z-index: 1;
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0 !important;
  display: block !important;
  transition: opacity ease-in-out 1s;
}

.home-slider-section .carousel-fade .carousel-item:first-child {
  top: auto;
  position: relative;
}

.home-slider-section .carousel-fade .carousel-item.active {
  opacity: 1;
  z-index: 2;
  transition: opacity ease-in-out 1s;
}

.home-slider-section .carousel-fade .carousel-item h2 {
  animation-delay: 0.4s;
}

.home-slider-section .carousel-item {
  position: relative;
}

.home-slider-section .carousel-item .carousel-item-bg {
  height: 700px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .home-slider-section .carousel-item .carousel-item-bg {
    height: 400px;
  }
  
    .home-slider-section .home-slider-section-inner {
    	padding: 0 30px;
    }
}

.home-slider-section .carousel-item .carousel-item-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  z-index: -1;
}

.home-slider-section .carousel-item .carousel-item-bg h2 {
  padding-top: 150px;
  color: var(--light-color);
  font-size: 24px;
}

@media (max-width: 767px) {
  .home-slider-section .carousel-item .carousel-item-bg h2 {
    font-size: 20px;
    padding-top: 50px;
  }
}

.home-slider-section .carousel-item .carousel-item-bg p {
  color: var(--light-color);
  max-width: 425px;
  width: 100%;
  font-size: 16px;
  line-height: 1.75;
}

.home-slider-section .carousel-item .carousel-item-bg .theme-btn:hover a,
.home-slider-section .carousel-item .carousel-item-bg .theme-btn:focus a,
.home-slider-section .carousel-item .carousel-item-bg .theme-btn:active a {
  border-color: var(--light-color);
}

.home-slider-section .carousel-control-prev,
.home-slider-section .carousel-control-next {
  color: var(--dark-color);
  opacity: 1;
  width: 40px;
  z-index: 2;
}

.home-slider-section .carousel-control-prev .carousel-control-prev-icon,
.home-slider-section .carousel-control-prev .carousel-control-next-icon,
.home-slider-section .carousel-control-next .carousel-control-prev-icon,
.home-slider-section .carousel-control-next .carousel-control-next-icon {
  height: 40px;
  line-height: 37px;
  width: 40px;
  background-color: var(--primary-color);
  background-size: 50% 100%;
  background-repeat: no-repeat;
  border-radius: 0px;
  transition: all 0.5s;
  position: relative;
}

@media (max-width: 767px) {
  .home-slider-section .carousel-control-prev,
    .home-slider-section .carousel-control-next {
      width: 30px;
    }
}

.home-slider-section .carousel-control-prev .carousel-control-prev-icon::before,
.home-slider-section .carousel-control-prev .carousel-control-next-icon::before,
.home-slider-section .carousel-control-next .carousel-control-prev-icon::before,
.home-slider-section .carousel-control-next .carousel-control-next-icon::before {
  position: absolute;
  content: "";
  display: block;
  color: var(--light-color);
  left: 0;
  right: 0;
}

.home-slider-section .carousel-control-prev .carousel-control-prev-icon:hover,
.home-slider-section .carousel-control-prev .carousel-control-next-icon:hover,
.home-slider-section .carousel-control-next .carousel-control-prev-icon:hover,
.home-slider-section .carousel-control-next .carousel-control-next-icon:hover {
  background-color: var(--secondary-color);
}

.home-slider-section .carousel-control-prev .carousel-control-prev-icon,
.home-slider-section .carousel-control-next .carousel-control-prev-icon {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.home-slider-section .carousel-control-prev .carousel-control-next-icon,
.home-slider-section .carousel-control-next .carousel-control-next-icon {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.page-slider .carousel-indicators {
  bottom: -35px;
  padding: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.page-slider .carousel-indicators button {
  width: 10px;
  height: 10px;
  padding: 0;
  margin-right: 5px;
  margin-left: 5px;
  background-color: var(--dark-color);
  border-radius: 50%;
}

/* ------------------------------------- Home Banner Slider CSS End  ---------------------------------*/

.home-cta-section {
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
  position: relative;
}

@media (max-width: 767px) {
  .home-cta-section {
    border-bottom: 0px;
  }
}

.home-cta-section .vc_col-sm-2 {
  border-right: 1px solid #ddd;
}

@media (max-width: 767px) {
  .home-cta-section .vc_col-sm-2 {
    border-bottom: 1px solid #ddd;
  }

  .home-cta-wrapper.wpb_column.vc_column_container.vc_col-sm-2 {
    width: 50%;
  }
}

.home-cta-section .vc_col-sm-2:last-child {
  border-right: 0px solid #ddd;
}

.home-cta-section .home-cta-wrapper {
  display: block;
  position: relative;
  text-align: center;
  padding: 30px 15px;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .home-cta-section .home-cta-wrapper {
    padding: 20px 0;
  }
}

.home-cta-section .home-cta-wrapper .home-cta-wrapper-img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  box-shadow: 0 8px 24px #dddcdc;
  line-height: 80px;
  border-radius: 10px;
  background-color: var(--light-color);
}

.home-cta-section .home-cta-wrapper .home-cta-wrapper-img img {
  max-width: 45px;
  padding-top: 20px;
}

.home-cta-section .home-cta-wrapper h2 {
  color: var(--dark-color);
  font-size: 16px;
  padding-top: 20px;
}

.home-cta-section .home-cta-wrapper h2 a {
  color: var(--dark-color);
  display: block;
}

@media (max-width: 767px) {
  .home-cta-section .home-cta-wrapper h2 {
    font-size: 13px;
  }
}

.home-cta-section .home-cta-wrapper:hover h2 a {
  color: var(--primary-color);
}

.home-contactform-section {
  position: relative;
  padding-bottom: 0;
  padding-top: 0 !important;
  overflow: unset !important;
}

.home-contactform-section .home-contactform-inner.container {
  padding: 0;
}

.home-contactform-section .home-contactform-inner {
  top: -125px;
  background-color: var(--light-color);
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(31, 31, 31, 0.1);
  position: relative;
  margin: 0 auto !important;
  border-bottom: 5px;
  z-index: 2;
}

.home-contactform-section .home-contactform-inner .main-heading {
  margin: 0;
  padding: 30px 0px 0;
}

.home-contactform-section .home-contactform-inner .theme-contact-form {
  padding: 20px 15px 40px;
  max-width: 100%;
  background-color: var(--light-color);
}

.home-contactform-section .home-contactform-inner .theme-contact-form.theme-contact-wrap {
  padding: 0;
  max-width: 100%;
  background-color: var(--light-color);
}

.home-contactform-section .home-contactform-inner .theme-contact-form.theme-contact-wrap>.vc_column-inner {
  background: var(--dark-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  position: relative;
}

.home-contactform-section .home-contactform-inner .contact-info-wrapper>.vc_column_container>.vc_column-inner>.wpb_wrapper {
  display: flex;
  align-items: center;
}

.home-contactform-section .home-contactform-inner .contact-info-wrapper {
  margin-top: 25px;
  margin-left: 0px;
}

.home-contactform-section .home-contactform-inner .contact-info-wrapper a {
  font-size: 15px;
  color: var(--light-color);
  word-break: break-word;
}

.home-contactform-section .home-contactform-inner .contact-info-wrapper:hover a {
  color: var(--primary-color);
  text-decoration: underline;
}

.home-contactform-section .home-contactform-inner .contact-info-wrapper .contact-info-image {
  margin-right: 15px;
  flex-shrink:0;
}

.home-contactform-section .home-contactform-inner .contact-info-wrapper img {
  width: 35px;
}

.home-contactform-section .home-contactform-inner .contact-social-wrapper {
  margin-top: 40px;
  text-align: center;
}

.home-contactform-section .home-contactform-inner .contact-social-wrapper .contact-social-image {
  display: inline-block;
  margin: 0 5px;
}

.home-contactform-section .home-contactform-inner .contact-social-wrapper img {
  max-width: 50px;
}

.home-contactform-section .home-contactform-inner .theme-contact-form label {
  display: none;
}

.home-contactform-section .home-contactform-inner .theme-contact-form.theme-contact-wrap .motor-company {
  position: absolute;
  bottom: 0;
  color: var(--light-color);
  font-size: 55px;
  font-weight: 600;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  opacity: 0.2;
  line-height: 1;
}

.home-vehicle-section {
  position: relative;
  padding: 75px 0;
  padding-top: 75px !important;
  z-index: 1;
}

@media (max-width: 767px) {
  .home-vehicle-section {
    background-color: #f9f9f9;
    padding: 50px 0;
    padding-top: 50px !important;
  }
  
  .home-contactform-section .home-contactform-inner .theme-contact-form.theme-contact-wrap .motor-company {
      font-size:30px;
  }
  
  .theme-contact-form.theme-contact-wrap.wpb_column.vc_column_container.vc_col-sm-5 > .vc_column-inner {
    	padding-bottom: 65px;
    }
}

.home-vehicle-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/explore-products-bg.png");
  background-position: 100% 96%;
  background-size: 100% 43%;
  background-repeat: no-repeat;
  display: block;
  z-index: -1;
}

@media (max-width: 767px) {
  .home-vehicle-section::after {
    background-image: none;
  }
}

.home-vehicle-section .theme-sectionTabPane ul.nav {
  background-color: transparent;
  margin-bottom: 50px;
  border-bottom: 0;
}

@media (max-width: 767px) {
  .home-vehicle-section .theme-sectionTabPane ul.nav li.nav-item {
    min-width: unset;
  }
}

.home-vehicle-section .theme-sectionTabPane ul.nav li.nav-item a.nav-link {
  background-color: transparent;
  font-size: 17px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .home-vehicle-section .theme-sectionTabPane ul.nav li.nav-item a.nav-link span {
    display: none;
  }
}

@media (max-width: 767px) {
  .home-vehicle-section .theme-sectionTabPane ul.nav li.nav-item a.nav-link {
    font-size: 13px;
    font-weight: 500;
    padding: 10px 0;
  }
}

.home-vehicle-section .theme-sectionTabPane ul.nav li.nav-item a.nav-link.active {
  background-color: transparent;
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}

.home-vehicle-section .home-vehicle-wrapper {
  position: relative;
  text-align: center;
  transition: all 0.5s;
  display: block;
}

.home-vehicle-section .home-vehicle-wrapper h3 {
  margin: 0;
  padding-top: 20px;
  font-size: 20px;
  color: var(--dark-color);
}

@media (max-width: 767px) {
  .home-vehicle-section .home-vehicle-wrapper h3 {
    padding-top: 10px;
    font-size: 15px;
    padding-bottom: 20px;
  }
}

.home-vehicle-section .home-vehicle-wrapper:hover h3 {
  color: var(--primary-color);
}

.home-gallery-section {
  position: relative;
}

.home-gallery-wrapper {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  border: 2px solid var(--light-color);
  z-index: 1;
  overflow: hidden;
}

.home-gallery-wrapper.big-image {
  height: 500px;
}

@media (max-width: 767px) {
  .home-gallery-wrapper.big-image {
    height: 225px;
  }
}

.home-gallery-wrapper.small-image {
  height: 250px;
}

@media (max-width: 767px) {
  .home-gallery-wrapper.small-image {
    height: 225px;
  }
}

.home-gallery-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: block;
  z-index: -1;
}

.home-blog-section {
  position: relative;
  padding: 75px 0;
  padding-top: 75px !important;
}

@media (max-width: 767px) {
  .home-blog-section {
    padding: 50px 0;
    padding-top: 50px !important;
  }
}

.home-blog-section .theme-sectionTabPane ul.nav {
  background-color: transparent;
  margin-bottom: 30px;
  border-bottom: 0;
}

@media (max-width: 767px) {
  .home-blog-section .theme-sectionTabPane ul.nav li.nav-item {
    min-width: 70px;
  }
}

.home-blog-section .theme-sectionTabPane ul.nav li.nav-item a.nav-link {
  background-color: transparent;
  font-size: 17px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .home-blog-section .theme-sectionTabPane ul.nav li.nav-item a.nav-link {
    font-size: 13px;
    font-weight: 500;
    padding: 10px 0;
  }
}

.home-blog-section .theme-sectionTabPane ul.nav li.nav-item a.nav-link.active {
  background-color: transparent;
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}

.home-blog-section .blog-wrapper {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  width: 100%;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.home-blog-section .blog-wrapper.big-blog {
  height: 620px;
}

@media (max-width: 767px) {
  .home-blog-section .blog-wrapper.big-blog {
    height: 250px;
  }
}

.home-blog-section .blog-wrapper.small-blog {
  height: 300px;
}

@media (max-width: 767px) {
  .home-blog-section .blog-wrapper.small-blog {
    height: 250px;
  }
}

.home-blog-section .blog-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.75);
}

.home-blog-section .blog-wrapper .blog-wrapper-linking {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  font-size: 0;
  z-index: 2;
}

.home-blog-section .blog-wrapper .blog-wrapper-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
}

.home-blog-section .blog-wrapper .blog-wrapper-content h2 {
  color: var(--light-color);
  font-size: 22px;
  margin: 0;
  padding-bottom: 10px;
}

.home-blog-section .blog-wrapper .blog-wrapper-content p {
  color: var(--light-color);
  margin: 0;
}

@media (max-width: 767px) {
  .home-blog-section .blog-wrapper .blog-wrapper-content p {
    display: none;
  }
  
  .home-blog-section .blog-wrapper .blog-wrapper-content h2 {
    	font-size: 18px;
    	margin: 0;
    	padding-bottom: 0;
    }
}

/* ------------------------------------- About Us Section CSS Start  ---------------------------------*/
.about-section {
  padding: 75px 0 0;
  padding-top: 75px !important;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .about-section {
    padding: 50px 0 0;
    padding-top: 50px !important;
  }
}

.about-section .main-heading h2 {
  color: var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.about-section .main-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  z-index: -1;
  background-color: var(--primary-color);
  width: 50px;
  height: 2px;
}

.about-section .main-heading p {
  padding-bottom: 15px;
}

.about-section .about-school-img {
  border-radius: 5px;
  position: relative;
}

.about-section .about-school-img img {
  border-radius: 5px;
}

@media (max-width: 767px) {
  .about-section .about-school-img {
    margin-bottom: 25px;
  }
}

/* ------------------------------------- About Us CSS End  ---------------------------------*/

/* ------------------------------------  Contact Info Section CSS Start  ---------------------------------*/
.general-contact-section {
  padding: 0px;
  padding-top: 0px !important;
  position: relative;
}

.general-contact-section .main-heading {
  margin-bottom: 0;
}

.general-contact-section .main-heading h2 {
  padding: 0;
  min-height: 60px;
}

.general-contact-section .general-contact-box {
  padding: 50px;
  height: 100%;
}

@media (max-width: 767px) {
  .general-contact-section .general-contact-box {
    padding: 30px;
  }
}

.general-contact-section .general-contact-box.general-address {
  background-color: var(--ternary-color);
}

.general-contact-section .general-contact-box.general-mobile {
  background-color: var(--primary-color);
}

.general-contact-section .general-contact-box.general-mail {
  background-color: var(--secondary-color);
}

.general-contact-section .general-contact-box.general-review {
  background-color: var(--dark-color);
}

.general-contact-section .general-contact-box .contact-box-text p {
  color: var(--light-color);
  font-size: 15px;
  padding-top: 25px;
  padding-bottom: 5px;
  font-weight: 600;
}

.general-contact-section .general-contact-box .contact-box-link p a {
  font-size: 14px;
  color: var(--light-color);
  display: inline-block;
  text-decoration: underline;
  padding-top: 5px;
  min-height: 45px;
}

.general-map-section {
  overflow: unset !important;
  z-index: 1;
}

.general-map-section iframe {
  width: 100%;
  height: 500px;
}

@media (max-width: 767px) {
  .general-map-section iframe {
    width: 100%;
    height: 300px;
  }

  .general-contact-section .main-heading h2 {
    min-height: auto;
  }
}

/* ------------------------------------  Contact Info Section CSS End  ---------------------------------*/

/* ------------------------------------  Gallery Section CSS Start  ---------------------------------*/
.theme-gallery-section {
  padding: 0;
  padding-top: 0px !important;
  position: relative;
}

.theme-gallery-section .theme-gallery-wrapper {
  display: block;
  height: 225px;
  width: 100%;
  background-color: #f9f9f9;
  margin: 0 auto;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  z-index: 1;
}

.theme-gallery-section .theme-gallery-wrapper img {
  height: auto;
  max-height: 100%;
  width: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition: all 0.5s;
}

.theme-gallery-section .theme-gallery-wrapper:hover img {
  transform: scale(1.05);
}

/* ------------------------------------  Gallery Section CSS End  ---------------------------------*/

/* ------------------------------------  Home News Section CSS Start  ---------------------------------*/
.home-news-section {
  background-color: var(--light-color);
  padding: 75px 0;
  padding-top: 75px !important;
  position: relative;
}

/* ------------------------------------  Home News Section CSS End  ---------------------------------*/

/* ------------------------------------  Home Offer Section CSS Start  ---------------------------------*/
.home-offer-section {
  background-color: var(--light-color);
  padding: 50px 0;
  padding-top: 50px !important;
  position: relative;
}

.home-offer-section .home-offer-wrapper {
  margin-bottom: 15px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 275px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  z-index: 1;
  box-shadow: 0 28px 16px -26px rgba(0, 0, 0, 0.75);
  transition: all 0.5s;
}

.home-offer-section .home-offer-wrapper::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.5s;
}

.home-offer-section .home-offer-wrapper h2 {
  color: var(--white-color);
  text-transform: capitalize;
  font-size: 32px;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .home-offer-section .home-offer-wrapper h2 {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .home-offer-section .home-offer-wrapper h2 {
    font-size: 22px;
  }
}

.home-offer-section .home-offer-wrapper .home-offer-content {
  padding: 25px 15px 30px;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.5s;
}

.home-offer-section .home-offer-wrapper .home-offer-content p {
  color: var(--white-color);
}

.home-offer-section .home-offer-wrapper:hover h2 {
  display: none;
  transition: all 0.5s;
}

.home-offer-section .home-offer-wrapper:hover .home-offer-content {
  transform: scale(1);
  opacity: 1;
}

/* ------------------------------------  Home Offer Section CSS End  ---------------------------------*/

/* ------------------------------------  Dealer About Us Section CSS Start  ---------------------------------*/
.dealer-aboutus-section {
  padding: 75px 0;
  padding-top: 75px !important;
  background-color: #fff;
  position: relative;
}

.dealer-aboutus-section .main-heading {
  position: relative;
  max-width: 1250px;
  width: 100%;
  margin: 0 auto !important;
  padding: 0 15px;
}

.dealer-aboutus-section .main-heading p {
  margin-bottom: 10px;
}

.dealer-aboutus-section .main-heading ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.dealer-aboutus-section .main-heading ul li {
  list-style: square;
  padding-bottom: 10px;
}

/* ------------------------------------  Dealer About Us Section CSS End  ---------------------------------*/

/* ------------------------------------  Our Products Section CSS Start  ---------------------------------*/
.our-products-section {
  padding-bottom: 75px;
  padding-top: 0 !important;
  position: relative;
}

.our-products-section .product-list-wrapper {
  background-color: var(--light-color);
  border: 1px solid #ddd;
  position: relative;
  z-index: 1;
  box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.07);
}

@media (max-width: 767px) {
  .our-products-section .product-list-wrapper {
    margin-bottom: 20px;
  }
}

.our-products-section .product-list-wrapper .product-list-img {
  background-color: #f9f9f9;
  display: block;
  height: 200px;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}

.our-products-section .product-list-wrapper .product-list-img img {
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.our-products-section .product-list-wrapper .product-list-content {
  padding: 20px;
}

.our-products-section .product-list-wrapper .product-list-content h2 a {
  color: var(--dark-color);
  font-size: 20px;
  display: block;
  margin-bottom: 0;
}

.our-products-section .product-list-wrapper .product-list-content p {
  font-size: 16px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

/* ------------------------------------  Our Products Section CSS End  ---------------------------------*/
.cta-testimonial-section {
  padding-top: 0 !important;
  padding-bottom: 75px;
  position: relative;
}

.cta-testimonial-section .theme-contact-form {
  padding: 15px 20px;
}

.cta-testimonial-section .theme-review-wrapper {
  position: relative;
  padding: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 10px;
  margin-bottom: 15px;
  margin-top: 20px;
  border: 1px solid #eee;
}

.cta-testimonial-section .theme-review-wrapper h2 {
  font-size: 22px;
  margin: 0;
}

.cta-testimonial-section .theme-review-wrapper p {
  margin-bottom: 0;
}

.cta-testimonial-section .theme-review-wrapper .theme-review-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.cta-testimonial-section .theme-review-wrapper .theme-review-img {
  display: block;
  margin-right: 25px;
  height: 50px;
  width: 50px;
  line-height: 48px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  text-align: center;
}

/*-------------------------------- About Page Section CSS Start -------------------- */
.about-section.about-page {
  padding: 50px 0 60px;
}

.about-section.about-page .about-school-img {
  margin-bottom: 0;
}

.about-section .portfolio-wrapper {
  background-color: var(--light-color);
  margin-bottom: 25px;
  box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
}

.about-section .portfolio-wrapper h3 {
  background-color: #f9f9f9;
  font-size: 20px;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.about-section .portfolio-wrapper .portfolio-wrapper-content {
  margin: 0;
  padding: 15px;
}

.about-section .portfolio-wrapper .portfolio-wrapper-content p {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  padding-left: 20px;
}

.about-section .portfolio-wrapper .portfolio-wrapper-content p::before {
  position: absolute;
  content: "";
  bottom: 8px;
  left: 5px;
  width: 6px;
  height: 6px;
  background-color: var(--secondary-color);
  transition: all 0.5s;
  display: block;
  z-index: -1;
  border-radius: 50%;
}

.vision-mission-section {
  padding-top: 70px !important;
  padding: 70px 0;
  position: relative;
  background-color: #f9f9f9;
}

.vision-mission-section .vision-mission-section-row {
  position: relative;
  max-width: 1250px;
  width: 100%;
  margin: 0 auto !important;
  padding: 0 15px;
}

.vision-mission-wrapper {
  margin-top: 50px;
}

.vision-mission-wrapper img {
  max-width: 60px !important;
  width: 100%;
  margin: 0 auto;
}

.vision-mission-section .main-heading h2 {
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.vision-mission-section p {
  margin-bottom: 10px;
}

.vision-mission-section p:last-child {
  margin-bottom: 0;
}

.vision-mission-section ul {
  padding-left: 20px;
}

.vision-mission-section ul li {
  list-style: square;
  padding-bottom: 10px;
}

.book-appointment-section {
  padding: 30px 0;
  background-color: #f9f9f9;
  position: relative;
}

.book-appointment-section .book-appointment-section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.book-appointment-section .book-appointment-section-inner .theme-btn {
  margin: 0;
}

.book-appointment-section .book-appointment-section-inner .theme-btn a {
  border-radius: 35px;
}

@media (max-width: 767px) {
  .book-appointment-section .book-appointment-section-inner {
    display: block;
  }

  .book-appointment-section .book-appointment-section-inner p {
    margin-bottom: 25px;
  }
}

.our-team-section {
  background-color: #f9f9f9;
  position: relative;
  padding: 70px 0;
  padding-top: 70px !important;
}

.our-team-section .main-heading,
.our-team-section .our-team-section-row {
  position: relative;
  max-width: 1250px;
  width: 100%;
  margin: 0 auto !important;
  padding: 0 15px;
}

.our-team-section .singleTeamMember-wrapper>.vc_column-inner {
  margin-top: 35px;
  padding: 0;
  vertical-align: middle;
  background: var(--light-color);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  transition: all 0.5s;
  transition-property: transform;
}

@media (max-width: 767px) {
  .our-team-section .singleTeamMember-wrapper>.vc_column-inner {
    margin-top: 15px;
  }
}

.our-team-section .singleTeamMember-wrapper>.vc_column-inner::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  transition: all 0.5s;
  transition-property: transform, opacity;
}

.our-team-section .singleTeamMember-wrapper:hover>.vc_column-inner::before,
.our-team-section .singleTeamMember-wrapper:active>.vc_column-inner::before,
.our-team-section .singleTeamMember-wrapper:focus>.vc_column-inner::before {
  opacity: 1;
  transform: translateY(5px);
}

.our-team-section .singleTeamMember-wrapper .singleTeamMember-img {
  position: relative;
  overflow: hidden;
  height: 225px;
  width: 100%;
}

.our-team-section .singleTeamMember-wrapper .singleTeamMember-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.our-team-section .singleTeamMember-wrapper .singleTeamMember-title {
  border-top: 2px solid var(--primary-color);
  background: var(--light-color);
  padding: 15px;
  text-align: center;
  position: relative;
}

.our-team-section .singleTeamMember-wrapper .singleTeamMember-title h3 {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.our-team-section .singleTeamMember-wrapper .singleTeamMember-title p {
  color: var(--secondary-color);
  font-size: 13px;
  padding-top: 5px;
  margin: 0;
}

.our-team-section .singleTeamMember-wrapper .singleTeamMember-social {
  position: absolute;
  left: 0px;
  right: 0;
  background: var(--primary-color);
  padding: 10px 0;
  bottom: -50px;
  opacity: 0;
  vertical-align: middle;
  color: var(--light-color);
  text-align: center;
  transition: all 0.5s;
}

.our-team-section .singleTeamMember-wrapper .singleTeamMember-social ul li {
  display: inline-block;
  list-style: none;
}

.our-team-section .singleTeamMember-wrapper:hover .singleTeamMember-social,
.our-team-section .singleTeamMember-wrapper:active .singleTeamMember-social,
.our-team-section .singleTeamMember-wrapper:focus .singleTeamMember-social {
  bottom: 0px;
  opacity: 1;
  transition: all 0.5s;
}

.our-promoters-section {
  padding: 70px 0;
  position: relative;
}

@media (max-width: 767px) {
  .our-promoters-section {
    padding: 50px 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.our-promoters-section .our-promoters-section-inner {
  position: relative;
  max-width: 1250px;
  width: 100%;
  margin: 0 auto !important;
  margin-bottom: 50px !important;
  padding: 0 15px;
}

.our-promoters-section .our-promoters-section-inner {
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.our-promoters-section .our-promoters-section-inner.section2 {
  margin-top: 50px;
}

.our-promoters-section .our-promoters-section-inner .main-heading {
  margin-bottom: 0;
}

.our-promoters-section .our-promoters-section-inner .main-heading>.vc_column-inner {
  margin-bottom: 0;
  padding: 20px 30px;
}

@media (max-width: 767px) {
  .our-promoters-section .our-promoters-section-inner .main-heading>.vc_column-inner {
    padding: 0px;
  }
}

@media (max-width: 767px) {
  .our-promoters-section .our-promoters-section-inner .main-heading {
    padding: 15px 0 25px;
  }
}

.our-promoters-section .our-promoters-section-inner .main-heading h2 {
  text-align: left;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.our-promoters-section .our-promoters-section-inner .main-heading p {
  margin-bottom: 0;
  max-width: 725px;
  width: 100%;
  padding-top: 0;
  margin-left: 0;
}

/*-------------------------------- About Page Section CSS Start -------------------- */
/*-------------------------------- Contact Page Section CSS Start -------------------- */
.contact-page-section {
  padding: 60px 0;
  padding-top: 60px !important;
  position: relative;
}

.contact-page-section .main-heading p {
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  padding-top: 10px;
}

.theme-contact-form {
  padding: 30px 45px 45px;
  background-color: #f9f9f9;
  border-radius: 5px;
  max-width: 767px;
  width: 100%;
  margin: 0 auto !important;
}

@media (max-width: 767px) {
  .theme-contact-form {
    padding: 20px 30px 30px;
  }
}

.theme-contact-form .form-group {
  margin-bottom: 20px;
}

.theme-contact-form .form-group p {
  margin-bottom: 0px;
}

.theme-contact-form .form-group label {
  margin-bottom: 3px;
  font-weight: 600;
}

.theme-contact-form .form-control {
  color: var(--dark-color);
  border: 1px solid #ddd;
}

.theme-contact-form .form-control:focus {
  color: var(--dark-color);
  background-color: var(--white-color);
  border-color: #ddd;
  outline: 0;
  box-shadow: none;
}

.theme-contact-form .theme-submit-btn {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  min-width: 165px;
  border-radius: 0.25rem;
  text-transform: capitalize;
  text-align: center;
  margin-top: 10px;
  color: var(--light-color);
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  z-index: 1;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .theme-contact-form .theme-submit-btn {
    padding: 8px 15px;
    min-width: 125px;
    font-size: 14px;
  }
}

.theme-contact-form .theme-submit-btn:hover,
.theme-contact-form .theme-submit-btn:focus,
.theme-contact-form .theme-submit-btn:active {
  color: var(--light-color);
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
}

/*-------------------------------- Contact Page Section CSS End -------------------- */
/*-------------------------------- Gallery Section CSS Start -------------------- */
.school-gallery-section {
  padding: 60px 0;
  padding-top: 60px !important;
  position: relative;
}

.school-gallery-section .gallery-list-wrapper {
  border-radius: 5px;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 10px;
  background-color: var(--light-color);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.5s;
}

.school-gallery-section .gallery-list-wrapper .gallery-bg {
  height: 300px;
  width: 100%;
  border-radius: 5px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #f9f9f9;
  position: relative;
  transition: all 0.5s;
}

.theme-sectionTabPane ul.nav {
  border: 0;
  border-bottom: 1px solid var(--dark-color);
  background-color: var(--light-color);
  border-radius: 0px;
  margin-bottom: 50px;
  overflow: hidden;
}

.theme-sectionTabPane ul.nav li.nav-item {
  flex: 1;
  text-align: center;
  min-width: 95px;
}

.theme-sectionTabPane ul.nav li.nav-item a.nav-link {
  border-radius: 0;
  padding: 15px 15px;
  text-align: center;
  text-transform: capitalize;
  background-color: #f9f9f9;
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .theme-sectionTabPane ul.nav li.nav-item a.nav-link {
    font-size: 12px;
    padding: 15px 5px;
  }
}

@media (min-width: 1601px) {
  .theme-sectionTabPane ul.nav li.nav-item a.nav-link {
    font-size: 13px;
  }
}

@media (min-width: 1921px) {
  .theme-sectionTabPane ul.nav li.nav-item a.nav-link {
    font-size: 13px;
  }
}

.theme-sectionTabPane ul.nav li.nav-item a.nav-link:hover,
.theme-sectionTabPane ul.nav li.nav-item a.nav-link:focus {
  background-color: transparent;
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  transition: all 0.5s;
}

.theme-sectionTabPane ul.nav li.nav-item a.nav-link.active {
  background-color: var(--primary-color);
  color: var(--light-color);
  border-bottom: 1px solid var(--primary-color);
  transition: all 0.5s;
}

/*-------------------------------- Gallery Section CSS End -------------------- */
/*------------------------------- News Category List Section CSS Start -------------------- */
.blogpage-heading {
  margin-bottom: 0;
}

.blogpage-heading.heading-seperator {
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
}

.blogpage-heading.heading-seperator::before {
  content: "";
  position: absolute;
  top: 20px;
  background-color: var(--dark-color);
  width: 100%;
  left: 0;
  height: 5px;
  border-radius: 2px;
  z-index: -1;
}

.blogpage-heading h1 {
  font-size: 2rem;
  color: var(--dark-color);
}

@media (max-width: 767px) {
  .blogpage-heading h1 {
    font-size: 1.5rem;
  }
}

.blogpage-heading h2 {
  font-size: 1.75rem;
  color: var(--dark-color);
  background-color: var(--white-color);
  display: inline-block;
  padding-right: 15px;
}

@media (max-width: 767px) {
  .blogpage-heading h2 {
    font-size: 1.35rem;
  }
}

.blogpage-heading p {
  color: var(--dark-color);
  font-size: 15px;
  margin-top: 5px;
  margin-bottom: 15px;
  max-width: 750px;
  width: 100%;
}

.blogpage-heading .blogpage-heading-linking {
  display: block;
  color: #0d6fad;
  font-size: 15px;
  transition: all 0.5s;
}

.blogpage-heading .blogpage-heading-linking:hover {
  text-decoration: underline;
}

.news-category-section {
  padding: 35px 0;
  position: relative;
}

@media (max-width: 767px) {
  .news-category-section {
    padding-top: 25px;
  }
}

.news-category-section ul.nav {
  border-bottom: 1px solid #ddd;
  padding-bottom: 25px;
}

.news-category-section ul.nav li {
  display: inline-block;
}

.news-category-section ul.nav li a {
  padding: 9px 18px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid var(--dark-color);
  color: var(--dark-color);
  text-align: center;
  border-radius: 30px;
  display: inline-block;
  margin-right: 5px;
  transition: all 0.5s;
  min-width: 80px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .news-category-section ul.nav li a {
    margin: 5px 0;
    margin-right: 5px;
  }
}

.news-category-section ul.nav li a:hover,
.news-category-section ul.nav li a:focus,
.news-category-section ul.nav li a:active {
  border: 1px solid #eee;
  background-color: #eee;
  color: var(--dark-color);
}

.news-category-section ul.nav li a.active {
  border: 1px solid #eee;
  background-color: #eee;
  color: var(--dark-color);
}

.news-category-section ul.nav li:last-child a {
  margin-right: 0px;
}

/*------------------------------- News Category List Section CSS End -------------------- */
/*------------------------------- Latest Post Section CSS Start -------------------- */
.latestpost-section {
  padding: 0 0 50px;
  position: relative;
}

.latestpost-section .first-post-wrapper {
  position: relative;
}

.latestpost-section .first-post-wrapper .first-post-img {
  position: relative;
  height: 450px;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .latestpost-section .first-post-wrapper .first-post-img {
    height: 225px;
  }
}

.latestpost-section .first-post-wrapper .first-post-img img {
  max-height: 100%;
  height: 100%;
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto !important;
  border-radius: 5px;
  transition: all 0.5s;
}

.latestpost-section .first-post-wrapper .first-post-content {
  padding: 15px 0;
  position: relative;
}

.latestpost-section .first-post-wrapper .first-post-content .first-post-date {
  position: absolute;
  left: 0;
  top: -23px;
  background-color: var(--dark-color);
  color: var(--white-color);
  font-size: 13px;
  line-height: 1;
  padding: 5px;
}

.latestpost-section .first-post-wrapper .first-post-content .first-post-title a {
  display: block;
  color: var(--dark-color);
  font-size: 18px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .latestpost-section .first-post-wrapper .first-post-content .first-post-title a {
    font-size: 16px;
  }
}

.latestpost-section .first-post-wrapper .first-post-content .first-post-text {
  color: var(--dark-color);
  font-size: 15px;
  margin-bottom: 0;
}

.latestpost-section .first-post-wrapper:hover .first-post-content .first-post-title a {
  color: var(--primary-color);
}

.latestpost-section .all-post-wrapper {
  display: flex;
  position: relative;
}

.latestpost-section .all-post-wrapper:not(:last-child) {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.latestpost-section .all-post-wrapper .all-post-image {
  display: block;
  height: 75px;
  width: 160px;
  max-width: 40%;
  margin-right: 18px;
  flex-shrink: 0;
  position: relative;
  align-self: flex-start;
  overflow: hidden;
  border-radius: 5px;
}

.latestpost-section .all-post-wrapper .all-post-image img {
  max-height: 100%;
  height: 100%;
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto !important;
  transition: all 0.5s;
}

.latestpost-section .all-post-wrapper .all-post-title {
  color: var(--dark-color);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 10px;
  cursor: pointer;
}

.latestpost-section .all-post-wrapper .all-post-title a {
  color: var(--dark-color);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  display: block;
  transition: all 0.5s;
}

.latestpost-section .all-post-wrapper .all-post-date {
  color: var(--dark-color);
  margin-bottom: 0;
}

.latestpost-section .all-post-wrapper:hover .all-post-title a {
  color: var(--primary-color);
}

.latestpost-section .latest-events-list h2 {
  color: var(--dark-color);
  font-size: 20px;
  background-color: #f9f9f9;
  padding: 10px;
  border-left: 5px solid var(--primary-color);
}

.latestpost-section .latest-events-list ul {
  padding: 0;
  margin: 0;
  font-size: 0;
}

.latestpost-section .latest-events-list ul li {
  display: block;
  margin-top: 12px;
}

.latestpost-section .latest-events-list ul li a {
  display: block;
  color: var(--dark-color);
  font-size: 15px;
  padding-left: 18px;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
}

.latestpost-section .latest-events-list ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--dark-color);
  display: block;
  border-radius: 50%;
  z-index: -1;
}

.latestpost-section .latest-events-list ul li:hover a {
  color: var(--primary-color);
  text-decoration: underline;
}

/*------------------------------- Latest Post Section CSS End -------------------- */
/* ---------------------------- Latest News Section Start --------------------------- */
.latest-news-section {
  padding: 50px 0 25px;
  padding-top: 50px !important;
  position: relative;
  background: #f9f9f9;
}

.latest-news-section .blogpage-heading h2 {
  background-color: #f9f9f9;
}

/* ---------------------------- Latest News Section End --------------------------- */

/* ------------------------------ Blog [Index and Single And Sidebar] Page CSS Start ------------------------------- */
.main-blog h1,
.main-blog h2,
.main-blog h3,
.main-blog h4,
.main-blog h5,
.main-blog h6 {
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.main-blog h2,
.main-blog h3,
.main-blog h4,
.main-blog h5,
.main-blog h6 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

.indexPage-blogSection {
  padding: 50px 0;
  position: relative;
}

.singlePage-blogContent {
  padding: 50px 0;
  position: relative;
}

.singlePage-leftSide h1 {
  color: var(--dark-color);
  margin: 0 0 20px;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .singlePage-leftSide h1 {
    font-size: 20px;
    line-height: 1.15;
    padding-bottom: 12px;
    margin-top: 10px;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .singlePage-leftSide h1 {
    font-size: 22px;
    line-height: 1.15;
    padding-bottom: 12px;
    margin-top: 10px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .singlePage-leftSide h1 {
    font-size: 24px;
    line-height: 1.15;
    padding-bottom: 12px;
    margin-top: 10px;
  }
}

@media (min-width: 1601px) {
  .singlePage-leftSide h1 {
    font-size: 28px;
  }
}

@media (min-width: 1921px) {
  .singlePage-leftSide h1 {
    font-size: 28px;
  }
}

.singlePage-postCategory p {
  display: inline-block;
  font-size: 16px;
  color: var(--text-color);
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

.singlePage-postMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 10px 0 25px;
}

@media (max-width: 991px) {
  .singlePage-postMeta {
    display: block;
    margin: 0 0 25px;
  }
}

.singlePage-postDate p {
  margin-bottom: 5px;
  text-align: center;
  padding: 5px 20px;
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white-color);
  border-radius: 10px;
}

.singlePage-postDate ul {
  padding: 0;
  margin: 0;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .singlePage-postDate ul {
    display: block;
  }
}

.singlePage-postDate ul li {
  font-size: 15px;
  display: inline-block;
}

.singlePage-postDate ul li span {
  padding: 0 5px;
}

.singlePage-postDate ul li img {
  height: 36px;
  width: 36px;
  padding: 1px;
  margin-right: 5px;
  display: block;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-bottom: 0px !important;
}

@media (max-width: 991px) {
  .singlePage-postDate ul li img {
    display: none;
  }
}

.blogpage-socialMedia {
  position: relative;
}

.blogpage-socialMedia ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}

.blogpage-socialMedia ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}

.blogpage-socialMedia ul li a {
  display: block;
}

@media (max-width: 991px) {
  .blogpage-socialMedia {
    margin-top: 15px;
  }
}

.singlePage-blogImg img {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin-bottom: 40px;
}

.singlePage-blogText img {
  position: relative;
  max-width: 100%;
  width: 100%;
}

.singlePage-blogText ul,
.singlePage-blogText ol,
.singlePage-blogText dl {
  padding-left: 20px;
  margin-bottom: 20px;
}

.singlePage-blogText p {
  margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .singlePage-blogText h2 {
    font-size: 20px;
  }

  .singlePage-blogText h4 {
    font-size: 19px;
  }

  .singlePage-blogText h3 {
    font-size: 18px;
  }

  .singlePage-blogText h5 {
    font-size: 16px;
  }

  .singlePage-blogText h6 {
    font-size: 16px;
  }
}

.blogSidebar-fixed {
  top: 25px !important;
  z-index: 5 !important;
}

.blogSidebar-fixed p.recent-post-title {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 10px;
  margin-bottom: 25px;
  font-weight: 600;
}

.blogSidebar-fixed .blogSidebar-heading {
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.blogSidebar-fixed .blogSidebar-heading::after {
  content: "";
  display: block;
  left: 0px;
  bottom: 0px;
  position: absolute;
  background-color: var(--primary-color);
  width: 60px;
  height: 2px;
}

.blogSidebar-fixed {
  top: 25px !important;
  z-index: 5 !important;
}

.blogSidebar-fixed .blogSidebar-heading {
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.blogSidebar-fixed .blogSidebar-heading::after {
  content: "";
  display: block;
  left: 0px;
  bottom: 0px;
  position: absolute;
  background-color: var(--primary-color);
  width: 60px;
  height: 2px;
}

.blogSidebar-blogTopTags ul li {
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 5px;
}

.blogSidebar-blogTopTags ul li a {
  display: block;
  border: 1px solid #eee;
  padding: 3px 8px 5px;
  color: var(--secondary-color);
  text-transform: capitalize;
  border-radius: 4px;
  font-size: 13px;
}

.blogSidebar-blogTopTags ul li:hover a {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

@media (max-width: 767px) {
  .blogSidebar-categoriesBox {
    margin-top: 30px;
  }
}

.blogSidebar-categoriesBox ul {
  margin-top: 15px;
  list-style: none;
}

.blogSidebar-categoriesBox ul li {
  padding: 12px 12px 12px 14px;
  border-bottom: 1px solid #e7e6e6;
}

.blogSidebar-categoriesBox ul li:first-child {
  padding-top: 0;
}

.blogSidebar-categoriesBox ul li:last-child {
  border-bottom: 0px solid #e7e6e6
}

.blogSidebar-categoriesBox ul li a {
  display: block;
  color: var(--dark-color);
  text-transform: capitalize;
  padding-left: 5px;
  position: relative;
  z-index: 1;
}

.blogSidebar-categoriesBox ul li a::before {
  content: '>';
  position: absolute;
  left: -10px;
  top: -2px;
  z-index: -1;
  display: block;
  font-size: 18px;
  font-weight: 400;
}

.blogSidebar-categoriesBox ul li:hover a {
  color: var(--primary-color);
}

.blogSidebar-categoriesBox ul li a span {
  float: right;
}

.page-breadcrumb {
  background-color: #f8f9fa;
  padding: 0.5rem 0;
  position: relative;
}

.page-breadcrumb ul.breadcrumb {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
}

.page-breadcrumb ul.breadcrumb li span {
  text-transform: capitalize;
}

.offer-bg-section {
  padding: 100px 0;
  padding-top: 100px !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .offer-bg-section {
    padding: 50px 0;
    padding-top: 50px !important;
  }
}

.offer-bg-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: -1;
}

.offer-bg-section .theme-contact-form {
  padding: 20px;
}

.offer-bg-section .theme-contact-form .form-group {
  margin: 0;
}

.offer-bg-section .theme-contact-form .form-group p {
  margin: 0 !important;
}

.offer-bg-section .theme-contact-form .form-group input {
  min-height: 40px;
}

@media (max-width: 767px) {
  .offer-bg-section .theme-contact-form .form-group {
    margin: 10px 0;
  }
}

.offer-bg-section .theme-contact-form button.theme-submit-btn {
  margin: 0;
  width: 100%;
  min-height: 40px;
}

.offer-bg-section .main-heading p {
  max-width: 990px;
  width: 100%;
  margin: 20px auto 25px !important;
}

.why-choose-section {
  padding: 75px 0;
  padding-top: 75px !important;
  position: relative;
}

.why-choose-section .why-choose-section-inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto !important;
}

.why-choose-section .main-heading h2 {
  color: var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.why-choose-section .main-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  z-index: -1;
  background-color: var(--primary-color);
  width: 50px;
  height: 2px;
}

.why-choose-section ul {
  padding-left: 15px;
}

.why-choose-section ul li {
  list-style: square;
  padding-bottom: 10px;
}

.why-choose-section .why-choose-section-img {
  background-color: #f9f9f9;
  padding: 5px;
  overflow: hidden;
  position: relative;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 5px 10px -2px rgba(50, 50, 93, 0.25), 0 5px 10px -5px rgba(107, 124, 147, 0.3);
}

.why-choose-section .why-choose-section-img img {
  border-radius: 5px;
}

.insurance-section {
  padding: 75px 0;
  padding-top: 75px !important;
  position: relative;
}

.insurance-section .insurance-section-inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto !important;
}

.insurance-section .main-heading h2 {
  color: var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.insurance-section .main-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  z-index: -1;
  background-color: var(--primary-color);
  width: 50px;
  height: 2px;
}

.insurance-section ul {
  padding-left: 15px;
}

.insurance-section ul li {
  list-style: square;
  padding-bottom: 10px;
}

.insurance-section .theme-contact-form {
  padding: 20px;
}

.insurance-section .theme-contact-form .form-group {
  margin-bottom: 15px;
}

.payment-calculator-section {
  padding: 75px 0;
  padding-top: 75px !important;
  position: relative;
}

.payment-calcInner {
  position: relative;
  max-width: 990px;
  padding: 25px;
  margin: 0 auto;
  border-radius: 10px;
  background: #f1f1f1;
}

.payment-calcInner label {
  margin-bottom: 5px;
}

.payment-calcInner input[type=number],
.payment-calcInner input[type=text] {
  height: 45px;
  font-size: 14px;
}

.payment-calcInner .clac-Disclaimer p {
  font-size: 14px;
}

.clac-Disclaimer p a {
  color: var(--primary-color);
}

.payment-calcInner p {
  font-size: 16px;
  font-weight: 400;
}

.payment-calcInner select {
  height: 45px;
  font-size: 14px;
  color: var(--dark-color);
  padding: 0.375rem 0.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-transform: capitalize;
  width: 100%;
  border: 1px solid #ced4da;
  background: url("https://storage.googleapis.com/sba-frontend-dev-bucket/dealer-frontend-application/dropdown.svg") var(--light-color);
  background-repeat: no-repeat;
  background-position: 97% 52%;
  background-size: 9px 9px;
}

.payment-calculator-section button.theme-btn {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 20px;
  min-width: 165px;
  border-radius: 3px;
  text-transform: capitalize;
  color: var(--light-color);
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  text-align: center;
  z-index: 1;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .payment-calculator-section button.theme-btn {
    padding: 8px 15px;
    min-width: 125px;
    font-size: 14px;
  }
}

.payment-calculator-section button.theme-btn:hover,
.payment-calculator-section button.theme-btn:focus,
.payment-calculator-section button.theme-btn:active {
  color: var(--light-color);
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
}

/*-------------- Page Not Found Section Start  ---------------*/

.page-not-found-section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.page-not-found-section .page-not-found-content {
  max-width: 575px;
  width: 100%;
}

.page-not-found-section h1 {
  font-size: 42px;
  font-weight: 600;
  color: var(--dark-color);
}

.page-not-found-section p {
  color: var(--dark-color);
  font-size: 20px;
  margin: 15px 0 30px;
  transition: .3s ease-in-out;
}

.page-not-found-section p a {
  color: var(--secondary-color);
  transition: .3s ease-in-out;
}

.page-not-found-section p:hover a {
  color: var(--dark-color);
  text-decoration: underline;
  transition: .3s ease-in-out;
}

.page-not-found-section .page-not-found-image {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .page-not-found-section {
    padding: 40px 0;
  }

  .page-not-found-section h1 {
    font-size: 24px;
  }

  .page-not-found-section p {
    font-size: 16px;
  }

  .page-not-found-section .page-not-found-content {
    max-width: 100%;
    width: 100%;
  }

  .page-not-found-section .page-not-found-image {
    margin-top: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-not-found-section h1 {
    font-size: 28px;
  }

  .page-not-found-section p {
    font-size: 17px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-not-found-section h1 {
    font-size: 32px;
  }

  .page-not-found-section p {
    font-size: 18px;
  }
}


/*-------------- Page Not Found Section End  ---------------*/

/* ------------------------------ Theme Pagination CSS Start ------------------------------- */

.ares-pagination {
  text-align: right;
}

.ares-pagination .page-numbers {
  padding: 5px 10px;
  background: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;
  color: #fff !important;
  border-radius: 5px
}

.ares-pagination .page-numbers.current {
  background: 0 0 !important;
  border: 1px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.ares-pagination .page-numbers:hover {
  background: 0 0 !important;
  border: 1px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
}


/* ------------------------------ Theme Pagination CSS End ------------------------------- */


/* ------------------------------- Site Privacy Policy CSS Start ----------------*/

.site-privacy-pages {
  padding: 50px 0;
  padding-top: 50px !important;
  position: relative;
}

.site-privacy-pages p {
  font-size: 15px;
}

.site-privacy-pages h2 {
  font-size: 24px;
  color: var(--dark-color);
}

.site-privacy-pages h3 {
  font-size: 22px;
  color: var(--dark-color);
}

.site-privacy-pages h4 {
  font-size: 20px;
  color: var(--dark-color);
}

.site-privacy-pages ul {
  padding-left: 25px;
  margin-bottom: 20px;
  list-style: square;
  color: var(--dark-color);
}

.site-privacy-pages ul li {
  font-size: 15px;
  list-style: square;
  padding-bottom: 8px;
}

.site-privacy-pages ol {
  padding-left: 25px;
  margin-bottom: 20px;
  list-style: decimal;
  color: var(--dark-color);
}

.site-privacy-pages ol li {
  font-size: 15px;
  list-style: decimal;
  padding-bottom: 8px;
}

.site-privacy-pages a {
  color: var(--primary-color);
  font-size: 15px;
}


/* ------------------------------- Site Privacy Policy CSS End ----------------*/


/* ------------------------------- Home Page Modal Popup CSS Start ----------------*/
.him-Popup.modal {
    background-color:rgba(0,0,0,0.75);
}

.him-Popup .modal-dialog {
    -webkit-transform: translate(0, -10%);
    transform: translate(0, -10%);
    top: 0;
    margin: 0 auto;
    max-width: 600px;
    border: 0;
}

.him-Popup .modal-content .close {
	position: absolute;
	right: 0px;
	color: #fff;
	background-color: var(--primary-color);
	z-index: 1;
	opacity: 1;
	top: 0px;
	padding: 0;
	border-radius: 5px;
}

.him-Popup .modal-content .close:hover {
    opacity: 1;
}

.him-Popup .modal-content .close img {
    width: 28px;
}


/* ------------------------------- Whatapp chat CSS Start ----------------*/
.wcp-box {
  position: fixed;
  bottom: 150px;
  right: 30px;
  z-index: 2;
  cursor: pointer;
}
.wcp-box .wcp-box-icon {
  position: relative;
  background-color: #29A71A;
  border-radius: 50%;
  box-shadow: 0 6px 8px 2px rgba(0, 0, 0, 0.14);
  height: 56px;
  width: 56px;
  display: block;
}
.wcp-box .wcp-box-icon::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  background-image: url("../images/wp-white.webp");
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transition: all 0.4s ease;
}
.wcp-box .wcp-box-icon::after {
  content: "";
  position: absolute;
  background-image: url("../images/wp-close.webp");
  background-size: 50%;
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  line-height: 45px;
  top: 7px;
  z-index: 2;
  transition: all 0.4s ease;
}
.wcp-box.active .wcp-box-icon::before {
  opacity: 0;
  transform: scale(0) rotate(1turn);
}
.wcp-box.active .wcp-box-icon::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.wcp-box .wcp-box-content {
  background-color: var(--light-color);
  box-shadow: 0 10px 10px 4px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  position: fixed;
  overflow: hidden;
  opacity: 0;
  right: 15px;
  bottom: 250px;
  max-width: calc(100% - 50px);
  width: 350px;
  transform: translateY(50px);
  transition: all 0.4s ease;
  visibility: hidden;
  will-change: transform, visibility, opacity;
  z-index: 999;
}
.wcp-box .wcp-box-content .wcp-popupbox-heading {
  background-color: #29A71A;
  padding: 15px 43px 17px 74px;
  position: relative;
  z-index: 1;
}
.wcp-box .wcp-box-content .wcp-popupbox-heading::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 25px;
  background-image: url("../images/wp-white.webp");
  background-size: 30px;
  height: 30px;
  width: 30px;
  display: block;
}
.wcp-box .wcp-box-content .wcp-popupbox-heading .wcp-popupbox-heading_title {
  font-size: 18px;
  color: rgb(255, 255, 255);
  font-weight: 600;
}
.wcp-box .wcp-box-content .wcp-popupbox-heading .wcp-popupbox-heading_intro {
  font-size: 12px;
  color: rgb(217, 235, 198);
}
.wcp-box .wcp-box-content .wcp-popupbox-content {
  padding: 15px;
  background-color: var(--light-color);
}
.wcp-box .wcp-box-content .wcp-popupbox-content .wcp-popup-notice {
  font-size: 11px;
}
.wcp-box .wcp-box-content .wcp-popup-content-item {
  padding: 15px;
  background-color: #f9f9f9;
  margin-top: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border-left: 3px solid #29A71A;
}
.wcp-box .wcp-box-content .wcp-popup-content-item .wcp-popup-avatar {
  width: 30px;
  height: 30px;
  display: inline-block;
}
.wcp-box .wcp-box-content .wcp-popup-content-item p {
  margin-bottom: 0;
  display: inline-block;
  color: var(--dark-color);
  margin-left: 10px;
  font-weight: 600;
}
.wcp-box.active .wcp-box-content {
  opacity: 1;
  transform: translate(0);
  visibility: visible;
}

.vehicle-slider-section {
  padding: 50px 0;
  position: relative;
}

.vdp-page-breadcrumb {
  padding: 0;
}

.vdp-page-breadcrumb .font-15 {
  font-size: 15px
}

.vdp-page-breadcrumb a {
  color: var(--primary-color)
}

.vdp-page-breadcrumb a:hover,
.vdp-page-breadcrumb a:active,
.vdp-page-breadcrumb a:focus {
  color: var(--secondary-color)
}

.vehicle-slider-section h1 {
  font-size: 32px;
  color: var(--dark-color);
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .vehicle-slider-section h1 {
      font-size: 20px;
      line-height: 1.15;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .vehicle-slider-section h1 {
      font-size: 24px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .vehicle-slider-section h1 {
      font-size: 24px;
  }
}

.vehicle-slider-section .vehicle-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vehicle-slider-section .vehicle-title .vehicle-name {
  width: 100%;
}

@media (max-width: 767px) {
  .vehicle-slider-section .vehicle-title {
      display: block;
  }
}

.vehicle-slider-section .vehicle-price {
    flex-shrink:0;
    width:120px;
}

.vehicle-slider-section .vehicle-price p {
  margin-bottom: 0;
  font-size: 22px;
  text-align: right;
  font-weight: 600;
  line-height: 1.25;
}

.vehicle-slider-section .vehicle-price p span {
  display: block;
  font-size: 13px;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .vehicle-slider-section .vehicle-price {
      margin-bottom: 30px;
  }

  .vehicle-slider-section .vehicle-price p {
      font-size: 22px;
      text-align: left;
  }
  
  .vehicle-slider-section .vehicle-price p span {
      display: none;
  }
}

.vehicle-slider-section .vehicle-slider-image {
  background-color: #f9f9f9;
  overflow: hidden;
  border-radius: 5px;
}

.vehicle-slider-section .carousel .vehicle-banner-img {
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .vehicle-slider-section .carousel .vehicle-banner-img {
      max-width: 250px;
      margin: 0 auto;
  }
}

@media only screen and (min-width: 767px) and (max-width: 991px) {
  .vehicle-slider-section .carousel .vehicle-banner-img {
      max-width: 400px;
      margin: 0 auto;
  }
}

.vehicle-slider-section .carousel-control-prev,
.vehicle-slider-section .carousel-control-next {
  opacity: 1;
  z-index: 3;
  top: 40%;
  width: 42px;
  height: 30px;
  background-color: var(--primary-color);
  border-radius: 35px;
}

@media (max-width: 767px) {
  .vehicle-slider-section .carousel-control {
      display: none
  }
}

.vehicle-slider-section .carousel-control-prev {
  left: 0;
}

.vehicle-slider-section .carousel-control-next {
  right: 0;
}

.vehicle-slider-section .carousel-control-next:focus,
.vehicle-slider-section .carousel-control-next:hover,
.vehicle-slider-section .carousel-control-prev:focus,
.vehicle-slider-section .carousel-control-prev:hover {
  outline: 0;
  opacity: 1
}

.vehicle-slider-section .carousel-control-prev .carousel-control-prev-icon,
.vehicle-slider-section .carousel-control-next .carousel-control-next-icon {
  background-size: 40% 100%;
  -webkit-transition: all .5s;
  -ms-transition: all .5s;
  transition: all .5s;
  position: relative
}

.vehicle-slider-section .carousel-control-prev .carousel-control-prev-icon {
  background-image: url(https://storage.googleapis.com/sba-frontend-dev-bucket/dealer-frontend-application/slider-prev.svg)
}

.vehicle-slider-section .carousel-control-next .carousel-control-next-icon {
  background-image: url(https://storage.googleapis.com/sba-frontend-dev-bucket/dealer-frontend-application/slider-next.svg)
}

.vehicle-specs.mx-n1 {
margin-right: -.25rem !important;
margin-left: -.25rem !important;
}

.vehicle-specs .col-6 div {
  padding: 15px 0;
  background-color: #eee;
  border-radius: 5px
}

.vehicle-specs p {
  font-size: .8rem;
  font-weight: 500;
  text-transform: capitalize;
}

.vehicle-specs p span {
    font-weight: 600;
    display:block;
}

.vehicle-features-section {
	padding: 50px 0;
	position: relative;
	background-color: #f9f9f9;
}

.vehicle-features-section .vehicle-features-section-inner {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px #eee;
  border:1px solid #dee2e6;
}

.vehicle-features-section .vehicle-features-section-inner .vehicle-features-list p {
  margin: 0;
  padding-left: 20px;
  padding-bottom: 15px;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.vehicle-features-section .vehicle-features-section-inner .vehicle-features-list p::after {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  display: block;
  z-index: -1;
  background-color: var(--dark-color);
  border-radius: 50%;
}

/* ------------------------------- Home Page Modal Popup CSS Start ----------------*/
.vdp-contact-form-popup.modal {
  background-color:rgba(0,0,0,0.75);
}

.vdp-contact-form-popup .modal-dialog {
  -webkit-transform: translate(0, -10%);
  transform: translate(0, -10%);
  top: 0;
  margin: 0 auto;
  max-width: 600px;
  border: 0;
}

.vdp-contact-form-popup .modal-body {
    padding:0;
}

.vdp-contact-form-popup .modal-content .close {
position: absolute;
right: 0px;
color: #fff;
background-color: var(--primary-color);
z-index: 1;
opacity: 1;
top: 0px;
padding: 0;
border-radius: 5px;
}

.vdp-contact-form-popup .modal-content .close:hover {
  opacity: 1;
}

.vdp-contact-form-popup .modal-content .close img {
  width: 28px;
}

.vdp-contact-form-popup .theme-contact-form {
	padding: 30px;
	max-width: 600px;
}

.vehicle-listing-section {
  padding: 75px 0;
  position: relative;
  z-index: 1;
}

.vehicle-inventory-grid {
  border: 1px solid #eee;
  box-shadow: 0 8px 20px #ebf4f9;
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  transition: .5s
}

.vehicle-inventory-grid:hover {
  box-shadow: 0 10px 24px #cfd7dc
}

.vehicle-inventory-grid .vehicle-inventory-linking {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  font-size: 0;
  cursor: pointer;
}

.vehicle-inventory-grid .vehicle-image {
  height: 190px;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}

.vehicle-inventory-grid .vehicle-image img {
  border-radius: 3px;
  overflow: hidden;
  max-height: 100%;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: scale-down;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto !important;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.vehicle-inventory-grid .vehicle-info {
  padding: 10px
}

.vehicle-inventory-grid .vehicle-info .vehicle-name {
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--dark-color);
  text-transform: capitalize
}

.vehicle-inventory-grid .vehicle-info .vehicle-desc {
  font-size: 13px;
}

.vehicle-inventory-grid .vehicle-info .vehicle-desc .text-end {
  color: #777
}

.vehicle-inventory-grid .vehicle-info .vehicle-price {
  padding-top: 7px;
  border-top: 1px solid #ddd;
  margin-top: 10px;
  margin-bottom: 0;
}

@media (max-width:767px) {
  .vehicle-inventory-grid {
      margin-bottom: 30px
  }
}

.payment-calculator-section {
    padding:50px 0;
    position:relative;
}

.payment-calculator-section .payment-calcInner {
	max-width: 100%;
	padding: 40px;
}

.vdp-theme-btn,
.payment-calcInner .theme-btn{
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--light-color) !important;
  border: 1px solid var(--primary-color) !important;
  background-color: var(--primary-color) !important;
  display: inline-block;
  padding: 12px 20px;
  min-width: 165px;
  border-radius: 3px;
  text-transform: capitalize;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}

.vdp-theme-btn:hover,
.payment-calcInner .theme-btn:hover,
.vdp-theme-btn:focus,
.payment-calcInner .theme-btn:focus,
.vdp-theme-btn:active,
.payment-calcInner .theme-btn:acive{
  color: var(--light-color) !important;
  border: 1px solid var(--secondary-color) !important;
  background-color: var(--secondary-color) !important;
}

.ares-pagination {
    text-align: right;
}

.ares-pagination .page-numbers {
    padding: 5px 10px;
    background: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    color: #fff !important;
    border-radius: 5px
}

.ares-pagination .page-numbers.current {
    background: 0 0 !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.ares-pagination .page-numbers:hover {
    background: 0 0 !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.search-sorting-row .search-field {
	height: 40px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 0;
	padding-left: 0px;
	padding-left: 15px;
}

.search-sorting-row button {
	height: 40px;
	background: var(--primary-color) !important;
	border: 0px solid var(--primary-color) !important;
	color: #fff !important;
	border-radius: 5px;
	padding: 0 15px;
}

.search-sorting-row .woocommerce-sorting .woocommerce-ordering {
	margin: 0;
}

@media (max-width: 767px) {
  .vdp-theme-btn,
  .payment-calcInner .theme-btn{
    padding: 8px 15px;
    min-width: 125px;
    font-size: 14px;
  }
  
  .search-sorting-row .woocommerce-sorting .woocommerce-ordering {
    	margin-top: 20px;
    }
}

.woocommerce table.shop_attributes th {
	text-transform: capitalize!important;
}

.woocommerce table.shop_attributes {
	margin-bottom: 0px!important
}

.woocommerce table.shop_attributes td {
	text-transform: capitalize!important;
}

.site-main .product .summary  p.price span.amount {
	color: var(--primary-color)!important;
}

.site-main .product span.onsale {
	height: 50px!important;
	width: 50px!important;
	padding: 2px!important;
	font-weight: 700;
	position: absolute;
	text-align: center;
	line-height: 47px!important;
	top: 0!important;
	left: 0!important;
	margin: 0!important;
	border-radius: 100%;
	background-color: #29a71a!important;
	color: #fff!important;
	font-size: 13px!important;
	z-index: 9;
}