:root {
    --gold-color: #B5984D;
    --lighter-gray-color: rgba(234, 234, 235, 0.3);
    --white-sand: #F7F7F7;
}

.bg-cabaret-gold {
    background-color: var(--gold-color);
}

.bg-lighter-gray {
    background-color: var(--lighter-gray-color);
}

.bg-white-sand {
    background-color: var(--white-sand);
}

.bg-gradient-gold {
    background: linear-gradient(90deg, #6E4D1C 0%, #6E4D1C 25%, #916F2E 49.33%, #B5984E 75%, #FEF9D0 100%);
}

.bg-gradient-very-light-gray {
    background: linear-gradient(180deg, #F9F9F9 66%, #FFFFFF 100%);
}

.text-highlight {
    color: var(--gold-color);
}

.text-highlight.no-color {
    color: var(--dark-gray);
}

.text-gradient-gold {
    background-image: linear-gradient(90deg, #6E4D1C 0%, #6E4D1C 25%, #916F2E 49.33%, #B5984E 75%, #FEF9D0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-title-extra-small .page-title {
    font-size:3.438rem;
    line-height:3.2rem
}

header.scrolled nav {
    background-color: #fff !important;
}

.hero .btn.btn-hover-animation-switch.btn-icon-left .btn-text {
    margin-right: 0;
}

.hero .btn.btn-hover-animation-switch.btn-icon-left:hover .btn-text {
    transform: translateX(0);
}


.about .feature-box.feature-box-left-icon {
    align-items: center !important;
}

.about .feature-box-content {
    min-height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-grid img {
    max-width: 175px;
}

.logo-grid .d-flex {
    gap: 20px;
}

.do-you-know h4 {
    max-width: 1200px;
    margin: auto;
}

.container {
    padding: 0 60px;
}

footer {
    padding-top: 0;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1500px;
}

.another-guy {
    max-height: 650px;
}

.typewriter {
    display: inline-block;
    /* white-space: nowrap; */
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    line-height: initial;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 50px;
    background-color: black;
    animation: blink 0.7s infinite;
}

.book-a-demo-content .feature-box {
   min-height: unset !important;
}

.navbar .navbar-nav .dropdown.open .dropdown-menu {
    left: 0;
    padding: 15px 0 20px;
}

.navbar .navbar-nav .dropdown .dropdown-menu li a:hover {
    padding-left: 30px;
}

.navbar-full-screen-menu-inner .navbar-nav .dropdown.open .dropdown-menu {
    display: block;
}

.navbar .navbar-nav .dropdown .dropdown-menu a {
    color: var(--dark-gray);
    opacity: 1;
    font-weight: 600;
}

.navbar .navbar-nav .dropdown .dropdown-menu a:hover {
    color: black;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/*============================================  
Blog Posts Main
============================================*/

body {
  margin: 0;
}
.blog-section {
  box-sizing: border-box;
  color: var(--medium-gray);
}
.blog-section h2,
.blog-section h3,
.blog-section p {
  margin: 0;
  line-height: 0;
} 
.blog-section p {
  font-size: 16px;
  line-height: 24px;
}
section.blog-section {
    padding-top: 0;
  padding-bottom: 56px;
}
section.blog-section:first-child {
    padding-top: 56px;
}
.blog-section .container {
  margin: 0 auto;
  padding: 0 80px;
}
.blog-section h2 {
  font-size: 32px;
  line-height: 1.2;
}
.blog-section img {
  max-width: 100%;
  width: 100%;
}
.blog-grid-wrapper {
  padding-top: 56px;
  border-top: 1px solid rgba(35, 36, 38, 0.2);
}
.related-content  .blog-grid-wrapper {
  border: 0;
}
.blog-grid-title {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}
.blog-grid-title-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-grid-posts {
  display: flex;
  align-items: stretch;
  row-gap: 40px;
  margin: 0 -10px;
  flex-wrap: wrap;
}
.blog-grid-posts.two-column article {
  flex: 1 1 50%;
}
.blog-grid-posts .image-wrapper {
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
/*.blog-grid-posts:not(.two-column) .image-wrapper {*/
/*  max-height: 256px;*/
/*}*/
.blog-grid-posts .image-wrapper img {
  border-radius: 12px;
}
.image-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 400ms 200ms;
  border-radius: 12px;
}
.image-wrapper:hover .image-hover {
  opacity: 1;
}
.image-hover-button {
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 50%;
  width: 100%;
  height: 50%;
  text-align: center;
  transform: translateY(150%);
  transition: transform 500ms cubic-bezier(0.44, 0.02, 0.13, 1);
}
.image-hover-button a {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}
.image-wrapper:hover .image-hover-button {
  transform: translateY(0px);
  transition-delay: 100ms;
}
.blog-grid-posts article {
  flex: 0 33.3333333333%;
  padding: 0 10px;
}
.blog-post-title a {
  color: #000;
  font-size: 24px;
  line-height: 28.8px;
  text-decoration: none;
  transition: color 0.3s;
}
.blog-post-title a:hover {
  color: #B5984D;
}
.blog-button {
  background-image: linear-gradient(#000, #000);
  background-position: left 100%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
  border-radius: 0;
  border-style: none;
  padding: 2px 0;
  text-decoration: none;
  color: rgb(35, 36, 38);
}
.blog-post-content > div {
  margin-bottom: 8px;
}
.blog-post-meta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.blog-post-category {
  display: inline-block;
  margin-right: 8px;
  padding: 4px 8px;
  text-decoration: none;
  border-radius: 4px;
  background-color: rgb(207, 214, 200);
  transition: background-color 0.3s;
  font-size: 14px;
  line-height: 1.42;
  color: #000;
}
.blog-post-date {
  font-size: 14px;
  line-height: 1.42;
}
.blog-post-excerpt {
  margin-bottom: 24px;
}
.blog-quote {
  padding: 56px 0;
}
.blog-quote blockquote {
  max-width: 800px;
  margin: auto;
  position: relative;
}
.blog-quote blockquote svg {
  position: absolute;
  left: -80px;
  color: #B5984D;
}
.blog-quote blockquote svg.quote-end {
    rotate: 180deg;
    left: initial;
    right: -80px;
    bottom: 30px;
    top: initial;
}
.blog-quote blockquote p {
  font-size: 48px;
  line-height: 68.16px;
  text-align: center;
}
.blog-quote .quote-author {
  margin-top: 24px;
  font-weight: bold;
  text-align: center;
}
.blog-quote .quote-author-position {
  margin-top: 4px;
  text-align: center;
  line-height: 1;
}
.featured-blog-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}
.featured-blog-wrapper .featured-blog-image,
.featured-blog-wrapper .featured-blog-content {
    flex: 1 1 50%;
}
.featured-blog-title {
  font-size: 40px;
  line-height: 48px;
  max-width: 77%;
  margin-bottom: 16px;
}
.featured-blog-content {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 32px;
}
.btn-round {
  background-image: none;
  border: 2px solid #000;
  padding: 12px 30px;
  border-radius: 32px;
  font-size: 16px;
  line-height: 20px;
  transition: all 0.3s ease;
}
.btn-round:hover {
  background-color: #000;
  color: #fff;
}
.blog-post-learn-more {
  margin-top: 24px;
}
.related-content {
  background-color: #fffaf3;
}

/*============================================  
Single Blog Post
============================================*/
.blog-section.breadcrumbs-section {
  padding-top: 70px;
  padding-bottom: 0;
}

.blog-section.breadcrumbs-section .container {
  margin: 32px auto;
}

.blog-section .breadcrumbs {
  padding: 20px 0 12px; 
}

.breadcrumbs a {
  color: #4f5256;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.blog-post-title h1 {
  font-size: 48px;
  line-height: 57.6px;
  margin: 0;
}


.author-container {
  display: flex;
  margin-top: 32px;
  gap: 12px;
}

.author-container img {
  border-radius: 100%;
}

.author-meta .read-time {
  padding-left: 10px;
  position: relative;
  line-height: 1;
}

.author-meta .read-time::before {
  content: "•";
  display: block;
  left: 0px;
  position: absolute;
  top: 0px;
}

.blog-post-title .blog-post-meta {
  margin-top: 16px;
}

.blog-post-title .blog-post-category {
  margin: 0;
}

.blog-section:not(.blog-grid):not(.related-content) .blog-grid-wrapper .blog-post-title,
.blog-section.blog-hero {
  padding-bottom: 48px;
}

.blog-section:not(.blog-post-title):not(.blog-quote) .container {
  display: flex;
  justify-content: space-between;
}

.blog-content aside {
  position: sticky;
  top: 100px;
  max-width: 300px;
  height: 100%;
}


.toc-nav-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
}

.toc-link-items {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.toc-link-items li {
  margin-bottom: 4px;
}

body .blog-section .blog-content .toc-link-items a {
  padding: 8px 16px;
  display: block;
  text-decoration: none;
  border-radius: 15px;
  transition: 0.3s ease;
  font-size: 16px;
  line-height: 24px;
}

body .blog-section .blog-content .toc-link-items a:hover {
  background-color: var(--dark-gray);
  color: #fff;
}

.blog-content article {
  max-width: 900px;
} 

.blog-section:not(.breadcrumbs-section) .blog-content a {
  color: var(--dark-gray);
  font-weight: bold;
  text-decoration: underline;
}

.blog-content a:hover {
    color: var(--dark-gray);
}

.blog-section .blog-content p {
  margin-bottom: 20px;
}

.blog-section .blog-content h2 {
  font-size: 32px;
  line-height: 38px;
  margin: 56px 0 20px;
  padding-bottom: 12px;
  position: relative;
}

.blog-section .blog-content h3 {
  font-size: 24px;
  line-height: 28px;
  margin: 48px 0 16px;
}

.blog-section .blog-content h2::after {
  background-color: var(--gold-color);
  bottom: 0;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  width: 48px;
}

.blog-content ul li {
  padding-bottom: 8px;
  margin-bottom: 4px;
}

.block-content ul li {
    list-style: disc;
}

.blog-content-cta {
  margin: 24px 0;
  padding: 20px;
  border-top: 1px solid rgba(35, 36, 38, .2);
  border-bottom: 1px solid rgba(35, 36, 38, .2);
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.cta-headline {
  font-size: 20px;
  line-height: 30px;
}

body .blog-section .blog-content-cta .blog-content-button {
  background-color: var(--dark-gray);
  color: #fff;
  text-decoration: none;
}

body .blog-section .blog-content-cta .blog-content-button:hover {
  background-color: #fff;
  color: var(--dark-gray);
}

.blog-content .author-container {
  gap: 24px;
}

.blog-section:not(.blog-post-title) .blog-content .author-image {
  flex: 0 0 180px;
}

.blog-content .author-name {
  font-size: 18px;
  line-height: 27px;
  font-weight: bold;
}

.blog-content .author-description {
  margin: 16px 0;
}

.blog-content .author-description p {
  color: #4f5256;
}

/*============================================  
Responsive
============================================*/
@media screen and (max-width: 1366px) {
  .blog-section .container {
    padding: 0 40px;
  }
}

@media screen and (max-width: 1024px) {
  .blog-section .container {
    padding: 0 20px;
  }
  .blog-content-wrapper .container {
    flex-direction: column;
  }
  .blog-content aside,
  .blog-content article {
    position: static;
    max-width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .featured-blog-wrapper {
      flex-direction: column;
  }
  .featured-blog-image {
      flex: auto;
      width: 100%;
  }
  
  .blog-section img {
      width: 100%;
  }
  .blog-grid .blog-post-meta {
     flex-direction: column;
    align-items: flex-start;
  }
  .blog-grid-view-all {
    flex: 0 0 20%;
    text-align: right;
  }
}

@media screen and (max-width: 768px) {
  .blog-grid-posts {
    flex-wrap: wrap;
    column-gap: 12px;
  }
  .blog-grid-posts article,
  .blog-grid-posts.two-column article {
    flex: 0 0 49%;
  }
  .blog-quote blockquote svg {
    left: 0;
    top: -40px;
  }
  .blog-quote blockquote p {
    font-size: 40px;
    line-height: 48px;
  }
  .blog-quote blockquote svg.quote-end {
      bottom: 15px;
      top: initial;
      right: 0;
  }
}
@media screen and (max-width: 767px) {
  .blog-grid-posts article,
  .blog-grid-posts.two-column article {
    flex: auto;
  }
  .blog-grid-title {
      align-items: flex-start;
      flex-direction: column;
  }
  .blog-content-cta,
  .blog-section:not(.blog-post-title) .blog-content .author-container {
      flex-direction: column;
  }
}


@media (min-width: 1500px) {
    .hero .new-banner {
       right: 2%;
    }
    .container {
        padding: 0 60px;
    }
}


@media (min-width: 1400px) {
}

@media (min-width: 1200px) {
    .hero .new-banner {
        top: 50%;
        right: 0px;
        transform: translateY(-50%);
    }
    .hero .col-xl-7 {
        margin-top: 5%;
        padding-right: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .hero .new-banner {
        max-width: 700px;
    }
    .typewriter {
        white-space: unset;
    }
    .about .feature-box {
        min-height: 260px;
    }
}

@media (min-width: 1024px) {
    .contact-items {
        row-gap: 40px;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
    .about .feature-box {
        min-height: 301px;
    }
}

@media (min-width: 992px) and (max-width: 1360px) {
    footer .cta-btn {
        margin-top: 16px;
    }
}

@media (max-width: 1200px) {
    .typewriter {
        white-space: unset;
    }
    .hero .new-banner {
        max-width: 500px;
    }
    .blog-content article {
        max-width: 800px;
    }
}

@media (max-width: 1024px) {
    .new-banner {
        width: 45%;
    }
    .container {
        padding: 0 32px;
    }
}

@media (max-width: 991px) {
    .container {
        padding: 0 48px;
    }
    .logo-grid img {
        max-width: 150px;
    }
}

@media (max-width: 767px) {
    .logo-grid img {
        max-width: 80px;
    }
    .container {
        padding: 0 24px;
    }
    .about-content .col-xl-5 {
        padding-top: 40px;
    }
    .another-guy {
        max-height: 500px;
    }
}

@media (max-width: 479px) {
    .logo-grid img {
        max-width: 60px;
    }
    .container {
        padding: 0 16px;
    }
    .contact-items span {
        font-size: 16px;
    }
    .contact-items p,
    .contact-items a.d-block, 
    .contact-items a span {
        font-size: 14px;
    }
    .typewriter {
        white-space: unset;
    }
}
/* New home page */
/* hero */
.hero-new{
      background: linear-gradient(180deg, #fbfbfb 66%, #FFFFFF 100%) !important;
}
.hero-new h1{
  line-height: 86px;
}
.hero-new h1 span{
  color: var(--gold-color);
}
.hero-new h1 span .cursor{
  background-color: var(--gold-color);
  border-color: var(--gold-color);
}
.hero-new .gs-button-wrapper{
  margin: 0;
  max-width: max-content;
}
.hero-new .gs-button-wrapper .gs-button-input-container a{
  padding: 14px 32px 14px 32px;
  font-size: 18px;
  background: #353642;
}
/* about  */
.tabs {
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.tabs .tab {
  flex: 0 calc(20% - 16px);
  gap: 10px;
}
.tabicon {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  border: 1px solid #E2E1DC;
}
.active .tabicon{
  border: 2px solid var(--gold-color);
}
.tabicon img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}
.tabicon-main {
    border-radius: 50%;
    padding: 10px;
}
.active .tabicon-main{
  background: #B5984D26;
}
.tabtext p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.tabtext p {
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  line-height: 22px;
}
.tab-content-main {
  margin-top: 40px;
  border-radius: 16px;
  background: #F9F7F1;
  z-index: 9;
  position: relative;
  padding: 60px;
}
.content-tag {
  gap: 7px;
}
.content-tag-text {
  position: relative;
  top: 2px;
}
.content-tag .content-tag-text p {
  margin-bottom: 0;
  font-size: 12px;
  color: #0B0B0D;
  text-transform: uppercase;
}
.tab-content-main h2 {
  font-size: 30px;
  color: #000;
  line-height: 43px;
  font-weight: 700;
  margin: 12px 0 14px;
}
.tab-content-main p{
  margin-bottom: 0;
}
section.meetai {
    padding-top: 0;
}
.meetai h4 {
  font-size: 40px;
  color: #000;
  font-family: var(--alt-font);
  font-weight: 700;
  line-height: 57px;
  margin-bottom: 8px;
}
.meetai .text-highlight.no-color{
  color: #000;
}
.meetai .text-highlight span{
  bottom: 2px;
  height: 8px !important;
}
section.socialmedia {
    background: #32323d;
    padding: 0;
    margin: 100px 0;
}
.social-content {
    padding-left: 10rem;
        padding-top: 100px;
    padding-bottom: 50px;
}
.social-img {
    text-align: right;
    height: 100%;
}
.social-content h2 {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 20px;
}
.social-content p {
    color: #fff;
    margin-bottom: 10px;
}
ul.social-links {
    padding: 0;
    column-count: 2;
    max-width: 70%;
}
ul.social-links li a {
    color: #fff;
}
ul.social-links li a span.icon {
  width: 24px;
  height: 22px;
  display: inline-block;
  text-align: center;
  margin-right: 4px;
}
ul.social-links li {
    margin-bottom: 10px;
}
.social-img img{
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: bottom;
}
.slider-wrapper .slide-item img{
      object-fit: scale-down;
}
.ai-meet-text, .ai-image {
    position: relative;
    z-index: 1;
}
.right-mins-20px{
  right: -20%;
}
.content-tag-img svg {
    height: 16px;
    width: 16px;
}
section.about.pb-0.position-relative {
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
}
/* about page */
.about-content{
  overflow: hidden;
}
.team-outter {
    gap: 20px;
    flex-wrap: wrap;
}
.team-inner {
    flex: 0 calc(25% - 15px);
}
.team-outter-5{
  margin-top: 20px;
}
.team-outter-5 .team-inner {
    flex: 0 calc(20% - 16px);
}
.team-box {
    border: 1px solid #E0E0E0;
    border-radius: 25px;
    position: relative;
    height: 100%;
}
.teamimg img {
    border-radius: 25px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
}
.team-content {
    padding: 30px 20px 20px;
}
.team-name{
  font-size: 20px;
  line-height: 28px;
    margin-bottom: 0;
    color: #000;
}
.designation{
  font-size: 16px;
  color: var(--gold-color);
  font-weight: 600;
  margin-bottom: 0;
}
.des{
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 23px;
}
.teamimg {
    position: relative;
}
.teamicon {
    position: absolute;
    bottom: -20px;
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    left: 25px;
}
.teamicon svg {
    height: 40px;
    width: 40px;
}
.team-hovercontent {
    position: absolute;
    background: #fff;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 25px;
    padding: 25px;
        opacity: 0;
    visibility: hidden;
    transition: .3s all ease-in-out;
}
.team-box:hover .team-hovercontent {
    opacity: 1;
    visibility: visible;
}
.floatinglinkicon {
    position: absolute;
    right: 26px;
}
.custom-cursor .circle-cursor-inner.cursor-link-hover{
    width: 6px !important;
  height: 6px !important;
  margin-left: -3px !important;
        margin-top: -3px !important;
}
.team-hovercontent p.des {
    line-height: 24px;
}
.team-head h2{
      color: #000;
    font-weight: 700;
    margin-bottom: 70px;
    line-height: 64px;
}
/* new page css */
a.btn.new-btn {
  background: #353642;
  padding: 12px 20px 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  font-family: var(--alt-font);
}
#baneer-new{
  padding: 0;
  margin-top: 100px;
}
#baneer-new h3, #baneer-new p{
  color:#fff;
}
.brand-content{
  overflow: hidden;
}
section.brand-content h3 {
    font-size: 36px;
    margin-bottom: 6px;
}
.icon-box-custom {
    gap: 25px;
}
.icon-box-custom h3 {
    font-size: 20px !important;
    color: #000;
    font-weight: 600;
    margin: 0 !important;
    font-family: var(--alt-font);
    margin-bottom: -10px !important;
}
p{
  font-size: 17px;
  color: #353642;
  font-family: var(--alt-font);
}
@media (min-width: 1200px) {
    .offset-right-1 {
        margin-right: 8.33333333%;
    }
}
@media(max-width:1267px){
  .team-inner {
    flex: 0 calc(33.3% - 14px);
}
.team-outter-5 .team-inner{
    flex: 0 calc(33.3% - 14px);
}
}
@media(max-width:992px){
  .hero-new{
    text-align: center;
  }
  .hero-new .gs-button-wrapper {
      margin: 0 auto;
  }
  .tabs .tab {
    flex: 0 calc(33% - 11px);
  }
  .tab-content-img {
    margin-top: 30px;
  }
  .social-content {
    padding-left: calc(48px - 15px);
    padding-right: calc(48px - 15px);
  }
  #baneer-new .text-section{
    padding: 50px 0;
  }
}
@media(max-width:767px){
  .social-content {
    padding-left: 24px;
    padding-right: 24px;
  }
  .tabs .tab {
    flex: 0 calc(33% - 12px);
  }
    .team-outter-5 .team-inner {
    flex: 0 calc(50% - 10px);
}
}
@media(max-width:567px){
  .tabs {
    gap: 10px;
  }
    .tabs .tab {
        flex: 0 calc(50% - 5px);
            gap: 5px
    }
    .tabicon-main{
      padding: 5px;
    }
  .meetai h4,.social-content h2{
    font-size: 30px;
    line-height: 40px;
  }
  .social-content{
    padding-top: 60px;
    padding-left: 0;
        padding-right: 0;
  }
  ul.social-links{
    max-width: 100%;
  }
  .hero-new h1 {
    line-height: 45px;
    font-size: 32px;
  }
  .hero-new h1 span .cursor {
    height: 32px;
  }
  .tabtext p {
    font-size: 16px;
    line-height: 19px;
  }
  .tabicon svg {
    height: 20px;
    width: 20px;
}
.tabicon {
    height: 35px;
    width: 35px;
}
.tab-content-main{
  padding: 30px 20px;
}
.newlogogrid .slide-item {
    width: 20% !important; /* force 4 logos visible */
  }
  .newlogogrid .slider-wrapper {
    margin: 0 auto;
  }
  .newlogogrid .slide-item img{
    width: 86px;
  }
  .newlogogrid img{
    max-width: 80px !important;
  }
  .newlogogrid .flickity-prev-next-button.previous,.newlogogrid .flickity-prev-next-button.next{
    display: none;
  }
  .newlogogrid .slider-wrapper .slide-item{
    height: 70px !important;
  }
  .team-inner,.team-outter-5 .team-inner {
    flex: 0 100%;
}
.team-head h2 {
    line-height: 40px;
    font-size: 30px;
}
.team-head h2 {
    margin-bottom: 40px;
}
.teamimg img{
  height: 330px;
}
.page-title-extra-small .page-title{
  font-size: 32px;
}
.aboutimgaetitle{
  font-size: 30px;
}
section.brand-content h3,#baneer-new h3,.about h2 {
    font-size: 30px;
}
#baneer-new {
    margin-top: 60px;
}
.icon-box-custom h3{
  margin-bottom:10px !important;
line-height: 26px;
}
}