@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: #262626;
  font-family: "Inter", sans-serif;
}

body {
  padding-top: 160px;
}
@media (max-width: 768px) {
  body {
    padding-top: 160px !important;
  }
}

.cursor-pointer {
  cursor: pointer;
}

header {
  background: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(136, 136, 136, 0.15);
  backdrop-filter: blur(85px);
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
}
header .header-wrapper {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 5px;
}
@media (max-width: 768px) {
  header .header-wrapper {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
    gap: 5px;
  }
}
header .header-wrapper ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 10px 24.5px;
}
header .header-wrapper ul a,
header .header-wrapper ul button {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #262626;
  text-decoration: none;
}
header .header-wrapper ul a {
  transition: 0.3s ease;
}
header .header-wrapper ul a:hover {
  color: #EB7100;
}

header .header-wrapper ul #dropdown {
  position: relative;
}
header .header-wrapper ul #dropdown button {
  background: transparent;
  border: none;
  /* color: #EB7100; */
}
header .header-wrapper ul #dropdown ul {
  position: absolute;
  top: 100px;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px 24.5px;
  max-width: 450px;
  background: #FFFFFF;
  box-shadow: 0px 4px 14px rgba(95, 95, 95, 0.1);
  border-radius: 0px 0px 6px 6px;
  padding: 0 30px;
  opacity: 0;
  transition: 0.5s ease;
  visibility: hidden;
}
header .header-wrapper ul #dropdown ul li {
  padding: 11px 0;
  white-space: nowrap;
}
header .header-wrapper ul #dropdown:hover ul {
  top: 25px;
  visibility: visible;
  opacity: 1;
}
header .header-wrapper .translate button {
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
header .header-wrapper .translate button span {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
}

footer {
  background: #161616;
  padding: 45px 0 30px 0;
}
@media (max-width: 768px) {
  footer {
    text-align: center;
  }
}
footer .container-fluid > .row:first-child {
  padding-bottom: 30px;
}
footer * {
  color: #fff;
}
/*footer .social {*/
/*  margin-top: 80px;*/
/*}*/
footer .social h6 {
  font-size: 14px;
  margin-bottom: 20px;
}
footer .social img {
  height: 18px;
}
footer .contact > div {
  margin-bottom: 40px;
}
footer .contact > div h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}
footer .contact > div a {
  text-decoration: none;
  font-weight: 300;
  font-size: 14px;
}
  .contact-form h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 25px;
}
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #656565;
  border-radius: 3px;
  font-size: 14px;
  color: #fff;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  resize: none;
}
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
  color: #fff;
}
  .contact-form button {
  font-size: 14px;
  font-weight: 500;
  border: none;
  width: 100%;
  background: #EB7100;
  height: 45px;
  border-radius: 6px;
}
footer .bottom-footer {
  padding-top: 45px;
}
footer .bottom-footer ul li a {
  font-size: 14px;
  text-decoration: none;
}
footer .bottom-footer p {
  font-size: 12px;
  color: #9A9A9A;
  margin: 0;
}

#menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  background: #EB7100;
  z-index: 101;
  padding: 70px 22px 0 56px;
  opacity: 0;
  visibility: hidden;
  left: -100%;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  #menu {
    display: none;
  }
}
#menu.active {
  left: 0;
  opacity: 1;
  visibility: visible;
}
#menu ul {
  margin: 0;
  margin-top: 50px;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px 24.5px;
}
#menu ul li {
  margin-bottom: 30px;
}
#menu ul a,
#menu ul button {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  text-decoration: none;
}
#menu ul #dropdown {
  position: relative;
}
#menu ul #dropdown button {
  background: transparent;
  border: none;
  color: #EB7100;
}
#menu ul #dropdown ul {
  position: absolute;
  top: 100px;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px 24.5px;
  max-width: 355px;
  background: #FFFFFF;
  box-shadow: 0px 4px 14px rgba(95, 95, 95, 0.1);
  border-radius: 0px 0px 6px 6px;
  padding: 0 30px !important;
  opacity: 0;
  transition: 0.5s ease;
  visibility: hidden;
}
#menu ul #dropdown ul li {
  margin-bottom: 0;
  padding: 11px 0 !important;
  white-space: nowrap;
}
#menu ul #dropdown ul li a {
  font-size: 14px;
}
#menu ul #dropdown:hover ul {
  top: -20px;
  visibility: visible;
  opacity: 1;
}
#menu ul #dropdown:hover ul a {
  color: #262626;
}
#menu .translate button {
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
#menu .translate button span {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-top: 1px;
}

.services-card {
  box-shadow: 0px 4px 15px rgba(70, 70, 70, 0.16);
  border-radius: 3px;
  overflow: hidden;
  max-width: 560px;
  width: 100%;
  height: 385px;
  position: relative;
  transition: 0.3s ease;
}
.services-card:hover {
  transform: scale(1.1);
}
.services-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(180deg, rgba(32, 31, 31, 0) 0%, rgba(32, 31, 31, 0.442308) 35.94%, #201F1F 81.25%);
}
.services-card .image {
  width: 100%;
  height: 100%;
}
.services-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-card .content {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: left;
  padding:35px 0 35px 35px;
  color: #fff;
}
.services-card .content h4 {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .services-card .content h4 {
    font-size: 25px;
  }
}
.services-card .content a {
  background: #EB7100;
  padding: 10px 70px;
  box-shadow: 0px 4px 11px rgba(45, 45, 45, 0.18);
  border-radius: 6px;
  color: #262626;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.services2-card {
  background: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(51, 51, 51, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.services2-card .image {
  width: 100%;
}
.services2-card .image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.services2-card .card-content {
  padding: 16px 20px;
    height: 250px;
}
.services2-card .card-content h5 {
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
}
.services2-card .card-content p {
  font-size: 18px;
  line-height: 22px;
}

.work-ads-card {
  background: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(141, 141, 141, 0.2);
  border-radius: 10px;
  padding: 35px;
}
.work-ads-card:hover {
  background: #eaeaea;
}
@media (max-width: 768px) {
  .work-ads-card {
    padding: 35px 16px;
  }
}
.work-ads-card h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .work-ads-card h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.work-ads-card .info {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
}
.work-ads-card .info-item h4 {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #4F4F4F;
}
.work-ads-card ul {
  padding-left: 15px;
}
.work-ads-card ul li {
  font-size: 14px;
  color: #828282;
  line-height: 23px;
}
.work-ads-card .info-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px 20px;
  margin-top: 30px;
}
.work-ads-card .info-2 > div:not(:last-child) {
  border-right: 1px solid #F2F2F2;
  padding-right: 22px;
}
@media (max-width: 768px) {
  .work-ads-card .info-2 > div:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #F2F2F2;
    padding-bottom: 10px;
  }
}
.work-ads-card .info-2 > div h6 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #4F4F4F;
}
.work-ads-card .info-2 > div p {
  font-size: 14px;
  line-height: 23px;
  color: #828282;
}
.work-ads-card button {
  background: #EB7100;
  box-shadow: 0px 4px 11px rgba(45, 45, 45, 0.25);
  border-radius: 6px;
  padding: 9px 50px;
  border: none;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}
@media (max-width: 768px) {
  .work-ads-card button {
    margin-top: 30px;
    width: 100% !important;
  }
}

.modal {
  position: fixed;
  z-index: 101;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal .box {
  position: relative;
  background: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(51, 51, 51, 0.2);
  border-radius: 10px;
  padding: 70px 48px 40px 48px;
}
.modal .box .close-button {
  position: absolute;
  right: 22px;
  top: 22px;
}
.modal .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
}
.modal .content h6 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #262626;
}
.modal .content > * {
  width: 100%;
  width: 280px;
}
.modal .content input,
.modal .content textarea {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #BDBDBD;
  border-radius: 3px;
  resize: none;
  padding: 10px;
}
.modal .content input {
  height: 37px;
}
.modal .content textarea {
  height: 100px;
}
.modal .content button {
  background: #EB7100;
  border-radius: 6px;
  padding: 9px 50px;
  border: none;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  width: 100% !important;
}

.news-card {
  background: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(51, 51, 51, 0.2);
  border-radius: 10px;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.news-card .image {
  width: 100%;
  height: 250px;
}
.news-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card .content {
  padding: 20px;
}
@media (max-width: 768px) {
  .news-card .content {
    padding: 16px;
  }
}
.news-card .content h4 {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
}
@media (max-width: 768px) {
  .news-card .content h4 {
    font-size: 18px;
    line-height: 18px;
  }
}
.news-card .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #4F4F4F;
}
@media (max-width: 768px) {
  .news-card .content p {
    font-size: 14px;
    line-height: 16px;
  }
}
.news-card .content .content-footer {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-card .content .content-footer .date {
  display: flex;
  align-items: center;
}
.news-card .content .content-footer .date span {
  font-size: 16px;
  line-height: 19px;
  color: #828282;
  margin-left: 8px;
  margin-bottom: -2px;
}
@media (max-width: 768px) {
  .news-card .content .content-footer .date span {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 768px) {
  .news-card .content .content-footer .date img {
    height: 14px;
  }
}
.news-card .content .content-footer .more {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.news-card .content .content-footer .more span {
  margin-right: 12px;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #EB7100;
  margin-top: -1px;
}
@media (max-width: 768px) {
  .news-card .content .content-footer .more span {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 768px) {
  .news-card .content .content-footer .more img {
    height: 14px;
  }
}

#home {
  background-image: url('../../assets/background.svg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

@media(max-width: 768px){
  #home{
    background-image: none !important;
  }
}


#home #hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
#home #hero .content {
  text-align: center;
}
#home #hero .content > * {
  animation: toTop 0.8s ease forwards;
}
#home #hero .content h1 {
  font-weight: 500;
  font-size: 45px;
  line-height: 60px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {

  #home #hero{
    background-image: url('/web/20250119170924im_/https://bmgi.az/site/assets/images/photo_2023-03-07 21.10 3.svg');
  }

  #home #hero .content h1 {
    font-size: 30px;
    line-height: 36px;
  }
}
@keyframes toTop {
  0% {
    opacity: 0;
    transform: translateY(-150px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
#home #hero .content h1 span {
  color: #EB7100;
}
#home #hero .content p {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 23px;
}
@media (max-width: 768px) {
  #home #hero .content p {
    font-size: 16px;
  }
}
#home #hero .content .search {
  height: 45px;
  border: 1px solid #262626;
  filter: drop-shadow(0px 4px 11px rgba(45, 45, 45, 0.25));
  border-radius: 100px;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
}
#home #hero .content .search input {
  padding-left: 18px;
  height: 100%;
  width: 100%;
}
#home #hero .content .search button {
  margin-right: 18px;
}
#home #hero .content .search button,
#home #hero .content .search input {
  background: none;
  border: none !important;
  outline: none !important;
}
#home #hero .about {
  background: #EB7100;
  box-shadow: 0px 4px 14px rgba(46, 46, 46, 0.18);
  backdrop-filter: blur(30px);
  width: 100%;
  padding: 75px 0 45px 0;
  margin-top: 50px;
  text-align: center;
}
#home #hero .about h1 {
  font-weight: 500;
  font-size: 35px;
  line-height: 42px;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 768px) {
  #home #hero .about h1 {
    font-size: 20px;
    line-height: 24px;
  }
}
#home #hero .about p {
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  margin-top: 35px;
}
@media (max-width: 768px) {
  #home #hero .about p {
    font-size: 14px;
    margin-top: 30px;
  }
}
#home #hero .about img {
  margin-top: 75px;
}
#home #services {
  text-align: center;
  padding-top: 65px;
}
#home #services h1 {
  font-weight: 500;
  font-size: 35px;
  text-transform: uppercase;
  margin-bottom: 60px;
}
#home #services .accountant {
  background: #EB7100;
  box-shadow: 0px 4px 14px rgba(46, 46, 46, 0.18);
  backdrop-filter: blur(30px);
  width: 100%;
  padding: 75px 0 45px 0;
  margin-top: 50px;
  text-align: center;
}
#home #services .accountant h1 {
  font-weight: 500;
  font-size: 35px;
  line-height: 42px;
  color: #fff;
  margin-bottom: 0;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  #home #services .accountant h1 {
    font-size: 20px;
    line-height: 24px;
  }
}
#home #services .accountant p {
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 768px) {
  #home #services .accountant p {
    font-size: 14px;
    margin-top: 30px;
  }
}
#home #services .accountant a {
  display: block;
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  border: 1px solid #FFFFFF;
  border-radius: 3px;
  padding: 12px 39px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
}

#home #hero .about a {
  display: block;
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  border: 1px solid #FFFFFF;
  border-radius: 3px;
  padding: 12px 39px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
}
/*Our clients components style*/
#OurClients {
    padding: 80px 0;
    background: #ffffff;
}

#OurClients h1 {
    font-size: 35px;
    line-height: 45px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    color: #eb7100;
    margin-bottom: 40px;
}
#OurClients .swiper {
    width: 100%;
    height: 100%;
}
#OurClients .swiper .swiper-slide {
    display: flex;
    justify-content: center;
}
#OurClients .swiper .swiper-button-next,
#OurClients .swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#OurClients .swiper .swiper-button-next::after,
#OurClients .swiper .swiper-button-prev::after {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}

#OurClients .swiper .img-wrapper {
    width: 300px;
    height: 200px;
}
#OurClients .swiper .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    #OurClients {
        padding: 50px 0;
    }
    #OurClients h1 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 25px;
    }
    #OurClients .swiper .img-wrapper{
        width: 250px;
        height: 150px;
    }
}
/*Our clients components style*/

/*@media (max-width: 768px) {*/
/*  #home #our-clients .clients-box #clients-slider img {*/
/*    height: 38px;*/
/*  }*/
/*}*/

/*#services {*/
/*  background: white;*/
/*}*/
#services #hero {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  #services #hero {
    text-align: center;
  }
}
#services #hero h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 40px;
  max-width: 400px;
}
@media (max-width: 768px) {
  #services #hero h1 {
    margin: 0 auto;
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 36px;
  }
}
#services #hero p {
  font-size: 16px;
  line-height: 25px;
  color: #828282;
}
@media (max-width: 768px) {
  #services #hero p {
    font-size: 16px;
  }
}
#services #hero button {
  background: #EB7100;
  box-shadow: 0px 4px 11px rgba(45, 45, 45, 0.25);
  border-radius: 6px;
  padding: 9px 50px;
  border: none;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}
@media (max-width: 768px) {
  #services #hero button {
    width: 95% !important;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
#services #hero .swiper {
  position: relative;
  overflow: visible;
}
@media (max-width: 768px) {
  #services #hero .swiper {
    overflow: hidden;
  }
}
#services #hero .swiper .navigation-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
#services #hero .swiper .navigation-buttons.swiper-button-disabled {
  opacity: 0.4;
}
#services #hero .swiper .button-next {
  right: -20px;
}
#services #hero .swiper .button-prev {
  left: -20px;
}
#services #hero .swiper-slide {
  display: flex;
  justify-content: center;
  border-radius: 6px !important;
  transition: 0.3s ease;
}
#services #hero .swiper-slide img {
  max-width: 560px;
  max-height: 380px;
  width: 100%;
}
#services #work-ads {
  padding-bottom: 130px;
}

#about {
  background: white;
}
#about #hero {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  #about #hero {
    text-align: center;
  }
}
#about #hero h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 40px;
  max-width: 400px;
}
@media (max-width: 768px) {
  #about #hero h1 {
    margin: 0 auto;
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 36px;
  }
}
#about #hero p {
  font-size: 16px;
  line-height: 25px;
  color: #828282;
}
@media (max-width: 768px) {
  #about #hero p {
    font-size: 16px;
  }
}
#about #hero button {
  background: #EB7100;
  box-shadow: 0px 4px 11px rgba(45, 45, 45, 0.25);
  border-radius: 6px;
  padding: 9px 50px;
  border: none;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}
@media (max-width: 768px) {
  #about #hero button {
    width: 95% !important;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
#about #hero .swiper {
  position: relative;
  overflow: visible;
}
@media (max-width: 768px) {
  #about #hero .swiper {
    overflow: hidden;
  }
}
#about #hero .swiper .navigation-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
#about #hero .swiper .navigation-buttons.swiper-button-disabled {
  opacity: 0.4;
}
#about #hero .swiper .button-next {
  right: -20px;
}
#about #hero .swiper .button-prev {
  left: -20px;
}
#about #hero .swiper-slide {
  display: flex;
  justify-content: center;
  border-radius: 6px !important;
  transition: 0.3s ease;
}
#about #hero .swiper-slide img {
  max-width: 560px;
  max-height: 380px;
  width: 100%;
}
#about #our-clients {
  padding: 120px 0;
  background: #EDECED;
}
#about #our-clients .clients-box {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 4px 14px rgba(46, 46, 46, 0.18);
  backdrop-filter: blur(30px);
  padding: 90px 0;
}
#about #our-clients .clients-box h1 {
  font-weight: 500;
  font-size: 35px;
  text-align: center;
  text-transform: uppercase;
  color: #EB7100;
}
@media (max-width: 768px) {
  #about #our-clients .clients-box h1 {
    font-size: 20px;
    line-height: 24px;
  }
}
#about #our-clients .clients-box #clients-slider {
  margin-top: 95px;
}
@media (max-width: 768px) {
  #about #our-clients .clients-box #clients-slider {
    margin-top: 0px;
  }
}
#about #our-clients .clients-box #clients-slider .swiper-slide {
  display: flex;
  justify-content: center;
    height: 200px;
}
#about #our-clients .clients-box #clients-slider img {
  width: 100%;
    height: 100%;
    object-fit: contain;
}
/*@media (max-width: 768px) {*/
/*  #about #our-clients .clients-box #clients-slider img {*/
/*    height: 38px;*/
/*  }*/
/*}*/
#about #client-feedbacks {
  padding-top: 120px;
}
#about #client-feedbacks h1 {
  color: #EB7100;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  #about #client-feedbacks h1 {
    text-align: center;
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
  }
}
#about #client-feedbacks #client-feedback-slider {
  padding-bottom: 100px;
  position: relative;
}
#about #client-feedbacks #client-feedback-slider .navigation-buttons {
  position: absolute;
  bottom: 0px;
  z-index: 2;
  transform: translateX(-50%);
}
#about #client-feedbacks #client-feedback-slider .navigation-buttons.swiper-button-disabled {
  opacity: 0.4;
}
@media (max-width: 768px) {
  #about #client-feedbacks #client-feedback-slider .navigation-buttons img {
    width: 45px;
    bottom: 10px;
  }
}
#about #client-feedbacks #client-feedback-slider .button-next {
  left: calc(50% + 40px);
}
#about #client-feedbacks #client-feedback-slider .button-prev {
  right: calc(50% - 20px);
}
#about #client-feedbacks #client-feedback-slider .swiper-slide {
  display: flex;
  justify-content: center;
  border-radius: 6px !important;
  transition: 0.3s ease;
}
@media (max-width: 768px) {
  #about #client-feedbacks #client-feedback-slider .swiper-slide {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #about #client-feedbacks #client-feedback-slider .swiper-slide p {
    margin: 0 !important;
  }
  #about #client-feedbacks #client-feedback-slider .swiper-slide img {
    margin-bottom: 30px;
  }
}
#about #client-feedbacks #client-feedback-slider .swiper-slide img {
  width: 130px;
}
#about #client-feedbacks #client-feedback-slider .swiper-slide p {
  margin-left: 40px;
  font-size: 16px;
  line-height: 25px;
  color: #828282;
}
#about #our-clients {
  background: #fff;
  padding-top: 60px;
}
#about-us-slider {
  position: relative;
}
@media (max-width: 768px) {
  #about-us-slider {
    overflow: hidden;
  }
}
#about-us-slider .navigation-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
#about-us-slider .navigation-buttons.swiper-button-disabled {
  opacity: 0.4;
}
#about-us-slider .button-next {
  right: 20px;
}
#about-us-slider .button-prev {
  left: 20px;
}
#about-us-slider .swiper-slide {
  display: flex;
  justify-content: center;
  border-radius: 6px !important;
  transition: 0.3s ease;
}
#about-us-slider .swiper-slide{
    max-width: 400px !important;
    height: 400px !important;
}

#about-us-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#accomplished-accountant {
  background: white;
}
#accomplished-accountant #hero {
  /* padding-bottom: 80px; */
}
@media (max-width: 768px) {
  #accomplished-accountant #hero {
    text-align: center;
  }
}
#accomplished-accountant #hero h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 40px;
  max-width: 400px;
}
@media (max-width: 768px) {
  #accomplished-accountant #hero h1 {
    margin: 0 auto;
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 36px;
  }
}
#accomplished-accountant #hero p {
  font-size: 16px;
  line-height: 25px;
  color: #828282;
}
@media (max-width: 768px) {
  #accomplished-accountant #hero p {
    font-size: 16px;
  }
}
#accomplished-accountant #hero button {
  background: #EB7100;
  box-shadow: 0px 4px 11px rgba(45, 45, 45, 0.25);
  border-radius: 6px;
  padding: 9px 50px;
  border: none;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}
@media (max-width: 768px) {
  #accomplished-accountant #hero button {
    width: 95% !important;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
#accomplished-accountant #hero .swiper {
  position: relative;
  overflow: visible;
}
@media (max-width: 768px) {
  #accomplished-accountant #hero .swiper {
    overflow: hidden;
  }
}
#accomplished-accountant #hero .swiper .navigation-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
#accomplished-accountant #hero .swiper .navigation-buttons.swiper-button-disabled {
  opacity: 0.4;
}
#accomplished-accountant #hero .swiper .button-next {
  right: -20px;
}
#accomplished-accountant #hero .swiper .button-prev {
  left: -20px;
}
#accomplished-accountant #hero .swiper-slide {
  display: flex;
  justify-content: center;
  border-radius: 6px !important;
  transition: 0.3s ease;
}
#accomplished-accountant #hero .swiper-slide img {
  max-width: 560px;
  max-height: 380px;
  width: 100%;
}


#accomplished-accountant #hero h1 {
  max-width: 100%;
}
#accomplished-accountant #hero .media {
  /* max-width: 350px; */
  width: 100%;
  height: 500px;
  object-fit: cover;
}
#student-feedbacks {
  padding-bottom: 80px;
}
#student-feedbacks h4 {
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  color: #EB7100;
}
#student-feedbacks h6 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #EB7100;
}
#student-feedbacks .col-12 p {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #4f4f4f;
}
#student-feedbacks #student-slider {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 40px;
  padding: 30px 0;
}
#student-feedbacks .swiper {
  position: relative;
}
@media (max-width: 768px) {
 #student-feedbacks .swiper {
    overflow: hidden;
  }
}
#student-feedbacks .swiper .navigation-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
#student-feedbacks .swiper .navigation-buttons.swiper-button-disabled {
  opacity: 0.4;
}
#student-feedbacks .swiper .button-next {
  right: 0px;
}
#student-feedbacks .swiper .button-prev {
  left: 0px;
}
#student-feedbacks .swiper-slide {
  display: flex;
  justify-content: center;
  border-radius: 6px !important;
  transition: 0.3s ease;
}
#student-feedbacks .swiper-slide img,
#student-feedbacks .swiper-slide video {
  max-width: 800px;
  height: 500px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 4px 15px rgba(51, 51, 51, 0.2);
  border-radius: 10px;
}


#news #hero {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  #news #hero {
    text-align: center;
  }
}
#news #hero h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 40px;
  max-width: 400px;
}
@media (max-width: 768px) {
  #news #hero h1 {
    margin: 0 auto;
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 36px;
  }
}
#news #hero p {
  font-size: 16px;
  line-height: 25px;
  color: #828282;
}
@media (max-width: 768px) {
  #news #hero p {
    font-size: 16px;
  }
}
#news #hero button {
  background: #EB7100;
  box-shadow: 0px 4px 11px rgba(45, 45, 45, 0.25);
  border-radius: 6px;
  padding: 9px 50px;
  border: none;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}
@media (max-width: 768px) {
  #news #hero button {
    width: 95% !important;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
#news #hero .swiper {
  position: relative;
  overflow: visible;
}
@media (max-width: 768px) {
  #news #hero .swiper {
    overflow: hidden;
  }
}
#news #hero .swiper .navigation-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
#news #hero .swiper .navigation-buttons.swiper-button-disabled {
  opacity: 0.4;
}
#news #hero .swiper .button-next {
  right: -20px;
}
#news #hero .swiper .button-prev {
  left: -20px;
}
#news #hero .swiper-slide {
  display: flex;
  justify-content: center;
  border-radius: 6px !important;
  transition: 0.3s ease;
}
#news #hero .swiper-slide img {
  max-width: 560px;
  max-height: 380px;
  width: 100%;
}
#news #news-listing {
  padding-bottom: 100px;
}/*# sourceMappingURL=style.css.map */

/*
     FILE ARCHIVED ON 17:09:24 Jan 19, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 07:43:34 Oct 09, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 1.041
  exclusion.robots: 0.035
  exclusion.robots.policy: 0.022
  esindex: 0.02
  cdx.remote: 349.397
  LoadShardBlock: 549.013 (3)
  PetaboxLoader3.datanode: 440.051 (4)
  PetaboxLoader3.resolve: 290.177 (2)
  load_resource: 246.02
*/
