@import url(./bootstrap.min.css);
@import url(./select2.min.css);
@import url(./slick.css);
@import url(./aos.css);
@import url(./font.css);
@import url(./icon.css);
@import url(./font-awesome.min.css);
html,
body {
  width: 100%;
  height: 100%;
}
.wrapper {
  overflow: hidden;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: var(--themetextColor);
  line-height: 1.7;
  font-stretch: normal;
  font-kerning: normal;
  margin: 0;
}

:root {
  --themetextColor: #1d1d1d;
  --themebgColor: #e6e6e6;
  --themeheadingColor: #0083ca;
  --themeFooterBgColor: #2e3339;
}

/* Comman Css Start */
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
a {
  color: var(--themetextColor);
}

a:hover {
  color: var(--themeheadingColor);
}
.padder-30 {
  margin-top: 30px;
}
.container-1920 {
  width: 1250px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}
img.vert-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}
img.vert-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.whats-up-btn {
  width: 50px;
  height: 50px;
  background: #25d366;
  position: fixed;
  bottom: 0px;
  right: 30px;
  top: 0;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(270deg);
  z-index: 99999;
  transition: all .3s;
  box-shadow: 0 0px 5px rgb(0 0 0 / 20%);
}
.whats-up-btn svg {
  color: #fff;
  font-size: 25px;
}
.whats-up-btn:hover {
  background: #fff;
}
.whats-up-btn:hover svg {
  color: #25d366;
}
/* Comman Css End */

/* Header-Section Start */

.theme-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--themebgColor);
  z-index: 1;
  transition: 0.5s linear all;
}

.theme-header.is-sticky
  {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  animation: menu_sticky 0.5s ease-in-out;
  -webkit-animation: menu_sticky 0.5s ease-in-out;
  z-index: 9;
}
.pbr .sub-tab-section.is-sticky  {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  z-index: 8;
  box-shadow: 0px 16px 17px 0px rgb(0 0 0 / 15%);
  background: #fff;
  border-top: 1px solid #ccc;
  border-bottom: 0;
  animation: menu_sticky 0.5s ease-in-out;
  -webkit-animation: menu_sticky 0.5s ease-in-out;
}
/*================= Sticky Menu ===============*/

@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }
  50% {
    margin-top: -64px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes menu_sticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }
  50% {
    margin-top: -64px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
.brand-logo {
  height: 50px;
}
.theme-header {
  background-color: #fff;
}
.theme-header .navbar-expand-lg .navbar-collapse {
  justify-content: space-between;
}
.post-link{
  background: #ffc107;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
  transition: all .3s;
  border: 1px solid #ffc107;
}
.post-link:hover{
background: transparent;
color: #ffc107 !important;
}
.navbar-expand-lg .navbar-nav.center-nav {
  margin: auto;
  align-items: center;
}

.theme-header .dropdown-toggle::after {
  display: none;
}
.theme-header .navbar-expand-lg .navbar-nav .h-link {
  display: flex;
  align-items: center;
  color: var(--themetextColor);
  font-size: 14px;
}
.theme-header .navbar-expand-lg .navbar-nav li {
  padding: 0px 15px;
}
.theme-header .navbar-expand-lg {
  padding: 20px;
}
.burger {
  position: relative;
  width: 22px;
  height: 14px;
  cursor: pointer;
  display: none;
}
.right-nav{
  align-items: center;
}
.burger:focus {
  outline: 0;
}

.burger span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  transition: all 0.2s, background 0s;
  background: var(--themetextColor);
  -webkit-transition: all 0.2s, background 0s;
  -moz-transition: all 0.2s, background 0s;
  -ms-transition: all 0.2s, background 0s;
  -o-transition: all 0.2s, background 0s;
}

.burger span:nth-child(2) {
  top: 6px;
}

.burger span:last-child {
  top: 12px;
}

.burger.show-x span:first-child {
  transform: rotate(45deg);
}

.burger.show-x span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.show-x span:last-child {
  transform: rotate(-45deg);
}

.burger.show-x span:first-child,
.burger.show-x span:last-child {
  top: 8px;
}
.theme-header .navbar-nav > li > .dropdown-menu {
  display: block;
  opacity: 0;
  transition: ease-out 0.3s;
  transform: translate(0%, -100%);
}

.theme-header .dropdown:hover .dropdown-menu {
 display: block;
}
.theme-header .dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translate(0%, 0%);
}
.theme-header .dropdown:hover .h-link .material-icons,
.theme-header .dropdown:hover .search-btn .material-icons {
  opacity: 1;
  transform: translate(0%, 0%);
}
.theme-header .navbar-expand-lg .navbar-nav .h-link:hover {
  color: var(--themeheadingColor);
  text-decoration: none;
}
.theme-header .product-dropdown:hover .search-btn svg{
  transform: rotate(180deg);
}
.theme-header .product-dropdown .search-btn svg{
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}
.search-btn {
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  color: var(--themeheadingColor);
  border: 1px solid var(--themeheadingColor);
  border-radius: 6px;
  transition: 0.5s all ease;
}
.product-dropdown .search-btn{
  border: 0px;
  color: var(--themetextColor);
  padding: 0;
}
.right-nav li .search-btn svg{
  margin-right: 7px;
}
.product-dropdown .search-btn svg{
  margin-left: 5px;
    font-size: 16px;
    opacity: .7;
}
.product-dropdown:hover .search-btn{
  color: var(--themeheadingColor) !important;
  background: transparent;
}
.search-btn:hover {
  background: var(--themeheadingColor);
  color: #e6e6e6 !important;
  text-decoration: none;
}
.search-btn .material-icons {
  font-size: 20px;
}
.theme-header .navbar-expand-lg .navbar-nav.center-nav li:last-child {
  padding-right: 0;
}
.theme-header .dropdown-item:focus,
.theme-header .dropdown-item:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: var(--themeheadingColor);
}
.theme-header .dropdown .dropdown-menu {
  border: 0;
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
}
/* Header-Section end */
.mobile-work-img{
  display: none;
}
.sub-tab-section{
  box-shadow: 0 2px 6px 0 rgb(0 0 0 / 12%), inset 0 -1px 0 0 #dadce0;
} 
.sub-tab-section .nav-tabs .nav-item.show .nav-link, 
.sub-tab-section .nav-tabs .nav-link.active {
  background-color: transparent;
  border-color: transparent;
  color: var(--themeheadingColor);
}
.sub-tab-section .nav-tabs .nav-link{
  padding: 12px 0px;
  font-size: 20px;
  font-weight: 600;
  color: var(--themetextColor);
  opacity: .7;
  transition: all .3s;
  border: 0;
}
.sub-tab-section .nav-tabs .nav-item {
  margin-bottom: 0px;
 
  position: relative;
}
.sub-tab-section .nav-tabs .nav-item:last-child{
  margin-left: 40px;
}
.sub-tab-section .nav-tabs .nav-item .nav-link::after{
  content: '';
  position: absolute;
  width: 0%;
  height: 3px;
  background: var(--themeheadingColor);
   bottom: 4px;
  left: 0px;
  right: 0px;
  transition: all .3s;
}
.sub-tab-section .nav-tabs .nav-item .nav-link.active::after{
  width: 100%;
}
.sub-tab-section .nav-tabs .nav-item:hover .nav-link::after{
  width: 100%;
}
.sub-tab-section .nav-tabs .nav-item:hover .nav-link,
.sub-tab-section .nav-tabs .nav-item:focus .nav-link{
  opacity: 1;
  border: 0;
}

.sub-tab-section .nav-tabs {
  border-bottom: 0px;
}
.inner-buyer-info{
  position: relative;
}
.inner-buyer-info img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.inner-buyer-info .vandor-banner img{
  object-position: center;
}
.banner-img{
  position: relative;
  height: 700px;
}
.buyer-text{
  position: absolute;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 50%;
  flex-direction: column;
}
.banner-img::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(0,0,0,0.76) 45%, rgba(255,255,255,0) 100%);
}
.buyer-text h1{
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 71px;
  text-shadow: 0 1px 2px rgb(0 0 0 / 40%);
  margin: 0;
}
.buyer-text p{
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 30px 0;
}

a.buyer-btn{
  background: #fff;
  padding: 8px 40px;
  color: var(--themeheadingColor);
  font-size: 19px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all .3s;
}
.buyer-btn:hover{
  color: #fff;
  background: var(--themeheadingColor);
}

/* Work Css Start */
.work-section{
  margin: 70px 0px;
}
.work-img{
  width: 100%;
  height: 100%;
}
.mobile-work-img{
  width: 100%;
  height: 100%;
}
.work-heading h1{
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--themetextColor);
}
.round{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  padding: 15px;
  overflow: hidden;
  box-shadow: 0 0px 15px rgb(0 0 0 / 13%);
}

.selection-icon{
width: 100%;
height: 100%;
}
.section-heading h2{
font-size: 32px;
font-weight: 800;
margin: 16px 0px;
color: var(--themetextColor);
}
.section-para p{
font-size: 19px;
font-weight: 500;
line-height: 24px;
margin: 0;
color: var(--themetextColor);
}
.selection-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-listing{
  margin-top: 20px;
}
.section-listing li{
  position: relative;
  font-size: 17px;
  font-weight: 600;
  margin: 8px 0px;
  color: var(--themetextColor);
  padding-left: 25px;
}
.section-listing li::after{
  content: '';
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid var(--themeheadingColor);
  border-radius: 50%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  }
  .selection-img-div{
    width: 100%;
    height: 500px;
    overflow: hidden;
  }
  .quick-response{
    margin-top: 70px;
  }
/* Work Css End */

/* Broad Bussiness Section Css Start */
.broad-bussiness{
  margin-top: 70px;
  position: relative;
}
.left-bord{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b-banner{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.black-overlay{
  position: relative;
}
.black-overlay::after{
content: '';
position: absolute;
background-color: rgb(3 127 182 / 80%);
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.green-overlay::after{
  content: '';
  position: absolute;
  background-color: rgb(69 178 105 / 80%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  }
.b-business-row{
  position: relative;
}
.inner-box{
  padding: 50px;
  background: #fff;
}
.broad-box{
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  left: 18%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fbs-section{
  margin-top: 70px;
  position: relative;
}
.fbs-round{
  width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  padding: 30px;
  position:relative;
  box-shadow: 0 3px 5px rgb(0 0 0 / 15%);
}
.fbs-img{
  width: 100%;
  height: 100%;
}
.bg-blue{
  background: #3785ff;
}
.light-bg,
.yelllo-light-bg,
.green-light-bg
{
  position: relative;
}
.light-bg::after{
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: #3785ff;
  opacity: .3;
  left: 7px;
  top: 0;
  transform: rotate(15deg);
  z-index: -1;
}
.yelllo-light-bg::after{
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: #ffb239;
  opacity: .3;
  left: 7px;
  top: 0;
  transform: rotate(15deg);
  z-index: -1;
}
.green-light-bg::after{
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: #45b269;
  opacity: .3;
  left: 7px;
  top: 0;
  transform: rotate(15deg);
  z-index: -1;
}
.bg-yellow{
  background: #ffb239;
}
.bg-green{
  background: #45b269 !important;
}
.bg-green-text{
color: #45b269 !important;
}
.bg-green-text:hover{
  background: #45b269 !important;
  color: #fff !important;
}
.fbs-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fbs-text{
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
}
a.section-link{
  color: #45b269;
}
a.blue-link{
  color: var(--themeheadingColor);
}
a.section-link-blue{
  color: var(--themeheadingColor);
  font-weight: bold;
}
a.section-link-green{
  color: #45b269;
  font-weight: bold;
}
.tread-box{
  background: #e6f5ff;
  box-shadow: 0 0px 5px rgb(0 0 0 / 5%);
  border-radius: 10px;
  padding: 12px 20px;
  width: 70%;
  text-align: center;
  margin: auto;
}
.tread-box.green-box{
  background: #e8fff0
}
.tread-box p{
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 500;
  color: var(--themetextColor);
}
.tread-box p span{
  font-weight:bold;
  color: var(--themeheadingColor);
}
.tread-box.green-box p span{
  color: #45b269;
}
.tread-section{
  margin-top: 70px;
}
.tread-box.green-box a.buyer-btn{
  background: #45b269;
}
.tread-box.green-box a.buyer-btn:hover{
  color: #45b269;
}
.tread-box a.buyer-btn{
  background: var(--themeheadingColor);
    color: #fff;
}
.tread-box a.buyer-btn:hover{
  background: #fff;
  color: var(--themeheadingColor);
}
.service-list li{
  font-size: 20px;
  font-weight: 500;
  color: var(--themetextColor);
  margin: 5px 0px;
  position: relative;
  padding-left: 22px;
}
.service-list li::after{
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgb(203 203 203);
  border-radius: 50%;
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.buyer-service{
  margin-top: 70px;
}
/* Broad Bussiness Section Css End */

/* Footer Section Css Start */
.footer-section {
  border-top: 5px solid #1fac4b;
  margin-top: 70px;
}
.top-footer {
  background-color: var(--themeFooterBgColor);
  padding: 30px 15px;
}
.col4{
  max-width: 16%;
}
.inner-footer {
  display: flex;
  justify-content: space-between;
}
.footer-large-text {
  color: #757575;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-list li a {
  color: #eeeded;
  font-size: 16px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
.device-img li a img {
  margin: 5px 0 0;
}
.bottom-footer {
  padding-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color:#FFF;
  background: var(--themeFooterBgColor);
}
.bottom-footer  span{
  font-size: 18px;;
}
.footer-list li:hover a {
  color: var(--themeheadingColor);
}
.footer-list li:hover .material-icons {
  color: var(--themeheadingColor);
}
.footer-list li {
  display: flex;
  align-items: center;
}
.footer-list li .material-icons {
  color: white;
}
.footer-list .social-link {
  display: flex;
  align-items: center;
}
.social-link li a.twitter {
  margin: 0px 10px;
}
.social-link li a:hover svg {
  color: white;
}
.social-link li a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
}
.social-link li a svg {
  color: var(--themetextColor);
  font-size: 15px;
}
.social-link li a:hover.facebook {
  background: #3b5998;
}
.social-link li a:hover.twitter {
  background: #00aced;
}
.social-link li a:hover.youtube {
  background: #bb0000;
}
/* Footer Section Css End */
#top-to-bottom {
  display: inline-block;
  background-color: #ffc107;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top-to-bottom svg{
  font-size: 25px;
  color: #fff; 
}
#top-to-bottom:hover {
  cursor: pointer;
  background-color: #1fac4b;
}
#top-to-bottom:active {
  background-color: #555;
}
#top-to-bottom.show {
  opacity: 1;
  visibility: visible;
}
/* Responsive Css Start */
@media screen and (max-width: 1100px) {

  .theme-header .navbar-expand-lg .navbar-nav.center-nav {
    flex-direction: column;
  }
  .theme-header .navbar-expand-lg .navbar-nav li {
    padding: 10px 0px;
}

  .theme-header .burger {
    display: block;
  }
  .burger.show-x .bar:first-of-type {
    transform: translate(-50%, 50%) rotate(225deg);
  }
  .burger.show-x .bar:last-of-type {
    transform: translate(-50%, -150%) rotate(-225deg);
  }
  .theme-header .navbar-collapse {
    background-color: #fff;
    box-shadow: 0 3px 5px rgb(0 0 0 / 10%);
    flex-direction: column;
    text-align: center;
    position: fixed;
    top: 80px;
    right: 0;
    transform: translateX(-120%);
    width: 100%;
    transition: transform 0.3s ease-in;
    z-index: 100;
    height: 100%;
    border-top: solid 1px #ddd;
  }
  .theme-header .navbar-collapse.show {
    transform: translateX(0);
    padding-top: 30px;
  }
  .response-div{
    order: 2;
  }
  .selection-img-div {
             margin-top: 30px;
  }
}
@media screen and (min-width: 200px) and (max-width: 767px) {
  .pbr .sub-tab-section.is-sticky {
    top: 90px !important;
}
  .tread-section {
    margin-top: 0px;
}
  .whats-up-btn {
    top: inherit;
    bottom: 0px;
    right: 10px;
    bottom: 105px;
}
  .work-heading h1 {
    text-align: center;
  }
  .mobile-work-img{
    display: block;
  }
  .work-img{
    display: none;
  }
 
  .brand-logo {
    height: 40px;
  }

  .footer-list {
    margin-bottom: 20px;
  }
  .footer-list:last-child {
    margin-bottom: 0;
  }
  .footer-large-text {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .bottom-footer {
    text-align: center;
  }
  .container-1920 {
    width: 100%;
  }
  .theme-header .navbar-nav > li > .dropdown-menu.show {
    display: block;
  }
  .theme-header .navbar-nav > li > .dropdown-menu {
    display: none;
  }
  .navbar-nav.right-nav {
    align-items: center;
  }
  .theme-header .navbar-expand-lg .navbar-nav .h-link {
    justify-content: center;
  }
  .top-footer {
    background-color: var(--themeFooterBgColor);
    padding: 30px;
  }
  .inner-footer .col{
    flex-basis: auto;
      flex-grow: 0;
    max-width: inherit;
    margin: 10px 0px;
  }
  .banner-img {
    height: 280px;
  }
  .buyer-text h1 {
    font-size: 30px;
    line-height: 24px;
  }
  .buyer-text {
    width: 95%;
    z-index: 0;
    display: block;
    padding: 22px;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
  }
  .buyer-text p {
    font-size: 15px;
    margin: 20px 0;
    line-height: 24px;
  }
  a.buyer-btn {
    padding: 4px 25px;
    font-size: 16px;
  }
  .quick-response {
    margin-top: 40px;
  }
  .broad-box {
    width: 90%;
    right: 0;
    margin: 0 auto;
    left: 0;
  }
  .fbs-row {
    flex-direction: column;
  }
  .fbs-text {
    margin-bottom: 35px;
 }
 .padder-30{
   margin-top: 30px;
 }
 .inner-box {
  padding: 25px;
 }
 .response-div{
   order: 2;
 }
 .tread-box {
  width: 100%;
}
.tread-box p {
  font-size: 17px;
}
.service-list li {
  font-size: 16px;
}
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .tread-section {
    margin-top: 0px;
}
  .whats-up-btn {
    top: inherit;
    bottom: 0px;
    right: 10px;
    bottom: 105px;
}
  .work-heading h1 {
    text-align: center;
  }
  .inner-footer .col{
    flex-basis: auto;
      flex-grow: 0;
    max-width: inherit;
    margin: 10px 0px;
  }
  
  .container-1920 {
    width: 100%;
  }
  .theme-header .navbar-nav > li > .dropdown-menu.show {
    display: block;
  }
  .theme-header .navbar-nav > li > .dropdown-menu {
    display: none;
  }
  .theme-header .navbar-expand-lg .navbar-nav li {
    padding: 10px 20px;
  }
  .navbar-nav.right-nav {
    align-items: center;
  }

  .theme-header .navbar-expand-lg .navbar-nav .h-link {
    justify-content: center;
  }
  .top-footer {
    background-color: var(--themeFooterBgColor);
    padding: 30px;
  }
  .theme-header .navbar-collapse {
    top: 90px;
  }
  .theme-header .navbar-expand-lg .navbar-nav .h-link {
    font-size: 20px;
  }
  .theme-header .navbar-expand-lg .navbar-nav .h-link .material-icons,
  .search-btn .material-icons {
    font-size: 30px;
  }
  .theme-header .dropdown-item {
    font-size: 20px;
  }
  .quick-response-div{
    order: 2;
  }
  .tread-box {
    width: 100%;
  }
  .buyer-text {
    width: 90%;
  }
  .banner-img {
    height: 470px;
  }
  .broad-box {
    left: 0%;
  }
  .mobile-work-img{
    display: block;
  }
  .work-img{
    display: none;
  }
}

@media screen and (min-width: 1061px) and (max-width: 1370px) {
 
  .container-1920 {
    width: 100%;
    padding: 0px 30px;
  }
  .theme-header .navbar-expand-lg {
    padding-left: 0px;
    padding-right: 0px;
  }
  .inner-footer {
    margin-left: 40px;
  }
  .footer-list li a {
    font-size: 13px;
  }
  .footer-large-text {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .bottom-footer span {
    font-size: 16px;
  }
  .tread-box p {
    font-size: 19px;
  }
  .inner-box {
    padding: 30px;
  }
  .banner-img {
    position: relative;
    height: 400px;
 }
 .buyer-text h1 {
  font-size: 32px;
  line-height: 42px;
 }
 .buyer-text p {
  margin: 15px 0;
}
a.buyer-btn {
  padding: 5px 20px;
}
.section-heading h2 {
  font-weight: bold;
  font-size: 24px;
}
.selection-img-div {
  height: 400px;
}
.section-para p {
  font-size: 18px;
}
}

/* Responsive Css Start */
