@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0;
}

ul li {
  list-style: none;
}

p {
  text-align: justify;
  margin-bottom: 0px;
}

h1 {
  margin-bottom: 0px;
}

h2,
h3,
h4 {
  margin-bottom: 0px;
}

:root {
  --black: #000;
  --white: #fff;
  --blue: #201869;
  --light-blue: #5082ab;
}

/* view btn css start  */

.view-btn {
  display: inline-block;
  border: 2px solid var(--blue);
  padding: 5px 20px;
  margin-top: 10px;
  transition: 0.5s ease-in-out;
}
.view-btn a {
  color: var(--black);
  font-weight: 500;
  transition: 0.5s ease-in-out;
}

.view-btn:hover {
  background: var(--blue);
}
.view-btn:hover a {
  color: var(--white);
}

/* responsive css */

@media screen and (max-width: 767px) {
  .view-btn {
    padding: 2px 10px;
  }
  .view-btn a {
    font-size: 14px;
  }
}

/* responsive css */

/*  view btn css ends  */

/* section css */
section {
  padding: 50px 0px;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head .heading {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  color: var(--blue);
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  p {
    font-size: 12px;
  }

  section {
    padding: 20px 0px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .section-head .heading {
    font-size: 24px;
  }
}

@media screen and (max-width: 575px) {
  .section-head .heading {
    font-size: 20px;
  }
}

/* section css */

/* footer css */
footer {
  background: var(--white);
  padding: 50px 0px;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 20px 0px;
  }
}

/* footer css */

/* fixed icon start */
.fixed-icon {
  position: fixed;
  right: 1%;
  bottom: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.fixed-icon a {
  display: inline-block;
}

.fixed-icon a img {
  height: 50px;
  filter: drop-shadow(rgba(0, 0, 0, 0.35) 0px 3px 8px);
}

@media screen and (max-width: 767px) {
  .fixed-icon a img {
    height: 40px;
  }
}

/* fixed icon end */

/* top button css start here */

.top {
  display: none;
  color: gray;
  font-size: 24px;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99999999;
}
.top:hover {
  color: #000;
}

/* top button css ends here */

/* custom css start   -------------------------------------------------------- */

/* ----------- navbar css start here ----------- */

.navbar {
  padding: 0;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.navbar .logo {
  width: 100px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #000;
  font-weight: 600;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--dark-blue);
}

.navbar .navbar-nav .nav-item {
  position: relative;
}

.navbar .navbar-nav .nav-item::after {
  content: "";
  position: absolute;
  width: 0%;
  left: 0;
  bottom: 0%;
  height: 2px;
  background: var(--dark-blue);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.navbar .navbar-nav .nav-item:hover::after {
  opacity: 1;
  width: 100%;
  transition: 0.5s ease-in-out;
}

.head-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.head-icons img {
  width: 25px;

  /* box-shadow: rgba(239, 58, 8, 0.825) 0px 2px 3px 3px; */
  border-radius: 10px;
}

.navbar-light .navbar-toggler {
  font-size: 1rem;
  border-color: black;
}
.navbar-light .navbar-toggler:focus {
  border: 1px solid var(--blue);
  box-shadow: none;
}

/* responsive navbar */

@media screen and (max-width: 991px) {
  .navbar .logo {
    width: 80px;
  }

  .navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .head-icons {
    padding: 10px;
  }
}

@media screen and (max-width: 767px) {
  .navbar .logo {
    width: 60px;
  }
  .navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
}

/* first dropdown start */

.dropdown .dropdown-menu {
  padding-bottom: 0;
  position: absolute;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown .dropdown-item:hover {
  background: var(--blue);
  color: var(--white);
  font-weight: 500;
}

.dropdown .dropdown-menu li a {
  display: inline-block;
}

.dropdown .dropdown-menu li i {
  color: var(--dark-blue);
  margin-right: 10px;
}
.dropdown .dropdown-menu .dropdown-submenu .dropdown-item:hover i {
  color: var(--white);
}

@media screen and (max-width: 767px) {
  .dropdown .dropdown-menu {
    position: static;
  }
}

/* --------------- end of navbar css here ------------- */

/* -------------------- banner css start here ------------------ */
.carousel-control-prev-icon {
  background-image: none;
  background-image: url(../img/banner/left-red.png);
}

.carousel-control-next-icon {
  background-image: none;
  background-image: url(../img/banner/right-red.png);
}

@media screen and (max-width: 767px) {
  .carousel-control-prev-icon {
    width: 15px;
    height: 15px;
  }

  .carousel-control-next-icon {
    width: 15px;
    height: 15px;
  }
}

/* ------------------ banner css ends here ----------------- */

/* ---------------- down-bar css start here --------------- */

.down-bar {
  padding: 5px 0;
  background: var(--black);
  color: #fff;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.scrolling-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.scrolling-wrapper {
  display: flex;
  animation: scroll-left 20s linear infinite;
  width: fit-content;
}

.scrolling-inner {
  display: flex;
  gap: 100px;
}

.taste {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 14px;
}

.taste img {
  background: #fff;
  border-radius: 50px;
  padding: 2px;
  width: 30px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* responsive css */

@media screen and (max-width: 767px) {
  .taste {
    font-size: 12px;
  }
  .taste img {
    padding: 2px;
    width: 18px;
  }
}

/* responsive css */

/* --------------------- down-bar css ends here ------------------- */

/* ------------------------- about us css start here ------------------------- */

.about-us {
  background: #f7f7f7;
}

.about-us .about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.about-us .about-content p {
  margin-bottom: 10px;
}

.about-us .about-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.about-us h3 span {
  color: var(--light-blue);
}

.about-us .about-content p span {
  color: var(--light-blue);
  font-weight: 500;
}

/* responsive css start */

@media screen and (max-width: 1200px) {
  .about-us .about-content p {
    font-size: 12px;
  }
}

@media screen and (max-width: 991px) {
  .about-us h3 {
    font-size: 18px;
  }

  .about-us .about-img {
    margin-bottom: 10px;
  }
  .about-us .about-content p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .about-us .about-content p {
    font-size: 12px;
    margin-bottom: 5px;
  }
}

/* responsive css end */

/* ------------------------- end of about us css here ------------------------- */

/* ------------------------ services css start here ------------------------ */

.services .service-card {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  /* box-shadow: rgba(32, 32, 151, 0.699) 0px 3px 5px 2px; */
  margin-bottom: 40px;
  position: relative;
}

.services .service-card .service-text p {
  text-align: center;
  padding: 5px 0px;
  font-size: 18px;
  color: var(--black);
}

.services .service-card .service-img {
  position: relative;
  overflow: hidden;
}
.services .service-card .service-img img {
  transition: 0.5s ease-in-out;
}
.services .service-card:hover .service-img img {
  transform: scale(1.08);
}

.services .service-card:hover .service-text p {
  color: var(--light-blue);
}

/* responsive css start */

@media screen and (max-width: 991px) {
  .services .service-card .service-text p {
    font-size: 16px;
    padding: 2px 0px;
  }
  .services .service-card {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .services .service-card .service-text p {
    font-size: 14px;
  }
}

/* responsive css end */

/* ------------------------ end of services css here ------------------------ */

/* ------------------------ how-it-work css start here ---------------------- */

.how-it-work {
  background: #f7f7f7;
}

.how-it-work .work-card {
  text-align: center;
  background: var(--white);
  padding: 10px 0px;
}

.how-it-work .work-card img {
  margin-bottom: 20px;
}
.how-it-work .work-card h5 {
  font-size: 18px;
}

/* responsive css start */

@media screen and (max-width: 1200px) {
  .how-it-work .work-card img {
    width: 60px;
  }
  .how-it-work .work-card h5 {
    font-size: 12px;
  }
}

@media screen and (max-width: 991px) {
  .how-it-work .work-card {
    margin-bottom: 20px;
  }
  .how-it-work .work-card img {
    width: 60px;
  }
  .how-it-work .work-card h5 {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .how-it-work .work-card img {
    margin-bottom: 10px;
    width: 50px;
  }
  .how-it-work .work-card h5 {
    font-size: 14px;
  }
}

/* responsive css end */

/* ------------------------ end of how-it-work css here ---------------------- */

/* ----------------------- why us css start here ----------------------- */

@media screen and (max-width: 991px) {
  .why-us .why-img {
    margin-bottom: 20px;
  }
}

/* ----------------------- end of why us css here ----------------------- */

/* ------------------ contact us css start here ------------------- */
.contact-us .section-head {
  display: none;
}

.contact-us {
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.708),
      rgba(0, 0, 0, 0.552)
    ),
    url(../img/contact/img22.jpg) no-repeat center center/cover;
}

.contact-us .left-side {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--white);
}

.contact-us .left-side h4 {
  margin-bottom: 40px;
}

.contact-us .left-side p {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-us .left-side p i {
  font-size: 20px;
  margin-right: 10px;
}

.contact-us .left-side p a {
  color: var(--white);
}

.contact-us .center-form {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.contact-us .contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  padding: 10px;
  width: 100%;
}

.contact-us .contact-form .form-head h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--white);
}

.contact-us .contact-form .form-control::placeholder {
  color: var(--blue);
}

.contact-us .contact-form .form-control:focus {
  box-shadow: none;
}

.contact-us .contact-form .form-btn {
  display: flex;
  justify-content: center;
}

.contact-us .contact-form .form-btn button {
  border: none;
  outline: none;
  border: 2px solid var(--blue);
  padding: 5px 20px;
  margin-top: 10px;
  transition: 0.5s ease-in-out;
  gap: 10px;
}

.contact-us .contact-form .form-btn button:hover {
  background: var(--blue);
  color: var(--white);
}

/* responsive css start here */

@media screen and (max-width: 1200px) {
  .contact-us .left-side h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: justify;
  }
}

@media screen and (max-width: 991px) {
  .contact-us .section-head {
    display: block;
  }

  .contact-us .left-side h4 {
    font-size: 20px;
  }

  .contact-us .left-side p {
    margin-bottom: 10px;
  }

  .contact-us .left-side p i {
    font-size: 14px;
  }

  .contact-us .contact-form {
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .contact-us .left-side h4 {
    font-size: 18px;
  }

  .contact-us .contact-form .form-head h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .contact-us .contact-form .form-btn button {
    padding: 3px 7px;
    font-size: 12px;
    gap: 5px;
  }
}

/* end of responsive css */

/* -------------- captcha css start ------------ */

.captchasep1 {
  display: flex;
}

.contact-us .contact-form .captchasep1 .form-floating label {
  color: #000;
}

.contact-us .contact-form .captchasep1 .form-floating .form-control {
  padding-top: 1.625rem !important;
  padding-bottom: 0.625rem !important;
}

.captchasep1 input {
  width: 100% !important;
  height: 40px;
}

.captchasep1 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-radius: 5px;
  background: #fff;
}

.captchasep1 .captcha-codes-sec p {
  letter-spacing: 9px;
  font-style: italic;
  font-size: 24px;
  font-weight: 800;
  color: #163e61;
}

.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 24px;
  outline: none;
  height: 100%;
  border: none;
  background: none;
}

.captchasep1 .captcha-codes-sec button i {
  background: #d80d0d;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
}

/* responsive captcha */
@media screen and (max-width: 767px) {
  .captchasep1 .captcha-codes-sec p {
    letter-spacing: 2px;
    font-size: 18px;
    width: 60% !important;
  }

  .captchasep1 .captcha-codes-sec button {
    font-size: 12px;
  }

  .contact-form .captchasep1 .form-floating label {
    font-size: 14px;
    padding: 5px;
  }

  .form-floating .form-control,
  .form-floating .form-select {
    height: 2.5rem;
    line-height: 1.25;
  }
}

/* end of responsive captcha */

/* ----------- end of captcha css ----------- */

/* ------------------------ end of contact us css --------------------- */

/* ----------- blog css start here --------- */

.blogs .blog-card {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  padding: 10px 10px 40px 10px;
}

.blogs .blog-card .blog-img {
  margin-bottom: 20px;
}
.blogs .blog-card .blog-text h3 {
  color: var(--blue);
  font-size: 18px;
}

.blogs .blog-card .blog-text hr {
  margin-top: 2px;
  margin-bottom: 20px;
}

.blogs .blog-card .blog-text p {
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blogs .blog-card .blog-text p i {
  color: var(--light-blue);
  margin-left: 10px;
}

.blogs .more-blogs {
  display: flex;
  justify-content: end;
  margin-top: 20px;
}
.blogs .more-blogs a {
  border: 2px solid var(--blue);
  padding: 5px 20px;
  transition: 0.5s ease-in-out;
  color: var(--black);
  font-weight: 500;
  transition: 0.5s ease-in-out;
}
.blogs .more-blogs a:hover {
  background: var(--blue);
  color: var(--white);
}

/* responsive css start */
@media screen and (max-width: 1200px) {
  .blogs .blog-card .blog-text h3 {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .blogs .blog-card {
    padding: 10px 10px 20px 10px;
    margin-bottom: 20px;
  }
  .blogs .blog-card .blog-img {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .blogs .blog-card .blog-text h3 {
    font-size: 16px;
  }
  .blogs .blog-card .blog-text hr {
    margin-bottom: 10px;
  }
  .blogs .more-blogs {
    margin-top: 0px;
  }

  .blogs .more-blogs a {
    padding: 2px 10px;
    font-size: 14px;
  }

  /* end of responsive */
}

/* ------------------- end of blog css --------------------- */

/* ------------ FAQ's section css start --------------- */
.faq {
  background: #f7f7f7;
}

.faq .accordion .accordion-item .accordion-body p {
  color: #000;
}

.faq .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion .accordion-item .accordion-header .accordion-button {
  color: #000;
  font-size: 18px;
  transition: 0.5s ease-in-out;
}

.faq .accordion .accordion-item .accordion-body p {
  font-size: 16px;
}

.faq
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--blue);
}

.faq .accordion .accordion-item .accordion-header .accordion-button::after {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: auto;
  content: "+";
  font-size: 2rem;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 2.25rem;
  transition: transform 0.2s ease-in-out;
}

.faq
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  content: "-";
  font-size: 2rem;
  /* Same size for consistency */
  color: white;
  background-image: none;
  transform: rotate(0deg);
  transition: transform 0.2s ease-in-out;
}

/* responsive css start */
@media screen and (max-width: 981px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    padding: 15px;
  }

  .faq .accordion .accordion-item .accordion-body {
    padding: 15px;
  }

  .faq .accordion .accordion-item .accordion-body p {
    font-size: 14px;
    text-align: justify;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    padding: 10px;
    font-size: 14px;
  }

  .faq .accordion .accordion-item .accordion-body {
    padding: 10px;
  }

  .faq .accordion .accordion-item .accordion-body p {
    font-size: 12px;
  }
}

/* responsive css end */

/* --------------------- end of FAQ's section css ----------------------- */

/* ---------------- footer css start here --------------- */

.footer .part-1 .footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}
.footer .part-1 .text {
  margin-bottom: 20px;
}
.footer .part-1 .social-icons {
  display: flex;
  gap: 15px;
}
.footer .part-1 .social-icons img {
  width: 25px;
}

.footer .part .head {
  margin-bottom: 20px;
}
.footer .part .head h3 {
  font-size: 22px;
}

.footer .part ul li {
  margin-bottom: 10px;
  transition: 0.3s ease-in-out;
}
.footer .part ul li a {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
.footer .part ul li:hover {
  transform: translateX(10px);
}
.footer .part ul li a:hover {
  color: var(--blue);
}

.footer .contact-info p {
  margin-bottom: 10px;
  font-weight: 450;
  font-size: 14px;
}
.footer .contact-info p a {
  color: var(--black);
  font-weight: 450;
}
.footer .contact-info p i {
  color: var(--blue);
}

.footer-widget p {
  text-align: center;
}
.footer-widget a {
  color: var(--black);
}

/* responsive css start here */

@media screen and (max-width: 1200px) {
  .footer .contact-info p a {
    font-size: 13px;
  }
}

@media screen and (max-width: 991px) {
  .footer .part {
    margin-bottom: 20px;
  }
  .footer .part-1 .footer-logo img {
    width: 80px;
    margin-bottom: 5px;
  }
  .footer .part-1 .text {
    margin-bottom: 5px;
  }
  .footer .part .head {
    margin-bottom: 10px;
  }
  .footer .contact-info p a {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .footer .part .head {
    margin-bottom: 5px;
  }
  .footer .part .head h3 {
    font-size: 18px;
  }
  .footer .part-1 .footer-logo img {
    width: 60px;
  }

  .footer .part ul li {
    margin-bottom: 5px;
  }
}
/* responsive css ends here */

/* ---------------- footer css ends here ---------------- */

/* =================== Testimonial css start here ====================== */

.testimonial-area {
  position: relative;
  padding: 100px 0px;
}

.testimonial-area.ts-bg {
  position: relative;
  background-image: url(../img/contact/contact1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
}

.testimonial-area.ts-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 44, 122, 0.65);
  z-index: -1;
}

.testimonial-area .shadow-text {
  position: absolute;
  left: 50%;
  bottom: 5%;
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 20px;
  transform: translateX(-50%);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--white);
  opacity: 0.3;
}

.testimonial-single {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 200px;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-single .count {
  position: absolute;
  right: 100px;
  bottom: 10px;
  font-size: 120px;
  line-height: 120px;
  font-weight: 800;
  color: var(--light-blue);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 3px var(--light-blue);
  opacity: 0.1;
  z-index: -1;
}

.testimonial-quote p {
  color: var(--black);
}

.testimonial-author-img {
  position: relative;
  width: 220px;
  height: 220px;
  padding: 15px;
}

.testimonial-author-img::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--blue);
  border-top-color: var(--white);
  border-right-color: var(--white);
  border-radius: 200px;
  transition: 0.5s ease-in-out;
}

.testimonial-single:hover .testimonial-author-img::before {
  transform: rotate(45deg);
}

.testimonial-author-img img {
  border-radius: 50%;
}

.testimonial-author-info h4 {
  font-size: 22px;
  color: var(--black);
}

.testimonial-author-info p {
  color: var(--blue);
  font-weight: 500;
}

.testimonial-quote-icon {
  position: absolute;
  right: 10%;
  top: 5%;
  width: 60px;
}

.testimonial-rate {
  color: var(--blue);
  margin-top: 10px;
}

.testimonial-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.testimonial-slider.owl-theme .owl-nav button {
  color: var(--white);
  font-size: 25px;
  margin: 0;
  margin-top: -10px;
  padding: 0;
  /* background: var(--color-white); */
  background: var(--blue);
  display: inline-block;
  cursor: pointer;
  height: 45px;
  width: 45px;
  border-radius: 50px;
  line-height: 45px;
  text-align: center;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.testimonial-slider.owl-theme .owl-nav button:hover {
  background: var(--light-blue);
}

.testimonial-slider.owl-theme .owl-nav .owl-prev {
  left: -4%;
  top: 55%;
}

.testimonial-slider.owl-theme .owl-nav .owl-next {
  right: -4%;
  top: 55%;
}

.testimonial-area .owl-dots {
  text-align: center;
}

@media screen and (max-width: 1400px) {
  .testimonial-author-img {
    height: 100px;
    width: 100px;
    padding: 10px;
  }
  .testimonial-area .shadow-text {
    font-size: 26px;
    letter-spacing: 15px;
  }
  .testimonial-quote-icon {
    width: 40px;
    right: 10%;
    top: 5%;
  }
  .testimonial-author-info h4 {
    font-size: 18px;
  }
  .testimonial-quote p {
    font-size: 12px;
  }

  .testimonial-slider.owl-theme .owl-nav .owl-prev {
    left: -3%;
  }

  .testimonial-slider.owl-theme .owl-nav .owl-next {
    right: -3%;
  }
  .testimonial-slider.owl-theme .owl-nav button {
    font-size: 24px;
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
}

@media screen and (max-width: 1200px) {
  .testimonial-slider.owl-theme .owl-nav .owl-prev {
    left: -2%;
  }

  .testimonial-slider.owl-theme .owl-nav .owl-next {
    right: -2%;
  }

  .testimonial-slider.owl-theme .owl-nav button {
    font-size: 16px;
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
}

@media all and (max-width: 991px) {
  .testimonial-area {
    padding: 60px 0px;
  }
  .testimonial-single {
    flex-direction: column;
    text-align: center;
    border-radius: 50px;
  }
  .testimonial-author-img {
    height: 160px;
    width: 160px;
  }

  .testimonial-quote p {
    text-align: center;
  }

  .testimonial-area .shadow-text {
    font-size: 20px;
  }

  .testimonial-slider.owl-theme .owl-nav .owl-prev {
    left: -3%;
    top: 50%;
  }

  .testimonial-slider.owl-theme .owl-nav .owl-next {
    right: -3%;
    top: 50%;
  }

  .testimonial-slider.owl-theme .owl-nav button {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

@media all and (max-width: 767px) {
  .testimonial-area {
    padding: 40px 0px;
  }
  .testimonial .testimonial-area h3 {
    font-size: 16px;
  }

  .testimonial-area .shadow-text {
    font-size: 12px;
    letter-spacing: 5px;
  }

  .testimonial-author-img {
    height: 120px;
    width: 120px;
  }

  .testimonial-quote-icon {
    width: 40px;
  }

  .testimonial-slider.owl-theme .owl-nav .owl-prev {
    left: -2%;
    top: 50%;
  }

  .testimonial-slider.owl-theme .owl-nav .owl-next {
    right: -2%;
    top: 50%;
  }

  .testimonial-slider.owl-theme .owl-nav button {
    font-size: 18px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

/* =================== end of Testimonial css here ====================== */
