/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('../css/scrollthumb.css');

:root {
  scroll-behavior: smooth;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  background-color: #fff;
}

.header.sticked {
  background: var(--color-white);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 8px 23px;
  border-radius: 30px;
  transition: 0.3s;
  font-family: var(--font-secondary);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color-white);
  background: var(--color-secondary);
}

@media (max-width: 1279px) {

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  /* .navbar li {
    position: relative;
  } */

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px;
    font-family: var(--font-secondary);
    font-size: 16px;
    color: rgba(var(--color-secondary-dark-rgb), 1);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }
@media(width>1279px){
  .navbar > ul > li > a{
    padding: 29px 14px;
  }
  .header{
    padding: 0;
  }
}
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,

  .navbar li:hover>a {
    color: var(--color-primary);

  }

  .navbar .active,
  .navbar .active:focus {
    font-weight: 700;
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover>a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: var(--color-primary);
    /* background: rgba(var(--color-secondary-rgb), 0.9); */
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 30px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-white);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 20px;
  }

  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    /* background: rgba(var(--color-secondary-rgb), 0.8); */
    background-color: #000;
    opacity: 0.5;
    z-index: 9996;
  }
}

.hero-yaask {
  background: url('../img/yaask/hero.png');
  min-height: 80vh;
}

.hero-content {
  min-height: 100vh;
  color: #fff;
  padding-top: 70px;
}

.hero-content h1 {
  font-size: clamp(47px, 8vw, 82px);
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}

.hero-content p {
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 300;
}

.bespoke {
  padding-top: 110px;
}

.bespoke h2 {
  font-size: clamp(20px, 9vw, 64px);
  font-weight: 700;
}

.bespoke h3 {
  font-size: clamp(20px, 6.2vw, 44px);
  font-weight: 400;
}

.bespoke p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  padding-left: 14px;
  margin-bottom: 0;
}

.bespoke2ndsection {
  background: #F4F4F4;
  margin-block: 40px;
}

.b2s-icon {
  margin-left: 14px;
}

.b2s-content {
  padding-block: 20px;
}

.section-title {
  font-size: 52px;
  line-height: 66px;
  font-weight: 400;
  border-bottom: 1px solid rgb(0 0 0 /8%);
  padding-bottom: 35px;
  margin-bottom: 30px;

}

.section-title.text-center {
  border-bottom: none
}

.services {
  overflow: hidden;
  padding-bottom: 100px;
  padding-top: 110px;
}

.simg img {
  max-width: 320px;
}

/* .service-wrapper::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  padding-inline: 6%;
  background-color: #222;
} */
.service-wrapper p {
  padding-left: 5%;
  margin-bottom: 0;
  color: #222;
  transition: all 0.5s ease-in;
  display: flex;
  align-items: center;
  height: 100%;
}

.service-title {
  /* padding-inline: 10%; */
}

.service-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  transition: all 0.5s ease-in;
}

/* .service-wrapper::before{
  content: "";
  display: block;
  width: calc(100% - 6%);
  height: 1px;
  margin-left: 6%;
  margin-block: 10px;
  background-color: #222;
} */
div.hr {
  /* width: 88%; */
  background: black;
  margin-inline: 3%;
  height: 1px;
  margin-block: 15px;
}

.service-wrapper {
  /* padding-inline: 6%; */
  padding-block: 45px;
  background: transparent;
  transition: all 0.5s ease-in;
  position: relative;
  overflow: hidden;
}

.service-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5A90D0;
  z-index: -1;
  transition: all 0.7s ease-in-out;
}

.service-wrapper:hover::before {
  bottom: 0;
  /* background-color: var(--color-secondary); */
}

.service-wrapper:hover .service-title h2,
.service-wrapper:hover p {
  color: #fff;
}

.linkArrow img {
  transition: all 0.5s ease-in-out;
  height: 60px;
}

.service-wrapper:hover .linkArrow img {
  filter: brightness(0) invert(1);
}

.why-us .row>div:not(:last-child) .w-box {
  padding-inline: 19px;
  border-right: 1px solid rgb(0 0 0 / 20%);
  height: 100%;
}

.why-us .row>div:first-child .w-box {
  padding-left: 0;
}

.why-us .row>div:last-child .w-box {
  padding-left: 19px;
}

.w-box h4 {
  font-size: 38px;
}

.cl-bottom ul {
  display: flex;
  justify-content: right;
  gap: 10px;
  list-style-type: none;
  padding-left: 0;
}

.c-wrapper {
  background-color: var(--color-secondary);
  border-radius: 20px;
  padding: 50px 30px;
}

.cl-top h2 {
  font-size: 72px;
}

.cl-top p {
  font-size: 24px;
  line-height: 31px;
}

.cl-bottom {
  margin-top: 45px;
}

.cl-bottom p {
  font-size: 22px;
  font-weight: 700;
}

.cl-bottom li {
  display: flex;
  gap: 5px;
  align-items: center;
}

.cl-bottom li a {
  font-size: 18px;
  color: #fff;
}

@media (max-width:1367px) {
  .cl-bottom li a {
    font-size: 16px;
  }
}

.c-wrapper {
  border-radius: 20px;
}

.c-wrapper form {
  padding-left: 25px;
}

.c-wrapper .form-control {
  padding: .8rem 1rem;
}

.c-wrapper button {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background: var(--color-primary);
  border: none;
  outline: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-us {
  padding-block: 200px;
}

footer {
  background-color: var(--color-primary);
  padding-top: 80px;
  padding-bottom: 50px;
}

.service-list {
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.service-list a.serv {
  background-color: #fff;
  border-radius: 30px;
  color: var(--color-primary);
  padding: 13px 22px;
}

.footer-service-list {
  border-top: 1px solid #fff;
  padding-top: 45px;
  margin-top: 45px;
}

.footer-service-list h3 {
  font-weight: 300;
}

.copyright p {
  font-weight: 300;
}

.copyright p a {
  color: #fff;
}

.copyright {
  margin-top: 50px;
}

/* ////////////////////inner page///////////////////// */
.inner-hero {
  min-height: 285px;
  background: url('../img/yaask/inner.png');
  background-size: cover;
  background-position: center;
}

.inner-banner {
  min-height: 376px;
  color: #fff;
  padding-top: 70px;
}

.inner-banner h1 {
  font-size: clamp(35px, 9vw, 56px);
  text-transform: uppercase;
}

.sub-dis-content h2 {
  font-size: 50px;
  margin-bottom: 30px;
}

.sub-dis:first-child {
  margin-top: 70px;
}

.sub-dis:not(:last-child) {
  margin-bottom: 70px;
}

.content-left {
  padding-left: 10%;
  padding-right: 30px;
}

.content-right {
  padding-right: 10%;
  padding-left: 30px;
}

.other-services {
  padding-bottom: 120px;
}

.service-link-list-item {
  border-bottom: 1px solid rgb(0 0 0 / 10%);
  transition: all 0.3s ease-in-out;
}

.service-link-list-item:first-child {
  border-top: 1px solid rgb(0 0 0 / 10%);
}

.service-link-list-item a {
  color: #222;
  font-size: 30px;
  padding-block: 15px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.service-link-list-item a::after {
  content: url("../img/yaask/icons/arrow-up-right.svg");
  transform: translateY(5px) translateX(6px);

}

.service-link-list-item:hover {

  background-color: var(--color-secondary);
}

.service-link-list-item:hover a {
  color: #fff;
}

.hr-os {
  width: 38%;
  height: 1px;
  background-color: var(--color-primary);
  margin-block: 120px;
}

/* /////////about////////// */
.empowering-business {
  padding-top: 182px;
  padding-bottom: 180px;
}

.atc-left p {
  font-size: 18px;
  color: var(--color-secondary);
  font-weight: 700;
  text-transform: capitalize;
}

.atc-left h1 {
  font-size: clamp(35px, 4.15vw, 64px);
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.atc-left h2 {
  font-size: clamp(26px, 4vw, 48px);
  /* font-size: 48px; */
  font-weight: 300;
}

.atc-right p {
  font-size: 18px;
  line-height: 30px;
}

.gap-abt-img {
  gap: 25px;
}

.team-yaask {
  background: #F4F4F4;
  padding-block: 120px;
}

.team-title {
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 700;
}

.team-brief {
  padding-top: 15px;
}

.team-brief h3 {
  font-size: 24px;
  font-weight: 700;
}

.team-cards {
  margin-top: 60px;
}
.teamSlider .slick-list{
  margin-inline: -10px;

}
.tcard {
  background-color: #fff;
  padding: 18px;
  padding-top: 30px;
  border-radius: 20px;
  margin-inline:10px ;
  transition: all 0.3s ease-in-out;
}

.tcard:hover {
  margin-top: -5px;
  box-shadow: 0 0 10px rgb(0 0 0 /10%);
}

.tname {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.team-desc {
  font-size: 14px;
  color: var(--color-secondary);
  border-top: 1px solid #d8d8d8;
  margin-top: 23px;
  padding-top: 20px;
}

.team-desc p {
  font-size: 14px;
  color: #404040;
}

.timg img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin-bottom: 15px;
  margin-inline: auto ;
}

.cta-c-text h2 {
  font-size: clamp(31px, 8vw, 64px);
  font-weight: 700;
}

.cta-c-text p {
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 10px;
  font-weight: 300;
}

.btn1yaask {
  padding: 18px 27px;
  background-color: var(--color-secondary);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  display: inline-block;
}

.btn1yaask:hover {
  color: #fff;
  opacity: 0.9;
}

.cta-banner {
  background: url('../img/yaask/about/fd1f749f3a92a560c6f7524471bcd37e.jpeg');
  background-position: center;
  background-size: cover;
  padding: 80px 75px;
  border-radius: 40px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-top: 100px;
}

.cta-banner::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgb(0 0 0 /90%), rgb(0 0 0 / 50%));
  z-index: -1;
}

.btnCustom2 {
  background-color: var(--color-primary);
  color: #fff;
  padding: 15px 50px;
  border-radius: 5px;
  letter-spacing: 1px;
  display: inline-block;

}

.btnCustom2:hover {
  opacity: 0.9;
}

.blockq {
  padding-top: 60px;
  padding-bottom: 10px;
}

.blockqWrapper {
  padding-inline: 10%;
}

.blockqWrapper p {
  font-size: 18px;
  line-height: 30px;
}

.bqInner {
  border-left: 2px solid var(--color-primary);
  padding-left: 30px;
}

.readall-button {
  all: unset;
  color: var(--color-links);
}

.service-menu {
  position: fixed;
  width: 100%;
  height: calc(74vh - 82px);
  top: 82px;
  left: 0;
  /* display: block; */
  /* height: 0;
  overflow: hidden; */
  display: none;
  /* transition: all 0.1s linear; */
  background: white;
  z-index: 1000;
  /* padding: 50px 100px; */
  -webkit-box-shadow: inset 0px 3px 19px 0px rgba(0,0,0,0.25);
-moz-box-shadow: inset 0px 3px 19px 0px rgba(0,0,0,0.25);
box-shadow: inset 0px 3px 19px 0px rgba(0,0,0,0.25);
}

.menuMid li a {
  font-size: 32px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: center;
  color: var(--color-primary);
}

.menuMid li a:hover {
  text-decoration: underline;
}

.menuMid p {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  color: var(--color-secondary);
}

.menuBottom li a {
  font-size: 18px;
  line-height: 30px;
  color: var(--color-primary);
}

.menuBottom ul {
  gap: 18%;
}

.crossm {
  font-size: 30px;
  cursor: pointer;
  transform: translateY(-10px);
}

.readall-wrapper {
  text-align: left;
}

.readall-button {
  /* display: inline-block; */
  /* width: 150px; */
  border: 1px solid transparent;
  /* padding: 10px 0; */
  text-align: left;
  cursor: pointer;
}

.readall-button:hover {
  background-color: transparent;
  color: inherit;
}
.menuMid li a img {
  opacity: 0;
  /* height: 40px; */
  transform: scale(1.2) translateY(-2px);
  transition: all 0.2s ease-in-out;
}
.menuMid li a:hover img {
  opacity: 1;
}
[data-readmore]{
  transition: all 300ms;
    overflow: hidden;
    position: relative;
}
.sub-dis-content[aria-expanded="false"]::after {
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  background-image: linear-gradient(0deg, white, transparent);
  position: absolute;
  left: 0;
  bottom: 0;
}
.tSliderNav{
  display: flex;
  justify-content: center;
  gap: 11px;
}
.tSliderNav span i{
  font-size: 33px;
  color: var(--color-primary);
}
.sub-dis-img img{
  max-height: 290px;
  object-fit: cover;
}
.pcontent{
  padding-block: 60px;
}
.tdesg{
  color: var(--color-secondary);
}
.about-text-img1 img, .about-text-img2 img{
  border-radius: 10px;
}
@media(min-width:991px) {
  .teamSlider{
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  .tSliderNav{
    display: none
  }
  .teamSlider>div{
    width: 40%;
  }
}
@media(min-width:769px) {
  .menuMid li{
    /* transform: translateX(16px); */

  }
}
@media(max-width:769px) {
  .cl-top h2 {
    font-size: 40px;
  }

  .cl-top p {
    font-size: 16px;
  }

  .cl-bottom p {
    font-size: 18px;
  }

  .cl-bottom ul {
    justify-content: center;
  }

  .c-wrapper form {
    padding-left: 0;
  }

  .service-title h2 {
    font-size: 33px;
  }

  .service-wrapper {
    padding-block: 20px;
  }

  .service-wrapper p {
    padding-left: 0;
  }

  .simg {
    margin-top: 9px;
  }

  .bespoke p {
    padding-left: 0;
  }

  .bespoke {
    padding-top: 55px;
  }
  .bespoke h3{
    margin-bottom: 20px;
  }
  .b2s-icon {
    margin-left: 0;
  }

  .services {
    padding-bottom: 50px;
    padding-top: 55px;
  }

  .section-title {
    font-size: 35px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .bespoke2ndsection {
    margin-bottom: 0;
  }

  .w-box h4 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 23px;
  }

  .why-us .row>div .w-box {
    padding-inline: 19px;
    border-color: transparent;
    height: 100%;
  }

  .contact-us {
    padding-block: 80px;
  }

  .hero-content {
    min-height: 92vh;
  }

  footer {
    padding-top: 50px;
  }

  .menuMid li a {
    font-size: 28px;
  }

  .service-menu {
    padding: 25px 25px;
  }

  .menuBottom ul {
    gap: 8%;
  }

  .content-left {
    order: 2;
  }

  .img-right {
    order: 1;
  }

  .sub-dis-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
    margin-top: 20px;
  }

  .content-left,
  .content-right {
    padding-left: 15px;
    padding-right: 15px;
  }

  .service-link-list-item a::after {
    display: none;
  }

  .empowering-business {
    padding-top: 85px;
    padding-bottom: 50px;
  }

  .team-yaask {
    padding-block: 40px;
  }

  .cta-banner {
    padding: 40px 40px;
  }

  .cta-banner {
    margin-top: 25px;
  }
  /* .atc-left h2 {
    font-size: 40px;
} */
.service-list a.serv {
  padding: 8px 14px;
}
.why-us .row>div:not(:last-child) .w-box{
  border-color: transparent;
}
.gap-abt-img {
  gap: 10px;
}
.why-us .row>div:first-child .w-box{
  padding-left: inherit;
}
#navbar ul li a{
  border-bottom: 1px solid grey;
  font-size: 22px;
}
.cicon img {
  height: 24px;
  filter: brightness(0) invert(1);
}
.w-box{
  position: relative;
}
.why-us .row > div:not(:last-child) .w-box::after{
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--color-secondary);
  margin-inline: auto;
  margin-block: 20px;
}
.atc-right p{
  line-height: 24px;
}
.team-brief h3{
  font-size: 24px;
  font-weight: 400;
}
.menuMid li a img{
  display: none;
}
.teamSlider .slick-list{
  padding-right: 20%;
}
.tSliderNav{
  display: none;
}
.pcontent{
  padding-block: 30px;
}
.hero-content h1 {
  font-weight: 400;
}

}
.mobileSlide{
  display:none;
}
.mobileSlide a {
font-size: 16px !important;
padding-left: 2rem;
}
