/* ==============
 ========= css documentation =========

 * Theme Name: Datatics
 * Version: 1.0
 * Description: Data Science & Ai Tech HTML Template
 * Author: Softivus
 * Author URI: https://www.templatemonster.com/authors/softivus/

 01. abstracts
     1.1 --> mixins
     1.2 --> variables

 02. base
     2.1 --> reset
     2.2 --> typography
     2.3 --> global

 03. components
     3.1 --> buttons
     3.2 --> forms
     3.3 --> preloader

 04. layout
     4.1 --> header
     4.2 --> hero Section
     4.3 --> banner
     4.4 --> all sections
     4.5 --> footer
     4.6 --> responsive
     =================================
============== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
/* ==== 
 --------- (2.1) reset styles start ---------
 ==== */
* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: #cae6f7;
  border-radius: 5px;
}
*::-webkit-scrollbar-button, *::-webkit-scrollbar-thumb {
  background-color: #0a7e9d;
  border-radius: 5px;
}
*::-moz-selection {
  color: #ffffff;
  background-color: #1770c8;
}
*::selection {
  color: #ffffff;
  background-color: #1770c8;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  overflow-x: hidden !important;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #4d4e4f;
  background-color: #ffffff;
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  outline: 0px;
  border: 0px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
a i {
  -webkit-transition: inherit;
  transition: inherit;
  color: inherit;
}
a:hover, a:focus, a:active {
  text-decoration: none;
  border: 0px;
  outline: 0px;
}

button {
  border: 0px;
  outline: 0px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  background-color: transparent;
}
button i {
  -webkit-transition: inherit;
  transition: inherit;
  color: inherit;
}
button:focus, button:active, button:hover {
  border: 0px;
  outline: 0px;
  -webkit-box-shadow: 0px 0px 0px;
          box-shadow: 0px 0px 0px;
}

ul,
ol {
  list-style-type: none;
  list-style-position: inside;
  margin: 0px;
  padding: 0px;
}

input:focus,
textarea:focus {
  border: 0px;
  outline: 0px;
  -webkit-box-shadow: 0px 0px 0px;
          box-shadow: 0px 0px 0px;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=checkbox] {
  width: initial;
  height: initial;
}

textarea {
  min-height: 150px;
  resize: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

iframe {
  border: 0px;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0px;
  margin: 0px;
  font-weight: 700;
  color: #01293c;
  font-family: "Poppins", sans-serif;
}

div {
  line-height: 0px;
}

/* ==== 
     --------- (2.1) reset styles end ---------
   ==== */
/* ==== 
 --------- (2.2) typography styles start ---------
 ==== */
p,
th,
td,
li,
input,
textarea,
select,
label,
blockquote,
span {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  margin-top: -7px;
  color: #4d4e4f;
}

.primary-text {
  font-size: 24px;
  line-height: 34px;
  margin-top: -7px;
}

a,
button {
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 700;
}
a:hover,
button:hover {
  color: #01293c;
}

h1,
.hero__title {
  font-size: 76px;
  line-height: 98.8px;
  margin-top: -19px;
}

h2,
.section-header__title,
.section-content__title {
  font-size: 57px;
  line-height: 74.1px;
  margin-top: -14px;
}

h3 {
  font-size: 43px;
  line-height: 55.9px;
  margin-top: -10px;
}

h4 {
  font-size: 32px;
  line-height: 41.6px;
  margin-top: -8px;
}

h5 {
  font-size: 24px;
  line-height: 31.2px;
  margin-top: -6px;
}

h6 {
  font-size: 18px;
  line-height: 23.4px;
  margin-top: -5px;
}

h1 > a,
h1 > span,
h2 > a,
h2 > span,
h3 > a,
h3 > span,
h4 > a,
h4 > span,
h5 > a,
h5 > span,
h6 > a,
h6 > span,
p > a,
p > span {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  font-weight: inherit;
}

/* ==== 
 --------- (2.2) typography styles end ---------
 ==== */
/* ==== 
 --------- (2.3) global styles start ---------
 ==== */
.section-space {
  padding: 120px 0px;
}

.section-space-top {
  padding-top: 120px;
}

.section-space-bottom {
  padding-bottom: 120px;
}

.cta-btn-space {
  margin-top: 40px;
}

.neutral-row-gutter {
  margin-bottom: -30px;
}
.neutral-row-gutter .column-gutter {
  margin-bottom: 30px;
}

.bg-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

img {
  max-width: 100%;
  height: auto;
  border: 0px;
  outline: 0px;
}

.max-width-unset {
  max-width: unset;
}

.w-100 {
  width: 100%;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.bg-white {
  background-color: #ffffff;
}

.bg-dark {
  background-color: #000000;
}

.bg-primary {
  background-color: #01293c;
  background-image: linear-gradient(89.52deg, #0e3648 0.5%, #174155 99.71%);
}

.text-bg {
  background: -webkit-gradient(linear, left top, right top, from(#fc9100), to(#eaa240));
  background: linear-gradient(90deg, #fc9100 0%, #eaa240 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-bg-two {
  background: -webkit-gradient(linear, left top, right top, from(#0a7e9d), to(#035298));
  background: linear-gradient(90deg, #0a7e9d 0%, #035298 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  margin-bottom: 55px;
}
.section-header h5 {
  color: #01293c;
  margin-bottom: 22px;
}
.section-header h2 {
  margin-bottom: 13px;
}
.section-header h2.secondary {
  margin-bottom: 27px;
}

.section-content h5 {
  color: #0a7e9d;
  margin-bottom: 22px;
}
.section-content h2 {
  margin-bottom: 13px;
}
.section-content p {
  margin-bottom: -5px;
}
.section-content .cta-btn {
  margin-top: 40px;
}

.slick-slide {
  margin: 0px 12px;
  text-align: center;
}
.slick-slide img {
  display: inline-block;
}

.slick-list {
  margin-left: -12px;
  margin-right: -12px;
  overflow-x: clip !important;
  overflow-y: visible;
}

.slider__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.slider-btn {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #d3d3d3;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.slider-btn i {
  color: #035298;
}
.slider-btn:hover, .slider-btn:focus {
  border: 1px solid #035298;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
.pagination li {
  margin: 0px;
}
.pagination .page-link {
  width: 60px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  background-color: #ffffff;
  color: #4d4e4f;
  -webkit-box-shadow: 0px 0px 0px;
          box-shadow: 0px 0px 0px;
}
.pagination .page-link i {
  -webkit-transition: unset;
  transition: unset;
}
.pagination .page-link:hover, .pagination .page-link:focus, .pagination .page-link:active {
  border: 1px solid #d3d3d3;
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#0a7e9d), to(#035298));
  background: linear-gradient(90deg, #0a7e9d 0%, #035298 100%);
}
.pagination .active {
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#0a7e9d), to(#035298));
  background: linear-gradient(90deg, #0a7e9d 0%, #035298 100%);
}
.pagination .page-item:nth-last-of-type(1) .page-link, .pagination .page-item:nth-of-type(1) .page-link {
  border: 0px;
  background-color: transparent;
}
.pagination .page-item:nth-last-of-type(1) .page-link:hover, .pagination .page-item:nth-last-of-type(1) .page-link:active, .pagination .page-item:nth-last-of-type(1) .page-link:focus, .pagination .page-item:nth-of-type(1) .page-link:hover, .pagination .page-item:nth-of-type(1) .page-link:active, .pagination .page-item:nth-of-type(1) .page-link:focus {
  background: transparent;
}
.pagination .page-item:nth-last-of-type(1) .page-link:hover i, .pagination .page-item:nth-last-of-type(1) .page-link:active i, .pagination .page-item:nth-last-of-type(1) .page-link:focus i, .pagination .page-item:nth-of-type(1) .page-link:hover i, .pagination .page-item:nth-of-type(1) .page-link:active i, .pagination .page-item:nth-of-type(1) .page-link:focus i {
  color: #4d4e4f;
}
.pagination .page-item:nth-last-of-type(1) .page-link i, .pagination .page-item:nth-of-type(1) .page-link i {
  color: #d3d3d3;
}

/* ==== 
   --------- (2.3) global styles end ---------
 ==== */
/* ==== 
 --------- (3.1) button styles start ---------
 ==== */
.button {
  padding: 15px 30px;
  color: #ffffff;
  background-color: #01293c;
  background-image: -webkit-gradient(linear, left top, right top, from(#0a7e9d), to(#035298));
  background-image: linear-gradient(90deg, #0a7e9d 0%, #035298 100%);
  border-radius: 5px;
}
.button:hover {
  color: #ffffff;
  background-image: -webkit-gradient(linear, left top, right top, from(#0a7e9d), color-stop(-200%, #035298));
  background-image: linear-gradient(90deg, #0a7e9d 0%, #035298 -200%);
}

.button--primary {
  padding: 13px 28px;
}

.scrollToTop {
  position: fixed;
  bottom: 0;
  right: 24px;
  width: 40px;
  height: 40px;
  background-image: -webkit-gradient(linear, left top, right top, from(#0a7e9d), color-stop(-200%, #035298));
  background-image: linear-gradient(90deg, #0a7e9d 0%, #035298 -200%);
  color: #ffffff;
  line-height: 40px;
  font-size: 18px;
  text-align: center;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.scrollToTop:hover, .scrollToTop:focus, .scrollToTop:active {
  color: #ffffff;
  background-image: -webkit-gradient(linear, left top, right top, from(#0a7e9d), color-stop(-200%, #035298));
  background-image: linear-gradient(90deg, #0a7e9d 0%, #035298 -200%);
}
.scrollToTop.active {
  bottom: 30px;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

/* ==== 
   --------- (3.1) button styles end ---------
 ==== */
/* ==== 
 --------- (3.2) form styles start ---------
 ==== */
.single-input {
  margin-bottom: 20px;
  padding: 0;
  padding-bottom: 0;
  position: relative;
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid transparent;
}
.single-input input, .single-input textarea {
  margin-bottom: 12px !important;
}
.single-input.success input {
  border-color: #2ecc71;
}
.single-input.error input {
  border-color: #e74c3c;
}
.single-input.error small {
  visibility: visible;
}
.single-input small {
  color: #e74c3c;
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
}

.thank_you p {
  bottom: 25px;
  color: green;
  -webkit-animation: scaleone 0.5s linear;
          animation: scaleone 0.5s linear;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: none;
}

/* ==== 
 --------- (3.2) form styles end ---------
 ==== */
/* ==== 
 --------- (3.3) preloader styles start ---------
 ==== */
/* ==== 
 --------- (3.3) preloader styles end ---------
 ==== */
/* ==== 
 --------- (4.1) header styles start ---------
 ==== */
.header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  z-index: 999;
  background-color: transparent;
      transition: transform 0.3s ease-in-out;

}


/* Esta clase es la que añadirá JavaScript */
.header-hidden {
    /* Mueve el header 100% de su propia altura hacia arriba */
    transform: translateY(-100%);
}

.header-active {
  background-image: linear-gradient(89.52deg, #0e3648 0.5%, #174155 99.71%);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

.navbar {
  padding: 23px 0px;
  background-color: transparent;
  border-bottom: 1px solid #035298;
}
@media (max-width: 991px) {
  .navbar {
    padding: 23px 0px;
  }
}
@media (max-width: 575px) {
  .navbar {
    padding: 25px 0px;
  }
}
.navbar li {
  margin-top: 0px;
}

.navbar-active {
  background-image: linear-gradient(89.52deg, #0e3648 0.5%, #174155 99.71%);
  -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  margin: 0px;
  padding: 0px;
}

.logo {
  /* max-width: 152px; */
  /* max-height: 46px; */
  height: auto;
}
@media (max-width: 1399px) {
  .logo {
    max-width: 120px;
    height: 40px;
  }
}
@media (max-width: 991px) {
  .logo {
    max-width: 100px;
    height: 30px;
  }
}

.navbar-out {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .navbar-out {
    gap: 20px;
  }
}

.nav-group-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .nav-group-btn {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-left: 0px;
    margin-top: 20px;
    max-height: 350px;
    overflow-y: auto;
  }
  .navbar-collapse::-webkit-scrollbar {
    width: 5px;
  }
  .navbar-collapse::-webkit-scrollbar-track {
    background-color: #e4e4e4;
    border-radius: 10px;
  }
  .navbar-collapse::-webkit-scrollbar-thumb {
    background-color: #d3d3d3;
    border-radius: 10px;
  }
}

@media (max-width: 991px) {
  .nav-item {
    margin-bottom: 3px;
  }
}
@media (max-width: 575px) {
  .nav-item .button {
    max-width: 100%;
    width: 100%;
    display: block;
    border-radius: 0px;
    text-align: left;
    padding: 9px 16px;
  }
  .nav-item .button::before {
    border-radius: 0px;
  }
  .nav-item:last-of-type {
    margin-bottom: 0px;
  }
  .nav-item:last-of-type .button--last {
    display: block;
    width: 100%;
    border-radius: 0px;
    font-weight: 600;
  }
}
@media (max-width: 991px) {
  .nav-item:nth-last-of-type(2) {
    margin-bottom: 0px;
  }
}
@media (max-width: 575px) {
  .nav-item:nth-last-of-type(2) {
    margin-bottom: 3px;
  }
}

.nav-link {
  color: #ffffff;
  font-weight: 400;
  padding: 8px 12px 9px !important;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 1199px) {
  .nav-link {
    font-size: 16px;
    line-height: 22px;
    padding: 8px 10px 9px !important;
  }
}
@media (max-width: 991px) {
  .nav-link {
    padding: 10px 16px !important;
    background-color: #f5e1e1;
    color: #000000;
    font-weight: 500;
  }
}
.nav-link:hover {
  color: #f2b705;
}
@media (max-width: 991px) {
  .nav-link:hover {
    color: #f2b705;
  }
}

.dropdown .dropdown-toggle {
  color: #0d4582 !important;
}
@media (max-width: 991px) {
  .dropdown .dropdown-toggle {
    color: #000000 !important;
  }
}
.dropdown .dropdown-toggle:hover {
  color: #f2b705 !important;
}
@media (max-width: 991px) {
  .dropdown .dropdown-toggle:hover {
    color: #f2b705 !important;
  }
}
@media (max-width: 1199px) {
  .dropdown .dropdown-toggle {
    position: relative;
  }
}
.dropdown .dropdown-toggle::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f107";
  border: none;
  font-size: 16px;
  vertical-align: 0px !important;
}
@media (max-width: 1399px) {
  .dropdown .dropdown-toggle::after {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .dropdown .dropdown-toggle::after {
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 50px;
    height: 100%;
    margin: 0px;
    border-left: 3px solid #fff;
  }
}
.dropdown .show {
  color: #0a7e9d !important;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.dropdown .show::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 991px) {
  .dropdown .show::after {
    border-right: 3px solid #fff;
    border-left: 0px;
  }
}
@media (min-width: 1200px) {
  .dropdown .show {
    color: #01293c !important;
  }
  .dropdown .show::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.dropdown .dropdown-menu {
  margin: 0px;
  padding: 0px;
  background-color: #ffffff;
  margin-top: 0px;
  border-top: 4px solid #f2b705;
  -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  border-radius: 0px;
  -webkit-transition: all 0.4s ease-in 0s;
  transition: all 0.4s ease-in 0s;
  max-height: 300px;
  overflow-y: auto;
  min-width: 14rem;
}
@media (min-width: 1200px) {
  .dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
  }
}
.dropdown .dropdown-menu::-webkit-scrollbar {
  width: 5px;
}
@media (max-width: 1199px) {
  .dropdown .dropdown-menu {
    width: 90%;
    margin: 15px auto;
  }
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  padding: 10px 16px;
  color: #0d4582;
  border-bottom: 1px solid #e4e4e4;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #d3d3d3;
  color: #000000;
  padding-left: 20px;
}
.dropdown .dropdown-menu .dropdown-item-active {
  background-color: #f2b705;
  color: #ffffff;
  padding-left: 20px;
}
.dropdown .dropdown-menu li:last-of-type .dropdown-item {
  border-bottom: 0px;
}
@media (min-width: 1200px) {
  .dropdown:hover .dropdown-menu {
    margin-top: 0px;
    opacity: 1;
    visibility: visible;
  }
}

.navbar-toggler {
  border: none;
  padding: 0px;
  line-height: 0px;
  display: inline-block;
}
@media (max-width: 575px) {
  .navbar-toggler {
    margin: 0px;
  }
}
.navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.navbar-toggler span {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.navbar-toggler .icon-bar {
  width: 35px;
  height: 2px;
  background-color: #d3d3d3;
  margin: 0px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 575px) {
  .navbar-toggler .icon-bar {
    width: 30px;
  }
}
.navbar-toggler .middle-bar {
  margin: 6px 0px;
  opacity: 1;
}

.toggle-active .top-bar {
  -webkit-transform: rotate(-45deg) translate(-7px, 4px);
          transform: rotate(-45deg) translate(-7px, 4px);
  background: #d3d3d3;
}
.toggle-active .middle-bar {
  opacity: 0;
}
.toggle-active .bottom-bar {
  -webkit-transform: rotate(45deg) translate(-7px, -4px);
          transform: rotate(45deg) translate(-7px, -4px);
  background: #d3d3d3;
}

/* ==== 
 --------- (4.1) header styles end ---------
 ==== */
/* ==== 
 --------- (4.2) hero section styles start ---------
 ==== */
.hero {
  padding: 170px 0px 70px;
  background-image: url("../images/three.png"), linear-gradient(89.52deg, #0E3648 0.5%, #174155 99.71%);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right bottom;
}
.hero h5 {
  margin-bottom: 32px;
}
.hero .hero__title {
  color: #ffffff;
  margin-bottom: 30px;
}
.hero p {
  margin-bottom: 30px;
  color: #d3d3d3;
}
.hero .cta-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hero .cta-btn .button {
  border: 1px solid #035298;
}
.hero .cta-btn .button:nth-last-of-type(1) {
  background-color: transparent;
  background-image: none;
  border: 1px solid #035298;
}
.hero .cta-btn .button:nth-last-of-type(1):hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#0a7e9d), color-stop(-200%, #035298));
  background-image: linear-gradient(90deg, #0a7e9d 0%, #035298 -200%);
}

/* ==== 
 --------- (4.2) hero section styles end ---------
 ==== */
/* ==== 
 --------- (4.3) banner styles start ---------
 ==== */
.banner {
  padding: 220px 0px 110px;
  background-image: url("../images/one.png"), url("../images/three.png"), linear-gradient(89.52deg, #0e3648 0.5%, #174155 99.71%);
  background-repeat: no-repeat;
  background-size: auto, auto, 100%;
  background-position: left top, right bottom, left top;
}
.banner h2 {
  color: #ffffff;
}
.banner li {
  font-weight: 600;
}
.banner .breadcrumb {
  margin: 0px;
}
.banner .breadcrumb-item {
  color: #ffffff;
}
.banner .breadcrumb-item::before {
  content: ">";
  color: #ffffff;
  font-weight: 400;
  font-size: 24px;
}
.banner .breadcrumb-item:first-of-type::before {
  content: none;
}
.banner .breadcrumb-item a:hover {
  color: #f2b705;
}

/* ==== 
 --------- (4.3) banner styles end ---------
 ==== */
/* ==== 
 --------- (4.4) all sections styles start ---------
 ==== */
.features__single {
  padding: 50px 30px 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
.features__single .features__single-thumb {
  width: 120px;
  min-width: 120px;
  height: 120px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#0a7e9d), to(#035298));
  background: linear-gradient(90deg, #0a7e9d 0%, #035298 100%);
  border-radius: 10px;
  margin: 0px auto 30px;
}
.features__single h4 {
  margin-bottom: 20px;
}
.features__single p {
  margin-bottom: -5px;
}

.about {
  background-color: #035298;
  background-image: url("../images/one.png"), linear-gradient(89.52deg, #0e3648 0.5%, #174155 99.71%);
  background-repeat: no-repeat;
  background-size: auto, 100%;
  background-position: left top;
}
.about h2 {
  color: #ffffff;
}
.about p {
  color: #d3d3d3;
}

.skill__bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
.skill__bar h6 {
  color: #01293C;
  font-weight: 600;
}

.skill__bar-box {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.skill__bar-box svg {
  z-index: -1;
}
.skill__bar-box svg circle {
  stroke-dasharray: 0px;
  stroke-dashoffset: 0px;
  stroke-linecap: round;
  -webkit-transition: all 1s ease-in;
  transition: all 1s ease-in;
}
.skill__bar-box svg circle:nth-of-type(1) {
  stroke-dashoffset: 0;
  stroke-dasharray: 0;
}
.skill__bar-box h5 {
  margin: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.counter {
  background-image: url("../images/one.png"), url("../images/three.png"), linear-gradient(89.52deg, #0e3648 0.5%, #174155 99.71%);
  background-repeat: no-repeat;
  background-size: auto, auto, 100%;
  background-position: left top, right bottom, left top;
}

.counter__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.counter__single h2 {
  color: #ffffff;
  margin-bottom: 5px;
}
.counter__single p {
  color: #d3d3d3;
  margin-bottom: -5px;
}

.service__item {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  background-color: #ffffff;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-bottom: 20px;
}
.service__item .service__item-thumb {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #035298;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.service__item h5 {
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.service__item p {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.service__item:hover {
  background: #035298;
}
.service__item:hover .service__item-thumb {
  background: #ffffff;
}
.service__item:hover .service__item-thumb img {
  -webkit-filter: invert(40%) sepia(75%) saturate(2121%) hue-rotate(192deg) brightness(102%) contrast(98%);
          filter: invert(40%) sepia(75%) saturate(2121%) hue-rotate(192deg) brightness(102%) contrast(98%);
}
.service__item:hover h5,
.service__item:hover p {
  color: #ffffff;
}

.work {
  background-color: #035298;
  background-image: url("../images/one.png"), linear-gradient(89.52deg, #0e3648 0.5%, #174155 99.71%);
  background-repeat: no-repeat;
  background-size: auto, 100%;
  background-position: left top;
}
.work .section-header h2 {
  color: #ffffff;
}
.work .section-header p {
  color: #d3d3d3;
}

.work__single {
  padding: 45px 20px 30px;
  border: 1px solid rgba(255, 255, 255, 0.3137254902);
  border-radius: 10px;
  position: relative;
}
.work__single::before {
  content: "\f178";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: -120px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 50px;
  color: #eaa240;
}
.work__single .work__single-thumb {
  width: 100px;
  min-width: 100px;
  height: 100px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px auto 30px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#0a7e9d), to(#035298));
  background: linear-gradient(90deg, #0a7e9d 0%, #035298 100%);
  position: relative;
}
.work__single .work__single-thumb .tag {
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#fc9100), to(#eaa240));
  background: linear-gradient(90deg, #fc9100 0%, #eaa240 100%);
  -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 0px;
  right: -15px;
  font-size: 14px;
}
.work__single .work__single-content h5 {
  color: #ffffff;
  margin-bottom: 15px;
}
.work__single .work__single-content p {
  color: #d3d3d3;
  margin-bottom: -5px;
}

.work__single--last::before {
  content: none;
}

.project__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 60px;
}

.button--project {
  border: 1px solid #d3d3d3;
  background-image: none;
  background-color: white;
  color: #01293c;
  padding: 12px 24px;
}
.button--project:hover, .button--project:focus {
  color: #ffffff;
  border: 1px solid #035298;
  background-image: -webkit-gradient(linear, left top, right top, from(#0a7e9d), to(#035298));
  background-image: linear-gradient(90deg, #0a7e9d 0%, #035298 100%);
}

.button--project-active {
  color: #ffffff;
  border: 1px solid #035298;
  background-image: -webkit-gradient(linear, left top, right top, from(#0a7e9d), to(#035298));
  background-image: linear-gradient(90deg, #0a7e9d 0%, #035298 100%);
}

.project__single {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.project__single img {
  width: 100%;
  border-radius: 10px;
}
.project__single .project__single-wrapper {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(10, 126, 157, 0.7)), to(rgba(3, 82, 152, 0.7)));
  background: linear-gradient(90deg, rgba(10, 126, 157, 0.7) 0%, rgba(3, 82, 152, 0.7) 100%);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.project__single .project__single-wrapper .project__single-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  height: 80%;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -o-border-image: linear-gradient(to right, #eaa240 0%, #eaa240 40px, transparent 40px, transparent calc(100% - 40px), #eaa240 calc(100% - 40px));
     border-image: linear-gradient(to right, #eaa240 0%, #eaa240 40px, transparent 40px, transparent calc(100% - 40px), #eaa240 calc(100% - 40px));
  border-image-slice: 1;
  background: transparent;
}
.project__single .project__single-wrapper .project__single-content::before, .project__single .project__single-wrapper .project__single-content::after {
  content: "";
  position: absolute;
  left: 10px;
  top: -10px;
  right: 10px;
  height: 40px;
  border-left: 1px solid #eaa240;
  border-right: 1px solid #eaa240;
  pointer-events: none;
}
.project__single .project__single-wrapper .project__single-content::after {
  top: auto;
  bottom: -10px;
}
.project__single .project__single-wrapper h6 {
  color: #ffffff;
  margin-bottom: 15px;
}
.project__single .project__single-wrapper p {
  color: #ffffff;
  font-size: 16px;
}
.project__single .project__single-wrapper .project-demo {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.project__single .project__single-wrapper .project-demo a {
  color: #eaa240;
  font-size: 20px;
}
.project__single .project__single-wrapper .project-demo a:hover {
  color: #ffffff;
}
.project__single:hover .project__single-wrapper {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.is-hidden {
  display: none;
}

.testimonial {
  background-color: #035298;
  background-image: url("../images/three.png"), linear-gradient(89.52deg, #0e3648 0.5%, #174155 99.71%);
  background-repeat: no-repeat;
  background-size: auto, 100%;
  background-position: right bottom;
}
.testimonial .section-header h2 {
  color: #ffffff;
}
.testimonial .section-header p {
  color: #d3d3d3;
}

.testimonial__single {
  text-align: center;
  padding: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#0a7e9d), to(#035298));
  background: linear-gradient(90deg, #0a7e9d 0%, #035298 100%);
  border-radius: 10px;
}
.testimonial__single .testimonial-single-wrapper {
  overflow: hidden;
}
.testimonial__single .fa-quote-left {
  font-size: 60px;
  color: #f2b705;
}

.testimonial__single-content {
  margin-bottom: 30px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.testimonial__single-content img {
  opacity: 0.8;
}
.testimonial__single-content .rating {
  margin: 15px 0px 30px;
}
.testimonial__single-content .rating a {
  color: #f2b705;
}
.testimonial__single-content p {
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}

.testimonial__single-thumb {
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.testimonial__single-thumb img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.testimonial__single-thumb p {
  font-weight: 600;
  color: #ffffff;
  margin: 0px;
  text-align: left;
}
.testimonial__single-thumb .primary-text {
  font-size: 16px;
  font-weight: 400;
}

.pricing__tab {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 35px;
}

.pricing__tab-item {
  border: 1px solid #d3d3d3;
  background-image: none;
  background-color: white;
  color: #01293c;
  padding: 12px 24px;
}
.pricing__tab-item:hover, .pricing__tab-item:focus {
  color: #ffffff;
  border: 1px solid #035298;
  background-image: -webkit-gradient(linear, left top, right top, from(#0a7e9d), to(#035298));
  background-image: linear-gradient(90deg, #0a7e9d 0%, #035298 100%);
}

.pricing__tab-item-active {
  color: #ffffff;
  border: 1px solid #035298;
  background-image: -webkit-gradient(linear, left top, right top, from(#0a7e9d), to(#035298));
  background-image: linear-gradient(90deg, #0a7e9d 0%, #035298 100%);
}

.pricing__single {
  padding: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  text-align: center;
}
.pricing__single hr {
  opacity: 1;
  margin: 23px 0px;
  background-color: #d3d3d3;
}

.pricing__single-header p {
  color: #01293c;
  margin-bottom: 10px;
}

.pricing__single-thumb {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#0a7e9d), to(#035298));
  background: linear-gradient(90deg, #0a7e9d 0%, #035298 100%);
  border-radius: 10px;
  margin: 0px auto 30px;
}

.pricing__single-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pricing__single-content li {
  margin: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.pricing__single-content li:nth-last-of-type(1), .pricing__single-content li:nth-last-of-type(2) {
  opacity: 0.34;
}
.pricing__single-content .cta-btn {
  margin-top: 30px;
}

.team {
  background-color: #035298;
  background-image: url("../images/one.png"), linear-gradient(89.52deg, #0e3648 0.5%, #174155 99.71%);
  background-repeat: no-repeat;
  background-size: auto, 100%;
  background-position: left top;
}
.team .section-content h2 {
  color: #ffffff;
  margin-bottom: 27px;
}
.team .section-content p {
  color: #d3d3d3;
}
.team .slider__btns button {
  border-color: #686868;
}
.team .slider__btns button i {
  color: #ffffff;
}
.team .slider__btns button:focus, .team .slider__btns button:active, .team .slider__btns button:hover {
  border-color: #ffffff;
}

.team__slider-single {
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  width: auto !important;
}
.team__slider-single .team__slider-thumb img {
  border-radius: 10px 10px 0px 0px;
}
.team__slider-single .team__slider-content {
  padding: 20px 15px 15px;
}
.team__slider-single .team__slider-content h6 {
  margin-bottom: 10px;
}
.team__slider-single .team__slider-content p {
  font-size: 16px;
}

.company__content ul {
  margin-top: 40px;
}
.company__content li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.company__content li:nth-last-of-type(1) {
  margin-bottom: -5px;
}

.client {
  background-color: #035298;
  background-image: url("../images/one.png"), linear-gradient(89.52deg, #0e3648 0.5%, #174155 99.71%);
  background-repeat: no-repeat;
  background-size: auto, 100%;
  background-position: left top;
}
.client .section-header h2 {
  color: #ffffff;
}
.client .section-header p {
  color: #d3d3d3;
}

.client__slider-head img {
  margin-bottom: 24px;
}
.client__slider-head .rating {
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}
.client__slider-head .rating a {
  color: #f2b705;
}
.client__slider-head p {
  color: #ffffff;
}

.client__slider-author {
  margin-top: 30px;
}
.client__slider-author p {
  color: #ffffff;
  font-weight: 600;
}
.client__slider-author .primary-text {
  font-size: 16px;
  font-weight: 400;
}

.client__wrapper {
  position: relative;
}

.client-nav .slider-btn {
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.client-nav .slider-btn i {
  color: #ffffff;
}
.client-nav .next-client-item {
  left: unset;
  right: 0px;
}

.pagination-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.pagination-slider img {
  border-radius: 50%;
  -webkit-filter: contrast(50%);
          filter: contrast(50%);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.pagination-slider img:hover {
  -webkit-filter: contrast(100%);
          filter: contrast(100%);
}
.pagination-slider .slick-current img {
  -webkit-filter: contrast(100%);
          filter: contrast(100%);
}
.pagination-slider .slick-list {
  padding: 0px !important;
}

.faq__content .accordion-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
}
.faq__content .accordion-item:nth-last-of-type(1) {
  margin-bottom: 0px;
}
.faq__content .accordion-item:nth-last-of-type(1) .accordion-button {
  border-radius: 5px;
}
.faq__content .accordion-item h5 {
  margin: 0px;
}
.faq__content .accordion-item .accordion-button {
  outline: none;
  border: 0px;
  -webkit-box-shadow: 0px 0px 0px;
          box-shadow: 0px 0px 0px;
  border-radius: 5px;
  padding: 12px 30px;
  font-size: 18px;
  line-height: 30px;
  color: #4d4e4f;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  gap: 40px;
}
.faq__content .accordion-item .accordion-button::after {
  background-image: none;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: auto;
  height: auto;
  text-align: center;
  z-index: 1;
  color: #4d4e4f;
}
.faq__content .accordion-item .accordion-button:not(.collapsed) {
  background-color: #ffffff;
  color: #035298;
  border-radius: 5px 5px 0px 0px;
}
.faq__content .accordion-item .accordion-button:not(.collapsed)::after {
  color: #035298;
}
.faq__content .accordion-item .accordion-body {
  padding: 20px 40px;
  border-top: 1px solid #d3d3d3;
}
.faq__content .accordion-item .accordion-body p {
  font-size: 16px;
  color: #035298;
}

.contact__form h4 {
  margin-bottom: 24px;
}
.contact__form input,
.contact__form textarea {
  margin: 0px;
  margin-bottom: 30px;
  padding: 15px 24px;
  background-color: #ffffff;
  border: 1px solid #dbd7d7;
  border-radius: 5px;
  width: 100%;
}
.contact__form input::-webkit-input-placeholder, .contact__form textarea::-webkit-input-placeholder {
  color: #4d4e4f;
}
.contact__form input::-moz-placeholder, .contact__form textarea::-moz-placeholder {
  color: #4d4e4f;
}
.contact__form input:-ms-input-placeholder, .contact__form textarea:-ms-input-placeholder {
  color: #4d4e4f;
}
.contact__form input::-ms-input-placeholder, .contact__form textarea::-ms-input-placeholder {
  color: #4d4e4f;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: #4d4e4f;
}
.contact__form textarea {
  max-height: 180px;
  margin-bottom: 30px;
}
.contact__form .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .contact__form .group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
}

.contact__info-single {
  padding: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 400px) {
  .contact__info-single {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.contact__info-single:nth-last-of-type(1) {
  margin-bottom: 0px;
}
.contact__info-single p {
  margin-bottom: 10px;
}
.contact__info-single p:nth-last-of-type(1) {
  margin-bottom: -5px;
}

.contact__info-single__thumb {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#0a7e9d), to(#035298));
  background: linear-gradient(90deg, #0a7e9d 0%, #035298 100%);
  border: 1px solid #d3d3d3;
}

.map-wrapper iframe {
  width: 100%;
  display: block;
}
@media (max-width: 1199px) {
  .map-wrapper iframe {
    height: 400px;
  }
}

.details__content {
  background: #ffffff;
  -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding-bottom: 60px;
}

.mt-40 {
  margin-top: 40px;
}

.details__content-thumb {
  margin-bottom: 60px;
}
.details__content-thumb img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0px 0px;
}

.details__group {
  padding: 0px 30px;
}
@media (max-width: 767px) {
  .details__group {
    padding: 0px 20px;
  }
}
.details__group h3,
.details__group h4 {
  margin-bottom: 28px;
}

.details__img-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .details__img-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0px 20px;
  }
}
.details__img-group ul {
  padding-right: 20px;
}
@media (max-width: 767px) {
  .details__img-group ul {
    padding-right: 0px;
  }
}
.details__img-group li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.details__img-group li:nth-last-of-type(1) {
  margin-bottom: -6px;
}
.details__img-group img {
  border-radius: 10px;
}

@media (max-width: 1199px) {
  .details__img-group-alt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .details__img-group-alt ul {
    padding-right: 0px;
  }
}

.details__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px 0px;
}
@media (max-width: 1399px) {
  .details__features {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.details__features-single-thumb {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#0a7e9d), to(#035298));
  background: linear-gradient(90deg, #0a7e9d 0%, #035298 100%);
  margin: 0px auto 20px;
}

.details__features-single {
  padding: 20px 10px;
  background: #ffffff;
  -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .details__features-single {
    padding: 20px;
  }
}
.details__features-single h6 {
  margin-bottom: 15px;
  font-size: 16px;
}
.details__features-single p {
  font-size: 14px;
  line-height: 24px;
}

@media (max-width: 1399px) {
  .details__features-alt {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .details__features-alt {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.details__features-alt .details__features-single {
  width: 170px;
  position: relative;
}
.details__features-alt .details__features-single::before {
  content: "\f178";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: -95px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 50px;
  color: #eaa240;
}
@media (max-width: 1399px) {
  .details__features-alt .details__features-single::before {
    display: none;
  }
}
.details__features-alt .details__features-single h6 {
  margin-bottom: 0px;
}
.details__features-alt .details__features-single:nth-last-of-type(1)::before {
  content: none;
}

.details__sidebar-single {
  padding: 30px;
  background: #ffffff;
  -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  margin-bottom: 30px;
}
.details__sidebar-single:nth-last-of-type(1) {
  margin-bottom: 0px;
}
@media (max-width: 575px) {
  .details__sidebar-single {
    padding: 30px 15px;
  }
}
.details__sidebar-single h5 {
  margin-bottom: 20px;
}
.details__sidebar-single .details__single-info {
  margin-top: 30px;
}
.details__sidebar-single .details__single-info p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
}
.details__sidebar-single .details__single-info p:nth-last-of-type(1) {
  margin-bottom: -5px;
}
@media (max-width: 1399px) {
  .details__sidebar-single .details__single-info p {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .details__sidebar-single .details__single-info p {
    font-size: 15px;
  }
}
.details__sidebar-single .details__single-info p span {
  color: #fc9100;
}
.details__sidebar-single .details__single-info p span:nth-of-type(1) {
  color: #4d4e4f;
}

.details__sidebar-single form {
  margin-top: 30px;
}
.details__sidebar-single form .button {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.details__sidebar-single .form__group {
  margin-bottom: 30px;
}
.details__sidebar-single .form__group p {
  margin-bottom: 20px;
}
.details__sidebar-single .form__group input,
.details__sidebar-single .form__group textarea {
  display: block;
  width: 100%;
  padding: 14px 30px;
  background-color: #ffffff;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
}
.details__sidebar-single .form__group input::-webkit-input-placeholder, .details__sidebar-single .form__group textarea::-webkit-input-placeholder {
  color: #d3d3d3;
}
.details__sidebar-single .form__group input::-moz-placeholder, .details__sidebar-single .form__group textarea::-moz-placeholder {
  color: #d3d3d3;
}
.details__sidebar-single .form__group input:-ms-input-placeholder, .details__sidebar-single .form__group textarea:-ms-input-placeholder {
  color: #d3d3d3;
}
.details__sidebar-single .form__group input::-ms-input-placeholder, .details__sidebar-single .form__group textarea::-ms-input-placeholder {
  color: #d3d3d3;
}
.details__sidebar-single .form__group input::placeholder,
.details__sidebar-single .form__group textarea::placeholder {
  color: #d3d3d3;
}
.details__sidebar-single .form__group .nice-select {
  width: 100%;
  height: 56px;
  line-height: 56px;
  float: unset;
  padding-left: 30px;
}
.details__sidebar-single .form__group .nice-select::after {
  width: 10px;
  height: 10px;
  margin-top: -8px;
  border-color: #4d4e4f;
  right: 20px;
}
.details__sidebar-single .form__group .nice-select .list {
  width: 100%;
}
.details__sidebar-single .form__group .nice-select .option {
  margin-top: 0px;
  height: 40px;
  width: 100%;
}
.details__sidebar-single .form__group textarea {
  max-height: 180px;
}

.categories {
  margin-top: 30px;
}
.categories li {
  margin-top: 0px;
  margin-bottom: 20px;
}
.categories li:nth-last-of-type(1) {
  margin-bottom: 0px;
}
.categories li a {
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  color: #4d4e4f;
  -webkit-transition: none;
  transition: none;
}
.categories li a:hover {
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#0a7e9d), to(#035298));
  background: linear-gradient(90deg, #0a7e9d 0%, #035298 100%);
}

.charter {
  margin-top: 40px;
}
.charter .apexcharts-legend {
  top: 50% !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: unset !important;
  right: 40px !important;
}
@media (max-width: 1199px) {
  .charter .apexcharts-legend {
    right: 0px !important;
  }
}
.charter .apexcharts-menu-icon {
  display: none;
}
.charter .apexcharts-legend-series {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px !important;
  margin-bottom: 10px !important;
  margin-top: 20px !important;
}
.charter .apexcharts-legend-series .apexcharts-legend-marker {
  width: 8px !important;
  height: 8px !important;
}
@media (max-width: 575px) {
  .charter .apexcharts-legend-series .apexcharts-legend-marker {
    width: 20px !important;
    height: 20px !important;
  }
}
.charter .apexcharts-legend-series .apexcharts-legend-text {
  font-size: 18px !important;
  font-family: "Roboto", sans-serif !important;
}
@media (max-width: 575px) {
  .charter .apexcharts-legend-series .apexcharts-legend-text {
    display: none;
  }
}

/* ==== 
 --------- (4.4) all sections styles end ---------
 ==== */
/* ==== 
 --------- (4.5) footer styles start ---------
 ==== */
.footer {
  background-image: url("../images/counter-net.png"), url("../images/counter-net-right.png"), linear-gradient(89.52deg, #0e3648 0.5%, #174155 99.71%);
  background-repeat: no-repeat;
  background-size: auto, auto, 100%;
  background-position: left top, right bottom, left top;
}
.footer .neutral-row-gutter {
  margin-bottom: -50px;
}
.footer .neutral-row-gutter .column-gutter {
  margin-bottom: 50px;
}

.footer__single h4 {
  color: #ffffff;
  margin-bottom: 28px;
}
.footer__single p {
  color: #d3d3d3;
}

.footer__single-thumb {
  margin-bottom: 30px;
}

.footer__single-content li {
  margin-bottom: 12px;
}
.footer__single-content li:nth-last-of-type(1) {
  margin-bottom: -5px;
}
.footer__single-content li a {
  font-weight: 400;
}
.footer__single-content li a:hover {
  color: #f2b705;
}
.footer__single-content .form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
.footer__single-content .form__group input {
  margin: 0px;
  width: 100%;
  padding: 17px 30px;
  border-radius: 10px 0px 0px 10px;
  border: 0px;
  outline: 0px;
}
.footer__single-content .form__group .button {
  height: 64px;
  border-radius: 0px 10px 10px 0px;
}
.footer__single-content .form__group img {
  max-width: 24px;
}
.footer__single-content .social {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__single-content .social a {
  color: #f2b705;
}
.footer__single-content .social a:hover {
  color: #ffffff;
}

.footer__single-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.footer__single-item:nth-last-of-type(1) {
  margin-bottom: 0px;
}
.footer__single-item .footer__single-item-thumb {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #1f5a75;
}
.footer__single-item .footer__single-item-content p {
  margin: 0px;
}

.copyright {
  padding: 30px 0px 25px;
  border-top: 1px solid #035298;
  margin-top: 60px;
}
.copyright p {
  color: #ffffff;
}
.copyright ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.copyright ul a {
  font-weight: 400;
}
.copyright ul a:hover {
  color: #f2b705;
}

/* ==== 
 --------- (4.5) footer styles end ---------
 ==== */
/* ==== 
 --------- (4.6) responsive styles start ---------
 ==== */
@media only screen and (max-width: 1399px) {
  .counter__single {
    gap: 15px;
    row-gap: 30px;
  }
  .work__single::before {
    content: none;
  }
  .banner {
    background-size: 20%, 30%, 100%;
  }
  .team {
    background-size: 20%, 100%;
  }
  .footer {
    background-size: 20%, 30%, 100%;
  }
}
@media only screen and (max-width: 991px) {
  .max-width-unset {
    max-width: 100%;
  }
  .banner__breadcrumb {
    margin-top: 20px;
  }
  .hero {
    padding: 200px 0px 100px;
  }
  .copyright p {
    text-align: center;
  }
  .copyright ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 15px;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
  .about {
    background-size: 50%, 100%;
  }
  .counter,
.footer {
    background-size: 30%, 30%, 100%;
  }
  .work,
.team,
.testimonial {
    background-size: 30%, 100%;
  }
  .banner {
    background-size: 40%, 40%, 100%;
  }
  .hero {
    background-size: 50%, 100%;
  }
  .client {
    background-size: 40%, 100%;
  }
  .client-nav {
    display: none;
  }
  .footer .neutral-row-gutter {
    margin-bottom: -60px;
  }
  .footer .neutral-row-gutter .column-gutter {
    margin-bottom: 60px;
  }
  .footer__single h4 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space {
    padding: 100px 0px;
  }
  .section-space-top {
    padding-top: 100px;
  }
  .section-space-bottom {
    padding-bottom: 100px;
  }
  p,
th,
td,
li,
input,
textarea,
select,
label,
blockquote,
span {
    font-size: 16px;
    line-height: 26px;
  }
  .primary-text {
    font-size: 20px;
    line-height: 30px;
  }
  h1,
.hero__title {
    font-size: 57px;
    line-height: 74.1px;
    margin-top: -14px;
  }
  h2,
.section-header__title,
.section-content__title {
    font-size: 43px;
    line-height: 55.9px;
    margin-top: -10px;
  }
  h3 {
    font-size: 32px;
    line-height: 41.6px;
    margin-top: -8px;
  }
  h4 {
    font-size: 24px;
    line-height: 31.2px;
    margin-top: -6px;
  }
  h5 {
    font-size: 20px;
    line-height: 24px;
    margin-top: -4px;
  }
  a,
button {
    font-size: 16px;
  }
  .banner {
    padding: 200px 0px 95px;
  }
  .pagination .page-link {
    width: 40px;
    height: 38px;
  }
  .section-header {
    margin-bottom: 35px;
  }
  .hero {
    padding: 180px 0px 80px;
  }
  .footer__single-content .form__group input {
    padding: 17px 20px;
  }
  .footer__single-content .form__group .button {
    height: 60px;
    padding: 15px 20px;
  }
  .faq__content .accordion-item .accordion-button {
    padding: 12px 15px;
    font-size: 16px;
    line-height: 26px;
    gap: 10px;
  }
  .faq__content .accordion-item .accordion-body {
    padding: 15px 20px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .section-space {
    padding: 80px 0px;
  }
  .section-space-top {
    padding-top: 80px;
  }
  .section-space-bottom {
    padding-bottom: 80px;
  }
  .banner {
    padding: 160px 0px 75px;
  }
  h1,
.hero__title {
    font-size: 43px;
    line-height: 55.9px;
    margin-top: -10px;
  }
  h2,
.section-header__title,
.section-content__title {
    font-size: 32px;
    line-height: 41.6px;
    margin-top: -8px;
  }
  .team__content {
    text-align: center;
  }
}
@media only screen and (max-width: 375px) {
  .hero .cta-btn .button {
    width: 100%;
  }
  .skill .skill__content {
    text-align: center;
  }
  .skill .skill__bar-single {
    width: 100%;
  }
}
/* ==== 
 --------- (4.6) responsive styles end ---------
 ==== */