/* Slider Section CSS */
.swiper-toggle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 9;
  border: none;
  border-radius: 100%;
}
.slider-bottom .btn-playpause {
	top: 3px;
	left: 0;
}
.swiper-toggle span {
  display: inline-flex;
}
.slider-section {
  position: relative;
  margin-top: 138px;
  background: rgba(5, 9, 59, 1);
}
.slider-section .swiper-slide:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #04092B;
  mix-blend-mode: color;
  content: "";
}
.slider-section .container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.slider-section .swiper-slide {
  height: 97dvh;
  background-size: cover;
  background-position: 50% 0;
}
.slider-section img {
  width: 100%;
  height: 87dvh;
  object-fit: cover;
}
.slider-catption {
  max-width: 709px;
}
.slider-catption .text-xxl {
  color: #fff;
  margin-bottom: 20px;
}
/* .slider-catption {
  transform: translateX(-1000px);
  transition: all 2s ease;
}
.swiper-slide-active .slider-catption {
  transform: translateX(0);
} */
.slider-catption p {
  color: #fff;
}
.slider-catption .btn-arrow {
  background-color: #fff;
}
.slider-catption .link-btn {
  color: #fff;
}
.slider-catption .link-btn:before {
  background: #fff;
}
.slider-section .slider-bottom {
  position: absolute;
  max-width: 1347px;
  margin: 0 auto;
  bottom: 60px;
  z-index: 99;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  align-items: flex-end;
	padding-left: 40px;
}
.slider-section .scroll-to-bottom a {
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.slider-section .scroll-to-bottom a:hover {
  opacity: 0.55;
}
.slider-section .scroll-to-bottom img {
  width: auto;
  height: auto;
}

.slider-section .swiper-pagination {
  justify-content: flex-start;
  bottom: 75px;
  z-index: 9999;
  position: static !important;
}
.swiper-pagination {
  width: auto !important;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 60px;
  height: 7px;
  border-radius: 5px;
  background: rgba(58, 58, 148, 1) !important;
  opacity: 1;
  -webkit-transition: background-color 1000ms linear;
    -ms-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;
}
/* .swiper-pagination .swiper-pagination-bullet:hover, .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff !important;
} */

.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: color 1000ms;
  transition: color 1000ms;
}
.swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
  border-radius: 5px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}


/* Practice Area CSS */
.practice-area {
  padding: 150px 0 130px;
}
.practice-area .section-title p {
  max-width: 892px;
}
.practice-area .section-title .link-btn {
  display: none !important;
}
.practice-area ul {
  list-style-type: none;
      display: grid;
      grid-template-columns: 1fr 1fr;  /* Two columns */
      grid-template-rows: repeat(5, auto); /* Exactly 4 rows */
      grid-auto-flow: column; /* Fill down first, then next column */
      gap: 0 20px;
      width: 100%;
}
.link-block {
  font-size: 22px;
  line-height: 32px;
  color: rgba(5, 9, 59, 1);
  font-weight: 500;
  margin-bottom: 20px;
}
.link-block a {
  color: rgba(5, 9, 59, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(238, 238, 255, 1);
  padding: 20px 30px;
}
.link-block a span {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(5, 9, 59, 1);
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.link-block a svg {
  margin-left: 0;
  width: 25px !important;
  height: 11px !important;
  transform: none !important;
  margin-top: 0;
}
.link-block a:hover {
  background: #05093b;
  color: #fff;
}
.link-block a:hover svg path {
  stroke: #fff !important;
}
.link-block a:hover svg .shaft, .link-block a:hover svg .head {
  stroke: #fff !important;
}
.link-block a:hover span {
  border-color: #fff;
}
.link-block a:hover i {
  background-color: #fff;
}
.practice-area .container {
  position: relative;
}
.right-img {
  position: absolute;
  top: 60px;
  right: 0;
  display: flex;
  justify-content: flex-end;
  width: auto;
  z-index: -9;
}


/* Our Attorneys */
.our-attorneys {
  padding: 150px 0;
  position: relative;
  color: #fff;
  background: linear-gradient(to bottom,  #05093b 0%,#05093b 50%,#05093b 30%);
}
.our-attorneys:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 560px;
  background: linear-gradient(to bottom,  #05093b 0%,#05093b 50%,#05093b 30%);
  content: "";
}
.background-bg-img:after {
  position: absolute;
  bottom: -560px;
  left: 0;
  width: 100%;
  height: 560px;
  background: #fff;
  content: "";
}
.background-bg-img {
  width: 100%;
  height: 560px;
  position: absolute;
  top: 0;
  background-color: #05093B;
}
/* .background-bg-img:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #00072C 0%, rgba(0, 7, 44, 0) 100%);
  content: "";
  z-index: 1;
}
.background-bg-img:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 7, 44, 1);
  content: "";
  z-index: -9;
} */
.our-attorneys .container {
  position: relative;
  z-index: 9;
}
/* .home .our-attorneys:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 560px;
  background: #05093B;
  content: "";
} */
.our-attorneys .section-title h2, .our-attorneys .section-title p {
  color: #fff;
/*  background: #000; */
}
.our-attorneys .section-title p {
  max-width: 892px;
  font-size: 18px;
  line-height: 29px;
}
.our-attorneys .align-items-end .link-btn {
  color: #fff;
/*  position: relative;
  bottom: 30px; */
  margin-top: 25px;
  display: inline-block;
}
.translated-ltr .our-attorneys .align-items-end .link-btn {
  line-height: 1.3; 
}
.our-attorneys .align-items-end .link-btn:before {
  background: #fff;
}
.our-attorneys .align-items-end .link-btn i {
  background-color: #fff;
  top: 1px;
}
.our-attorneys .section-title {
  margin-bottom: 0;
}
.our-attorneys .section-title p {
  margin-bottom: 0;
}
/* .our-attorneys .align-items-end [class*="col-"]:last-child {
  justify-content: flex-end;
  display: inline-flex;
} */
.our-attorneys .team {
  margin-top: 50px;
	overflow: visible;
}
.our-attorneys .swiper {
  position: static;
}
.our-attorneys .link-btn .btn-arrow {
  top: 3px;
}
.our-attorneys .swiper-button-next:hover, .our-attorneys .swiper-button-prev:hover {
  opacity: 0.7;
}


/* News CSS */
.news {
  padding: 0 0 130px;
}
.news .container .row:last-child {
  margin-top: 10px;
}
.news .section-title, .news .section-title h2 {
  margin-bottom: 0;
}
.news-info .link-btn i {
  top: 1px;
}
.news .news-info .link-btn:before {
  background: #fff;
  top: 9px;
}

/* Counter Section CSS */
.counter-section {
  padding: 150px 0;
  position: relative;
  text-align: center;
  background: rgba(5, 9, 59, 1);
}
.counter-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url(../images/counter-section-bg.png) no-repeat 0 0; */
  /* background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  content: ""; */
  z-index: 99;
}
.counter-section:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #00072C 0%, rgba(0, 7, 44, 0) 100%);
  content: "";
  opacity: 1;
  z-index: 999;
}
.counter-section:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 36, 113, 1);
  content: "";
  opacity: 1;
  z-index: 9;
}
.counter-section .container {
  position: relative;
  z-index: 999;
}
.counter-section .row {
  margin: 0 -45px;
  justify-content: center;
}


.counter-section [class*="col-"] {
/*  padding: 0 45px; */
  position: relative;
  justify-content: center;
  display: flex;
}
.counter-section [class*="col-"]:after {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 1px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  content: "";
  display: none;
}
.counter-section [class*="col-"]:nth-child(2n):after {
  right: -70px;
}
/* .counter-section [class*="col-"]:last-child , .counter-section .row [class*="col-"]:first-child {
  display: none;
} */
.counter-wrap .text-md {
  color: #fff;
  font-weight: 700;
  font-family: Inter;
  margin-bottom: 0 !important;
  text-align: left;
}
.counter-section [class*="col-"]:nth-child(2n) .counter-wrap {
  position: relative;
  width: 100%;
}
.counter-section .row [class*="col-"]:last-child:after {
  display: none;
}
.counter-section .row [class*="col-"]:first-child .counter-wrap {
  max-width: inherit;
/*  margin: 0 auto; */
  display: flex;
  align-items: center;
  gap: 7px;
}
/* .counter-section .row [class*="col-"]:last-child .counter-wrap {
  max-width: 270px;
  margin: 0 0 0 auto;
} */
.counter-section p {
  margin-bottom: 0;
  color: #fff;
  margin: 0 auto;
  font-size: 24px;
  line-height: 37px;
  font-weight: 500;
}
.counter-section .text-xxl {
  font-size: 72px !important;
  line-height: 68px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}
.counter-section [class*="col-"]:nth-child(2n) .text-xxl.active:before {
  content: "$";
  display: none;
}
.counter-section [class*="col-"] .text-xxl.active:after {
  content: "Years";
  font-size: 40px;
  position: relative;
  top: 7px;
  left: 8px;
	display: none;
}
.counter-section [class*="col-"]:nth-child(3n) .text-xxl.active:after {
  content: "+";
  display: none;
}





/* Careers CSS */
.careers {
  padding-bottom: 150px;
}
.careers .section-title {
  margin-bottom: 10px;
}
.careers img {
  width: 100%;
}
.career-box {
  background: rgba(2, 9, 46, 1);
  padding: 34px 80px 65px 45px;
  height: 100%;
  position: relative;
}
.career-box:before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 231px;
  height: 110px;
  background: url(../images/brand-icon.svg) no-repeat 0 0;
  content: "";
}
.career-box:after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 436px;
  height: 449px;
  background: url(../images/career-box-dot.svg) no-repeat 0 0;
  content: "";
}
.career-box * {
  position: relative;
  z-index: 1;
}
.career-box p {
  font-size: 24px;
  line-height: 38px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 32px;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.career-box .link-btn {
  color: #fff;
}
.career-box .link-btn:before {
  background: #fff;
}
.career-box .link-btn i {
  background-color: #fff;
  margin-left: 5px;
}
.testimonial-box {
  min-height: 425px;
}
/* .swiper-slide:focus-visible, .swiper-slide:focus {
	outline: 3px solid #007aff !important;
  outline-offset: -4px;
} */
.swiper-slide:focus-visible:before, .swiper-slide:focus:before {
	position: absolute;
  top: 0px;
  left: 0px;
	bottom: 0px;
	right: 0px;
  border: 4px solid #007aff;
  content: "";
	z-index: 11;
}
/* .swiper-slide-active .active-testimonial-focus:focus-visible, .swiper-slide-active .active-testimonial-focus:focus {
	outline: 3px solid #007aff !important;
  outline-offset: -3px;
} */




/* Resposive CSS */
@media screen and (max-width: 1499px) {
  .testimonial-box {
  min-height: 405px;
}
  .counter-section [class*="col-"] .text-xxl.active::after {
    top: 7px;
      font-size: 33px;
  }
  .counter-section .text-xxl {
    font-size: 60px !important;
  }
  .background-bg-img {
    height: 490px;
  }
  .career-box .link-btn i {
    top: 3px;
  }
  .practice-area {
    padding: 100px 0 80px;
  }
  .our-attorneys {
    padding: 100px 0;
  }
  .news {
    padding: 0 0 80px;
  }
  .careers {
    padding: 0 0 100px;
  }
  .counter-section, .testimonials {
    padding: 100px 0;
  }
  .career-box p {
    font-size: 20px;
   line-height: 30px;
  }
  .career-box {
    padding: 24px 50px 55px 35px;
  }
}

@media screen and (max-width: 1370px) {
	.slider-section .swiper-slide {
		height: 93dvh;
	}
  .counter-section [class*="col-"]::after {
    right: -15px;
  }
  .counter-section [class*="col-"]:nth-child(2n)::after {
    right: -30px;
  }
  .testimonial-box {
    padding: 25px;
  }
  .slider-section .slider-bottom, .slider-section .swiper-pagination {
    max-width: 1140px;
  }
  .right-img img {
    max-width: 330px;
  }
  .link-block {
    font-size: 20px;
    line-height: 30px;
  }
  .link-block a {
    padding: 10px 20px;
  }
  .link-block a span {
    width: 34px;
    height: 34px;
  }
/*   .link-arrow {
    width: 15px;
    height: 11px;
  } */
  .background-bg-img {
    height: 526px;
  }
  
  .slider-section img {
    height: 80.5dvh;
  }
  .slider-section .slider-bottom {
    bottom: 40px;
  }
  .slider-section .swiper-pagination {
    bottom: 55px;
  }
  .slider-section img {
    object-fit: contain;
    height: auto !important;
  }
	.news {
		padding-top: 120px;
	}
}

@media screen and (max-width: 1299px) {
	.news {
		padding-top: 150px;
	}
	.team .swiper-button-prev {
		margin-left: auto;
    left: -60px;
    right: 0;
    margin-right: auto;
    top: 110%;
	}
	.team .swiper-button-next {
		margin-left: auto;
    left: 60px;
    right: 0;
    margin-right: auto;
    top: 110%;
	}
	.counter-section .text-xxl {
		margin-bottom: 11px;
	}
  .testimonial-box {
    min-height: 402px;
  }
  .counter-section [class*="col-"] .text-xxl.active::after {
    top: 6px;
  }
  .testimonial-box {
    min-height: 372px;
  }
  .counter-section .text-xxl {
    font-size: 50px !important;
  }
  .slider-section .scroll-to-bottom a {
    font-size: 18px;
    line-height: 26px;
  }
  .slider-section .scroll-to-bottom img {
    width: 26px;
  }
  .practice-area {
    padding: 80px 0 60px;
  }
  .right-img img {
    max-width: 240px;
  }
  .our-attorneys {
    padding: 80px 0 0;
  }
   .news, .counter-section, .testimonials {
    padding: 80px 0;
  }
   .news {
    padding-top: 120px;
    padding-bottom: 60px;
   }
  .counter-section p {
    font-size: 17px;
    line-height: 27px;
    text-wrap: pretty;
  }
  .quote-icon {
    width: 88px;
    height: 75px;
  }
  .swiper-button-prev {
    margin-left: -24px;
  }
  .swiper-button-next {
    margin-right: -24px;
  }

}

@media screen and (max-width: 1199px) {
	.team .btn-playpause {
		position: absolute;
    left: 39%;
    bottom: -72px;
	}
  .counter-section [class*="col-"] .text-xxl.active::after {
    top: 4px;
  }
  .slider-section .swiper-slide {
    height: 650px;
  }
  
  .background-bg-img {
    height: 460px;
  }
/*  .slider-section img {
    height: 81dvh;
  } */
  .slider-section .slider-bottom, .slider-section .swiper-pagination {
    max-width: 960px;
  }
  .background-bg-img {
    height: 450px;
  }
  .link-btn {
    font-size: 17px;
  }
  .testimonial-box {
    min-height: 340px;
  }
  .career-box {
    margin-top: 20px;
    padding: 35px;
  }
  .counter-section .text-xxl {
    line-height: 50px;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 991px) {
	.our-attorneys .btn-playpause {
		width: 35px;
		height: 35px;
		bottom: -73px;
	}
	.our-attorneys .btn-playpause:before {
		left: 7px;
	}
	[aria-label="Stop automatic slide show"].btn-playpause:before {
		left: 6px;
	}
	.our-attorneys .btn-playpause:before {
		left: 7px;
	}
	.our-attorneys .btn-playpause:after {
        left: 12px;
        top: 5px;
    }
	.team .btn-playpause {
		left: 35%;
	}
  .counter-section [class*="col-"] .text-xxl.active::after {
    top: 4px;
    font-size: 26px;
    }
  .testimonials {
    padding-bottom: 0 !important;
  }
  .practice-area ul {
    display: block;
  }
  .news {
    padding-top: 70px;
  }
  .counter-section .text-xxl {
    font-size: 40px !important;
  }
  .our-attorneys {
    padding-bottom: 80px;
  }
   .slider-section img {
    height: 68dvh;
  }
  .slider-section .slider-bottom, .slider-section .swiper-pagination {
    max-width: 720px;
  }
  .right-img {
    top: -50px;
  }
  .our-attorneys .align-items-end .link-btn {
    bottom: 0;
    margin-top: 20px;
  }
  .our-attorneys .align-items-end [class*="col-"]:last-child {
    justify-content: flex-start;
  }
  .our-attorneys .link-btn .btn-arrow {
    top: 1px;
  }
  .our-attorneys {
    padding: 80px 0;
  }
  .careers {
    padding-top: 50px;
  }
  .testimonial-box {
    min-height: 320px;
  }
  .counter-section [class*="col-"] {
    padding: 0 5px;
  }
  .counter-section [class*="col-"]:nth-child(2n)::after {
    right: -15px;
  }
  .counter-section [class*="col-"]::after {
    right: 10px;
  }
/*  .practice-area .link-btn {
    position: absolute;
     bottom: -50px;
  } */
  .practice-area {
    padding-bottom: 80px;
  }
	.testimonials .swiper .swiper-button-prev {
		left: 10px;
	}
	.testimonials .swiper .swiper-button-next {
		right: 10px;
	}
}

@media screen and (max-width: 767px) {
	.slider-section .swiper-pagination {
		padding-top: 6px;
	}
	.scroll-to-bottom {
		position: relative;
  top: -5px;
	}
	.swiper-pagination .swiper-pagination-bullet {
		height: 24px;
  border-radius: 3px;
	}
	.counter-section .row [class*="col-"]:first-child .counter-wrap span.text-lg span {
		display: none;
	}
	.team .btn-playpause {
		left: 31%;
	}
	.counter-section [class*="col-"] .text-xxl.active:after {
		display: inline-block !important;	
	}
	.counter-section .row [class*="col-"]:first-child .counter-wrap {
		gap: 15px;	
	}
	.swiper-pagination .swiper-pagination-bullet {
		width: 30px;
	}
	.btn-playpause {
		left: 180px;
	}
	 .slider-section .scroll-to-bottom a {
    font-size: 15px;
    line-height: 25px;
  }
  .counter-section .row [class*="col-"]:first-child .counter-wrap {
    flex-direction: column;
  }
  .counter-section .row [class*="col-"]:first-child .counter-wrap span.text-lg {
    margin-top: -20px;
    font-size: 16px !important;
  }
  .counter-section [class*="col-"] .text-xxl.active::after {
    top: 11px;
    font-size: 16px;
  }
  .counter-section .text-xxl {
    margin-bottom: 10px;
  }
  .counter-section .row [class*="col-"]:last-child .counter-wrap {
    margin: 0 auto;
  }
  .counter-section .text-xxl {
    font-size: 50px !important;
    line-height: 60px;
    margin-bottom: 10px;
  }
  .counter-section p {
    max-width: 100%;
  }
   .background-bg-img {
    height: 470px;
  }
  .our-attorneys {
    padding-bottom: 50px;
  }
  .slider-section {
    margin-top: 177px;
  }
  .link-btn {
    font-size: 20px;
  }
  .slider-section .slider-bottom, .slider-section .swiper-pagination {
      max-width: 540px;
   }
   .slider-section img {
    height: 500px;
   }
   .slider-section .slider-bottom, .slider-section .swiper-pagination {
    bottom: 30px;
   }
  .slider-section .swiper-pagination {
    bottom: 42px;
  }
   .practice-area {
    padding-bottom: 40px;
   }
   .our-attorneys {
    padding: 50px 0;
  }
  .our-attorneys .team {
    margin-top: 30px;
  }
  .counter-section [class*="col-"] {
    padding: 20px 15px;
  }
  .counter-section [class*="col-"]::after {
    left: 0;
    right: 0 !important;
    margin: 0 auto;
    width: 300px;
    top: auto;
    bottom: -5px;
    height: 1px;
  }
  .news {
    padding-top: 80px !important;
    padding-bottom: 100px !important;
  }
  .news .container {
    position: relative;
  }
  .news .container .row:last-child {
    margin-top: 0;
  }
  .counter-section {
    padding: 20px 0 40px;
  }
  .testimonials {
    padding: 50px 0 0;
  }
  .careers {
    padding-top: 130px;
    padding-bottom: 80px;
  }
  .counter-section .row {
    margin: 0 -15px;
  }
  .counter-section .row [class*="col-"]:first-child .counter-wrap {
    max-width: 100%;
  }
  .news .align-items-center .link-btn {
    position: absolute;
  bottom: -50px;
  left: 12px;
  }
	.testimonials .swiper .swiper-button-prev {
		left: 42%;
	}
	.testimonials .swiper .swiper-button-next {
		right: 42%;
	}
	.testimonials .swiper .swiper-button-next, .testimonials .swiper .swiper-button-prev {
		top: auto !important;
		bottom: -80px;
	}
}

@media screen and (max-width: 575px) {
	
	.slider-bottom .btn-playpause {
		left: 36%;
	}
	.slider-section .swiper-pagination {
		margin-left: 30px;
	}
	.team .btn-playpause {
		left: 34%;
	}
	.swiper-pagination .swiper-pagination-bullet {
		width: 25px;
		margin: 0 2px !important;
	}
	.team .swiper-button-prev {
		left: -40px;
	}
	.team .swiper-button-next {
		right: -25px;
	}
	.btn-playpause {
		left: 105px;
	}
  .slider-section .swiper-pagination {
    bottom: 92px;
  justify-content: center;
  }
	
  .slider-section .slider-bottom, .slider-section .scroll-to-bottom {
    max-width: 100%;
/* 	  width: 100%; */
  }
/*   .swiper-pagination {
    display: none;
  } */
  .slider-section .slider-bottom {
    justify-content: center;
    flex-direction: column;
    align-items: center;
	  padding: 0 15px;
  }
  .slider-section .scroll-to-bottom {
    bottom: 30px;
  }
   .slider-section .scroll-to-bottom a {
    font-size: 14px;
    line-height: 26px;
    gap: 10px;
  }
	.down-arrow {
		width: 22px;
  height: 22px;
	}
   .slider-section .scroll-to-bottom img {
    width: 20px;
  }
  .link-block {
    font-size: 18px;
    line-height: 28px;
  }
	.slider-section .scroll-to-bottom {
		top: 10px;
	}
}

@media screen and (max-width: 479px) {
 .slider-section {
    margin-top: 238px;
  }
	.team .btn-playpause {
    left: 28%;
  }
	.slider-bottom .btn-playpause {
		left: 31%;
	}
}

@media screen and (max-width: 399px) {
	.team .btn-playpause {
    left: 26%;
  }
  .slider-section {
    margin-top: 270px;
  }
  .right-img {
    top: -30px;
  }
  .right-img img {
    max-width: 130px;
  }
  .link-block {
    font-size: 16px;
    line-height: 28px;
  }
  .link-block a {
    padding: 20px;
    flex-direction: column;
    gap: 5px;
  }
  .link-block a span {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    max-width: 34px;
  }
  .testimonial-box {
    min-height: 400px;
  }
	.slider-bottom .btn-playpause {
		left: 29%;
	}
}



@media screen and (max-width: 349px) {
	team .btn-playpause {
    left: 70%;
  }
	 .team .btn-playpause {
    left: 22%;
  }
	.slider-bottom .btn-playpause {
    left: 25%;
}
	}


