html,
body {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 0;
  font-family: 'Inter', sans-serif;
}

body {
  font-size: 18px;
  line-height: 1.5;
  color: #2e2e2e;
  width: 100%;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

a {
  color: #000b18;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  outline: none;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #1e5f9b;
}

img {
  max-width: 100%;
  /*height:auto;*/
}

::-webkit-input-placeholder {
  color: #414141;
}

:-moz-placeholder {
  color: #414141;
}

::-moz-placeholder {
  color: #414141;
}

:-ms-input-placeholder {
  color: #414141;
}

.smooth,
.smooth:hover {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="search"],
select,
textarea {
  color: #2e2e2e;
  width: 100%;
  position: relative;
  display: inline-block;
  border: 1px solid #d4d4d4;
  outline: none;
  border-radius: 0px;
  padding: 6px 10px 8px 10px;
  font-size: 16px;
  background-color: #FFF;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
  -webkit-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

textarea {
  max-width: 100%;
  height: 120px !important;
  resize: none
}

.content-unset {
  content: unset !important;
}

.form-control:focus {
  color: #2e2e2e;
  background-color: transparent;
  border-color: #d4d4d4;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="tel"]:disabled,
input[type="url"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="search"]:disabled,
select:disabled,
textarea:disabled {
  background: #f7f7f7;
  cursor: not-allowed;
}

section {
  padding: 0px 0;
}

.section-grau-bg {
  background-color: #f7f7f7;
}

.small-section {
  padding: 40px 0;
}

.position-relative {
  position: relative;
}

.section-title {
  font-size: 35px;
}

.section-title span {
  color: #1e5f9b;
}

.section-title:before,
.section-title:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #1e5f9b;
  display: inline-block;
}

.section-title:before {
  margin: 0 15px 10px 0;
}

.section-title:after {
  margin: 0 0 10px 15px;
}

.carousel-indicators,
.carousel-control-next,
.carousel-control-prev {
  z-index: 999;
}

.btn {
  padding: 10px 20px;
}

.btn-primary {
  background-color: #1e5f9b;
  border-color: #1e5f9b;
}

.btn-primary:hover {
  color: #1e5f9b;
  background-color: transparent;
  border-color: #1e5f9b;
}

.with-errors {
  font-size: 80%;
  color: #ff0000;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
  background: #fff;
  z-index: 2;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
}

header .logo img {
  max-width: 150px;
}

.top-header {
  text-align: center;
  background: #e00a18;
  color: #fff;
}

.top-header p {
  font-size: 16px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.nav-menu {
  padding: 0;
}

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

.nav-menu .navbar-nav .nav-item a {
  position: relative;
  color: #2e2e2e;
  transition: 0.3s;
  font-weight: 500;
}

.nav-menu .navbar-nav .nav-item a:hover,
.nav-menu .navbar-nav .nav-item a.active {
  color: #19639b;
}

.nav-menu .navbar-nav .nav-item:not(:last-child) {
  margin-right: 32px;
}

.nav-menu .navbar-nav .nav-item .dropdown-menu {
  min-width: 100%;
  padding: 12px;
  border-radius: 8px;
}

.nav-menu .navbar-nav .nav-item .dropdown-menu h4 {
  font-size: 18px;
  font-weight: 500;
  color: #19639b;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.top-banner {
  width: 100%;
  min-height: 650px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
  padding: 120px 0;
  z-index: 3;
  display: flex;
  align-items: center;
}

.top-inner-banner {
  width: 100%;
  height: 175px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
  padding: 20px 0;
  z-index: 3;
  display: flex;
  align-items: center;
}

.top-inner-banner.details-banner {
  background-attachment: unset;
}

.top-banner::before,
.top-inner-banner::before {
  position: absolute;
  content: "";
  /* background: rgba(27, 47, 69, 0.6); */
  inset: 0;
}
.top-inner-banner::before {
  background: rgba(27, 47, 69, 0.6);
}

.top-banner .container,
.top-inner-banner .container {
  position: relative;
  z-index: 1;
}

.top-banner h2,
.top-banner .h2,
.top-inner-banner h2,
.top-inner-banner .h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  text-align: left;
}

.top-banner blockquote,
.top-inner-banner blockquote {
  color: #fff;
  padding-left: 20px;
  border-left: 2px solid #fff;
  margin: 40px 0;
}

.btn-theme-red {
  background: #e00a18;
  color: #fff;
  border-radius: 0;
  transition: 0.5s;
}

.btn-theme-red:hover,
.btn-theme-red:focus {
  background: rgba(224, 10, 24, 0.8);
  color: #fff;
}

.client-result-box {
  padding: 15px;
  box-shadow: 0px 0px 5px rgb(0 0 0 / 20%);
  border-radius: 8px;
}

.client-result-box .client-video i {
  position: absolute;
  top: auto;
  bottom: -22px;
  left: 20px;
  font-size: 50px;
  color: #1e5f9b;
  background: #fff;
  line-height: 1;
  padding: 5px;
  border-radius: 50%;
}

.client-testimonials .carousel .carousel-inner .carousel-item {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 20px;
}

.client-testimonials .carousel-indicators [data-bs-target] {
  background-color: #1e5f9b;
}

.client-testimonials .carousel .carousel-inner .carousel-item img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 6px solid #f4f4f4;
  margin-right: 10px;
}

.client-testimonials .carousel .carousel-inner .carousel-item h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0 5px 0;
}

.client-testimonials .carousel .carousel-inner .carousel-item h4 {
  color: rgba(33, 37, 41, 0.5);
  font-size: 14px;
  margin: 0;
}

.client-testimonials .carousel .carousel-inner .carousel-item .stars {
  margin: 10px 0;
}

.client-testimonials .carousel .carousel-inner .carousel-item .stars {
  margin: 5px 0 10px;
  font-size: 12px;
}

.client-testimonials .carousel .carousel-inner .carousel-item .tag-line {
  font-size: 20px;
}

.client-testimonials .carousel .carousel-inner .carousel-item .tag-line:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 6px;
  background: rgba(30, 95, 155, 0.25);
  z-index: 0;
}

.why-us {
  padding: 100px 0 60px;
}

.why-us .section-title::after,
.why-us .section-title::before {
  display: none;
}

.why-us .icon-box {
  padding: 30px 25px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.why-us .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.why-us .icon-box p {
  margin-bottom: 0;
}

.why-us .icon-boxes .col-md-6:nth-child(2) .icon-box,
.why-us .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

.grow-withus-img {
  position: relative;
  width: 75%;
  margin: 40px auto 40px;
  z-index: 0;
}

.grow-withus-img::before {
  position: absolute;
  inset: -30px 0 0 -30px;
  left: -30px;
  z-index: -1;
  content: "";
  background: url(../img/about-bg.png) top left;
  background-repeat: no-repeat;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.our-services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
}

.our-services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.our-services .service-item .icon i {
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.our-services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.our-services .service-item h3 {
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #f8f8f8;
  transition: 0.3s;
}

.our-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.our-services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: #1e5f9b;
}

.our-services .service-item:hover .icon:before {
  background: #a5bfd7;
}

.our-services .service-item:hover h3 {
  border-color: #1e5f9b;
}


.footer {
  background-color: #f4f4f4;
  color: #fff;
  padding-bottom: 20px;
  padding: 60px 0;
}

.footer h3.newsletter-title {
  color: #1e5f9b;
  margin: 16px 0 0;
  border: 0;
}

.btn-default {
  background-color: #1e5f9b;
  color: #fff;
}

.dark-line {
  border-top: 2px solid #000;
}

.footer h3 {
  color: #1e5f9b;
  font-size: 18px;
  margin: 8px 0 10px;
  font-weight: 600;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid;
}

.footer ul li a {
  font-size: 16px;
}

.service-opt .container {
  transform-style: preserve-3d;
}

.service-opt .container .box {
  position: relative;
  height: 400px;
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;
}

.service-opt .container .box .body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: 0.9s ease;
}



.service-opt .container .box .body .imgContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.service-opt .container .box .body .imgContainer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* background: rgb(0 0 0 / 50%); */
  top: 0;
}

.service-opt .container .box .body .imgContainer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-fit: fill;
}

.service-opt .container .box .body .imgContainer h3 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  margin: 15px;
  background-color: transparent;
  color: #2e2e2e !important;
}

.service-opt .container .box .body .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: rotateY(180deg);
}

.service-opt .container .box:hover .body {
  transform: rotateY(180deg);
}

.service-opt .container .box .body .content div {
  transform-style: preserve-3d;
  padding: 20px;
  background: #1e5f9b;
  transform: translateZ(100px);
}

.service-opt .container .box .body .content div h3 {
  letter-spacing: 1px;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-contant .info {
  border-top: 3px solid #1e5f9b;
  border-bottom: 3px solid #1e5f9b;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact-contant .info i {
  font-size: 20px;
  color: #1e5f9b;
  float: left;
  width: 44px;
  height: 44px;
  background: #cedce9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact-contant .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact-contant .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact-contant .info .email p {
  padding-top: 5px;
}

.contact-contant .info .social-links {
  padding-left: 60px;
}

.contact-contant .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact-contant .info .social-links a:hover {
  background: #1e5f9b;
  color: #fff;
}

.contact-contant .info .email:hover i,
.contact-contant .info .address:hover i,
.contact-contant .info .phone:hover i {
  background: #1e5f9b;
  color: #fff;
}

.contact-contant .contact-email-form {
  width: 100%;
  border-top: 3px solid #1e5f9b;
  border-bottom: 3px solid #1e5f9b;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact-contant .contact-email-form .form-group {
  padding-bottom: 8px;
}

.contact-contant .contact-email-form .form-group {
  margin-bottom: 20px;
}

.contact-contant .contact-email-form label {
  padding-bottom: 8px;
}

.contact-contant .contact-email-form input,
.contact-contant .contact-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact-contant .contact-email-form input:focus,
.contact-contant .contact-email-form textarea:focus {
  border-color: #1e5f9b;
}

.contact-contant .contact-email-form input {
  height: 44px;
}

.contact-contant .contact-email-form textarea {
  padding: 10px 12px;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  width: 50px;
}

.blog .blog-comments .comment h5 {
  margin-left: 16px;
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #d9232d;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #556270;
}

.blog .blog-comments .comment time {
  margin-left: 16px;
  display: block;
  font-size: 14px;
  color: #c1c8d0;
  margin-bottom: 5px;
}

.blog .blog-comments .comment p {
  margin-left: 16px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}


.reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.reply-form p {
  font-size: 14px;
}

.reply-form input {
  border-radius: 0;
  padding: 10px 15px;
  font-size: 16px;
}

.reply-form textarea {
  border-radius: 0;
  padding: 10px 15px;
  font-size: 16px;
}


.reply-form .form-group {
  margin-bottom: 25px;
}


@media (max-width: 768px) {

  .why-us .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .why-us .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}


/* @media (min-width: 992px) {
  .top-banner::after, .top-inner-banner::after {
    position: absolute;
    content: "";
    width: 50%;
    background: #1e5f9b;
    top: 0;
    bottom: 0;
  }
} */
@media (min-width: 1200px) {

  .top-banner:after,
  .top-inner-banner::after {
    width: 45%;
  }
}

@media (max-width: 991px) {
  header {
    padding: 12px 0;
  }

  header .navbar-toggler {
    border: 2px solid #000;
  }

  .nav-menu .navbar-nav {
    display: block;
  }

  .nav-menu .navbar-nav .nav-item a {
    padding: 10px;
  }

  .nav-menu .navbar-nav .nav-item.drop-down:hover>ul {
    position: static;
    display: block;
  }

  .section-title p {
    font-size: 27px;
  }

  .top-banner::before,
  .top-inner-banner::before {
    background: rgba(27, 47, 69, 0.7);
  }
}

@media (max-width: 767px) {
  .top-banner h2, .top-banner .h2, .top-inner-banner h2, .top-inner-banner .h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .top-banner h2, .top-banner .h2, .top-inner-banner h2, .top-inner-banner .h2 {
    font-size: 18px;
  }
}
