/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/***
=============================================
Common
=============================================
***/
:root {
  --billdins-font: "Public Sans", sans-serif;
  --billdins-font-two: "Exo", sans-serif;
  --billdins-base: #FF5E14;
  --billdins-base-rgb: 255, 94, 20;
  --billdins-black: #0E121D;
  --billdins-black-rgb: 14, 18, 29;
  --billdins-gray: #4D5765;
  --billdins-gray-rgb: 77, 87, 101;
  --billdins-white: #ffffff;
  --billdins-white-rgb: 255, 255, 255;
  --billdins-gray-bg: #F7F4ED;
  --billdins-gray-bg-rgb: 247, 244, 237;
  --billdins-bdr-radius: 5px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--billdins-font);
  color: var(--billdins-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--billdins-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--billdins-font-two);
  color: var(--billdins-black);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding: 0px;
}


/*=============== scrollbar-Css =============*/
::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
  box-shadow: none;
  -webkit-box-shadow: none;
  background-color: var(--billdins-base);
  border-radius: 10px;
}

::-webkit-scrollbar,
::-webkit-scrollbar {
  width: 8px;
  background-color: var(--billdins-base);
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-image: linear-gradient(0deg, var(--billdins-base) 0%, var(--billdins-black) 47.60%, var(--billdins-black) 99.23%);
}

.xs-sidebar-widget::-webkit-scrollbar {
  width: 0px;
}




button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1350px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/***
=============================================
Custom Cursor
=============================================
***/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--billdins-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--billdins-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--billdins-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

/***
=============================================
Sec Title Css
=============================================
***/
.sec-title {
  position: relative;
  display: block;
  margin-top: -5px;
  padding-bottom: 47px;
  z-index: 1;
}

.sec-title__tagline {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}

.sec-title.center .sec-title__tagline {
  justify-content: center;
}

.sec-title__tagline .left-line {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--billdins-base);
  margin-right: 15px;
}

.sec-title__tagline .left-line::before {
  position: absolute;
  top: 50%;
  right: 0px;
  width: 5px;
  height: 5px;
  background: var(--billdins-base);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.sec-title__tagline .left-line::after {
  position: absolute;
  top: 50%;
  right: -2px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--billdins-base);
  border-radius: 50%;
  transform: translateY(-50%);
  content: "";
}

.sec-title__tagline .text {
  position: relative;
  display: block;
}

.sec-title__tagline .text h4 {
  color: var(--billdins-base);
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--billdins-font-two);
}

.sec-title__tagline .right-line {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--billdins-base);
  margin-left: 15px;
}

.sec-title__tagline .right-line::before {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 5px;
  height: 5px;
  background: var(--billdins-base);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.sec-title__tagline .right-line::after {
  position: absolute;
  top: 50%;
  left: -2px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--billdins-base);
  border-radius: 50%;
  transform: translateY(-50%);
  content: "";
}

.sec-title__title {
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  text-transform: none;
  font-family: var(--billdins-font-two);
}


/***
=============================================
   Thm Btn Css
=============================================
***/
.thm-btn {
  position: relative;
  display: inline-block;
  color: var(--billdins-white);
  font-size: 14px;
  line-height: 55px;
  font-weight: 600;
  background: var(--billdins-base);
  border-radius: 5px;
  padding: 0px 35px 0px;
  overflow: hidden;
  font-family: var(--billdins-font);
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
}

.thm-btn:hover {
  color: var(--billdins-white);
}

.thm-btn i {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  top: 1px;
  margin-left: 5px;
}

.hover-btn {
  background-color: var(--billdins-black);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: -1;
}

.hover-bx {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
  border-radius: 5px 0px 0px 5px;
}

.hover-bx2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-bx3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-bx4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  border-radius: 0 5px 5px 0;
}

.thm-btn:hover .hover-btn {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}






/*---------------------------------
     Preloader CSS
-----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 20000;
  overflow-x: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader div {
  width: 20px;
  height: 20px;
  margin: 0 10px 0;
  border-radius: 50px;
  transform-origin: 50% 0;
  display: inline-block;
  animation: bouncing 1.4s linear infinite;
}

.loader div:last-child {
  margin: 0;
}

.loader div:nth-child(1) {
  background-color: rgba(var(--billdins-base-rgb), 1.0);
}

.loader div:nth-child(2) {
  background-color: rgba(var(--billdins-base-rgb), 0.70);
  animation-delay: 0.2s;
}

.loader div:nth-child(3) {
  background-color: rgba(var(--billdins-base-rgb), 0.40);
  animation-delay: 0.4s;
}

@keyframes bouncing {

  0%,
  100% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }

  45% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: linear;
  }

  50% {
    transform: translateY(50px) scale(1.5, 0.5);
    animation-timing-function: linear;
  }

  55% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: ease-out;
  }
}














/***
=============================================
   Rating Box
=============================================
***/
.rating-box {
  position: relative;
  display: block;
}

.rating-box a {
  position: relative;
  color: var(--billdins-base);
}

.rating-box a i::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
}

/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 20px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 0%;
  color: rgba(var(--billdins-gray-rgb), .50);
  font-size: 16px;
  line-height: 40px;
  font-weight: 600;
  border: 1px solid rgba(var(--billdins-gray-rgb), .50);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--billdins-font);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: var(--billdins-white);
  background: var(--billdins-base);
  border-color: var(--billdins-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 0%;
  color: rgba(var(--billdins-gray-rgb), .50);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--billdins-white);
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: rgba(var(--billdins-gray-rgb), .50);
  font-size: 14px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: var(--billdins-white);
}


/***
=============================================
Scroll To Top Css
=============================================
***/
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--billdins-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--billdins-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--billdins-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/***
=============================================
Search Popup Css
=============================================
***/
.search-popup {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100vw;
  height: 400px;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  visibility: hidden;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  transition: all 0.2s;
}

.search-popup.active {
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--billdins-black);
  opacity: 0.90;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--billdins-base);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn::after {
  background-color: var(--billdins-black);
  border-radius: 0;
}

.search-popup__content .thm-btn::before {
  background-color: var(--billdins-black);
  border-radius: 0;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--billdins-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
  color: var(--billdins-white);
}



.search-popup__close-btn {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0px;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-color: var(--billdins-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--billdins-black);
  font-size: 24px;
  z-index: -1;
}



/***
=============================================
Mobile Nav Css
=============================================
***/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--billdins-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--billdins-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--billdins-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--billdins-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--billdins-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--billdins-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--billdins-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--billdins-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--billdins-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--billdins-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--billdins-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--billdins-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--billdins-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}


/***
=============================================
Home Showcase Css
=============================================
***/
.home-showcase {
  margin-top: -31px;
  margin-bottom: -31px;
}

.home-showcase__inner {
  padding: 40px 42px 30px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__item {
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.home-showcase__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--billdins-bdr-radius);
}

.home-showcase__image>img {
  width: 100%;
  border-radius: var(--billdins-bdr-radius);
  transition: filter 500ms ease;
  filter: blur(0px);
}

.home-showcase__image:hover>img {
  filter: blur(2px);
}

.home-showcase__image:hover .home-showcase__buttons {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
  background-color: rgba(var(--billdins-black-rgb), .70);
  border-radius: var(--billdins-bdr-radius);
}

.home-showcase__buttons__item {
  padding: 0px 17px 0px;
  width: 150px;
  text-align: center;
  color: var(--billdins-white);
  background-color: var(--billdins-base);
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  color: var(--billdins-black);
  margin-top: 18px;
  text-transform: capitalize;
  font-family: var(--billdins-font);
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--billdins-white, #ffffff);
}


/***
=============================================
Main Header One Css
=============================================
***/
.main-header-one {
  position: relative;
  display: block;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-one__top {
  position: relative;
  display: block;
  background-color: var(--billdins-black);
  z-index: 99;
}

.main-header-one__top::before {
  position: absolute;
  top: 0;
  left: 55%;
  bottom: 0;
  right: 0px;
  border-top: 42px solid var(--billdins-base);
  border-left: 23px solid transparent;
  content: "";
  z-index: -1;
}

.main-header-one__top .container {
  max-width: 1590px;
  width: 100%;
}

.main-header-one__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8px 0px;
}

.header-style1__contact {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style1__contact li {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style1__contact li+li {
  margin-left: 45px;
}

.header-style1__contact li:before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 5px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--billdins-white-rgb), .60);
}

.header-style1__contact li:first-child:before {
  display: none;
}

.header-style1__contact li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style1__contact li .icon i {
  position: relative;
  display: inline-block;
  color: var(--billdins-base);
  font-size: 16px;
  line-height: 16px;
}

.header-style1__contact li .text {
  margin-left: 10px;
}

.header-style1__contact li .text p {
  color: var(--billdins-white);
  font-size: 15px;
  line-height: 25px;
}

.header-style1__contact li .text p a {
  color: var(--billdins-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.header-style1__contact li .text p a:hover {
  color: var(--billdins-base);
}

.main-header-one__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-header__language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 23px;
}

.main-header__language-switcher .icon {
  position: relative;
  display: block;
  margin-right: 10px;
}

.main-header__language-switcher .icon span {
  position: relative;
  display: inline-block;
  color: var(--billdins-white);
  font-size: 16px;
  line-height: 16px;
  top: 2px;
}

.main-header__language-switcher .language-switcher {
  position: relative;
  display: block;
}

.main-header__language-switcher .language-switcher form {
  position: relative;
  display: block;
  width: 65px;
}

.main-header__language-switcher .language-switcher form .select-box {
  position: relative;
  display: block;
}

.main-header__language-switcher .nice-select {
  background-color: var(--billdins-base);
  border-radius: 0px;
  color: var(--billdins-white);
  font-size: 15px;
  font-weight: 400;
  height: 25px;
  line-height: 25px;
  outline: none;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
  font-family: var(--billdins-font);
}

.main-header__language-switcher .nice-select:after {
  right: 0px;
  margin-top: -5px;
  border-bottom: 1px solid var(--billdins-white);
  border-right: 1px solid var(--billdins-white);
}

.main-header__language-switcher .nice-select .list {
  width: 115px;
  background-color: var(--billdins-base);
}

.header-style1__social-links {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 0;
  padding-left: 20px;
}

.header-style1__social-links::before {
  position: absolute;
  top: -1px;
  left: 0;
  bottom: -2px;
  width: 1px;
  background-color: rgba(var(--billdins-white-rgb), .60);
  content: "";
}

.header-style1__social-links a {
  position: relative;
  display: inline-block;
  color: var(--billdins-white);
}

.header-style1__social-links a i::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
}

.header-style1__social-links a:hover {
  color: var(--billdins-black);
}

.header-style1__social-links a+a {
  margin-left: 20px;
}

.main-header-one__bottom {
  position: relative;
  display: block;
  background: var(--billdins-gray-bg);
  z-index: 2;
}

.main-header-one__bottom .container {
  max-width: 1590px;
  width: 100%;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-header-one__bottom-left {
  position: relative;
  display: block;
}

.logo-one {
  position: relative;
  display: block;
}

.logo-one a {
  position: relative;
  display: block;
}

.logo-one a img {
  width: 100%;
}

.main-header-one__bottom-middle {
  display: block;
}

.main-menu__main-menu-box {
  display: block;
}

.main-header-one__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header-search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: block;
  color: var(--billdins-black);
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--billdins-base);
}

.main-header__shop {
  position: relative;
  display: block;
  margin-left: 18px;
}

.main-header__shop .icon-box {
  position: relative;
  display: block;
}

.main-header__shop .icon-box a {
  position: relative;
  display: inline-block;
  color: var(--billdins-black);
}

.main-header__shop .icon-box a:hover {
  color: var(--billdins-base);
}

.main-header__shop .icon-box a i::before {
  position: relative;
  display: inline-block;
  font-size: 21px;
  line-height: 21px;
  font-weight: 700;
}

.main-header__shop .icon-box .count {
  position: absolute;
  top: -2px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  background: var(--billdins-base);
  border-radius: 50%;
}

.main-header__shop .icon-box .count span {
  position: relative;
  color: var(--billdins-white);
  font-size: 12px;
  font-weight: 500;
  top: -1px;
}

.main-header__btn {
  position: relative;
  display: block;
  margin-left: 43px;
  line-height: 0px;
}

.stricky-header.main-menu .main-header-one__bottom-right {
  display: none;
}

.stricky-header.main-menu {
  background-color: var(--billdins-gray-bg);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 35px;
  padding-bottom: 33px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 50px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  color: var(--billdins-black);
  font-size: 18px;
  line-height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--billdins-font-two);
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--billdins-base);
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 15px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 49%;
  right: 0;
  font-family: 'icomoon' !important;
  content: "\e90d";
  font-size: 10px;
  color: var(--billdins-black);
  transform: translateY(-50%);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--billdins-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgb(255, 255, 255);
  padding: 31px 20px 31px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 10px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 16px;
  line-height: 16px;
  color: var(--billdins-gray);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 12px 20px 12px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--billdins-white);
  border-radius: var(--billdins-bdr-radius);
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--billdins-extra-two);
  color: var(--billdins-black);
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--billdins-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu,
.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--billdins-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--billdins-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--billdins-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--billdins-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }

  .main-menu .language-mobile {
    display: none;
  }
  
}

/***
=============================================
Main Header Two Css
=============================================
***/
.main-header-one.style2 {
  position: relative;
  display: block;
}

.main-header-one.style2 .main-header-one__top {
  background-color: var(--billdins-base);
}

.main-header-one.style2 .main-header-one__top::before {
  display: none;
}

.main-header-one.style2 .main-header-one__top-inner::before {
  position: absolute;
  top: 0px;
  left: -50px;
  right: -9999px;
  border-top: 42px solid var(--billdins-black);
  border-left: 23px solid transparent;
  content: "";
}

.main-header-one.style2 .main-header-one__top .container {
  max-width: 1550px;
  width: 100%;
}

.main-header-one.style2 .header-style1__social-links a:hover {
  color: var(--billdins-base);
}

.main-header-one.style2 .main-header__language-switcher .nice-select {
  background-color: transparent;
}

.main-header-one.style2 .main-header-one__bottom {
  background: var(--billdins-white);
}

.main-header-one.style2 .main-header-one__bottom .container {
  max-width: 1550px;
  width: 100%;
}

.main-header-one.style2 .logo-one {
  position: relative;
  display: block;
  padding-right: 90px;
  z-index: 1;
}

.main-header-one.style2 .logo-one::before {
  position: absolute;
  top: -19px;
  left: -99999px;
  right: 0px;
  border-bottom: 93px solid var(--billdins-base);
  border-right: 35px solid transparent;
  content: "";
  z-index: -1;
}


.stricky-header.stricky-header--two {
  background: var(--billdins-base);
}

.stricky-header.stricky-header--two .main-menu__list>li>a {
  color: var(--billdins-white);
}

.stricky-header.stricky-header--two .main-menu__list>li>a::after {
  color: var(--billdins-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1870px) {
    .why-choose-one .shape4 {
        display: none;
    }

    .why-choose-one .shape5 {
        display: none;
    }

    .why-choose-one .shape6 {
        display: none;
    }

    .why-choose-one .shape7 {
        display: none;
    }

    .why-choose-one .shape8 {
        display: none;
    }

    .why-choose-one .shape9 {
        display: none;
    }

    .blog-one--two__shape2 {
        display: none;
    }







}


@media only screen and (min-width: 1200px) and (max-width: 1725px) {
    .blog-one .shape1 {
        display: none;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .about-one__content {
        margin-left: 10px;
    }

    .about-one__content .sec-title__title {
        font-size: 44px;
        line-height: 58px;
    }

    .about-one .shape1 {
        display: none;
    }

    .testimonial-one__left .sec-title__title {
        font-size: 44px;
    }

    .testimonial-one__left-img ul li+li {
        margin-left: -35px;
    }

    .testimonial-one__left-bottom-text {
        margin-left: 15px;
    }

    .testimonial-one__left-bottom-text h3 {
        font-size: 16px;
        line-height: 26px;
    }

    .working-process-one__tab-box .tab-buttons {
        margin-right: 30px;
    }

    .working-process-one__tab-box .tab-buttons li {
        margin-bottom: 35px;
    }

    .faq-one .shape3 {
        display: none;
    }

    .blog-one__single-content h2 {
        font-size: 20px;
        line-height: 32px;
    }

    .blog-one__single::before {
        right: 30px;
    }

    .about-two__middle .sec-title__title {
        font-size: 43px;
    }

    .about-two__middle {
        margin-left: 45px;
    }

    .about-two__middle-text2 ul li .icon-box {
        width: 55px;
        height: 55px;
    }

    .about-two__middle-text2 ul li .icon-box span::before {
        font-size: 35px;
        line-height: 35px;
    }

    .about-two__middle-text2 ul li .title-box h3 {
        font-size: 16px;
        line-height: 26px;
    }

    .services-two__tab-box .tab-buttons {
        display: flex;
        margin-right: 0px;
        align-items: center;
        justify-content: center;
    }

    .services-two__tab-box .tab-buttons .tab-btn {
        float: left;
        width: 20%;
        padding: 39px 25px 32px;
    }

    .services-two__tab-box .tab-buttons .tab-btn h3 {
        font-size: 17px;
        line-height: 27px;
    }

    .services-two__single-tab-inner .icon-box a {
        width: 50px;
        height: 55px;
    }

    .services-two__single-tab-inner .icon-box a span::before {
        font-size: 20px;
        line-height: 20px;
    }

    .services-two__single-tab-inner .content-box .text h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .services-two__single-tab-inner .icon-box {
        margin-left: 15px;
    }

    .services-two__single-tab-inner .content-box {
        top: 83px;
        right: -83px;
    }

    .team-two__single-img {
        width: 200px;
        height: 204px;
    }

    .team-two__single-content .text-box h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .team-two__single-content-inner .social-links {
        right: 13px;
    }

    .portfolio-one__single-content {
        margin-left: 40px;
        margin-right: 40px;
    }

    .portfolio-one__single-content .text-box h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .why-choose-one .shape10 {
        display: none;
    }





















}



@media only screen and (min-width: 1200px) and (max-width: 1319px) {
    .pricing-one__single .table-header h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .pricing-one__single .plan-box p {
        font-size: 16px;
    }

    .appoinment-one__form {
        max-width: 460px;
    }

    .faq-one .shape2 {
        display: none;
    }

    .counter-one__single .content-box p {
        font-size: 17px;
        line-height: 24px;
    }

    .testimonial-two__single-author-outer .border-box {
        display: none;
    }

    .blog-one--two .blog-one__single-content h2 {
        font-size: 19px;
    }

    .footer-widget__recent-post-list li .content-box h3 {
        font-size: 15px;
    }

    .features-one .shape1 {
        display: none;
    }

    .about-three__content-list ul li .text-box {
        margin-left: 25px;
    }

    .about-three__content-list ul li .text-box p {
        font-size: 15px;
    }

    .about-three .shape3 {
        display: none;
    }

    .portfolio-two__single .content-box h2 {
        font-size: 20px;
        margin-top: 0px;
    }

    .work-process-two__single-content-left .sec-title__title {
        font-size: 43px;
    }

    .why-choose-two__img {
        width: calc((100% - 170px) / 2);
    }

    .portfolio-details__sidebar-list li .text-box {
        margin-left: 25px;
    }

    .portfolio-details__sidebar {
        padding: 17px 35px 40px;
    }

    .blog-details__content-text3-tag {
        display: block;
    }

    .blog-details__content-text3-tag ul {
        margin-left: 0px;
        margin-top: 20px;
    }

    .blog-details__content-text3-share {
        display: block;
    }

    .blog-details__content-text3-share ul {
        margin-left: 0px;
        margin-top: 20px;
    }


















}











/***
=============================================
Medium screen
=============================================
***/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-one__img {
        max-width: 420px;
        width: 100%;
    }

    .about-one__content {
        margin-left: 0px;
        margin-top: 70px;
    }

    .about-one__content-text2 {
        max-width: 480px;
        width: 100%;
    }

    .team-one__right {
        max-width: 650px;
        width: 100%;
        margin-top: 60px;
    }

    .pricing-one .shape2 {
        display: none;
    }

    .pricing-one .shape3 {
        display: none;
    }

    .pricing-one__single {
        padding: 30px 30px 40px;
    }

    .pricing-one__single .table-header h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .pricing-one__single .table-header p {
        font-size: 18px;
        line-height: 28px;
    }

    .pricing-one__single .plan-box {
        padding: 8px 25px 8px;
        padding-right: 15px;
    }

    .pricing-one__single .plan-box p {
        font-size: 15px;
        line-height: 25px;
    }

    .testimonial-one__right {
        padding-left: 0px;
        margin-left: 0px;
        margin-top: 60px;
    }

    .testimonial-one__right::before {
        display: none;
    }

    .appoinment-one__contact {
        float: left;
    }

    .appoinment-one__form {
        float: left;
    }

    .appoinment-one__bg {
        display: none;
    }

    .appoinment-one .shape1 {
        display: none;
    }

    .working-process-one__tab-box .tab-buttons {
        margin-right: 30px;
    }

    .working-process-one__tab-box .tab-buttons li {
        margin-bottom: 35px;
    }

    .faq-one .shape1 {
        display: none;
    }

    .faq-one .shape2 {
        display: none;
    }

    .faq-one .shape3 {
        display: none;
    }

    .faq-one__faq {
        max-width: 650px;
    }

    .faq-one__img {
        margin: 60px 0px 0px;
    }

    .blog-one__single-img {
        padding-left: 50px;
    }

    .blog-one__single-img .date-box h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .blog-one__single-img .date-box h3 span {
        font-size: 15px;
        line-height: 15px;
    }

    .blog-one__single-img .date-box {
        left: -26px;
    }

    .blog-one__single::before {
        right: 0px;
    }

    .blog-one__single-content h2 {
        font-size: 18px;
        line-height: 30px;
    }

    .blog-one .shape1 {
        display: none;
    }

    .footer-widget__contact {
        margin-left: 0px;
        margin-top: 70px;
    }

    .footer-widget__gallery {
        margin-left: 0px;
        margin-top: 70px;
    }

    .footer-widget__gallery-list {
        max-width: 390px;
        width: 100%;
    }

    .about-two__left {
        margin-right: 0px;
        max-width: 350px;
        width: 100%;
    }

    .about-two__middle {
        margin-left: -60px;
    }

    .about-two__right {
        margin-left: 0px;
        max-width: 500px;
        width: 100%;
        margin-top: 60px;
    }

    .services-two__single-tab-inner .content-box {
        position: relative;
        top: 0px;
        right: 0px;
        transform: rotate(0deg);
        justify-content: space-between;
        margin-top: 20px;
    }

    .services-two__single-tab-inner {
        padding-right: 20px;
    }

    .services-two__single-tab-inner .icon-box a::before {
        display: none;
    }

    .services-two__single-tab-inner .icon-box a::after {
        display: none;
    }

    .services-two__single-tab-inner .icon-box a span::before {
        font-size: 20px;
        line-height: 20px;
        transform: rotate(0deg);
    }

    .services-two__single-tab-inner .icon-box a {
        width: 55px;
        height: 55px;
    }

    .services-two__single-tab-inner .content-box .text h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .services-two__single-tab-inner .icon-box {
        margin-left: 0px;
    }

    .services-two__top .sec-title__title {
        font-size: 42px;
        line-height: 52px;
    }

    .services-two__tab-box .tab-buttons {
        display: flex;
        margin-right: 0px;
        align-items: center;
        justify-content: center;
    }

    .services-two__tab-box .tab-buttons .tab-btn {
        float: left;
        width: 20%;
        padding: 39px 25px 32px;
    }

    .services-two__tab-box .tab-buttons .tab-btn h3 {
        font-size: 17px;
        line-height: 27px;
    }

    .team-two .container {
        max-width: 760px;
    }

    .counter-one__single {
        margin-bottom: 50px;
        display: block;
        text-align: center;
    }

    .counter-one__single .content-box {
        margin-left: 0px;
    }

    .counter-one__single .content-box .count-box {
        justify-content: center;
    }

    .counter-one__single .icon-box {
        margin: 0 auto 15px;
    }

    .counter-one__inner {
        padding: 75px 60px 19px;
    }

    .testimonial-two__single-author-outer .border-box {
        display: none;
    }

    .portfolio-one__single-content {
        margin-left: 20px;
        margin-right: 20px;
    }

    .portfolio-one__single-content .text-box h3 {
        font-size: 16px;
        line-height: 26px;
    }

    .portfolio-one__carousel .owl-nav {
        display: none;
    }

    .why-choose-one .shape10 {
        display: none;
    }

    .why-choose-one .shape4 {
        display: none;
    }

    .why-choose-one .shape5 {
        display: none;
    }

    .why-choose-one .shape6 {
        display: none;
    }

    .why-choose-one .shape7 {
        display: none;
    }

    .why-choose-one .shape8 {
        display: none;
    }

    .why-choose-one .shape9 {
        display: none;
    }

    .why-choose-one__bg {
        width: calc((100% - 0px) / 1);
        clip-path: none;
        bottom: auto;
        min-height: 500px;
    }

    .why-choose-one .shape3 {
        display: none;
    }

    .why-choose-one .shape2 {
        display: none;
    }

    .why-choose-one .shape1 {
        display: none;
    }

    .why-choose-one__content {
        float: left;
        padding-top: 460px;
    }

    .blog-one--two .blog-one__single-content h2 {
        font-size: 18px;
    }

    .blog-one--two__shape2 {
        display: none;
    }

    .blog-one--two .blog-one__single-content h2 a br {
        display: none;
    }

    .site-footer--two__top-shape {
        display: none;
    }

    .site-footer--two__top::before {
        display: none;
    }

    .site-footer--two__top::after {
        display: none;
    }

    .site-footer--two__top-right .btn-box {
        margin-left: 40px;
    }

    .site-footer--two__top-right .text-box h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .footer-widget__recent-post {
        margin-top: 70px;
    }

    .mobile-nav__content .home-showcase {
        margin-top: 0;
        margin-bottom: 0;
    }

    .features-one .shape1 {
        display: none;
    }

    .features-one__single-inner h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .about-three__img {
        max-width: 600px;
        width: 100%;
    }

    .about-three .shape3 {
        display: none;
    }

    .about-three__content {
        margin-top: 60px;
    }

    .portfolio-two__single .content-box {
        left: 10px;
        padding: 15px 20px 15px;
    }

    .portfolio-two__single .content-box h2 {
        font-size: 18px;
        margin-top: 0px;
    }

    .portfolio-two__single:hover .content-box {
        bottom: 10px;
    }

    .portfolio-two__single .icon-box {
        right: 20px;
    }

    .portfolio-two__single:hover .icon-box {
        top: 20px;
    }

    .work-process-two__tab .tabs-button-box li {
        margin-right: 100px;
    }

    .work-process-two__single-content-left .sec-title__title {
        font-size: 35px;
        line-height: 48px;
    }

    .why-choose-two__img {
        width: calc((100% - 0px) / 1);
        height: 450px;
    }

    .why-choose-two__img::before {
        display: none;
    }

    .why-choose-two__content {
        max-width: 600px;
        width: 100%;
        float: none;
        padding-top: 410px;
    }

    .sidebar {
        max-width: 550px;
        width: 100%;
        margin: 70px auto 0px;
    }

    .portfolio-details__sidebar {
        max-width: 550px;
        width: 100%;
        margin: 60px auto 0px;
    }

    .team-details__top-img {
        margin-right: 0px;
        max-width: 600px;
        width: 100%;
    }

    .team-details__content {
        max-width: 800px;
        width: 100%;
        margin-top: 50px;
    }

    .contact-page__form {
        margin-top: 50px;
    }

    .product__sidebar {
        max-width: 550px;
        width: 100%;
        margin: 0px auto 60px;
    }

    .error-page__img img {
        width: 100%;
    }

    .coming-soon-page__content .big-title {
        font-size: 72px;
    }













}











/***
=============================================
Tablet Layout: 768px
=============================================
***/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-one__img {
        max-width: 420px;
        width: 100%;
    }

    .about-one__content {
        margin-left: 0px;
        margin-top: 70px;
    }

    .about-one__content-text2 {
        max-width: 480px;
        width: 100%;
    }

    .services-one__carousel {
        width: 100%;
    }

    .team-one__right {
        max-width: 650px;
        width: 100%;
        margin-top: 60px;
    }

    .pricing-one .shape2 {
        display: none;
    }

    .pricing-one .shape3 {
        display: none;
    }

    .pricing-one .row {
        justify-content: center;
    }

    .pricing-one .sec-title {
        padding-bottom: 140px;
    }

    .pricing-one__tab-btn {
        right: auto;
        left: 0;
    }

    .pricing-one__single {
        margin-bottom: 30px;
        padding: 30px 20px 40px;
    }

    .pricing-one__single .table-header h2 {
        font-size: 35px;
    }

    .pricing-one .tabed-content {
        height: 100%;
    }

    .pricing-one {
        padding: 120px 0px 90px;
    }

    .testimonial-one__right {
        padding-left: 0px;
        margin-left: 0px;
        margin-top: 60px;
    }

    .testimonial-one__right::before {
        display: none;
    }

    .testimonial-one {
        padding: 0px 0px 105px;
    }

    .appoinment-one__contact {
        float: none;
    }

    .appoinment-one__form {
        float: none;
        margin-top: 60px;
    }

    .appoinment-one__bg {
        display: none;
    }

    .appoinment-one .shape1 {
        display: none;
    }


    .working-process-one__tab-box {
        display: block;
    }

    .working-process-one__tab-box .tab-buttons {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
    }

    .working-process-one__tab-box .tab-buttons li {
        margin-bottom: 0px;
        margin-right: 30px;
    }

    .working-process-one__tab-box .tab-buttons li:last-child {
        margin-right: 0px;
    }

    .working-process-one__inner {
        padding-left: 0px;
    }

    .working-process-one__inner .shape1 {
        display: none;
    }

    .faq-one .shape1 {
        display: none;
    }

    .faq-one .shape2 {
        display: none;
    }

    .faq-one .shape3 {
        display: none;
    }

    .faq-one__faq {
        max-width: 650px;
    }

    .faq-one__img {
        margin: 60px 0px 0px;
    }

    .blog-one__single {
        max-width: 450px;
        width: 100%;
        margin: 0 auto 30px;
    }

    .blog-one .shape1 {
        display: none;
    }

    .footer-widget__contact {
        margin-left: 0px;
        margin-top: 70px;
    }

    .footer-widget__gallery {
        margin-left: 0px;
        margin-top: 70px;
    }

    .footer-widget__gallery-list {
        max-width: 390px;
        width: 100%;
    }

    .site-footer .shape2 {
        display: none;
    }

    .site-footer__top-inner {
        display: block;
        text-align: center;
    }

    .site-footer__subscribe-form {
        max-width: 455px;
        width: 100%;
        margin: 30px auto 30px;
    }

    .site-footer__social-links {
        justify-content: center;
    }

    .site-footer__bottom-menu li {
        padding-left: 20px;
        padding-right: 25px;
    }


    .about-two__left {
        margin-right: 0px;
        max-width: 400px;
        width: 100%;
    }

    .about-two__middle {
        margin-left: 0px;
        margin-top: 50px;
    }

    .about-two__right {
        margin-left: 0px;
        max-width: 500px;
        width: 100%;
        margin-top: 50px;
    }

    .services-two__tab-box .tab-buttons {
        display: flex;
        margin-right: 0px;
        align-items: center;
        justify-content: center;
    }

    .services-two__tab-box .tab-buttons .tab-btn {
        float: left;
        width: 20%;
        padding: 39px 25px 32px;
    }

    .services-two__tab-box .tab-buttons .tab-btn h3 {
        font-size: 17px;
        line-height: 27px;
    }

    .services-two__top {
        display: block;
    }

    .services-two__top .text-box {
        max-width: 700px;
        margin-top: 15px;
    }

    .services-two__single-tab {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }

    .services-two {
        padding: 120px 0px 90px;
    }

    .counter-one__single {
        margin-bottom: 50px;
        display: block;
        text-align: center;
    }

    .counter-one__single .content-box {
        margin-left: 0px;
    }

    .counter-one__single .content-box .count-box {
        justify-content: center;
    }

    .counter-one__single .icon-box {
        margin: 0 auto 15px;
    }

    .counter-one__inner {
        padding: 75px 60px 19px;
    }

    .testimonial-two__single-author-outer .border-box {
        display: none;
    }

    .testimonial-one--two {
        padding: 230px 0px 208px;
    }

    .testimonial-one--two__top .sec-title__title {
        font-size: 40px;
    }

    .portfolio-one__single-content {
        bottom: 20px;
        display: block;
        margin-left: 20px;
        margin-right: 20px;
    }

    .portfolio-one__single-content .btn-box a {
        clip-path: none;
        width: 50px;
        height: 50px;
    }

    .portfolio-one__single-content .btn-box {
        margin-top: 10px;
    }

    .portfolio-one__carousel .owl-nav {
        display: none;
    }

    .why-choose-one .shape10 {
        display: none;
    }

    .why-choose-one .shape4 {
        display: none;
    }

    .why-choose-one .shape5 {
        display: none;
    }

    .why-choose-one .shape6 {
        display: none;
    }

    .why-choose-one .shape7 {
        display: none;
    }

    .why-choose-one .shape8 {
        display: none;
    }

    .why-choose-one .shape9 {
        display: none;
    }

    .why-choose-one__bg {
        width: calc((100% - 0px) / 1);
        clip-path: none;
        bottom: auto;
        min-height: 500px;
    }

    .why-choose-one .shape3 {
        display: none;
    }

    .why-choose-one .shape2 {
        display: none;
    }

    .why-choose-one .shape1 {
        display: none;
    }

    .why-choose-one__content {
        float: left;
        padding-top: 460px;
    }

    .blog-one--two__shape2 {
        display: none;
    }

    .site-footer--two__top-shape {
        display: none;
    }

    .site-footer--two__top::before {
        display: none;
    }

    .site-footer--two__top::after {
        display: none;
    }

    .site-footer--two__top-right .btn-box {
        margin-left: 40px;
    }

    .site-footer--two__top-right .text-box h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .footer-widget__recent-post {
        margin-top: 70px;
    }

    .site-footer--two__top-inner {
        display: block;
        text-align: center;
    }

    .site-footer--two__top-right {
        display: block;
    }

    .site-footer--two__top-right .text-box {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .site-footer--two__top-right .btn-box {
        margin-left: 0px;
    }

    .mobile-nav__content .home-showcase {
        margin-top: 0;
        margin-bottom: 0;
    }

    .features-one__single {
        max-width: 450px;
        width: 100%;
        margin: 0 auto 40px;
    }

    .about-three__img {
        max-width: 600px;
        width: 100%;
    }

    .about-three .shape3 {
        display: none;
    }

    .about-three__content {
        margin-top: 60px;
    }

    .portfolio-two__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }

    .work-process-two__tab .tabs-button-box li {
        margin-right: 60px;
    }

    .work-process-two__single-content-left .sec-title__title {
        font-size: 35px;
        line-height: 48px;
    }

    .work-process-two__single-content-right {
        margin-top: 20px;
    }

    .why-choose-two__img {
        width: calc((100% - 0px) / 1);
        height: 450px;
    }

    .why-choose-two__img::before {
        display: none;
    }

    .why-choose-two__content {
        max-width: 600px;
        width: 100%;
        float: none;
        padding-top: 410px;
    }

    .testimonial-three .sec-title__title {
        font-size: 40px;
        line-height: 50px;
    }

    .page-header .shape3 {
        display: none;
    }

    .page-header .shape4 {
        display: none;
    }

    .page-header .shape5 {
        display: none;
    }

    .sidebar {
        max-width: 550px;
        width: 100%;
        margin: 70px auto 0px;
    }

    .portfolio-details__sidebar {
        max-width: 550px;
        width: 100%;
        margin: 60px auto 0px;
    }

    .team-details__top-img {
        margin-right: 0px;
        max-width: 600px;
        width: 100%;
    }

    .team-details__content {
        margin-top: 50px;
    }

    .blog-details__content-text3-tag {
        display: block;
    }

    .blog-details__content-text3-tag ul {
        margin-left: 0px;
        margin-top: 20px;
    }

    .blog-details__content-text3-share {
        display: block;
    }

    .blog-details__content-text3-share ul {
        margin-left: 0px;
        margin-top: 20px;
    }

    .contact-page__form {
        margin-top: 50px;
    }

    .product__sidebar {
        max-width: 550px;
        width: 100%;
        margin: 0px auto 60px;
    }

    .product-details__img {
        max-width: 550px;
        width: 100%;
        margin-bottom: 50px;
    }

    .checkout__payment {
        margin-top: 40px;
    }

    .error-page__img img {
        width: 100%;
    }

    .coming-soon-page__content .big-title {
        font-size: 60px;
    }

    .coming-soon-page .timer-box .countdown-timer li {
        float: none;
    }

    .coming-soon-page .timer-box .countdown-timer li+li {
        margin-top: 20px;
    }

    .coming-soon-page__content {
        top: 0%;
        transform: translateY(0%);
    }

    .coming-soon-page__content .inner .text p br {
        display: none;
    }

    .coming-soon-page__subscribe-box form {
        flex-direction: column;
    }

    .coming-soon-page {
        height: auto !important;
        padding: 110px 0 120px;
    }






















}









/***
=============================================
Mobile Layout: 320px
=============================================
***/
@media only screen and (max-width: 767px) {
    .sec-title__title br {
        display: none;
    }

    .sec-title__title {
        font-size: 30px;
        line-height: 42px;
    }


    .about-one .shape2 {
        display: none;
    }

    .about-one__img {
        max-width: 420px;
        width: 100%;
        margin: 42px auto 0px;
    }

    .about-one__content {
        margin-left: 0px;
        margin-top: 70px;
    }

    .about-one__counter {
        margin: 0 auto;
    }

    .about-one .shape1 {
        display: none;
    }

    .about-one__content-text2 {
        display: block;
    }

    .about-one__content-author {
        margin-top: 20px;
    }

    .services-one__carousel {
        width: 100%;
    }

    .team-one__right {
        max-width: 650px;
        width: 100%;
        margin-top: 0px;
    }

    .team-one__right-single-inner {
        padding: 50px 30px 50px;
    }

    .team-one__right-single-inner .social-links a {
        color: var(--billdins-black);
    }

    #team-one__thumb {
        display: none;
    }

    .pricing-one .shape2 {
        display: none;
    }

    .pricing-one .shape3 {
        display: none;
    }

    .pricing-one__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }

    .pricing-one .tabed-content {
        height: 100%;
    }

    .pricing-one {
        padding: 120px 0px 90px;
    }

    .pricing-one__switch-toggle {
        position: relative;
        top: 0px;
    }

    .pricing-one__switch-toggle ul.switch-toggler-list {
        justify-content: left;
    }

    .pricing-one .sec-title {
        padding-bottom: 27px;
    }

    .pricing-one__top {
        padding-bottom: 60px;
    }

    .pricing-one .shape2 {
        display: none;
    }

    .pricing-one .shape3 {
        display: none;
    }

    .pricing-one .sec-title {
        padding-bottom: 140px;
    }

    .pricing-one__tab-btn {
        right: auto;
        left: 0;
    }

    .pricing-one__single {
        padding: 30px 20px 40px;
    }

    .pricing-one__single .table-header h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .pricing-one__single .table-header p {
        font-size: 18px;
        line-height: 28px;
    }

    .pricing-one__single .plan-box {
        padding: 8px 25px 8px;
        padding-right: 15px;
    }

    .pricing-one__single .plan-box p {
        font-size: 15px;
        line-height: 25px;
    }

    .testimonial-one__right {
        padding-left: 0px;
        margin-left: 0px;
        margin-top: 60px;
    }

    .testimonial-one__right::before {
        display: none;
    }

    .testimonial-one {
        padding: 0px 0px 105px;
    }

    .testimonial-one__left-bottom {
        display: block;
    }

    .testimonial-one__left-bottom-text {
        margin-left: 0px;
        margin-top: 20px;
    }

    .testimonial-one__carousel.owl-dot-style1.owl-theme .owl-nav.disabled+.owl-dots {
        display: none;
    }

    .testimonial-one__single-author {
        display: block;
    }

    .testimonial-one__single-author .content-box {
        margin-left: 0px;
        margin-top: 30px;
    }

    .appoinment-one__contact {
        float: none;
    }

    .appoinment-one__form {
        float: none;
        margin-top: 60px;
        padding: 67px 30px 80px;
    }

    .appoinment-one__bg {
        display: none;
    }

    .appoinment-one .shape1 {
        display: none;
    }

    .appoinment-one__contact-list ul li:nth-child(2) {
        margin-left: 0px;
        margin-right: 0px;
    }

    .appoinment-one__contact-list ul li:nth-child(3) {
        margin-left: 0px;
        margin-right: 0px;
    }

    .appoinment-one__form .title-box h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .working-process-one__tab-box {
        display: block;
    }

    .working-process-one__tab-box .tab-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .working-process-one__tab-box .tab-buttons li {
        margin-bottom: 0px;
        margin-right: 30px;
    }

    .working-process-one__tab-box .tab-buttons li:last-child {
        margin-right: 0px;
    }

    .working-process-one__inner {
        padding-left: 0px;
    }

    .working-process-one__inner .shape1 {
        display: none;
    }

    .working-process-one__single-tab-inner {
        display: block;
    }

    .working-process-one__single-tab-inner .content-box {
        margin-right: 0px;
        max-width: 100%;
    }

    .working-process-one__single-tab-inner .img-box {
        margin-top: 0px;
    }

    .working-process-one .tabs-content {
        max-width: 450px;
        width: 100%;
        margin: 0 auto;
    }

    .working-process-one__single-tab-inner .content-box::after {
        display: none;
    }

    .faq-one .shape1 {
        display: none;
    }

    .faq-one .shape2 {
        display: none;
    }

    .faq-one .shape3 {
        display: none;
    }

    .faq-one .shape4 {
        display: none;
    }

    .faq-one__faq {
        max-width: 650px;
    }

    .faq-one__img {
        margin: 60px 0px 0px;
    }

    .faq-one__img-list1 li .img-box {
        border-bottom-left-radius: 50%;
    }

    .faq-one__img-list2 li .img-box {
        border-bottom-right-radius: 50%;
    }

    .faq-one__img-list2 {
        position: relative;
        top: auto;
        transform: translateY(0%);
        display: flex;
        left: 0px;
        align-items: center;
        flex-direction: column;
        margin-top: 20px;
    }

    .faq-one__img-list2 li:nth-child(2) .img-box {
        margin-left: 0px;
    }

    .faq-one__img-list2 li:nth-child(1) .img-box {
        transform: rotate(0deg);
    }

    .faq-one__img-list1 li:nth-child(1) .img-box {
        transform: rotate(0deg);
    }

    .faq-one__img-list1 li:nth-child(2) .img-box {
        margin-top: 0px;
    }

    .faq-one__img-list1 li+li {
        margin-top: 20px;
    }

    .faq-one__img-list2 li+li {
        margin-top: 20px;
    }


    .blog-one__single {
        max-width: 450px;
        width: 100%;
        margin: 0 auto 30px;
    }

    .blog-one .shape1 {
        display: none;
    }

    .blog-one__single-img {
        padding-left: 50px;
    }

    .blog-one__single-img .date-box h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .blog-one__single-img .date-box h3 span {
        font-size: 15px;
        line-height: 15px;
    }

    .blog-one__single-img .date-box {
        left: -26px;
    }

    .blog-one__single::before {
        right: 0px;
    }

    .blog-one__single-content h2 {
        font-size: 18px;
        line-height: 30px;
    }

    .blog-one .shape1 {
        display: none;
    }

    .footer-widget__contact {
        margin-left: 0px;
        margin-top: 70px;
    }

    .footer-widget__gallery {
        margin-left: 0px;
        margin-top: 70px;
    }

    .footer-widget__gallery-list {
        max-width: 390px;
        width: 100%;
    }

    .site-footer .shape2 {
        display: none;
    }

    .site-footer__top-inner {
        display: block;
        text-align: center;
    }

    .site-footer__subscribe-form {
        max-width: 455px;
        width: 100%;
        margin: 30px auto 30px;
    }

    .site-footer__social-links {
        justify-content: center;
    }

    .site-footer__bottom-menu li {
        padding-left: 0px;
        padding-right: 0px;
    }

    .site-footer__subscribe-form .subscribe-form input[type="email"] {
        max-width: 455px;
        width: 100%;
    }

    .footer-widget__useful-links {
        margin-top: 70px;
    }

    .site-footer__bottom-inner {
        display: block;
        text-align: center;
    }

    .site-footer__bottom-menu {
        display: block;
    }

    .site-footer__bottom-menu li::before {
        display: none;
    }

    .site-footer__copyright {
        margin-bottom: 20px;
    }

    .about-two__left {
        margin-right: 0px;
        max-width: 500px;
        width: 100%;
    }

    .about-two__middle {
        margin-left: 0px;
        margin-top: 50px;
    }

    .about-two__right {
        margin-left: 0px;
        max-width: 500px;
        width: 100%;
        margin-top: 50px;
    }

    .about-two__middle-text2 ul {
        display: block;
    }

    .about-two__middle-text2 ul li+li {
        margin-left: 0px;
        margin-top: 30px;
    }

    .services-two__top {
        display: block;
    }

    .services-two__top .text-box {
        max-width: 700px;
        margin-top: 15px;
    }

    .services-two__tab-box .tab-buttons .tab-btn {
        padding: 39px 25px 32px;
        display: block;
    }

    .services-two__tab-box .tab-buttons li {
        margin-right: 0px;
        margin-bottom: 10px;
    }

    .services-two__tab-box .tab-buttons li:last-child {
        margin-bottom: 0px;
    }

    .services-two__tab-box .tab-buttons {
        margin-right: 0px;
        max-width: 400px;
        width: 100%;
        margin: 0 auto 40px;
    }

    .services-two__single-tab {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }

    .services-two {
        padding: 120px 0px 90px;
    }

    .services-two__single-tab-inner .content-box {
        position: relative;
        top: 0px;
        right: 0px;
        transform: rotate(0deg);
        justify-content: space-between;
        margin-top: 20px;
    }

    .services-two__single-tab-inner {
        padding-right: 20px;
    }

    .services-two__single-tab-inner .icon-box a::before {
        display: none;
    }

    .services-two__single-tab-inner .icon-box a::after {
        display: none;
    }

    .services-two__single-tab-inner .icon-box a span::before {
        font-size: 20px;
        line-height: 20px;
        transform: rotate(0deg);
    }

    .services-two__single-tab-inner .icon-box a {
        width: 55px;
        height: 55px;
    }

    .services-two__single-tab-inner .content-box .text h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .services-two__single-tab-inner .icon-box {
        margin-left: 0px;
    }

    .team-two__single {
        max-width: 300px;
        width: 100%;
        margin: 0 auto 30px;
    }

    .team-two__single-img {
        width: 230px;
        height: 235px;
    }

    .counter-one__single {
        margin-bottom: 50px;
        display: block;
        text-align: center;
    }

    .counter-one__single .content-box {
        margin-left: 0px;
    }

    .counter-one__single .content-box .count-box {
        justify-content: center;
    }

    .counter-one__single .icon-box {
        margin: 0 auto 15px;
    }

    .counter-one__inner {
        padding: 75px 60px 19px;
    }

    .testimonial-two__single-author-outer .border-box {
        display: none;
    }

    .testimonial-one--two {
        padding: 230px 0px 208px;
    }

    .testimonial-one--two__top {
        display: block;
    }

    .testimonial-one--two__top-right {
        margin-top: 35px;
    }

    .brand-one__inner .title-box .border-box {
        display: none;
    }

    .brand-one__inner .title-box .text {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }

    .portfolio-one__carousel .owl-nav {
        display: none;
    }

    .portfolio-one__single-box li {
        margin-top: 20px;
    }

    .portfolio-one__single-box li:last-child {
        margin-bottom: 0px;
    }

    .portfolio-one__single-content {
        bottom: 20px;
        display: block;
        margin-left: 20px;
        margin-right: 20px;
    }

    .portfolio-one__single-content .btn-box a {
        clip-path: none;
        width: 50px;
        height: 50px;
    }

    .portfolio-one__single-content .btn-box {
        margin-top: 10px;
    }

    .why-choose-one .shape10 {
        display: none;
    }

    .why-choose-one .shape4 {
        display: none;
    }

    .why-choose-one .shape5 {
        display: none;
    }

    .why-choose-one .shape6 {
        display: none;
    }

    .why-choose-one .shape7 {
        display: none;
    }

    .why-choose-one .shape8 {
        display: none;
    }

    .why-choose-one .shape9 {
        display: none;
    }

    .why-choose-one__bg {
        width: calc((100% - 0px) / 1);
        clip-path: none;
        bottom: auto;
        min-height: 440px;
    }

    .why-choose-one .shape3 {
        display: none;
    }

    .why-choose-one .shape2 {
        display: none;
    }

    .why-choose-one .shape1 {
        display: none;
    }

    .why-choose-one__content {
        float: left;
        padding-top: 400px;
    }

    .why-choose-one__content-single {
        padding: 30px 20px 30px;
        max-width: 400px;
        width: 100%;
    }

    .why-choose-one__content-single .title-box h3 {
        font-size: 19px;
    }

    .blog-one--two__shape2 {
        display: none;
    }

    .blog-one--two .blog-one__single-content h2 a br {
        display: none;
    }

    .site-footer--two__top-shape {
        display: none;
    }

    .site-footer--two__top::before {
        display: none;
    }

    .site-footer--two__top::after {
        display: none;
    }

    .site-footer--two__top-right .btn-box {
        margin-left: 40px;
    }

    .site-footer--two__top-right .text-box h2 {
        font-size: 30px;
        line-height: 42px;
    }

    .footer-widget__recent-post {
        margin-top: 70px;
    }

    .site-footer--two__top-inner {
        display: block;
        text-align: center;
    }

    .site-footer--two__top-right {
        display: block;
    }

    .site-footer--two__top-right .text-box {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .site-footer--two__top-right .text-box h2 br {
        display: none;
    }

    .site-footer--two__top-right .btn-box {
        margin-left: 0px;
    }

    .site-footer__payment {
        justify-content: center;
    }

    .mobile-nav__content .home-showcase {
        margin-top: 0;
        margin-bottom: 0;
    }

    .features-one__single {
        max-width: 450px;
        width: 100%;
        margin: 0 auto 40px;
    }

    .features-one .shape1 {
        display: none;
    }

    .features-one__single-inner h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .about-three__img {
        padding-left: 0px;
        margin-right: 0px;
    }

    .about-three__img2 {
        position: relative;
        bottom: 0px;
        left: 0;
        border: 0px solid var(--billdins-white);
        margin-top: 20px;
    }

    .about-three__img::before {
        display: none;
    }

    .about-three__content {
        margin-top: 60px;
    }

    .about-three .shape2 {
        display: none;
    }

    .about-three .shape3 {
        display: none;
    }

    .portfolio-two__single {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 30px;
    }

    .portfolio-two .shape1 {
        display: none;
    }

    .portfolio-two__menu-box .project-filter {
        display: block;
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
    }

    .portfolio-two__menu-box .project-filter li {
        display: block;
        float: none;
        border-right: 0px solid rgba(255, 255, 255, .2);
        border-bottom: 1px solid rgba(255, 255, 255, .2);
    }

    .portfolio-two__menu-box .project-filter li:last-child {
        margin-bottom: none;
    }

    .portfolio-two__single .content-box {
        left: 10px;
        padding: 15px 20px 15px;
    }

    .portfolio-two__single .content-box h2 {
        font-size: 17px;
        margin-top: 0px;
    }

    .portfolio-two__single:hover .content-box {
        bottom: 10px;
    }

    .portfolio-two__single .icon-box {
        right: 20px;
    }

    .portfolio-two__single:hover .icon-box {
        top: 20px;
    }

    .portfolio-two__single .content-box p {
        font-size: 13px;
    }

    .video-one__inner .title-box h2 br {
        display: none;
    }

    .video-one__inner .title-box h2 {
        font-size: 32px;
        line-height: 1.3em;
    }

    .work-process-two__tab .tabs-button-box li {
        margin-right: 0px;
        margin-bottom: 40px;
    }

    .work-process-two__tab .tabs-button-box li:last-child {
        margin-bottom: 0px;
    }

    .work-process-two__single-content-right {
        margin-top: 20px;
    }

    .work-process-two__tab .tabs-button-box {
        display: block;
        padding: 60px 0px 52px;
    }

    .work-process-two__tab .tabs-button-box .tab-btn-item .icon-box {
        margin: 0 auto 13px;
    }

    .why-choose-two__img {
        width: calc((100% - 0px) / 1);
        height: 450px;
    }

    .why-choose-two__img::before {
        display: none;
    }

    .why-choose-two__content {
        max-width: 600px;
        width: 100%;
        float: none;
        padding-top: 410px;
    }

    .testimonial-three__carousel.owl-theme .owl-nav {
        display: none;
    }

    .subscribe-one .shape1 {
        display: none;
    }

    .subscribe-one::before {
        display: none;
    }

    .subscribe-one::after {
        display: none;
    }

    .subscribe-one__content h2 {
        font-size: 35px;
        line-height: 50px;
    }

    .subscribe-one__form .subscribe-form button {
        position: relative;
        top: 0px;
        right: 0px;
        margin-top: 10px;
    }

    .subscribe-one__form .subscribe-form input[type="email"] {
        padding-right: 30px;
    }

    .page-header .shape3 {
        display: none;
    }

    .page-header .shape4 {
        display: none;
    }

    .page-header .shape5 {
        display: none;
    }

    .sidebar {
        max-width: 550px;
        width: 100%;
        margin: 70px auto 0px;
    }

    .page-header__inner h2 {
        font-size: 30px;
    }

    .services-details__content-img2-single {
        margin-top: 20px;
    }

    .services-details__content-text3-list {
        margin-top: 30px;
    }

    .sidebar__single {
        padding: 33px 30px 40px;
    }

    .sidebar__services-list li a {
        font-size: 16px;
        padding: 20px 15px 19px;
    }

    .portfolio-details__sidebar {
        max-width: 550px;
        width: 100%;
        margin: 60px auto 0px;
    }

    .portfolio-details__text1 h2 {
        font-size: 25px;
        line-height: 35px;
    }

    .portfolio-details__bottom-img-single {
        margin-bottom: 20px;
    }

    .portfolio-details__sidebar-list li .text-box {
        margin-left: 20px;
    }

    .portfolio-details__sidebar {
        padding: 17px 25px 40px;
    }

    .team-details__top-img {
        margin-right: 0px;
        max-width: 600px;
        width: 100%;
    }

    .team-details__content {
        margin-top: 50px;
    }

    .team-details__content-text1 h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .team-details__content-text2-single {
        margin-top: 30px;
    }

    .team-two--team-details .title-box h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .team-two--team-details .title-box p br {
        display: none;
    }

    .blog-standard__single-content .meta-box {
        justify-content: center;
        flex-direction: column;
    }

    .blog-standard__single-content .meta-box li {
        margin-right: 0px;
    }

    .blog-standard__single-content .meta-box li+li {
        margin-top: 10px;
    }

    .blog-standard__single-content h2 {
        font-size: 25px;
        line-height: 35px;
    }

    .sidebar__recent-post-list li {
        display: block;
    }

    .sidebar__recent-post-list li .text-box {
        margin-left: 0px;
        margin-top: 15px;
    }

    .sidebar__recent-post-list li .text-box h3 a br {
        display: none;
    }

    .blog-details__content-text1 {
        display: block;
        padding: 30px 30px 30px 30px;
    }

    .blog-details__content-text1 .text-box {
        margin-left: 0px;
        margin-top: 20px;
    }

    .blog-details__content-img1 .single-img {
        margin-bottom: 20px;
    }

    .blog-details__content-text3-tag {
        display: block;
    }

    .blog-details__content-text3-tag ul {
        display: block;
        margin-left: 0px;
        margin-top: 20px;
    }

    .blog-details__content-text3-tag ul li {
        margin-right: 0px;
        margin-bottom: 10px;
    }

    .blog-details__content-text3-tag ul li a {
        position: relative;
        display: inline-block;
    }

    .blog-details__content-text3-share {
        display: block;
    }

    .blog-details__content-text3-share ul {
        margin-left: 0px;
        margin-top: 20px;
    }

    .blog-details__content-text3 {
        display: block;
    }

    .comment-one__single-inner {
        padding-left: 0px;
    }

    .comment-one__img {
        position: relative;
        top: 0px;
        margin-bottom: 25px;
    }

    .comment-one__single.style2 {
        padding-left: 0px;
    }

    .contact-page__form {
        margin-top: 50px;
    }

    .product__sidebar {
        max-width: 550px;
        width: 100%;
        margin: 0px auto 60px;
    }

    .product__showing-result {
        display: block;
    }

    .product__showing-text-box {
        margin-bottom: 20px;
    }

    .product-details__top {
        margin-top: 55px;
    }

    .product-details__title span {
        display: block;
        margin-left: 0;
    }

    .product-details__buttons {
        flex-direction: column;
        align-items: baseline;
    }

    .product-details__buttons-2 {
        margin-left: 0;
        margin-top: 10px;
    }

    .product-details__social {
        flex-direction: column;
        align-items: baseline;
    }

    .product-details__social-link {
        margin-left: 0;
        margin-top: 10px;
    }

    .comments-area .comment {
        display: block;
    }

    .review-one__content {
        padding-left: 0px;
        margin-top: 20px;
    }

    .review-one__content-top {
        display: block;
    }

    .review-one__content-top .info h2 {
        font-size: 18px;
    }

    .cart-total li span:first-child {
        font-size: 18px;
        margin-right: 45px;
    }

    .checkout__payment {
        margin-top: 40px;
        padding: 49px 30px 18px;
    }

    .account__main-tab-box .tabs-content {
        padding: 60px 15px 75px;
    }

    .account__form-btn-box {
        flex-direction: column;
        align-items: baseline;
    }

    .account__form-btn-box .checked-box {
        margin-left: 0;
        margin-top: 10px;
    }

    .error-page__img img {
        width: 100%;
    }

    .error-page__content {
        margin-top: 52px;
    }

    .coming-soon-page__content .big-title {
        font-size: 50px;
        line-height: 1.2em;
    }

    .coming-soon-page .timer-box .countdown-timer li {
        float: none;
    }

    .coming-soon-page .timer-box .countdown-timer li+li {
        margin-top: 20px;
    }

    .coming-soon-page__content {
        top: 0%;
        transform: translateY(0%);
    }

    .coming-soon-page__content .inner .text p br {
        display: none;
    }

    .coming-soon-page__subscribe-box form {
        flex-direction: column;
    }

    .coming-soon-page {
        height: auto !important;
        padding: 110px 0 120px;
    }




















}









/***
=============================================
Slider All Responsice Css
=============================================
***/
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
    .main-slider-two .shape3 {
        display: none;
    }

    .main-slider-two .shape5 {
        display: none;
    }

    .main-slider__form {
        right: 30px;
        max-width: 465px;
        padding: 47px 40px 55px;
    }
}

@media only screen and (min-width: 1320px) and (max-width: 1600px) {

    .main-slider-two .container {
        padding-left: 125px;
    }

    .main-slider-two__bg {
        width: 750px;
    }

    .main-slider-two .shape1 {
        width: 760px;
    }

    .main-slider-two .shape4 {
        right: 380px;
        clip-path: polygon(35% 0%, 0% 100%, 100% 100%);
    }

    .main-slider-two .shape2 {
        right: 500px;
    }




}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .main-slider-one__single .shape2 {
        right: -150px;
    }

    .main-slider-one__single .shape1 {
        right: 120px;
    }

    .main-slider-one__img2 {
        right: 140px;
    }






}



@media only screen and (min-width: 1200px) and (max-width: 1319px) {

    .main-slider-two .container {
        padding-left: 100px;
    }

    .main-slider-two .shape4 {
        display: none;
    }

    .main-slider-two__bg::before {
        display: none;
    }

    .main-slider-two .active .shape1 {
        display: none;
    }

    .main-slider-two__bg {
        left: 0px;
        width: 100%;
        clip-path: none;
        transform: translateX(0%) scale(1);
        -webkit-transition: -webkit-transform 7500ms ease;
        transition: -webkit-transform 7500ms ease;
        transition: transform 7500ms ease;
        transition: transform 7500ms ease, -webkit-transform 7500ms ease;
        opacity: 1;
    }

    .main-slider-two__bg::after {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(var(--billdins-black-rgb), 0.6);
        content: "";
    }

    .main-slider-two .active .main-slider-two__bg {
        -webkit-transform: scale(1.07);
        transform: scale(1.07);
        -webkit-transition-delay: 0ms;
        -moz-transition-delay: 0ms;
        -ms-transition-delay: 0ms;
        -o-transition-delay: 0ms;
        transition-delay: 0ms;
    }

    .main-slider-two__pattern {
        display: none;
    }

    .main-slider-two .shape2 {
        display: none;
    }

    .main-slider-two__content .title-box h2 {
        color: var(--billdins-white);
    }

    .main-slider-two__content .text-box p {
        color: var(--billdins-white);
    }

    .main-slider-three__content .title-box h2 {
        font-size: 47px;
    }













}




@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-slider-one__single .shape2 {
        right: -250px;
    }

    .main-slider-one__single .shape1 {
        right: 20px;
    }

    .main-slider-one__img2 {
        right: 50px;
    }

    .main-slider-one__content .title-box h2 {
        font-size: 50px;
    }

    .main-slider-two .container {
        padding-left: 110px;
    }

    .main-slider-two .shape4 {
        display: none;
    }

    .main-slider-two__bg::before {
        display: none;
    }

    .main-slider-two .active .shape1 {
        display: none;
    }

    .main-slider-two__bg {
        left: 0px;
        width: 100%;
        clip-path: none;
        transform: translateX(0%) scale(1);
        -webkit-transition: -webkit-transform 7500ms ease;
        transition: -webkit-transform 7500ms ease;
        transition: transform 7500ms ease;
        transition: transform 7500ms ease, -webkit-transform 7500ms ease;
        opacity: 1;
    }

    .main-slider-two__bg::after {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(var(--billdins-black-rgb), 0.6);
        content: "";
    }

    .main-slider-two .active .main-slider-two__bg {
        -webkit-transform: scale(1.07);
        transform: scale(1.07);
        -webkit-transition-delay: 0ms;
        -moz-transition-delay: 0ms;
        -ms-transition-delay: 0ms;
        -o-transition-delay: 0ms;
        transition-delay: 0ms;
    }

    .main-slider-two__pattern {
        display: none;
    }

    .main-slider-two .shape2 {
        display: none;
    }

    .main-slider-two__content .title-box h2 {
        color: var(--billdins-white);
    }

    .main-slider-two__content .text-box p {
        color: var(--billdins-white);
    }

    .main-slider-two .shape3 {
        display: none;
    }

    .main-slider-two .shape5 {
        display: none;
    }

    .main-slider__form {
        max-width: 400px;
        padding: 47px 45px 55px;
    }

    .main-slider__form .title-box h2 {
        font-size: 25px;
        line-height: 35px;
    }

    .main-slider-three__content .title-box h2 {
        font-size: 42px;
        line-height: 1.3em;
    }

    .main-slider__form {
        right: 30px;
        max-width: 400px;
        padding: 47px 40px 55px;
    }

    .main-slider-three__content {
        max-width: 525px;
    }















}




@media only screen and (min-width: 768px) and (max-width: 991px) {

    .main-slider-one__single .shape2 {
        right: -400px;
    }

    .main-slider-one__single .shape1 {
        right: -200px;
    }

    .main-slider-one__img2 {
        display: none;
    }

    .main-slider-one__content .title-box h2 {
        font-size: 50px;
    }

    .main-slider-two .container {
        padding-left: 110px;
    }

    .main-slider-two .shape4 {
        display: none;
    }

    .main-slider-two__bg::before {
        display: none;
    }

    .main-slider-two .active .shape1 {
        display: none;
    }

    .main-slider-two__bg {
        left: 0px;
        width: 100%;
        clip-path: none;
        transform: translateX(0%) scale(1);
        -webkit-transition: -webkit-transform 7500ms ease;
        transition: -webkit-transform 7500ms ease;
        transition: transform 7500ms ease;
        transition: transform 7500ms ease, -webkit-transform 7500ms ease;
        opacity: 1;
    }

    .main-slider-two__bg::after {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(var(--billdins-black-rgb), 0.6);
        content: "";
    }

    .main-slider-two .active .main-slider-two__bg {
        -webkit-transform: scale(1.07);
        transform: scale(1.07);
        -webkit-transition-delay: 0ms;
        -moz-transition-delay: 0ms;
        -ms-transition-delay: 0ms;
        -o-transition-delay: 0ms;
        transition-delay: 0ms;
    }

    .main-slider-two__pattern {
        display: none;
    }

    .main-slider-two .shape2 {
        display: none;
    }

    .main-slider-two__content .title-box h2 {
        color: var(--billdins-white);
    }

    .main-slider-two__content .text-box p {
        color: var(--billdins-white);
    }

    .main-slider-two .shape3 {
        display: none;
    }

    .main-slider-two .shape5 {
        display: none;
    }

    .main-slider-two__content .title-box h2 {
        font-size: 50px;
    }

    .main-slider-three__single-inner {
        display: block;
    }

    .main-slider-three__single {
        padding: 134px 0px 140px;
    }


    .main-slider__form {
        position: relative;
        max-width: 100%;
        right: 0;
        margin-top: 0px;
        top: 0;
        transform: translateY(0);
    }

    .main-slider__form-bg {
        clip-path: none;
    }

    .main-slider__form::before {
        clip-path: none;
    }














}





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

    .main-slider-one__single {
        padding: 174px 0px 180px;
    }

    .main-slider-one__single .shape2 {
        display: none;
    }

    .main-slider-one__single .shape1 {
        display: none;
    }

    .main-slider-one__img2 {
        display: none;
    }

    .main-slider-one__content::before {
        display: none;
    }

    .main-slider-one__content::after {
        display: none;
    }

    .main-slider-one__content {
        padding-left: 0px;
        padding-bottom: 0px;
        overflow: visible;
    }

    .main-slider-one__content .tagline span {
        font-size: 16px;
    }

    .main-slider-one__content .title-box h2 {
        font-size: 35px;
        line-height: 1.3em;
    }

    .main-slider-one__content .title-box h2 br {
        display: none;
    }

    .main-slider-one__content .text-box p br {
        display: none;
    }

    .main-slider-one__single-btn {
        display: block;
    }

    .main-slider-one__single-video {
        margin-left: 0px;
        margin-top: 20px;
    }


    .main-slider-two__carousel.owl-theme .owl-nav.disabled+.owl-dots {
        display: none;
    }

    .main-slider-two .shape4 {
        display: none;
    }

    .main-slider-two__bg::before {
        display: none;
    }

    .main-slider-two .active .shape1 {
        display: none;
    }

    .main-slider-two__bg {
        left: 0px;
        width: 100%;
        clip-path: none;
        transform: translateX(0%) scale(1);
        -webkit-transition: -webkit-transform 7500ms ease;
        transition: -webkit-transform 7500ms ease;
        transition: transform 7500ms ease;
        transition: transform 7500ms ease, -webkit-transform 7500ms ease;
        opacity: 1;
    }

    .main-slider-two__bg::after {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(var(--billdins-black-rgb), 0.6);
        content: "";
    }

    .main-slider-two .active .main-slider-two__bg {
        -webkit-transform: scale(1.07);
        transform: scale(1.07);
        -webkit-transition-delay: 0ms;
        -moz-transition-delay: 0ms;
        -ms-transition-delay: 0ms;
        -o-transition-delay: 0ms;
        transition-delay: 0ms;
    }

    .main-slider-two__pattern {
        display: none;
    }

    .main-slider-two .shape2 {
        display: none;
    }

    .main-slider-two__content .title-box h2 {
        color: var(--billdins-white);
    }

    .main-slider-two__content .text-box p {
        color: var(--billdins-white);
    }

    .main-slider-two .shape3 {
        display: none;
    }

    .main-slider-two .shape5 {
        display: none;
    }

    .main-slider-two__content .title-box h2 {
        font-size: 30px;
    }

    .main-slider-two__content .title-box h2 br {
        display: none;
    }

    .main-slider-two__content .tagline span {
        font-size: 16px;
    }

    .main-slider-two__content .text-box p br {
        display: none;
    }

    .main-slider-three__single-inner {
        display: block;
    }



    .main-slider-three__single {
        padding: 133px 0px 140px;
    }

    .main-slider-three__content .title-box h2 br {
        display: none;
    }

    .main-slider-three__content .title-box h2 span {
        border: none;
        padding: 0px 0px 0px;
        border-radius: 0px;
    }

    .main-slider-three__content .title-box h2 {
        font-size: 35px;
        line-height: 1.3em;
    }

    .main-slider__form .title-box h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .main-slider__form .thm-btn {
        padding: 0px 28px 0px;
    }

    .main-slider-three__single {
        padding: 114px 0px 120px;
    }


    .main-slider__form {
        position: relative;
        max-width: 100%;
        right: 0;
        margin-top: 0px;
        top: 0;
        transform: translateY(0);
        padding: 47px 20px 55px;
    }

    .main-slider__form-bg {
        clip-path: none;
    }

    .main-slider__form::before {
        clip-path: none;
    }

















}








/***
=============================================
Main Menu All Responsice Css
=============================================
***/
@media only screen and (min-width: 1200px) and (max-width: 1450px) {
    .main-header-one.style2 .main-header__btn {
        display: none;
    }


}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .main-header__btn {
        display: none;
    }

    .main-menu__wrapper-inner {
        padding-right: 8px;
    }

    .main-header-one__top::before {
        left: 60%;
    }



}




@media only screen and (min-width: 1200px) and (max-width: 1319px) {}








@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-header-one__top {
        display: none;
    }

    .main-header-one__bottom-right {
        display: none;
    }

    .main-header-one__bottom {
        padding: 25px 0px 25px;
    }

    .main-header-one.style2 .logo-one::before {
        top: -26px;
        border-bottom: 107px solid var(--billdins-base);
    }












}








@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header-one__top {
        display: none;
    }

    .main-header-one__bottom-right {
        display: none;
    }

    .main-header-one__bottom {
        padding: 25px 0px 25px;
    }

    .main-header-one.style2 .logo-one::before {
        top: -26px;
        border-bottom: 107px solid var(--billdins-base);
    }









}






@media (max-width: 767px) {
    .main-header-one__top {
        display: none !important;
    }

    .main-header-one__bottom-right {
        display: none !important;
    }

    .main-header-one__bottom {
        padding: 25px 0px 25px;
    }

    .main-header-one.style2 .logo-one::before {
        top: -26px;
        border-bottom: 107px solid var(--billdins-base);
    }

    .main-header-one.style2 .logo-one {
        padding-right: 50px;
    }
}










/***
=============================================
The End 
=============================================
***/