html {
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(255, 102, 0, 1);
  text-rendering: optimizeLegibility;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  box-sizing: border-box;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Clash display";
  src: url("../Fonts/TTF/ClashDisplay-Variable.ttf") format("truetype");
  /* You can also add woff/woff2 for better browser support */
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Clash display";
  src: url("../Fonts/TTF/ClashDisplay-Variable.ttf") format("truetype");
  /* You can also add woff/woff2 for better browser support */
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Clash display";
  src: url("../Fonts/TTF/ClashDisplay-Variable.ttf") format("truetype");
  /* You can also add woff/woff2 for better browser support */
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Clash display";
  src: url("../Fonts/TTF/ClashDisplay-Variable.ttf") format("truetype");
  /* You can also add woff/woff2 for better browser support */
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Clash display";
  src: url("../Fonts/TTF/ClashDisplay-Variable.ttf") format("truetype");
  /* You can also add woff/woff2 for better browser support */
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Clash display";
  src: url("../Fonts/TTF/ClashDisplay-Variable.ttf") format("truetype");
  /* You can also add woff/woff2 for better browser support */
  font-weight: 900;
  font-style: normal;
}

body {
  overflow-x: hidden;
  color: var(--color-primary);
  font-family: "Clash display", sans-serif;
  background: var(--white);
  color: var(--grey);
}

:root {
  --primaryColor: #4391fe;
  --secondaryColor: #bc5827;
  --black: #000;
  --white: #fff;
  --offWhite: #f0f0f0;
  --grey: #5e5e5e;
  --offGrey: #b2b2b2;
  --lightGrey: #eeeeee;
  --transition500: all 500ms ease-in-out;
  --transition300easy: all 300ms ease;
  --transition300: all 300ms ease-in-out;
}

.off-white {
  color: var(--offWhite);
}

.light-grey {
  color: var(--lightGrey);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1 {
  font-size: 54px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--black);
}

h2 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--black);

  margin: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  color: var(--black);

  font-weight: 500;
}

h4 {
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 600;
  color: var(--black);

  margin: 0;
}

h5 {
  font-size: 18px;
  line-height: 1;
  color: var(--black);

  font-weight: var(--fw-600);
}

h6 {
}

p {
  font-size: 16px;
  color: var(--grey);
  margin: 0;
}

.pb-n {
  padding-bottom: 30px;
}

a {
  text-decoration: none;
  font-size: 16px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.general-padding {
  padding: 80px 0;
}

.btn-primary {
  background: var(--primaryColor);
  color: var(--black);
  padding: 12px 24px;
  font-weight: 500;
  border-radius: 10px;
  border: 2px solid var(--primaryColor);
  transition: var(--transition500);
}

.btn-primary:hover {
  background: var(--white);
}

.btn-secondary {
  color: var(--primaryColor);
  padding: 12px 24px;
  font-weight: 500;
  border-radius: 10px;
  border: 2px solid var(--primaryColor);
  transition: var(--transition500);
  border-radius: 10px;
}

.page-id-173 .btn-block .btn-secondary {
  color: var(--primaryColor);
  padding: 12px 24px;
  font-weight: 500;
  border-radius: 10px;
  border: 2px solid var(--primaryColor);
  transition: var(--transition500);
  border-radius: 10px;
  background: inherit;
  margin: 0;
  width: 90px;
}

.btn-secondary:hover {
  background: var(--primaryColor);
  color: var(--white);
}

/* footer css */
footer {
  padding: 60px 0 40px;
  background: var(--primaryColor);
}

.footer-text {
  width: 22%;
  padding-bottom: 35px;
}

.footer-text:nth-child(4) {
  width: 34%;
  display: flex;
  justify-content: end;
  align-items: center;
}

.footer-text h4 {
  color: var(--black);
  padding-bottom: 24px;
}

.footer-text ul li {
  padding-bottom: 12px;
}

.footer-text ul li a {
  color: var(--black);
  transition: var(--transition300);
}

.footer-text ul li a:hover {
  color: var(--white);
}

.links {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  transition: var(--transition500);
}

.links a {
  display: inline-flex;
}

.links a p {
  padding-left: 9px;
  color: var(--black);
  font-weight: 500;

  transition: var(--transition300);
}

.links a:hover p,
.links a:hover svg path {
  color: var(--white);
  stroke: white;
}

.links svg path {
  transition: var(--transition300);
}

.mini-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0 24px;
}

.mini-footer a {
  transition: var(--transition300);
}

.bg-gradient-white {
  border-top: 1px solid #f6f3ec;
  margin: 0;
  opacity: 9;
}

.mini-text p {
  text-align: end;
  color: var(--black);
  font-weight: 500;
  padding-top: 10px;
}

.social-links i {
  background: var(--black);
  color: var(--primaryColor);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  text-align: center;
  font-size: 20px;
}

.social-links {
  display: flex;
}

.social-links a {
  padding-right: 24px;
}

.social-links a:last-child {
  padding-right: 0;
}

.social-links a:hover i {
  color: var(--white);
}

/* header css */
header {
  padding: 32px 0;
}

header .navbar-nav li a {
  color: var(--black);
  font-size: 16px;
}

header .navbar-nav li a:hover {
  color: var(--primaryColor);
  background: inherit !important;
}

header .navbar-nav li {
  padding-right: 36px;
  display: flex;
  align-items: center;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

.menu-icon {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.show .menu-icon .bar-2 {
  opacity: 0;
}

.show .menu-icon .bar-3 {
  transform: rotate(-45deg) translate(-15px, 0px);
}
.grid-item.special-style {
  grid-column: span 2;
}
.menu-icon .bar {
  fill: none;
  stroke: var(--primaryColor);
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.navbar-toggler {
  border: none;
}

.show .menu-icon .bar-1 {
  transform: rotate(45deg) translate(6px, -9px);
}

.banner {
  margin: 24px;
  background-size: cover !important;
  border-radius: 20px;
  position: relative;
  height: 762px;
  display: flex;
  justify-content: end;
  align-items: end;
  border: 12px solid #f0f0f0;
  overflow: hidden;
  border-radius: 20px;
}

.banner h1 {
  color: var(--white);
  font-size: 43px;
  font-weight: 600;
  width: 1015px;
}

.shadow {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

.shadow svg {
  width: 100%;
  border-radius: 20px;
}

.banner-text {
  display: flex;
  justify-content: start;
  align-items: end;
  padding-bottom: 120px;
}

.b-logo {
  right: 0;
  bottom: 0;
  padding: 40px;
  border-radius: 20px 0px 8px 0px;
  border-top: 12px solid #f0f0f0;
  background: rgba(0, 0, 0, 0.4);
  border-left: 12px solid #f0f0f0;
}

/* banner ends */

.partner h3 {
  padding-bottom: 20px;
}

.carousal-partner .swiper-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.carousal-partner .swiper-wrapper {
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.partner {
  margin: 24px;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  padding: 40px 29px 40px 40px;
}

.display-section p {
  letter-spacing: 0.779px;
  line-height: 182.667%;
  /* 29.227px */
}

.display-section h2 {
  padding-bottom: 12px;
}

.btn-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
}

.block-plannig {
  position: relative;
  margin-bottom: 50px;
}

.block-plannig img {
}

.block-wrap,
.bg-gradient-block {
  position: absolute;
  bottom: 0;
}

.block-wrap {
  padding: 35px;
}

.block-plannig img {
  border-radius: 20px;
  min-height: 360px;
  object-fit: cover;
}

.block-wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  transition: var(--transition500);
}

.block-text {
  width: 80%;
}

.block-text h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--white);

  transition: var(--transition300easy);
}

.block-plannig:hover .block-text h3 {
  color: var(--primaryColor);
}

.block-text p {
  color: var(--white);
  letter-spacing: 0.78px;
}

.whole-wrap-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.block-arrow {
  transition: var(--transition500);
}

.block-plannig:hover .block-arrow {
  rotate: 46deg;
}

.article-img {
  position: relative;
}

.article-bg {
  background: var(--white);
  position: absolute;
  bottom: 35px;
  left: 20px;
  border-radius: 10px;
}

.article-img img {
  border-radius: 20px;
}

.article-bg a {
  color: var(--black);
  font-weight: 600;
  padding: 12px 32px;
  display: block;
}

.project {
  background: #e5f0ff;
  position: relative;
  padding: 48px 0;
}

.pagination-wrap .swiper-button-prev:after,
.pagination-wrap .swiper-button-next:after {
  font-size: 16px;
  font-weight: 700;
}

.pagination-wrap .swiper-button-prev,
.pagination-wrap .swiper-button-next {
  color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  width: 40px;
  border-radius: 50%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project .swiper-button-prev,
.blog-block .swiper-button-prev {
  right: auto;
  top: -165px;
  left: -65px;
}

.project .swiper-button-next,
.blog-block .swiper-button-next {
  right: -65px;
  left: auto;
  top: -165px;
}

.blog-block .swiper-button-prev,
.blog-block .swiper-button-next {
  top: -220px;
}

.client .swiper-button-prev {
  left: -65px;
  right: auto;
  top: -190px;
}

.client .swiper-button-next {
  right: -65px;
  left: auto;
  top: -190px;
}

.team .swiper-button-prev {
  left: -65px;
  right: auto;
  top: -130px;
}

.team .swiper-button-next {
  right: -65px;
  left: auto;
  top: -130px;
}

.swiper-button-next:hover,
.pagination-wrap .swiper-button-prev:hover {
  background: var(--primaryColor);
  color: white;
}

.slide-bg h4 {
  color: var(--white);
  font-weight: 600;
  padding-right: 60px;
}

.slide-bg {
  position: absolute;
  bottom: 15px;
  left: 0;
  padding: 0 25px;
  z-index: 2;
}

.blog-flex p {
  color: #bfbfbf;
  font-weight: 600;
}

.slide-arrow {
  background: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-arrow img {
  width: 12px;
}

.main-wrap {
  position: relative;
}

.main-wrap::before,
.about-service .article-img::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: linear-gradient(
    360deg,
    rgb(0 0 0 / 54%) 5%,
    rgb(255 255 255 / 0%) 78%
  );
  z-index: 1;
  border-radius: 20px;
  transition: var(--transition300easy);
}

.about-service .article-img {
  overflow: hidden;

  border-radius: 20px;
}

.about-service .article-img::before {
  height: 120%;
  border-radius: 20px;
}

.vision {
  padding: 60px 0;
}

.white {
  color: var(--white);
}

.service-text h3 {
  font-weight: 600;
}

.service-text ul li {
  list-style: inside;
  padding-bottom: 10px;
}

.service-text ul {
  padding-top: 20px;
}

.service-text .btn-block {
  display: block;
  padding-top: 30px;
}

.service-text {
  border: 2px solid #e5e5e5;
  padding: 32px 32px 35px 32px;
  border-radius: 30px;
}

.specialities .side-images img {
  border-radius: 20px;
}

.mission-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px;
  width: 33.33%;
}

.mission-wrap .mission-block:first-child {
  background: #e5f0ff;
}

.mission-wrap .mission-block:nth-child(2) {
  background: #b8d4ff;
}

.mission-wrap .mission-block:last-child {
  background: #8ab8ff;
}

.mission-block p {
  color: var(--black);
}

.image-section img {
  height: 500px;
  object-fit: cover;
  width: 100%;
}

.img-second {
  border-radius: 20px 0 0 20px;
}

.img-first {
  border-radius: 0 20px 20px 0;
}

.common-text {
  padding: 120px 0 24px;
}

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

.discovery {
  padding-top: 30px;
}

.icon-block {
  background: #f9f9f9;
  padding: 25px;
  display: flex;
  margin: 12px 0;
}

.icon {
  padding-right: 10px;
}

.discovery-img {
  margin-right: 12px;
}

.trusted-partner {
  padding: 64px 0 180px;
  background: #e5f0ff;
  position: relative;
}

.beaver-trust {
  background: var(--white);
  padding: 48px;
  position: absolute;
  border-radius: 20px;
  bottom: -250px;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.15);
}

.beaver-trust blockquote {
  color: var(--black);
  font-size: 24px;
  line-height: 43px;
}

.vision-section p {
  padding-bottom: 20px;
}

.plan-exhibit {
  position: relative;
}

.exhibit-text {
  background: var(--white);
  padding: 45px 45px 45px 75px;
  border-radius: 200px;
  left: -140px;
  position: absolute;
  top: 47px;
}

.exhibit-text h3 {
  font-weight: 600;
}

.last-padding {
  padding-bottom: 160px;
}

.blog-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
}

.blog-block a.read-more {
  text-decoration: underline;
}

.card {
  position: relative;
  overflow: hidden;
  border: none;
  padding-bottom: 50px;
}

.tranding-section h2 {
  padding-bottom: 30px;
}

.card-body {
  padding: 0;
}

.blog-card-img img {
  border-radius: 20px;
}

.card-body h3 {
  padding: 24px 0 16px;
  color: var(--black);
  font-weight: 600;
  margin: 0;
  transition: var(--transition500);
}

.blog-block .read-more {
  color: #4391fe;
  transition: var(--transition300easy);
}

.blog-block .read-more:hover {
  color: var(--secondaryColor);
}

.date-block .date {
  color: var(--black);
}

.bg-grey {
  color: var(--offGrey);
}

.site-arrow {
  flex-direction: column;
  padding-top: 80px;
  justify-content: end;
  align-items: end;
}

.site-arrow a {
  color: var(--primaryColor);
  font-weight: 600;
}

.site-arrow:hover a {
  color: var(--secondaryColor);
}

.blog-banner {
  padding-top: 58px;
}

.blog-banner .back {
  padding-bottom: 30px;
}

.blog-banner img {
  border-radius: 20px;
  width: 100%;
  height: 465px;
  object-fit: cover;
}

.blog-description p {
  padding-bottom: 30px;
}

.blog-description h3 {
  padding-bottom: 16px;
  padding-top: 20px;
  font-weight: 600;
}

.blog-description.with-image {
  margin-top: -110px;
}

.blog-description {
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.15);
  width: 90%;
  padding: 36px;
  margin: auto;
  margin-top: 20px;
  background: var(--white);
}

.blog-description .date-block {
  padding-bottom: 30px;
  color: #000;
}

.card h3:hover {
  color: var(--primaryColor);
}

.back i {
  padding-right: 6px;
}

.back a {
  color: var(--primaryColor);
  text-decoration: underline;
}

.back a:hover {
  color: var(--secondaryColor);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 equal columns */
  gap: 16px;
  /* space between columns */
}

.grid-item img {
  border-radius: 20px;
}

.slider-view {
  width: 85%;
  margin: 0 !important;
}

.slider-gallery {
  position: relative;
}

.slider-view .card-body h3 {
  padding: 24px 0 5px;
}

.slider-gallery .swiper-button-prev,
.slider-gallery .swiper-rtl .swiper-button-next {
  left: inherit;
  right: 100px;
}

.slider-gallery .swiper-button-next,
.slider-gallery .swiper-rtl .swiper-button-prev {
  right: 40px;
  left: auto;
}

.slider-gallery .swiper-button-next,
.slider-gallery .swiper-rtl .swiper-button-prev,
.slider-gallery .swiper-button-prev,
.slider-gallery .swiper-rtl .swiper-button-next {
  top: -285px;
}

.about-banner img {
  border-radius: 10px;
}

.about-banner {
  border: 12px solid var(--offWhite);
  border-radius: 20px;
}

.about-section p {
  padding-right: 80px;
}

.about-service .article-img {
  position: relative;
  margin-bottom: 20px;
}

.about-service .article-bg {
  background: var(--white);
  position: absolute;
  bottom: 20px;
  left: 20px;
  border-radius: 10px;
  transition: var(--transition300easy);
}

.about-service .article-img:hover .article-bg {
  bottom: 25px;
}

.about-service .article-img:hover::before {
  top: -40px;
}

.about-service .article-bg {
  background: inherit;
  z-index: 2;
}

.about-service .article-bg a {
  color: var(--black);
  font-weight: 600;
  padding: 0;
  display: block;
}

.about-service .article-img h2 {
  font-size: 30px;
  color: var(--white);
}

.about-service .article-img p {
  color: var(--offGrey);
}
/* 
.article-img a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 3;
} */
/* 
.article-img img {
  height: 420px;
  object-fit: cover;
} */

.blog-card-img img {
  height: 288px;
  object-fit: cover;
}

.work-together p {
  padding-bottom: 25px;
}

.btn-flex {
  padding-top: 15px;
}

.side-images img {
  border: 12px solid #f0f0f0;
  border-radius: 50%;
}

.work-together p {
  padding-right: 60px;
}

.about-partner {
  margin: 0;
  padding: 30px;
}

.client {
  background: #e5f0ff;
  padding: 48px 0;
}

.testimonial {
  background: var(--white);
  padding: 29px 35px;
  border-radius: 20px;
}

.testimonial p,
.testimonial h6 {
  color: var(--black);
}

.testimonial h6 {
  font-weight: 600;
  padding-left: 10px;
  margin: 0;
  line-height: 1.6;
  padding-right: 60px;
}

.testimonial img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.client-img {
  padding-top: 12px;
}

.pb-b {
  padding-bottom: 26px;
}

.team-block {
  background: #eeeeee;
}

.team-block {
  border-radius: 20px;
}

.team-text {
  padding: 16px 21px 28px 21px;
}

.team-text h6 {
  font-weight: 600;
  color: var(--black);
}

.contact-form {
}

.contact-form label {
  color: var(--black);
  padding-bottom: 28px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #5e5e5e;
}
.first-from {
  margin-bottom: 48px;
}

.wpcf7-not-valid-tip {
  padding-top: 8px;
}

.contact {
  border: 1px solid #dcdcdc;
  border-radius: 20px 0 0 20px;

  border-right: 0;
}

.contact-form {
  padding: 48px;
}

.contact-message {
  background: #b8d4ff;
  border-radius: 0 20px 20px 0;
  padding: 48px;
}

.contact .col-md-8,
.contact .col-md-4 {
  padding: 0;
}

.contact h2 {
  font-weight: 400;
}

.contact .social-links {
  padding: 27px 0;
}

.contact .links {
  padding-bottom: 12px;
}

.contact .social-links a {
  color: var(--white);
}

.social-links i {
  color: var(--white);
}

.vision h4 {
  max-width: 750px;
  margin: auto;
  font-weight: 500;
  line-height: 1.7em;
  padding-top: 5px;
}

.vision {
  position: relative;
}

.vision::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}

.side-images h4 {
  text-align: center;
  padding-top: 20px;
}

.dropdown-toggle::after {
  content: "";
}

.banner-swiper-main .pagination-wrap {
  z-index: 9;
  position: relative;
}

.banner-swiper-main .swiper-horizontal > .swiper-pagination-bullets,
.banner-swiper-main .swiper-pagination-bullets.swiper-pagination-horizontal,
.banner-swiper-main .swiper-pagination-custom,
.banner-swiper-main .swiper-pagination-fraction {
  bottom: 80px;
  left: 0;
  width: 100%;
}

.banner-swiper-main .swiper-pagination-bullet {
  background: var(--white);
  opacity: 9;
}

.banner-swiper-main .swiper-pagination-bullet-active {
  opacity: 9;
  background: var(--secondaryColor);
}

header .menu-item-has-children::after {
  content: "";
  position: relative;
  background: url(https://beaver1dev.wpenginepowered.com/wp-content/uploads/2025/08/down-arrow.svg);
  border: none;
  background-repeat: no-repeat;
  width: 15px;
  height: 10px;
  display: inline-block;
}

header .menu-item-has-children .dropdown-menu {
  position: absolute;
  top: 36px;
}

header .navbar-nav li.current_page_item a {
  color: var(--primaryColor) !important;
}

/* header .navbar-nav li a:hover {
  font-weight: 600;
} */
.dropdown-toggle::after {
  content: "";
  display: none;
}

.general-padding {
  padding: 80px 0;
}

.mission-block img {
  padding-bottom: 25px;
}

.mission-wrap .mission-block:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.mission-wrap .mission-block:last-child {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.last-padding {
  padding-bottom: 160px;
}

.pb-o {
  padding-bottom: 12px;
}

.links svg path {
  stroke: #1a4d8f;
}

.gallery-grid .grid-row-mixed {
  display: grid;
  grid-template-columns: 1.3fr 2fr 1fr;
  gap: 16px;
  padding-bottom: 20px;
}

.gallery-grid .grid-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  padding-bottom: 20px;
}

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.grid-item img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.grid-item {
  position: relative;
  transition: var(--transition500);
  border-radius: 20px;
}

.grid-item::after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: linear-gradient(
    360deg,
    rgb(0 0 0 / 54%) 5%,
    rgb(255 255 255 / 0%) 78%
  );
  z-index: 1;
  border-radius: 20px;
  transition: var(--transition300easy);
}

.grid-item:hover img {
  transform: scale(1.05);
}
.grid-item img {
  transition: var(--transition500);
}
.overlay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0px;
  padding: 20px;
  width: 100%;
  z-index: 9;
}

.overlay h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.overlay p {
  margin: 0;
  font-size: 16px;
  color: #b2b2b2;
}

.icon {
  font-size: 1.2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  /* optional circular background */
  border-radius: 50%;
  padding: 5px 10px;
}

.gallery-grid .grid-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-bottom: 20px;
}

.single-gallery .grid-item img {
  width: 100%;
  height: 514px;
}

footer .links svg path {
  stroke: #000;
}

.general-padding.client-block {
  padding-top: 0;
}

a.latest {
  position: absolute;
  top: 20px;
  background: #ffffff;
  left: 14px;
  padding: 12px 22px;
  border-radius: 10px;
  color: #000;
  font-weight: 600;
}

.blog-card-img {
  position: relative;
}

.blog-pagination a,
.blog-pagination a.page-numbers {
  color: var(--black);
}

.blog-pagination .next:hover,
.blog-pagination .prev:hover {
  background: inherit !important;
  color: var(--primaryColor) !important;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}

.blog-pagination .page-numbers.current {
  background: var(--primaryColor);
  border-radius: 20px;
  padding: 0 5px;
  color: var(--white);
  line-height: 1.6;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-pagination .page-numbers:hover {
  background: var(--primaryColor);
  border-radius: 50px;
  padding: 0 5px;
  color: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-pagination .page-numbers {
  margin-right: 20px;
  font-size: 20px;
  padding: 0 5px;
  font-weight: 400;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-pagination .next::before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 6 Free";
  content: "\f054" !important;
  font-weight: 900;
  width: 20px;
  height: 20px;
  background: inherit !important;
  right: -21px !important;
  top: 0 !important;
}

.blog-pagination .prev:hover:before,
.blog-pagination .next:hover:before {
  width: 20px;
  height: 20px;
  color: var(--primaryColor);
  top: 0 !important;
}

.blog-pagination .prev::before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 6 Free";
  content: "\f053" !important;
  font-weight: 900;
  width: 20px;
  height: 20px;
  background: inherit !important;
  top: 0 !important;
  left: -23px !important;
}

.blog-pagination .next:hover,
.blog-pagination .prev:hover {
  background: inherit !important;
  color: var(--primaryColor) !important;
}

.blog-pagination a.next,
.blog-pagination a.prev {
  width: 0;
  height: 30px;
}

.blog-pagination a.next:hover,
.blog-pagination a.prev:hover {
  width: 0;
  height: 30px;
}
.home-blog-block .article-img img {
  border-radius: 20px;
  width: 380px;
  height: 419px;
  object-fit: cover;
}

.home-blog-block .main-wrap a {
  cursor: pointer;
  position: inherit;
  z-index: 3;
}

.single-gallery .blog-block {
  display: flex;
  justify-content: start;
  align-items: center;
  padding-top: 16px;
}

span.blog-p {
  padding: 0 6px;
}
input:focus-visible {
  outline: 0;
}

.contact-us-block .links a,
.contact-us-block .links p {
  display: inline-flex;
  color: #000;
  padding-left: 12px;
}

.contact-us-block .links {
  display: flex;
  align-items: start;
  padding-bottom: 12px;
  transition: var(--transition500);
}

.contact-us-block .links a:hover {
  color: var(--white);
}

:focus-visible {
  outline: none;
}

header.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  background: #fff;
}

header {
  transition: all 0.3s ease;
  z-index: 999;
  position: relative;
}

.fixed-top {
  width: 100%;
  background: #fff;
}

html {
  scroll-behavior: smooth;
}
.carousal-partner .carousal-image  {
	display:flex;
	justify-content:center;
	align-items: center;
}
