@charset "UTF-8";
:root {
  --heading-color:#3b4782;
  --text-color:#232f44;
  --cta-color:#f9b042;
  --white-color:#FFF;
  --para-color:#969696;
  --font-name:"Google Sans", sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Barlow+Condensed: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&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Caveat:wght@400..700&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=League+Spartan:wght@100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oswald:wght@200..700&family=Outfit:wght@100..900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poiret+One&family=Quicksand:wght@300..700&family=Rajdhani:wght@300;400;500;600;700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Tenor+Sans&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body {
  font-family: var(--font-name);
  display: block;
  margin: 0 auto;
  font-weight: 400;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.top-bar {
  background: var(--heading-color);
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.top-inblock {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-address {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white-color);
}

.top-address a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-address a:hover {
  transition: background-color 0.3s ease, color 0.3s ease;
  color: var(--cta-color);
}

.top-address a p {
  margin: 0;
  font-weight: 300;
  color: var(--white-color);
}

.top-address a p:hover {
  transition: background-color 0.3s ease, color 0.3s ease;
  color: var(--cta-color);
}

.top-address a i {
  color: #727e90;
}

.top-address.top-social {
  gap: 20px;
}

.top-address.top-social a i {
  color: #FFF;
}

.top-address.top-social a i:hover {
  transition: background-color 0.3s ease, color 0.3s ease;
  color: var(--cta-color);
}

.navbar-block {
  padding-top: 14px;
}

.navbar-nav {
  align-items: center;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 20px;
  padding: 25px 0;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  /*text-transform: uppercase;*/
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--cta-color);
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 0px;
}

.navbar-light .navbar-nav .nav-link {
  color: black;
  font-weight: 600;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar-light .navbar-brand, .navbar-light a img {
  width: 200px;
}

.btn-top {
  background: var(--cta-color);
  padding: 10px;
  color: var(--white-color);
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 10px;
}

.btn-top:hover {
  background: var(--heading-color);
  color: var(--white-color);
}

.banner-slider {
  display: block;
}

.home-slider {
  width: 100%;
  max-height: 600px;
  height: auto;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
  top: 0rem;
  left: 0;
  z-index: 0;
}

li a.credits {
  position: absolute;
  z-index: 4;
  right: 3%;
  bottom: 20px;
}

.carousel-hero-banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  color: var(--text-color);
}

.carousel-images {
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  background-color: var(--overlay-bg);
  border-radius: 5px;
}

.slide-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.nav-button {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: inherit;
  color: var(--white-color);
  border: none;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  transition: background-color 0.3s ease;
  z-index: 3;
}

.nav-button:hover {
  background-color: inherit;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
  background-color: var(--primary-color);
}

/* Slider navigation */
.transparent-btns_tabs {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.transparent-btns_tabs li {
  display: inline;
  float: none;
  _float: left;
  *float: left;
  margin-right: 5px;
}

.transparent-btns_tabs a {
  text-indent: -9999px;
  overflow: hidden;
  border-radius: 15px;
  background: #ccc;
  background: rgba(0, 0, 0, 0.2);
  display: inline-block;
  _display: block;
  *display: block;
  box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.3);
  width: 11px;
  height: 11px;
}

.transparent-btns_here a {
  background: #222;
  background: rgba(0, 0, 0, 0.8);
}

/* Slider navigation end */
.title-text h1 {
  font-size: 45px;
  color: var(--white-color);
}

.btm-gap {
  padding-top: 80px;
  padding-bottom: 80px;
}

.title-text h1 {
  color: var(--text-color);
}

.title-text h1 {
  position: relative;
  display: block;
}

.title-text h1::after {
  position: absolute;
  content: "";
  border-bottom: 5px solid var(--cta-color);
  width: 20%;
  left: 0;
  bottom: 0;
  border-radius: 20px;
}

.title-text h2 {
  position: relative;
  display: block;
}

.title-text h2::after {
  position: absolute;
  content: "";
  border-bottom: 5px solid var(--cta-color);
  width: 7%;
  left: 0;
  bottom: -8px;
  border-radius: 20px;
}

.title-text p {
  color: var(--para-color);
  font-size: 15px;
  line-height: 30px;
  padding-top: 20px;
}

.about-image img {
  width: 100%;
  display: block;
}

.award-block {
  position: relative;
  display: flex;
  gap: 20px;
}

.award-block img {
  width: 20%;
}

.small-text {
  width: 74%;
  position: relative;
  top: -64px;
  left: 142px;
}

.award-block h3 {
  font-size: 54px;
  font-weight: 600;
  position: relative;
  top: -11px;
}

.award-block p {
  position: relative;
  top: 20px;
  left: -17px;
}

.small-text p {
  font-size: 14px;
  position: relative;
  left: 0px;
  top: 8px;
  color: var(--para-color);
  font-size: 15px;
}

.bottom-border {
  position: relative;
  top: -59px;
}

.bottom-border hr {
  border-top: 8px solid var(--cta-color);
  opacity: 1;
  border-radius: 10px;
}

.contact-competitive {
  display: block;
}

.contact-competitive p {
  text-align: center;
  position: relative;
  display: block;
}

.contact-competitive p::after {
  content: "";
  position: absolute;
  width: 393px;
  height: 12px;
  background-image: url(../img/about/line-cont.png);
  background-repeat: no-repeat;
  left: 121px;
  bottom: -11px;
}

.award-all {
  display: block;
  padding-top: 28px;
}

.contact-number a p {
  color: var(--text-color);
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  padding-top: 10px;
}

.contact-number a span {
  font-size: 32px;
  font-weight: 400;
  position: relative;
  top: -40px;
  text-align: center;
  display: block;
  color: var(--text-color);
}

.service-block {
  width: 100%;
  display: block;
  height: 100%;
  background: var(--text-color);
}

.service-block .title-text h2 {
  text-align: center;
  color: var(--white-color);
  position: relative;
}

.service-block .title-text h2::after {
  content: "";
  position: absolute;
  display: block;
  text-align: center;
  margin: -13px auto;
  left: 0;
  right: 0;
  width: 9%;
}

.service-inblock {
  background: var(--white-color);
  width: 100%;
}

.service-inblock img {
  width: 100%;
}

.serive-slidin {
  display: block;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding: 20px;
}

.serive-slidin p {
  font-size: 14px;
  font-weight: 400;
}

button.service-btn {
  font-size: 16px;
  font-weight: 500;
  background: var(--text-color);
  color: var(--white-color);
  text-align: center;
  padding: 10px;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

button.service-btn:hover {
  background: var(--cta-color);
}

.service-slider {
  padding-top: 30px;
}

.service-text {
  background: var(--heading-color);
}

.service-text {
  background: var(--heading-color);
  padding: 50px;
  border-radius: 30px;
}

/* Owl Nav Buttons */
.service-slider .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.service-slider .owl-nav button {
  background: var(--cta-color);
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  pointer-events: all;
  transition: 0.3s;
}

.service-slider .owl-nav button:hover {
  background: var(--white-color);
  color: var(--cta-color);
}

.owl-prev-icon,
.owl-next-icon {
  font-size: 24px;
  line-height: 45px;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: flex !important;
}

.service-slider button.owl-prev {
  position: relative;
  left: -85px;
}

.service-slider button.owl-next {
  position: relative;
  left: 82px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 50px;
}

@media (max-width: 1200px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
.facility {
  width: 100%;
  display: block;
  background: url("../img/facility/facility1.jpg") !important;
  background-repeat: no-repeat !important;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}

.facility::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: rgba(35, 47, 68, 0.79);
  width: 100%;
  height: 100%;
  z-index: 0;
}

.facility-inside .title-text h2 {
  color: var(--white-color);
}

.facility-inside {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

.counter {
  font-size: 48px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.counter-inblock {
  display: flex;
  gap: 30px;
  align-items: center;
}

.counter-block {
  width: 100%;
  color: var(--text-color);
  border-radius: 20px;
  text-align: center;
  margin-top: 50px;
  padding: 10px;
  height: 117px;
  background: var(--white-color);
}

.counter-block p {
  font-size: 30px;
  font-weight: 500;
  margin: 0;
  color: var(--text-color);
}

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

.testimonials {
  padding: 60px 0;
  background: #ffffff;
}

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

.testimonial-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.underline {
  display: block;
  width: 60px;
  height: 4px;
  background: #f5a623;
  margin-bottom: 40px;
}

/* Cards layout */
.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 20px;
}

.testimonial-card {
  background: #1f2f45;
  color: #fff;
  padding: 25px;
  border-radius: 6px;
  min-height: 320px;
}

.stars {
  color: #f5a623;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--white-color);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-user img {
  width: 50px !important;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial-user h4 {
  margin: 0;
  font-size: 14px;
}

.testimonial-user span {
  font-size: 12px;
  opacity: 0.8;
}

/* Card */
.testimonial-card {
  background: #1f2f45;
  color: #fff;
  padding: 25px;
  border-radius: 6px;
  min-height: 320px;
}

.stars {
  color: #f5a623;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

/* 🔹 TOP RIGHT ARROWS */
.owl-nav {
  position: absolute;
  top: -52px;
  right: 0;
}

.owl-nav button {
  background: #1f2f45 !important;
  color: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 20px !important;
}

.owl-nav button:hover {
  background: #f5a623 !important;
}

.clients-block {
  width: 100%;
  display: block;
  background: var(--heading-color);
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.clients-block .title-text h2 {
  color: var(--white-color);
}

@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.logos {
  overflow: hidden;
  padding: 30px 0;
  position: relative;
  white-space: nowrap;
}

.logo_track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: slides 35s linear infinite;
}

.logos:hover .logo_track {
  animation-play-state: paused;
}

.logo_track img {
  height: 100px;
  margin: 0 2px;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr;
  }
}
.case-study {
  display: block;
  padding-top: 80px;
  padding-bottom: 80px;
}

.project-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding-top: 50px;
}

/* Card */
.project-card {
  position: relative;
  height: 360px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

/* Dark overlay */
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
  transition: 0.4s ease;
}

/* Text area */
.overlay {
  position: absolute;
  inset: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  z-index: 1;
}

.overlay h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Hover effects */
.project-card:hover {
  transform: translateY(-6px);
}

.project-card:hover::before {
  background: rgba(0, 0, 0, 0.85);
}

/* Last row centering */
.span-2 {
  grid-column: span 1;
}

/* Wrapper for last row */
.project-row-center {
  grid-column: 1/-1; /* span full grid width */
  display: flex;
  justify-content: center;
  gap: 25px;
}

/* Fix card width so they don't stretch */
.project-row-center .project-card {
  width: calc(33.333% - 17px);
}

/* Tablet */
@media (max-width: 992px) {
  .project-row-center {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .project-row-center .project-card {
    width: 100%;
  }
}
/* Mobile */
@media (max-width: 600px) {
  .project-row-center {
    grid-template-columns: 1fr;
  }
}
/* Tablet */
@media (max-width: 992px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile */
@media (max-width: 600px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer {
  background: #2f3f53;
  color: #fff;
  font-family: var(--font-name);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #d8e0ea;
}

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

.footer-col ul li {
  margin-bottom: 14px;
  font-size: 15px;
}

.footer-col ul li a {
  color: #d8e0ea;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a::before {
  content: "\f054";
  margin-right: 8px;
  color: #fff;
  font: normal normal normal 14px/1 FontAwesome;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* Contact */
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #d8e0ea;
}

.contact-list li span {
  font-size: 16px;
  margin-top: 2px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 18px 15px;
  font-size: 14px;
  color: #d8e0ea;
}

.footer-col p a {
  color: var(--white-color);
  padding-left: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-col h4 {
    margin-bottom: 12px;
  }
}
@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
  .navbar-light .navbar-nav {
    border-top: 1px solid #EEEEEE;
  }
}
@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}
.banner-about {
  position: relative;
  width: 100%;
  height: 359px; /* adjust height as needed */
  overflow: hidden;
}

.banner-about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.banner-about img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-banner {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  font-size: 32px;
  font-weight: 600;
  z-index: 2;
  text-align: center;
  width: 36%;
  background: rgba(0, 0, 0, 0.6196078431);
  height: 150px;
  display: block;
  padding: 50px;
  border-radius: 0px 50px 0px 50px;
  border: 4px solid #FFF;
}

.services-bg {
  width: 100%;
  display: block;
  padding-bottom: 80px;
}

.contact-text {
  padding-top: 2rem;
}

.services-inside {
  background: #cacaca;
  width: 100%;
  padding: 34px;
}

.services-inimg {
  background: var(--white-color);
  width: 42%;
  border-radius: 100px;
  height: 82px;
  padding: 10px;
}

.services-inimg img {
  width: 76%;
  margin: auto;
  display: block;
}

.services-inside h3, div > p {
  color: var(--text-color);
}

.services-inside h3 {
  font-size: 20px;
  padding-top: 20px;
}

.services-inside p {
  font-size: 13px;
  font-weight: 400;
}

.inline-link p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  color: var(--white-color);
}

.contact-bg {
  background: #232f44;
  width: 100%;
  height: 100%;
  padding: 26px;
}

.col-md-6.form-input {
  padding: 6px !important;
}

.about-content .col-md-6 {
  padding: 0;
}

.inline-link p a {
  color: var(--white-color);
  text-decoration: none;
}

.about-content p {
  color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
}

.service-text h3 {
  color: var(--white-color);
}

.about-content ul {
  padding: 0;
}

.about-content li {
  font-size: 14px;
  font-weight: 400;
  color: var(--white-color);
  padding-bottom: 10px;
}

.blog-block img {
  width: 100%;
  border-radius: 10px;
}

.icon-blog {
  display: flex;
  gap: 20px;
  padding-top: 20px;
}

.icon-blog i {
  color: var(--para-color);
}

.icon-blog p {
  color: var(--para-color);
  font-size: 12px;
  font-weight: 400;
}

.blog-block h2 {
  font-size: 25px;
}

.blog-block a {
  color: var(--text-color);
}

.blog-block p {
  color: var(--para-color);
  font-size: 15px;
  text-align: left;
}

.contact-block {
  display: block;
  background: var(--heading-color);
  padding-left: 50px;
  padding-bottom: 20px;
  padding-top: 8rem;
  height: 500px;
  padding-right: 85px;
}

.contact-block h1 {
  color: var(--white-color);
}

.contact-block i {
  color: var(--white-color);
}

.contact-block li {
  padding-bottom: 30px;
}

.contact-block li a {
  color: var(--white-color);
}

form.contat-form input[type=text], [type=email], [type=tel], textarea {
  width: 100%;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 2px solid var(--cta-color);
  padding: 10px;
}

button.contact-btn {
  width: 50%;
  background: #ededee;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  padding: 13px;
  border-radius: 100px;
}

.contact-text h2 {
  color: #fff;
}

.blog-clientsingle img {
  width: 100%;
  border-radius: 30px;
  margin-top: 80px;
}

.blog-clientsingle h2 {
  color: var(--text-color);
  padding-top: 20px;
}

.blog-clientsingle p {
  color: var(--para-color);
  font-size: 15px;
  line-height: 30px;
  padding-top: 20px;
}

.pdf-viewer iframe {
  background: #fff;
}

.pdf-actions .btn {
  margin: 5px;
}


/*# sourceMappingURL=style.css.map */