:root {
  --primary: #ec6625;
  --secondary: #f08547;
  --primary-text: #292929;
}

body {
  background-color: #ffffff;
  color: #292929;
  font-size: 16px;
  line-height: 1.6;
}

h1 {
  font-size: 36px;
  line-height: 1.2;
}

h2 {
  font-size: 26px;
  line-height: 1.4;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

h4 {
  font-size: 20px;
  line-height: 1.2;
}

h5 {
  font-size: 18px;
  line-height: 1.2;
}

.p3 {
  font-size: 18px;
  line-height: 1.3;
}

a,
a:hover,
a:active {
  text-decoration: none;
}

.primary-text {
  color: var(--primary-text) !important;
}

.secondary-text {
  color: var(--secondary);
}

.rounded-sm {
    border-radius: 2px !important
}

.rounded-md {
    border-radius: 4px !important
}

.rounded-lg {
    border-radius: 8px !important
}

.rounded-xl {
    border-radius: 12px !important
}

.rounded-xxl {
    border-radius: 16px
}

.rounded-xxxl {
    border-radius: 32px
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.spacer {
  height: 40px;
}

.bttn {
  font-size: 14px;
  line-height: 1;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.5s ease;
}

.border {
  border: 1px dashed var(--secondary) !important;
}

.bttn-primary {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #ffffff;
}

.bttn-primary:hover {
  border: 1px solid var(--primary);
  background-color: #ffffff;
  color: var(--primary);
}

.bttn-secondary {
  border: 1px solid var(--primary);
  background-color: #ffffff;
  color: var(--primary);
}

.bttn-secondary:hover {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #ffffff;
}

#br-banner {
  padding: 170px 0;
  background-size: cover;
  background-position: center;
}

#br-product .item {
  padding: 20px;
  border-radius: 8px;
  border: 1px dashed var(--secondary);
  background-color: #ffffff;
}

.container{
  max-width: 100% !important;
  width: 100%;
}

.grid-cols-2, .grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.col-span-2{
  grid-column: span 2 / span 2;
}

.branded-solution-template .owl-theme .owl-nav [class*=owl-] {
    margin: 0 -47px;
    width: 45px;
    height: 45px;
    background: #FEF6EE !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary) !important;
}

.branded-solution-template .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.branded-solution-template .owl-theme .owl-nav [class*=owl-] > span {
    font-size: 28px;
    line-height: 1;
}

/* ====================Header Css Start==================== */
header .top-header {
  background-color: #464646;
}

header .bottom-header .navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}

/* ====================Header Css End==================== */

/* ====================Home Css Start==================== */
#br-home-banner .content-wrapper {
  padding: 40px 0;
}

.br-product-slider .item .image-wrapper img{
  transition: all 0.5s ease;
}

.br-product-slider .item:hover .image-wrapper img {
    transform: scale(1.2);
}

#br-why-choose .box {
    border: 1px dashed var(--secondary);
}

#br-why-choose .box .icon{
  background: #FDEAD7;
  width: 40px;
  height: 40px;
}

.br-testimonial-slider .owl-item.active.center .item {
    background: #FEF6EE !important;
}

.br-testimonial-slider .owl-item:not(.active.center) .item {
    transform: scale(0.9);
}

.br-testimonial-slider .owl-item .item {
    transition: all 0.5s ease;
}

.br-testimonial-slider .owl-stage-outer {
    padding: 20px 0;
}

#br-form-area .form-wrapper{
  background-color: rgba(255, 255, 255, 0.8);
}

.form-wrapper label {
    font-size: 14px;
}

.form-wrapper .form-control {
    border: 1px solid var(--secondary);
    outline: 0;
}

.cs-accordion .item {
    border-bottom: 1px solid #ddd;
}

.cs-accordion .item {
    border-bottom: 1px solid #F4F4F4;
    padding-bottom: 16px;
}

.cs-accordion .item .que {
    cursor: pointer;
}
/* ====================Home Css End==================== */

/* ====================About Css Start==================== */
#br-mission .item {
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
}

#br-mission .title {
    -webkit-text-stroke: 1px;
    -webkit-text-fill-color: rgba(255,255,255,0.3);
    font-size: 38px;
    -webkit-text-stroke-color: rgba(189, 189, 189, 0.5);
}

#bg-about-what .icon > span {
    color: #7c7c7c;
}

/* ====================About Css End==================== */

/* ====================Footer Css Start==================== */
footer {
    background: #464646;
}
/* ====================Footer Css End==================== */

/* ====================Responsive Css End==================== */
@media screen and (min-width: 768px){
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.container {
    width: 94%;
}
.spacer {
  height: 60px;
}
#br-mission .title{
  font-size: 80px;
}
#br-home-banner .content-wrapper {
  padding: 80px 0;
}
h1 {
  font-size: 46px;
  line-height: 1.2;
}

h2 {
  font-size: 30px;
  line-height: 1.4;
}
h3 {
  font-size: 24px;
  line-height: 1.2;
}
#br-mission .title{font-size: 42px;}
header .bottom-header .navbar-nav .nav-item:not(:first-child) .nav-link:before {
  content: "|";
  margin: 0 8px;
  line-height: 0;
  display: inline-block;
  font-weight: 700;
  color: var(--primary-text);
  pointer-events: none;
}

}

@media screen and (min-width: 991px){
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1440px !important;
    width: 100% !important;
  }
  body {
    font-size: 18px;
  }
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  .p3 {
    font-size: 20px;
  }
  #br-home-banner .content-wrapper {
    padding: 160px 0;
  }
  .bttn {
    font-size: 16px;
    line-height: 1;
    padding: 16px 20px;
    border-radius: 8px;
  }
  .spacer {
    height: 100px;
  }
}