@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Freehand&family=Montserrat:wght@110;200;400&family=Noto+Sans&family=Open+Sans:wght@300&family=Roboto:wght@100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Freehand&family=Montserrat:wght@110;200;400&family=Noto+Sans&family=Open+Sans:wght@300;500&family=Roboto:wght@100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

:root {
  /* Fonts */
  --font-default: "Freehand", cursive;
  --font-primary: "Raleway", sans-serif;
  --font-secondary: "Poppins", sans-serif;

  /* Colors */
  --color-default: #0a0d13;
  --color-primary: #03b3ff;
  --color-secondary: #0e1d34;

  /* Smooth scroll behavior */
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/


.playfair {
  font-family: "Playfair Display", serif;
}

.freehand_font {
  font-family: "Freehand", cursive;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #0a0d13;
}

a {
  color: #1b89b8;
  text-decoration: none;
}

a:hover {
  color: #406aff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
  # Sections & Section Header
  --------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: rgb(28, 135, 181);
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #767474;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header span {
  position: absolute;
  top: 46px;
  color: rgba(28, 135, 181, 0.06);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 0;
}

.section-header p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-header span {
    font-size: 38px;
  }
}

.tfm {
  margin-left: 1050px;
  margin-top: -80px;
  position: fixed;
  align-items: center;
  z-index: -1;
}

.tfm-hero {
  margin-left: 1250px;
  margin-top: -440px;
  position: relative;
  z-index: 1;
}

.tfm-about {
  margin-left: 1300px;
  margin-top: -200px;
  position: absolute;
  z-index: 1;
}

/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 140px 0 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs .page-header:before {
  content: "";
  background-color: rgba(14, 29, 52, 0.8);
  position: absolute;
  inset: 0;
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f3f6fc;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li + li {
  padding-left: 10px;
}

.breadcrumbs nav ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4278cc;
  content: "/";
}

/*--------------------------------------------------------------
  # Scroll top button
  --------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(13, 66, 255, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  background-color: #0a0d13c6;
}

.header.sticked {
  background: rgba(14, 29, 52, 0.9);
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
}

.header .logo img {
  max-height: 60px;
  margin-right: 6px;
}

/*--------------------------------------------------------------
  # Desktop Navigation
  --------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: #2756ff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--color-secondary);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
  # Mobile Navigation
  --------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(14, 29, 52, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: rgba(13, 66, 255, 0.8);
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(14, 29, 52, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  bottom: 60px;
  top: 70px;
  left: 55px;
  right: 55px;
  margin-bottom: 80px;
}

#hero .carousel-content {
  background: rgba(96, 93, 93, 0.3);
  backdrop-filter: blur(5px);
  padding: 20px;
  color: #fff;
}

#hero .carousel-content h2 {
  color: #fff;
  margin-bottom: 3px;
  font-size: 80px;
  font-weight: 400;
  font-family: playfair;
}

#hero .carousel-content p {
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #1bbd36;
}

#hero .btn-get-started:hover {
  background: #1bbd36;
  color: #fff;
  text-decoration: none;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.6);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #1bbd36;
}

@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 60%;
  }

  .tfm-hero {
    margin-left: 1100px;
    margin-top: 320px;
  }

  .tfm-about {
    margin-left: 1100px;
    margin-top: -200px;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 992px) {
  #hero .carousel-container {
    top: 58px;
  }

  #hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
  }

  #hero .carousel-content p {
    font-size: 15px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
  # About Us Section
  --------------------------------------------------------------*/
.about .content h3 {
  color: #1b89b8;
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
  font-weight: 100;
}

.about-font {
  font-weight: lighter;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
  color: #fff;
  font-weight: 100;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #ffb101;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content p {
  text-align: justify;
  color: #565859;
}
.about .content a {
  font-family: Arial;
  display: inline-block;
  font-size: 12px;
  padding: 12px 20px;
  background-color: #1b89b8;
  color: #fff;
  text-align: center;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.3s;
  line-height: 16px;
}

.about .content a:hover {
  background-color: #e48617;
}
#certification .container h3 {
  color: #1b89b8;
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.certificate-card h2 {
  font-family: playfair;
  font-size: 24px;
  margin-top: 15px;
  font-weight: 500;
  color: #5f5d5d;
}

/*--------------------------------------------------------------
  # Award Section
  --------------------------------------------------------------*/
/*.award img:hover {*/
/*  transform: scale(1.1);*/
/*}*/

/*.award-text {*/
/*  margin-top: 30px;*/
/*  text-align: center;*/
/*  font-family: playfair;*/
/*  font-size: 25px;*/
/*  color: #7c7f80;*/
/*  border-bottom: 1px solid #000000;*/
/*}*/

/*.award-text p {*/
/*  margin-bottom: 45px;*/
/*}*/

/*.award-text p span {*/
/*  font-size: 35px;*/
/*  color: #e48617;*/
/*}*/

/*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
.services .card {
  border: 1px solid rgba(14, 29, 52, 0.15);
  background: #fff;
  position: relative;
  border-radius: 0;
  height: 100%;
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
}

.services .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.services .card a {
  color: #1b89b8;
  transition: 0.3;
}

.services .card a:hover {
  color: #05b2fc;
}

.services .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: var(--color-secondary);
  font-size: 15px;
}

.services .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
  # Counts Section
  --------------------------------------------------------------*/
.counts {
  background: url("../img/counts-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 80px 0 60px 0;
  position: relative;
}

.counts::before {
  content: "";
  position: absolute;
  background: rgba(17, 17, 17, 0.9);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.counts .title {
  position: relative;
  color: #fff;
  margin-bottom: 40px;
}

.counts .title h3 {
  font-size: 36px;
  font-weight: 700;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  font-weight: 700;
  color: #1b89b8;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #fff;
}

@media (min-width: 1200px) {
  .counts {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
  # Client Corosol
  --------------------------------------------------------------*/
.clients {
  padding-top: 20px;
  margin-top: 25px;
}

.clients .swiper-slide img {
  /* opacity: 0.5; */
  transition: 0.2s;
  /* filter: grayscale(100); */
  border: 0.1px solid #5555552c;
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1b89b8;
}

.client-title h2 {
  font-weight: 600;
  font-size: 24px;
  color: #1b89b8;
}

/*--------------------------------------------------------------
  # Our Customers Section
  --------------------------------------------------------------*/
.projects .card {
  border: 0px;
  overflow: hidden;
}

.projects .card img {
  filter: opacity(50%);
}

.projects .card img:hover {
  transform: scale(1.1);
}

.projects .card .card-img-overlay .card-title:hover {
  text-decoration: underline;
  transform: scale(1.1);
  z-index: 5px;
}

.projects .card .card-img-overlay {
  text-align: center;
  margin-top: 60px;
}
.projects .card .card-img-overlay .card-title {
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
}

/*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/
/*.testimonials .testimonial-wrap {*/
/*  padding-left: 50px;*/
/*}*/

/*.testimonials .testimonials-carousel,*/
/*.testimonials .testimonials-slider {*/
/*  overflow: hidden;*/
/*}*/

/*.testimonials .testimonial-item {*/
/*  box-sizing: content-box;*/
/*  padding: 30px 30px 30px 60px;*/
/*  margin: 30px 15px;*/
/*  min-height: 200px;*/
/*  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);*/
/*  position: relative;*/
/*  background: #fff;*/
/*}*/

/*.testimonials .testimonial-item .testimonial-img {*/
/*  width: 90px;*/
/*  border-radius: 10px;*/
/*  border: 6px solid #fff;*/
/*  position: absolute;*/
/*  left: -45px;*/
/*}*/

/*.testimonials .testimonial-item h3 {*/
/*  font-size: 18px;*/
/*  font-weight: bold;*/
/*  margin: 10px 0 5px 0;*/
/*  color: #111;*/
/*}*/

/*.testimonials .testimonial-item h4 {*/
/*  font-size: 14px;*/
/*  color: #999;*/
/*  margin: 0;*/
/*}*/

/*.testimonials .testimonial-item .quote-icon-left,*/
/*.testimonials .testimonial-item .quote-icon-right {*/
/*  color: #fdedea;*/
/*  font-size: 26px;*/
/*}*/

/*.testimonials .testimonial-item .quote-icon-left {*/
/*  display: inline-block;*/
/*  left: -5px;*/
/*  position: relative;*/
/*}*/

/*.testimonials .testimonial-item .quote-icon-right {*/
/*  display: inline-block;*/
/*  right: -5px;*/
/*  position: relative;*/
/*  top: 10px;*/
/*}*/

/*.testimonials .testimonial-item p {*/
/*  font-style: italic;*/
/*  margin: 15px auto 15px auto;*/
/*}*/

/*.testimonials .swiper-pagination {*/
/*  margin-top: 20px;*/
/*  position: relative;*/
/*}*/

/*.testimonials .swiper-pagination .swiper-pagination-bullet {*/
/*  width: 12px;*/
/*  height: 12px;*/
/*  background-color: #fff;*/
/*  opacity: 1;*/
/*  border: 1px solid #1b89b8;*/
/*}*/

/*.testimonials .swiper-pagination .swiper-pagination-bullet-active {*/
/*  background-color: #1b89b8;*/
/*}*/

/*--------------------------------------------------------------
  # vision_mission
  --------------------------------------------------------------*/

.vision_mission h2 {
  font-size: 21px;
  font-weight: 600;
  line-height: 28px;
  color: #1b89b8;
}

.vision_mission p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

/*--------------------------------------------------------------
  # Featured Services Section
  --------------------------------------------------------------*/
.featured-services .card {
  text-align: center;
}
.featured-services .card:hover {
  transform: scale(1.1);
}

.featured-services .card-img {
  text-align: center;
  margin-top: 15px;
}

.featured-services .card img {
  height: 55px;
  width: 55px;
}

.featured-services .card .card-body .card-title {
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
  color: rgb(23, 46, 84);
}

.featured-services .card .card-body .card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(115, 126, 134);
}

.featured-services .card .card-body a {
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  color: #0a0d13;
  background-color: #fff;
}

.featured-services .card .card-body a:hover {
  color: #fff;
  background-color: #1b89b8;
}

/*--------------------------------------------------------------
  # Features Section
  --------------------------------------------------------------*/
.features {
  padding-top: 80px;
}

.features .features-item + .features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item + .features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #e48617;
}

.features .features-item p {
  text-align: justify;
}

.features .features-item ul {
  list-style: none;
  padding: 5px;
  text-align: justify;
}

.features .features-item ul li {
  text-align: justify;
  padding: 0 0 8px 26px;
  position: relative;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  color: var(--color-primary);
  position: absolute;
  left: 0;
  top: -3px;
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
  # Career Section
  --------------------------------------------------------------*/

.card-title-job {
  font-weight: 600;
  font-size: 20px;
}

.card-title-job p {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}
.job-card h3 {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.job-btn {
  background-color: #1b89b8;
  border-color: #1b89b8;
}
.job-btn:hover {
  background-color: white;
  border-color: #1b89b8;
  color: black;
}

.job_text {
  text-align: left;
}

.job-respons h2 {
  font-size: 20px;
  font-weight: 600;
}

.job-portal:hover {
  transform: scale(1.01);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.job_form-container {
  margin-top: 35px;
}

.job_form-container input {
  border: solid 1px;
  outline: none;
  color: #000000;
  height: 45px;
  width: 100%;
  margin: 15px 0;
  padding-left: 15px;
  background-color: #ffffff;
}

.job_form-container input::-webkit-input-placeholder {
  color: #000000;
  text-transform: uppercase;
}

.job_form-container input:-ms-input-placeholder {
  color: #000000;
  text-transform: uppercase;
}

.job_form-container input::-ms-input-placeholder {
  color: #000000;
  text-transform: uppercase;
}

.job_form-container input::placeholder {
  color: #000000;
  text-transform: uppercase;
}

.job_form-container input.message_input {
  height: 120px;
}

.job_form-container .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 25px;
}

.job_form-container button {
  display: inline-block;
  padding: 10px 60px;
  background-color: #1b89b8;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-weight: bold;
}

.job_form-container button:hover {
  background-color: transparent;
  border-color: #1b89b8;
  color: #1b89b8;
}

.resume_button {
  position: relative;
  padding: 11px 16px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 3px;
  color: #101010;
  overflow: hidden;
  height: 45px;
  width: 100%;
  border: solid 1px;
  text-align: start;
  margin: 15px 0;
}

.resume_button input[type="file"] {
  cursor: pointer;
  position: absolute;
  left: 0%;
  top: 0%;
  transform: scale(3);
  opacity: 0;
}

.resume_button span {
  font-size: x-small;
}

/*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
.contact .info-item + .info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(14, 29, 52, 0.8);
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: rgba(13, 66, 255, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--color-secondary);
  padding: 50px 0;
  color: white;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .footer-info a h2 {
  font-size: 22px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(13, 66, 255, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}


