@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

* {
  margin: 0;
  padding: 0;
  /* font-family: 'Roboto', sans-serif; */
  font-family: "Roboto", sans-serif;
}

:root {
  /* Bg Colors */
  --bg-blue: #0d99ff;
  --bg-footer-color: #f2f2f2;
  --bg-white: #fff;
  --bg-black: #000;

  /* Text colors */
  --primary-font: "Poppins", sans-serif;
  --text-footer-color: #f2f2f2;
  --text-blue: #0d99ff;
  --text-black: #000;
  --text-white: #fff;
  --text-light-dark: #666666;
}

::selection {
  color: #fff;
  background: #0d99ff;
}

body {
  font-family: var(--primary-font);
  font-size: 1rem;
  line-height: 1.75rem;
  background: var(--bg-white);
  color: var(--text-black);
  overflow-x: hidden;
}

p {
  font-family: var(--primary-font) !important;
}

a {
  color: var(--text-black);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-family: var(--primary-font) !important;
}

a:hover,
a:focus {
  color: var(--text-black);
}

a,
a:hover,
a:focus,
.btn:focus {
  text-decoration: none;
  color: var(--text-black);
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button,
button:focus {
  outline: none;
  box-shadow: none;
}

/* Header CSS Start */

.navbar .navbar-nav .nav-link {
  padding: 1rem 1.25rem;
  color: var(--text-black);
  transition: 0.3s;
  font-size: 12px;
  font-weight: 500;
  margin-left: 35px;
}

.navbar-nav > .nav-item.active > .nav-link {
  color: var(--text-blue);
}

.navbar .navbar-toggler-icon {
  color: #000 !important;
}

.navbar .navbar-toggler {
  outline: none !important;
  border: 0px !important;
  /* background-color: #000; */
  color: #000 !important;
}

/*======================================= Home Style Start ========================================*/

.main_slider .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  margin-top: 5rem;
}

.main_slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: var(--bg-white);

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.main_slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main_slider .swiper-slide p {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-white);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--primary-font);
}

.main_slider .swiper-slide h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-white);
  font-size: 60px;
  font-weight: 600;
}

.main_slider .swiper-button-next {
  /* margin-left: 10px;
  position: absolute !important;
  top: 85% !important;
  right: 6% !important;
  background-color: var(--bg-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-black); */
  display: none !important;
}

.main_slider .swiper-button-prev {
  /* margin-right: 10px;
  position: absolute !important;
  top: 85% !important;
  left: 85% !important;
  background-color: var(--bg-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-black); */
  display: none !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  padding: 10px;
}

.sec_2 h2 {
  font-size: 40px;
  font-weight: 600;
}

.km_action_btn p {
  font-size: 12px !important;
  font-weight: 500;
  margin-right: 20px;
  color: var(--text-blue);
}

.km_action_btn .km_btn {
  width: 40px;
  height: 40px;
  background-color: var(--bg-blue);
  border-radius: 50% !important;
  text-align: center;
  padding: 7px;
  transition: 0.4s;
  color: var(--text-white);
}

.km_action_btn .km_btn:hover {
  border: 1px solid var(--bg-blue);
  background-color: var(--bg-white);
  color: var(--text-blue) !important;
}

.sec_3 {
  height: 70vh;
  width: 100%;
  background-image: linear-gradient(#000000a2, #0000009c),
    url("../images/home/bg_banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  display: flex;
}

.sec_3 p {
  text-transform: capitalize !important;
  font-size: 16px;
  font-weight: 500;
}

.services .our_services {
  text-align: center;
  position: relative;
  color: var(--text-white);
}

.services .our_services img {
  width: 100%;
}

.services .our_services .content {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  text-align: center;
  padding-top: 40%;
  transform: rotateX(0deg);
  transform-origin: center left 0;
  transition: all 0.3s ease 0s;
  opacity: 1;
}

.services .our_services:hover .content {
  background: rgba(0, 0, 0, 0.6);
}

.services .our_services .content h3 {
  text-transform: uppercase !important;
  letter-spacing: 5px;
  transition: 0.5s;
}

.services .our_services:hover .content h3 {
  transform: scale(1.1);
}

.services h2 {
  font-size: 40px;
}

.why_choose_us h2 {
  font-size: 40px;
  font-weight: 600;
}

.why_choose_us .content h6 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.why_choose_us .content p {
  font-size: 14px;
  font-weight: 300;
  font-family: var(--primary-font);
  color: var(--text-light-dark);
}

.footer_info {
  background-color: var(--bg-blue);
  height: 30vh;
  display: flex;
  align-items: center;
  width: 100% !important;
}

.footer_info .details p {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 300;
}

.footer_info .details a {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 300;
}

.footer {
  background-color: var(--bg-footer-color) !important;
}

.footer h6 {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.footer p {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light-dark);
}

.footer .page_links ul li a {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light-dark);
  transition: 0.4s;
}

.footer .page_links ul li a:hover {
  color: var(--text-black);
}

.footer .social_icons ul li a {
  color: var(--text-light-dark);
  transition: 0.4s;
}

.footer .social_icons ul li a:hover {
  color: var(--text-black);
}

.clients .all_clients {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.copy p {
  font-size: 13px;
  font-weight: 300;
  text-align: center !important;
  color: var(--text-light-dark);
}
/*======================================= Home Style End ========================================*/

/*======================================= About Style Start ========================================*/

.about_banner {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(#000000a2, #0000009c),
    url("../images/about/about_banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}

.about_banner h1 {
  color: var(--text-white);
  font-size: 100px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  width: 100%;
  position: relative;
  padding: 10px;
}

.about_banner h5 {
  color: var(--text-white);
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase !important;
  margin: 0;
  width: 100%;
  position: relative;
  padding: 10px;
}

/* Text Animation */
.effect-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 100vh;
}

.effect-block span {
  opacity: 0;
  animation: text-visible 0.0001s linear forwards;
  animation-delay: 1.5s;
}
.effect-block:after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 0%;
  height: 100%;
  background: #ffffff;
  animation: effect-block 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  animation-delay: 1s;
}

#another span {
  animation-delay: 1s;
}
#another.effect-block:after {
  background: #ffffff;
  animation-delay: 1s;
}
@keyframes effect-block {
  0% {
    left: 0;
    width: 0%;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0%;
  }
}
@keyframes text-visible {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.tabs_sec .nav-pills {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
}

.tabs_sec .nav-pills .nav-link {
  padding: 10px 50px;
  color: var(--text-light-dark);
  text-transform: uppercase !important;
}

.tabs_sec .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #fff !important;
  border-bottom: 3px solid #0d99ff;
  color: #0d99ff !important;
  border-radius: 0px !important;
}
.tabs_sec .tab-content .tab-pane {
  text-align: center !important;
  padding: 0px 100px;
  color: var(--text-light-dark);
  font-family: var(--primary-font) !important;
}

/*======================================= About Style End ========================================*/

/*======================================= Our Services Style Start ========================================*/

.services_banner {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(#000000a2, #0000009c),
    url("../images/services/our_services.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}

/* .services_banner h1 {
  color: var(--text-white);
  font-size: 100px;
  font-weight: 700;
} */

.services_banner h5 {
  color: var(--text-white);
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase !important;
  margin: 0;
  width: 100%;
  position: relative;
  padding: 10px;
}

.content_sec h2 {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.content_sec p {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--text-light-dark);
  font-family: var(--primary-font);
}

/*======================================= Our Services Style End ========================================*/

/*======================================= Contact Us Style Start ========================================*/

.contact_us h2 {
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
}
.contact_us p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light-dark);
  font-family: var(--primary-font);
}

.contact_us form input[type="text"] {
  outline: none;
  box-shadow: none;
  border: 1px solid #f2f2f2;
  padding: 12px 20px;
  font-size: 14px;
}

.contact_us form input[type="email"] {
  outline: none;
  box-shadow: none;
  border: 1px solid #f2f2f2;
  padding: 12px 20px;
  font-size: 14px;
}

.contact_us form input[type="tel"] {
  outline: none;
  box-shadow: none;
  border: 1px solid #f2f2f2;
  padding: 12px 20px;
  font-size: 14px;
}

.contact_us form textarea[type="text"] {
  outline: none;
  box-shadow: none;
  border: 1px solid #f2f2f2;
  padding: 12px 20px;
  font-size: 14px;
}

.contact_us form input[type="text"]:hover,
.contact_us form input[type="text"]:focus,
.contact_us form input[type="email"]:hover,
.contact_us form input[type="email"]:focus,
.contact_us form input[type="tel"]:hover,
.contact_us form input[type="tel"]:focus,
.contact_us form textarea[type="text"]:hover,
.contact_us form textarea[type="text"]:focus {
  border: 1px solid #8f8f8f;
}

.contact_us .btn {
  background-color: var(--bg-blue);
  color: var(--text-white);
  padding: 10px 100px;
  border-radius: 0px !important;
  font-family: var(--primary-font);
  font-size: 14px !important;
  transition: 0.4s;
}

.contact_us .btn:hover {
  background-color: #0261a5;
}

.contact_fail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: #f2f2f2;
}

.contact_fail .btn {
  background-color: var(--bg-blue);
  color: var(--text-white);
  padding: 10px 50px;
  border-radius: 0px !important;
  font-family: var(--primary-font);
  font-size: 14px !important;
  transition: 0.4s;
  margin-top: 2rem;
}

/*======================================= Contact Us Style End ========================================*/

/*======================================= Responsiveness Style Start ========================================*/
@media (max-width: 768px) {
  .main_slider .swiper {
    margin-top: 10vh;
    height: 400px;
  }
  .main_slider .swiper-slide p {
    top: 63%;
  }
  .main_slider .swiper-slide h1 {
    font-size: 50px;
  }
  .main_slider .swiper-button-next {
    display: none !important;
  }

  .main_slider .swiper-button-prev {
    display: none !important;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 20px !important;
    padding: 10px;
  }

  .footer_info .details {
    margin-bottom: 20px !important;
  }
  .clients .all_clients {
    gap: 30px;
    flex-wrap: wrap;
  }
  .tabs_sec .tab-content .tab-pane {
    text-align: center !important;
    padding: 0px 10px;
    color: var(--text-light-dark);
  }

  .about_banner {
    height: 400px;
  }

  .about_banner h1 {
    font-size: 50px;
  }

  .about_banner h5 {
    font-size: 30px;
  }
  .services_banner {
    height: 400px;
  }

  .services_banner h5 {
    font-size: 30px;
  }
}
/*======================================= Responsiveness Style End ========================================*/
