/*--------------------------------------------------------------
## All Color Variable
----------------------------------------------------------------*/
:root {
  --white: #fff;
  --black: #000;
  --heading-color: #222;
  --body-color: #333;
  --accent-color: #0063f4;
  --blue-color: #002261;
  --green-color: #a8cf45;
  --gray-color: #F4F4F4;
  --gray-dark: #cccccc;
  --red-color: #de0006;
  --border-color: #dddddd;
  --heading-font: "Poppins", sans-serif;
  --body-font: "Rubik", sans-serif;
}

/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Typography
2. Preloader
3. Spacing
4. General
5. Slider
6. Video Modal
7. Header
8. Footer
9. Sidebar
10. Hero
11. Iconbox
12. Posts
13. CTA
14. Testimonial
15. Counter
16. Casestudie
17. Team
18. Pricing
19. Card
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1. Typography
----------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    border-width: 0;
}
body,
html {
  color: var(--body-color);
  font-family: var(--body-font);
  font-size: 1em;
  line-height: 1.6em;
  font-weight: 400;
  overflow-x: clip;
  padding: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.2em;
  font-family: var(--heading-font);
}

.primary_font {
  font-family: var(--heading-font);
}

.secondary_font {
  font-family: var(--body-font);
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
  line-height: 1.6em;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: var(--accent-color);
}

table {
  width: 100%;
  margin-bottom: 25px;
}
table th {
  font-weight: 600;
  color: var(--body-color);
}
table td,
table th {
  border-top: 1px solid var(--border-color);
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}
dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

pre {
  color: var(--body-color);
  border: 1px solid var(--border-color);
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: var(--body-color);
  border-radius: 5px;
}

input,
textarea {
  color: var(--heading-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/*--------------------------------------------------------------
  2. Preloader
----------------------------------------------------------------*/
.preloader {
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 99999;
  left: 0;
  top: 0;
  background-color: #fff;
  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;
}
.preloader .preloader_in {
  position: relative;
}
.preloader .preloader_in svg {
  width: 110px;
  height: 110px;
}
.preloader .wave_first svg {
  fill: rgba(46, 166, 247, 0.15);
}
.preloader .wave_second {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  -webkit-animation: spark 1.25s linear infinite;
          animation: spark 1.25s linear infinite;
}
.preloader .wave_second svg {
  fill: var(--accent-color);
}

@-webkit-keyframes spark {
  0% {
    max-width: 0;
  }
  100% {
    max-width: 100%;
  }
}

@keyframes spark {
  0% {
    max-width: 0;
  }
  100% {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
  4. General
----------------------------------------------------------------*/
.light {
  font-weight: 300;
}

.normal {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extra_bold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

.radius_3 {
  border-radius: 3px;
}

.radius_5 {
  border-radius: 5px;
}

.radius_7 {
  border-radius: 7px;
}

.radius_10 {
  border-radius: 10px;
}

.radius_15 {
  border-radius: 15px;
}

.mp_0 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.row_gap_30 {
  margin-left: -15px;
  margin-right: -15px;
}
.row_gap_30 > * {
  padding-left: 15px;
  padding-right: 15px;
}

.gap_y_24 {
  gap: 24px 0;
}

.gap_y_30 {
  gap: 30px 0;
}

.gap_y_35 {
  gap: 35px 0;
}

.gap_y_40 {
  gap: 40px 0;
}

.gap_y_45 {
  gap: 45px 0;
}

.gap_y_50 {
  gap: 50px 0;
}

.gap_y_60 {
  gap: 60px 0;
}

.gap_y_65 {
  gap: 65px 0;
}

.gap_y_80 {
  gap: 80px 0;
}

hr {
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid var(--border-color);
  opacity: 1;
}

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

.bg_fixed {
  background-attachment: fixed;
}
@media (max-width: 1370px) {
  .bg_fixed {
    background-attachment: initial;
  }
}

.center {
  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;
}
.left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.white_color {
  color: var(--white);
}

.primary_color {
  color: var(--heading-color);
}

.blue_color {
  color: var(--blue-color);
}
.green-color {
  color: var(--green-color);
}

.secondary_color {
  color: var(--body-color);
}

.accent_color {
  color: var(--accent-color);
}

.white_bg {
  background-color: var(--white);
}

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

.blue_bg {
  background-color: var(--blue-color);
}

.secondary_bg {
  background-color: var(--body-color);
}

.gray_bg {
  background-color: var(--gray-color);
}

.gray_bg_2 {
  background-color: #858585;
}

.accent_bg {
  background-color: var(--accent-color);
}

label {
  display: inline-block;
  margin-bottom: 7px;
}

.pb_60 {
  padding-bottom: 60px;
}

.container-fluide {
  width: 100%;
  max-width: 1920px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .container-fluide {
    padding: 0 12px;
  }
}

.btn.style_1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  font-size: 17px;
  font-weight: 500;
  padding: 11px 28px;
  line-height: 1.6em;
  gap: 8px;
  line-height: 1.6em;
  border-radius: 1.6em;
}
.btn.style_1 i {
  font-size: 15px;
}
.btn.style_1.color_1 {
  background-color: var(--blue-color);
  color: #fff;
}
.btn.style_1.color_1:hover {
  background-color: var(--accent-color);
}
.btn.style_1.color_2 {
  background-color: var(--bs-blue);
  color: #fff;
}
.btn.style_1.color_2:hover {
  background-color: var(--blue-color);
}
.btn.style_1.color_3 {
  background-color: #fff;
  color: var(--blue-color);
}
.btn.style_1.color_3:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.player_btn {
  position: relative;
  z-index: 10;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  padding: 0 0 0 3px;
  color: #fff;
}
.player_btn:before, .player_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 50%;
}
.player_btn:before {
  z-index: 0;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}
.player_btn:after {
  z-index: 1;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}
.player_btn span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 15px solid currentColor;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.spinner_img {
  -webkit-animation: spinAnimaiton 6s linear infinite;
          animation: spinAnimaiton 6s linear infinite;
}

.solution_content_wrapper.type_1 {
  padding: 35px 30px 44px;
}
@media (max-width: 575px) {
  .solution_content_wrapper.type_1 {
    padding: 35px 15px 45px;
  }
}
@media (min-width: 1400px) {
  .solution_content_wrapper {
    padding-right: 76px;
  }
}
.solution_content_wrapper .section_heading_left {
  margin-bottom: 24px;
}
.solution_content_wrapper .section_heading_right {
  margin-bottom: 5px;
}
.solution_content_wrapper .service_heading {
  font-size: 22px;
  margin-bottom: 25px;
}

.service_details .service_heading {
  font-size: 22px;
  margin-bottom: 27px;
}
.service_details .service_subtitle {
  margin-bottom: 20px;
}
.service_details .about_iconbox {
  margin-top: 0;
  border-top: 0;
  padding-top: 30px;
}
.service_details .about_iconbox::before {
  display: none;
}

.solution_thumbnail {
  margin-right: -50px;
}
@media (max-width: 1399px) {
  .solution_thumbnail {
    margin-right: 0;
  }
}
.solution_thumbnail img {
  width: 100%;
}

.service_details_thumbnail {
  width: 100%;
  height: 100%;
  max-height: 448px;
}
.service_details_thumbnail img {
  height: 100%;
  width: 100%;
}

.solution_links.style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
.solution_links.style_2 li {
  padding: 7px 10px;
  border: 1px solid var(--border-color);
  border-radius: 35px;
  background-color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.solution_links.style_2 li:hover {
  background-color: var(--blue-color);
}
.solution_links.style_2 li:hover a {
  color: var(--white);
}
.solution_links.style_2 li:hover .tab_link_icon_left {
  background-color: var(--accent-color);
}
.solution_links.style_2 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.solution_links.style_2 .tab_link_icon_left {
  width: 30px;
  height: 30px;
  background-color: var(--blue-color);
  color: var(--white);
  border-radius: 50%;
  padding: 5px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.solution_links.style_1 a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 450px;
  background: transparent;
  padding-right: 10px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.solution_links.style_1 .tab_link_icon_left {
  width: 45px;
  height: 45px;
  background-color: var(--blue-color);
  border-radius: 50%;
  padding: 5px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.solution_links.style_1 .tab_link_icon_left img {
  width: 22px;
  height: 22px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.solution_links.style_1 .tab_link_icon_right {
  width: 30px;
  height: 30px;
  background-color: var(--white);
  color: var(--accent-color);
  border-radius: 50%;
  margin-left: auto;
  font-size: 16px;
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.solution_links.style_1 li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}
.solution_links.style_1 li:hover a {
  background: linear-gradient(142deg, #002261 -8.12%, #2a96e6 108.12%);
  color: var(--white);
}
.solution_links.style_1 li:hover .tab_link_icon_left {
  background-color: var(--accent-color);
}
.solution_links.style_1 li:hover .tab_link_icon_right {
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.process.style_1 {
  text-align: center;
}
.process.style_1 .btn.style_1 {
  position: relative;
  z-index: 1;
  margin: 50px auto 0;
}

.process_bg {
  width: 100%;
  height: 45%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
}
.process_bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--blue-color);
  opacity: 0.85;
  position: absolute;
  top: 0;
  left: 0;
}

.contact_thumbnail {
  position: relative;
  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;
}
.contact_thumbnail.pl_40 {
  padding-left: 40px;
}
@media (max-width: 991px) {
  .contact_thumbnail.pl_40 {
    padding-left: 0;
  }
}
.contact_thumbnail.pr_40 {
  padding-right: 40px;
}
@media (max-width: 991px) {
  .contact_thumbnail.pr_40 {
    padding-right: 0;
  }
}
.contact_thumbnail.pr_40 .teeth_shape {
  right: 50px;
  left: auto;
}
.contact_thumbnail .teeth_shape {
  position: absolute;
  top: 40px;
  left: 50px;
}
@media (max-width: 575px) {
  .contact_thumbnail .teeth_shape {
    display: none;
  }
}
.contact_thumbnail .contact_img {
  position: relative;
  z-index: 1;
}
.contact_thumbnail .contact_bg_shape {
  width: 100%;
  height: 40%;
  background-color: #d8e6f3;
  border-top: 5px solid var(--blue-color);
  padding: 40px 0 15px;
  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;
  gap: 40px;
  margin-top: -190px;
}
@media (max-width: 991px) {
  .contact_thumbnail .contact_bg_shape {
    margin-top: 0;
  }
}
.contact_thumbnail .white_bg_shape {
  width: 100%;
  max-width: 400px;
  height: 190px;
  background-color: var(--white);
  margin-top: -45px;
}
@media (max-width: 991px) {
  .contact_thumbnail .white_bg_shape {
    display: none;
  }
}
.contact_thumbnail .iconbox.style_4 {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 0;
  padding-top: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact_thumbnail .iconbox.style_4:hover {
  background-color: initial;
}
.contact_thumbnail .iconbox.style_4:hover .iconbox_icon {
  background-color: var(--blue-color);
}
.contact_thumbnail .iconbox.style_4:hover .iconbox_title,
.contact_thumbnail .iconbox.style_4:hover .iconbox_subtitle {
  color: initial;
}

.contact_form .btn.style_1 {
  border: none;
  margin-top: 10px;
}

.form_field {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  outline: none;
  background-color: #f0f4f6;
  resize: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form_field:focus {
  border-color: var(--accent-color);
}

.appointment_form_wrapper {
  width: 100%;
  max-width: 970px;
  background-color: #f2f4f9;
  border-radius: 40px;
  padding: 90px 70px 100px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .appointment_form_wrapper {
    padding: 40px 30px 50px;
    border-radius: 10px;
  }
}
@media (max-width: 575px) {
  .appointment_form_wrapper {
    padding: 0;
    background-color: transparent;
  }
}

.appointment_form .form_field {
  background-color: var(--white);
  border-radius: 0;
}
.appointment_form select {
  padding: 12.3px 20px;
  font-size: 16px;
  line-height: 1.6em;
  font-weight: normal;
  color: var(--body-color);
}
.appointment_form .btn.style_1 {
  width: 100%;
  border: 0;
  border-radius: 0;
  background-color: var(--blue-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.appointment_form .btn.style_1:hover {
  background-color: var(--accent-color);
}

.location_map {
  width: 100%;
  height: 460px;
  margin-bottom: -1px;
}
.location_map iframe {
  width: 100%;
  height: 100%;
}

/*-----------------------------------
 Start Review 
 ------------------------------------*/
.rating_container {
  max-width: 180px;
}

.rating_percentage,
.rating {
  overflow: hidden;
}
.rating_percentage.scale_half,
.rating.scale_half {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  letter-spacing: 10px;
  width: 180px;
  margin-left: -15px;
}
.rating_percentage::before,
.rating::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
}

.rating {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 157px;
  height: 26px;
  position: relative;
  color: #ffb400;
  font-size: 22px;
  letter-spacing: 7px;
}
.rating::before {
  font-weight: 400;
}

.rating_percentage {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.rating_percentage::before {
  font-weight: 900;
}

@-webkit-keyframes spinAnimaiton {
  0% {
    -webkit-transform: rotateX(-20deg) rotateY(0deg);
            transform: rotateX(-20deg) rotateY(0deg);
  }
  75% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
            transform: rotateX(-20deg) rotateY(360deg);
  }
  100% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
            transform: rotateX(-20deg) rotateY(360deg);
  }
}

@keyframes spinAnimaiton {
  0% {
    -webkit-transform: rotateX(-20deg) rotateY(0deg);
            transform: rotateX(-20deg) rotateY(0deg);
  }
  75% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
            transform: rotateX(-20deg) rotateY(360deg);
  }
  100% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
            transform: rotateX(-20deg) rotateY(360deg);
  }
}
@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.section_heading.style_1 .section_title {
  font-size: 34px;
  margin: 0;
}
.section_heading.style_1 .section_subtitle {
  font-size: 18px;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}
.section_heading.style_1 .shape_left,
.section_heading.style_1 .shape_right {
  height: 5px;
  width: 32px;
  border-radius: 10px;
  position: relative;
  background-color: currentColor;
}
.section_heading.style_1 .shape_left::before,
.section_heading.style_1 .shape_right::before {
  content: "";
  position: absolute;
  height: 15px;
  width: 5px;
  border-radius: 10px;
  background-color: currentColor;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.section_heading.style_1 .shape_right::before {
  left: initial;
  right: 0;
}
.section_heading.style_1.type_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .section_heading.style_1.type_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
    padding: 0 30px;
  }
}
.section_heading.style_1.type_1 .section_heading_right {
  width: 40%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media (max-width: 1400px) {
  .section_heading.style_1.type_1 .section_heading_right {
    width: 45%;
  }
}
@media (max-width: 991px) {
  .section_heading.style_1.type_1 .section_heading_right {
    width: 100%;
  }
}
.section_heading.style_1.type_1 .section_heading_left {
  width: 40%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media (max-width: 1400px) {
  .section_heading.style_1.type_1 .section_heading_left {
    width: 45%;
  }
}
@media (max-width: 1199px) {
  .section_heading.style_1.type_1 .section_heading_left {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .section_heading.style_1.type_1 .section_heading_left {
    width: 100%;
  }
}

.about.style_1 .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
    .about.style_1 .about_content {
      padding: 0 30px;
    }
}
.about.style_1 .section_img {
  position: absolute;
  right: 3%;
  bottom: 6%;
  width: 12%;
}
@media (max-width: 1600px) {
  .about.style_1 .section_img {
    right: 12px;
  }
}
@media (max-width: 1400px) {
  .about.style_1 .section_img {
    display: none;
  }
}
.about.style_1 .about_thumb {
  margin-right: 36px;
  position: relative;
  padding-bottom: 200px;
}
@media (max-width: 991px) {
  .about.style_1 .about_thumb {
    margin-right: 0;
  }
}
.about.style_1 .about_thumb_1 {
  padding-right: 26%;
}
.about.style_1 .about_thumb_1 img {
  position: relative;
  z-index: 2;
}
.about.style_1 .about_thumb_2 {
  padding-left: 18%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.about.style_1 .about_thumb_2 img {
  border-top: 10px solid #fff;
  border-left: 10px solid #fff;
}
.about.style_1 .about_thumb_shape_2 {
  position: absolute;
  left: 7%;
  bottom: 32px;
}
.about.style_1 .section_heading.style_1 {
  margin-bottom: 24px;
}
.about.style_1 .about_text {
  max-width: 490px;
  margin-bottom: 30px;
}
.about.style_1 .btn.style_1 {
  margin-top: 50px;
}
.about.style_1 .experience_box {
  height: 200px;
  width: 200px;
  border: 10px solid #fff;
  background-color: var(--blue-color);
  border-radius: 50%;
  position: absolute;
  bottom: 25%;
  left: 54%;
  z-index: 5;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 10px;
}
.about.style_1 .experience_box_number {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0px;
  line-height: 1.2em;
}
.about.style_1 .experience_box_title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}
.about.style_1.type_1 .iconbox_1_wrap {
  max-width: 490px;
}
.about.style_1.type_1 .about_thumb {
  margin-left: -80px;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .about.style_1.type_1 .about_thumb {
    margin-left: 0;
  }
}
.about.style_1.type_1 .experience_box {
  bottom: 0;
  left: 44%;
}
@media (max-width: 991px) {
  .about.style_1.type_1 .experience_box {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.about.style_1.type_1 .iconbox.style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 480px) {
  .about.style_1.type_1 .iconbox.style_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
.about.style_1.type_1 .iconbox.style_1:not(:last-child) {
  margin-bottom: 30px;
}
.about.style_1.type_1 .iconbox.style_1:nth-child(even) .iconbox_head {
  padding-right: 0px;
  padding-left: 30px;
}
@media (max-width: 480px) {
  .about.style_1.type_1 .iconbox.style_1:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.about.style_1.type_1 .iconbox.style_1 .iconbox_head {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  padding-right: 30px;
}
@media (max-width: 480px) {
  .about.style_1.type_1 .iconbox.style_1 .iconbox_head {
    padding-left: 0 !important;
    padding-right: 0;
  }
}
.about.style_1.type_1 .iconbox.style_1 .iconbox_img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  max-width: 200px;
}
.about.style_1.type_1 .about_iconbox {
  border: none;
  padding: 0;
}
.about.style_1.type_1 .about_iconbox::before {
  display: none;
}
.about.style_1.type_1 .video_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  gap: 20px;
  color: var(--heading-color);
}
.about.style_1.type_1 .video_open:hover .play_btn_text {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}
.about.style_1.type_1 .play_btn_text {
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
  transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}
.about.style_1.type_1 .btn.style_1 {
  margin: 0;
}
.about.style_1.type_1 .about_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 50px;
  margin-top: 50px;
}
@media (max-width: 450px) {
  .about.style_1.type_1 .about_btns {
    gap: 25px 25px;
  }
}
.about.style_1.type_1 .section_img {
  right: 3%;
  bottom: 22%;
}
.about.style_1.type_1 .section_img img {
  -webkit-animation: spinAnimaiton 6s linear infinite;
          animation: spinAnimaiton 6s linear infinite;
}
.about.style_1.type_2 .experience_box {
  position: initial;
}
.about.style_1.type_2 .about_thumb {
  margin: 0 0 0 -125px;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .about.style_1.type_2 .about_thumb {
    margin-left: 0;
  }
}
.about.style_1.type_2 .experience_box {
  border-radius: 15px;
  border: none;
  position: relative;
  left: 0;
  bottom: 0;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.about.style_1.type_2 .experience_box::before, .about.style_1.type_2 .experience_box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: inherit;
}
.about.style_1.type_2 .experience_box::before {
  height: calc(100% - 20px);
  width: calc(100% - 20px);
  background-color: #fff;
}
.about.style_1.type_2 .experience_box::after {
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  z-index: 2;
  border: 1px dashed var(--accent-color);
}
.about.style_1.type_2 .experience_box_in {
  position: relative;
  z-index: 2;
}
.about.style_1.type_2 .experience_box_number,
.about.style_1.type_2 .experience_box_title {
  color: var(--blue-color);
}
.about.style_1.type_2 .about_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  margin-bottom: 45px;
}
@media (max-width: 470px) {
  .about.style_1.type_2 .about_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about.style_1.type_2 .iconbox_1_list li .iconbox.style_1 .iconbox_head {
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.about.style_1.type_2 .iconbox_1_list li:last-child .iconbox.style_1 .iconbox_head {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.about.style_1.type_2 .about_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 75px;
  margin-top: 50px;
}
@media (max-width: 470p) {
  .about.style_1.type_2 .about_btns {
    gap: 20px 30px;
  }
}
.about.style_1.type_2 .player_btn {
  width: 50px;
  height: 50px;
}
.about.style_1.type_2 .video_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: var(--blue-color);
  font-size: 17px;
  font-weight: 500;
}
.about.style_1.type_2 .video_open:hover .play_btn_text::before {
  width: 0;
}
.about.style_1.type_2 .play_btn_text {
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.about.style_1.type_2 .play_btn_text::before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 2px;
  right: 0;
  background-color: currentColor;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.about.style_1.type_2 .section_img {
  right: 20px;
  bottom: 10%;
}

.about_iconbox {
  border-top: 1px solid var(--border-color);
  margin-top: 30px;
  padding-top: 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.about_iconbox::before {
  content: "";
  height: 1px;
  width: 47px;
  background-color: var(--accent-color);
  position: absolute;
  top: -1px;
  left: 0;
}
.about_iconbox .about_iconbox_icon {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: var(--blue-color);
  color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-top: 6px;
}
.about_iconbox .about_iconbox_subtitle {
  max-width: 450px;
  margin-bottom: 0;
}
.about_iconbox .about_iconbox_subtitle a {
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: underline;
}
.about_iconbox .about_iconbox_subtitle a:hover {
  text-decoration: none;
}

.progress_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 490px;
  font-weight: 500;
  margin-bottom: 5px;
}

.progress {
  height: 7px;
  border: 1px solid var(--accent-color);
  border-radius: 15px;
  padding: 1px;
  max-width: 490px;
}
.progress .progress_in {
  height: 100%;
  border-radius: inherit;
  background-color: var(--accent-color);
}

.social_btns.style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  font-size: 1rem;
}
.social_btns.style_1 a {
  /*! background-color: #475f8d; */
  /*! height: 30px; */
  /*! width: 30px; */
  /*! color: #fff; */
  /*! border-radius: 50%; */
}
.social_btns.style_1 a:hover {
  /*! background-color: #fff; */
  /*! color: var(--accent-color); */
}

.brand.style_1 {
  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 transparent;
  padding: 16px 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.brand.style_1 img {
  -webkit-filter: brightness(0) invert(0.6);
          filter: brightness(0) invert(0.6);
}
.brand.style_1:hover {
  border-color: var(--border-color);
}
.brand.style_1:hover img {
  -webkit-filter: brightness(1) invert(0);
          filter: brightness(1) invert(0);
}

.service_wrapper {
  overflow: hidden;
}

.service_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: calc(100% + 2px);
  margin-bottom: -1px;
}
@media (max-width: 767px) {
  .service_list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.mp0 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list.style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.list.style_1 li {
  padding-left: 40px;
  position: relative;
}
.list.style_1 li i {
  position: absolute;
  left: 0;
  top: 6px;
  -webkit-filter: brightness(0) invert(0);
          filter: brightness(0) invert(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.list.style_1 li:hover i {
  -webkit-filter: initial;
          filter: initial;
}

.list.style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.list.style_2 li {
  padding-left: 28px;
  position: relative;
}
.list.style_2 li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--accent-color);
  font-size: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.list.style_2 li:hover i {
  color: var(--blue-color);
}

.video_area {
  background-color: var(--white);
  position: relative;
}
.video_area::after {
  content: "";
  width: 100%;
  height: 220px;
  background-color: var(--blue-color);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 991px) {
  .video_area::after {
    display: none;
  }
}
.video_area .video_wrapper {
  position: relative;
  z-index: 1;
  background-color: var(--white);
  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;
  text-align: center;
}
.video_area .video_open {
  margin-bottom: 30px;
}
.video_area .video_title {
  margin-bottom: 12px;
}
.video_area .video_title .accent_color {
  display: inline-block;
  padding: 5px 10px;
  border: 2px solid var(--accent-color);
  border-radius: 5px;
  position: relative;
}
@media (max-width: 991px) {
  .video_area .video_title .accent_color {
    padding: 0;
    border: 0;
  }
}
.video_area .video_title .accent_color::after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url("../img/icons/arrow_icon.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -36px;
  right: -36px;
}
@media (max-width: 991px) {
  .video_area .video_title .accent_color::after {
    display: none;
  }
}
.video_area .video_subtitle {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .video_area .video_subtitle br {
    display: none;
  }
}
.video_area .hero_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.video_area .cta_shape {
  z-index: 2;
}
@media (min-width: 1700px) {
  .video_area .cta_shape {
    bottom: -35px;
    right: 3%;
  }
}
@media (min-width: 1500px) {
  .video_area .cta_shape {
    bottom: -35px;
    right: 1%;
  }
}
@media (max-width: 1499px) {
  .video_area .cta_shape {
    display: none;
  }
}

.project_grid.style_1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 575px) {
  .project_grid.style_1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1199px) {
  .project_grid.style_1 .project_item {
    grid-column: auto/span 2;
  }
}
@media (max-width: 575px) {
  .project_grid.style_1 .project_item {
    grid-column: auto/span 4;
  }
}
.project_grid.style_1 .project_item:nth-child(1) {
  grid-column: auto/span 2;
}
@media (max-width: 767px) {
  .project_grid.style_1 .project_item:nth-child(1) {
    grid-column: auto/span 4;
  }
}
.project_grid.style_1 .project_item:nth-child(2) {
  grid-column: auto/span 2;
}
@media (max-width: 767px) {
  .project_grid.style_1 .project_item:nth-child(2) {
    grid-column: auto/span 4;
  }
}

.project_grid.style_2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .project_grid.style_2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.project_grid.style_2 .project_item {
  grid-column: auto/span 2;
}
@media (max-width: 991px) {
  .project_grid.style_2 .project_item {
    grid-column: auto/span 3;
  }
}
.project_grid.style_2 .project_item:nth-child(4) {
  grid-column: auto/span 3;
}
.project_grid.style_2 .project_item:nth-child(5) {
  grid-column: auto/span 3;
}

@-webkit-keyframes thermometer-animation {
  50% {
    height: 100%;
  }
}

@keyframes thermometer-animation {
  50% {
    height: 100%;
  }
}
.video_open.style_2 {
  position: relative;
}
.video_open.style_2::before {
  content: "";
  position: absolute;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background-color: var(--blue-color);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.video_open.style_2::after {
  content: "";
  position: absolute;
  height: 59px;
  width: 59px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--blue-color);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.video_open.style_2 .player_btn {
  width: 75px;
  height: 75px;
}
.video_open.style_2 .player_btn::before, .video_open.style_2 .player_btn::after {
  background-color: transparent;
  border: 1px solid var(--blue-color);
}
.code_input {
  width: 135px;
  border-color: transparent;
  margin-top: 20px;
  font-style: italic;
}

.page_heading {
  min-height: 210px;
  padding: 100px 0 50px;
}
@media (max-width: 991px) {
  .page_heading {
    min-height: 220px;
  }
}
.page_heading .page_title {
  font-size: 66px;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .page_heading .page_title {
    font-size: 48px;
  }
}

.error_content {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  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;
  text-align: center;
}
.error_content .error_thumbnail {
  width: 100%;
  margin-bottom: 48px;
}
.error_content .error_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.error_content .error_heading {
  font-size: 30px;
  margin-bottom: 15px;
}
.error_content .error_subtitle {
  margin-bottom: 26px;
}
.error_content .btn.style_1 {
  border-radius: 5px;
}

.tab {
  display: block;
}
.tab.active {
  display: none;
}

.tab_links.style_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 17px;
  font-weight: 500;
  gap: 10px 10px;
  margin-top: 25px;
  color: var(--heading-color);
}
.tab_links.style_3 li.active a {
  color: #fff;
  background-color: var(--accent-color);
}
.tab_links.style_3 li a {
  padding: 4px 12px;
}

.scrollup {
  position: fixed;
  bottom: -60px;
  right: 25px;
  padding: 14px;
  height: 45px;
  width: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 10;
  background-color: #fff;
  color: var(--accent-color);
  -webkit-box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.scrollup:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

.scrollup.scrollup_show {
  bottom: 30px;
}

/*--------------------------------------------------------------
  5. Slider
----------------------------------------------------------------*/
.slider {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  margin: 10px auto 0 auto;
}
@media screen and (max-width: 1199px) {
  .slider {
    margin: 10px auto 0 auto;
  }
}

.slick-arrow {
  cursor: pointer;
}

.draggable {
  /*! cursor: url(../img/drag.png) 16 9, ew-resize !important; */
}

.slick-slide > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.remove_overflow .slick-list {
  overflow: visible;
}
.remove_overflow .slick-slide {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.remove_overflow .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}

.slider_gap_24 .slick-slide {
  padding-left: 12px;
  padding-right: 12px;
}
.slider_gap_24 .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.dental_slider_wrapper {
  width: 100%;
  max-width: 712px;
  border: 7px solid var(--white);
  padding: 60px;
  margin-left: auto;
}
@media (max-width: 575px) {
  .dental_slider_wrapper {
    padding: 60px 12px;
  }
}
.dental_slider_wrapper .slider_shape {
  right: 60px;
  bottom: 60px;
  z-index: 3;
}

.slider_arrows.style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.slider_arrows.style_1 .left_arrow,
.slider_arrows.style_1 .right_arrow {
  height: 40px;
  width: 40px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.slider_arrows.style_1 .left_arrow:hover,
.slider_arrows.style_1 .right_arrow:hover {
  background-color: var(--heading-color);
}

.pagination.style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination.style_1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 65px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 15px;
}
@media (max-width: 991px) {
  .pagination.style_1 ul {
    margin-top: 40px;
  }
}
.pagination.style_1 li {
  height: 14px;
  width: 14px;
  background-color: transparent;
  border: 2px solid var(--heading-color);
  border-radius: 3px;
  margin: 0;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination.style_1 li::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 4px;
  border-radius: 2px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--heading-color);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination.style_1 li.slick-active {
  background-color: transparent;
}
.pagination.style_1 li.slick-active::before {
  opacity: 1;
}
.pagination.style_1 button {
  display: none;
}

.pagination.style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination.style_2.flex_left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.pagination.style_2.flex_left ul {
  margin-top: 30px;
}
.pagination.style_2.accent_color li.slick-active {
  background-color: var(--accent-color);
}
.pagination.style_2.white_color li {
  background-color: var(--white);
}
.pagination.style_2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 50px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 10px;
}
@media (max-width: 991px) {
  .pagination.style_2 ul {
    margin-top: 40px;
  }
}
.pagination.style_2 li {
  height: 8px;
  width: 25px;
  border-radius: 4px;
  background-color: #e0e9ef;
  margin: 0;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination.style_2 li.slick-active {
  width: 40px;
  background-color: var(--blue-color);
}
.pagination.style_2 button {
  display: none;
}

.pagination.style_3 {
  position: absolute;
  width: 410px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  bottom: 190px;
  right: 0;
}
@media (max-width: 991px) {
  .pagination.style_3 {
    bottom: 50px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-center;
    padding-right: 15px;
    width: 100%;
  }
}
@media (max-width: 350px) {
  .pagination.style_3 {
    bottom: 40px;
  }
}
.pagination.style_3 .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.pagination.style_3 li:nth-child(-n+9) button::before {
  content: "0";
}
.pagination.style_3 button {
  border: none;
  background-color: transparent;
  padding: 0;
  min-width: 35px;
  height: 35px;
  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: #fff;
  background-color: var(--blue-color);
  border-radius: 7px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination.style_3 button:hover {
  background-color: var(--accent-color);
}
.pagination.style_3 .slick-active button {
  background-color: var(--accent-color);
}

.hero_slider_nav {
  height: 318px;
  position: absolute;
  bottom: 40px;
  right: 50px;
  width: 96px;
}
@media (max-width: 1199px) {
  .hero_slider_nav {
    right: 20px;
  }
}
@media (max-width: 991px) {
  .hero_slider_nav {
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 250px;
    height: 77px;
  }
}
.hero_slider_nav .slick-slide {
  padding-top: 7px;
  padding-bottom: 7px;
}
@media (max-width: 991px) {
  .hero_slider_nav .slick-slide {
    padding: 0 5px;
  }
}
.hero_slider_nav .slick-list {
  margin-top: -7px;
  margin-bottom: -7px;
}
@media (max-width: 991px) {
  .hero_slider_nav .slick-list {
    margin: 0 -5px;
  }
}
.hero_slider_nav .hero_slider_thumb_mini {
  height: 96px;
  width: 96px;
  border: 2px solid transparent;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}
@media (max-width: 991px) {
  .hero_slider_nav .hero_slider_thumb_mini {
    height: 77px;
  }
}
.hero_slider_nav .hero_slider_thumb_mini img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
.hero_slider_nav .hero_slider_thumb_mini::before {
  content: "+";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 34, 97, 0.8705882353);
  border-radius: inherit;
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  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;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}
.hero_slider_nav .slick-current .hero_slider_thumb_mini {
  border-color: #fff;
}
.hero_slider_nav .slick-slide:hover {
  cursor: pointer;
}
.hero_slider_nav .slick-slide:hover .hero_slider_thumb_mini {
  border-color: #fff;
}
.hero_slider_nav .slick-slide:hover .hero_slider_thumb_mini::before {
  opacity: 1;
}

@media (max-width: 991px) {
  .mobile_hide {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .mobile_show {
    display: none !important;
  }
}
.slick-slide .hero.style_3 .hero_text_in {
  position: relative;
  /*! left: 100px; */
  /*! opacity: 0; */
  /*! -webkit-transition: all 0.9s ease; */
  /*! transition: all 0.9s ease; */
}
.slick-slide .hero.style_3 .hero_shape img {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.slick-slide.slick-active .hero.style_3 .hero_text_in {
  left: 0px;
  opacity: 1;
  /*! -webkit-transition-delay: 0.6s; */
          /*! transition-delay: 0.6s; */
}
.slick-slide.slick-active .hero.style_3 .hero_shape img {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

/*--------------------------------------------------------------
  6. Video Modal
----------------------------------------------------------------*/
.cs-pd-video .video_open,
.cs-sample-img .video_open {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 68px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 48px;
}

.cs-pd-video .video_open:hover,
.cs-sample-img .video_open:hover {
  color: rgba(255, 255, 255, 0.7);
}

.video_popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  left: -100%;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.video_popup.active {
  left: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  left: 0;
}

.video_popup-overlay {
  position: absolute;
  left: 0;
  right: 0;
  background: #000;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  opacity: 0;
}

.video_popup.active .video_popup-overlay {
  opacity: 0.8;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.video_popup-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 0;
  text-align: center;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  padding: 15px;
}

.video_popup.active .video_popup-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.video_popup-content:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.video_popup-container {
  display: inline-block;
  position: relative;
  text-align: left;
  background: #fff;
  max-width: 1380px;
  width: 100%;
  vertical-align: middle;
}

.video_popup-container .embed-responsive {
  width: 100%;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

.embed-responsive-16by9::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.embed-responsive iframe,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video_popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #d90d0d;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.video_popup iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.video_popup-close:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-left: -10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.video_popup-close:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-left: -10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.video_popup-close:hover:before,
.video_popup-close:hover:after {
  background: #000;
}

.video_popup-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}

.video_popup-align {
  overflow: hidden;
}

/*End Video Popup*/
/*--------------------------------------------------------------
7. Header
----------------------------------------------------------------*/
.top-header-contact {
  border-bottom: 1px solid #dddbdb;
}
.header_contact_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 25px;
  margin: 0;
}
.header_contact_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--heading-color);
}
.header_contact_list li i {
  margin-right: 5px;
}
.header_contact_list li a:hover {
  text-decoration: underline;
}
.site_header {
  position: absolute;
  z-index: 101;
  width: 100%;
  left: 0;
  top: 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.site_header.style_1 .top_header {
  border-bottom: 1px solid #ebebeb;
}
.site_header.style_1 .top_header .container-fluid {
  padding-right: 120px;
  padding-left: 120px;
}
.site_header.style_1 .main_header_in,
.site_header.style_1 .top_header_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.site_header.style_1 .main_header_in {
  height: 100px;
}
.site_header.style_1 .main_header_in .main_header_left .logo-header {
  max-height: 100%;
  /*! padding-left: 30px; */
  max-width: 100%;
}
.site_header.style_1 .main_header_in .main_header_left .ue {
  max-height: 100%;
  /*! padding-left: 30px; */
  max-width: 100%;
}
.site_header.style_1 .top_header_in {
  height: 60px;
  justify-content: flex-end;
}
.site_header.style_1 .main_header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 5px 40px;
}
@media (max-width: 1199px) {
  .site_header.style_1 .main_header_right {
    /*! padding-right: 50px; */
    gap: 5px 25px;
  }
}
@media (max-width: 575px) {
  .site_header.style_1 .main_header_right {
    gap: 5px 0px;
  }
}
.site_header.style_1.type_1 .main_header_in {
  height: 110px;
}
@media (max-width: 1199px) {
  .site_header.style_1.type_1 .main_header_in {
    height: 80px;
  }
}
.site_header.style_1.type_1 .main_header_shape {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  height: 110px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .site_header.style_1.type_1 .main_header_shape {
    height: 80px;
  }
}
.site_header.style_1.type_1 .main_header {
  z-index: 1;
}
.site_header.style_1.type_1.gescout_sticky {
  background-color: transparent;
}
.site_header.style_1.type_1.gescout_show {
  -webkit-box-shadow: initial;
          box-shadow: initial;
}
@media (min-width: 1400px) {
  .site_header.style_1.type_1 .container {
    max-width: 1500px;
  }
}

.site_header.style_1.sticky_active {
  background-color: var(--white);
  -webkit-box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
          box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
}

.site_header_full_width .container {
  max-width: 100%;
  padding: 0 100px;
}

.site_header_spacing_150 {
  height: 150px;
}

@media screen and (max-width: 1199px) {
  .site_header.style_1 .container {
    max-width: 100%;
  }
  .site_header_spacing_150 {
    height: 130px;
  }
  .main_header .container {
    max-width: 100%;
  }
  .site_header.style_1 .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .site_header.style_1 .top_header {
    display: none;
  }
  .site_header_spacing_150 {
    height: 80px;
  }
}
.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sticky_header {
  position: fixed !important;
  width: 100%;
  z-index: 999;
}
.sticky_header .top_header_in {
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gescout_sticky {
  position: fixed !important;
  top: -110px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: var(--white);
}
.gescout_sticky.site_header.style_1 .top_header_in {
  height: 0;
}
.gescout_sticky.fixed_sticky {
  top: 0;
  opacity: 1;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
          box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
}

.gescout_show {
  top: 0 !important;
  opacity: 1;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
          box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
}

.site_branding {
  display: inline-block;
}

.site_branding + .nav {
  margin-left: 80px;
}
@media (max-width: 1600px) {
  .site_branding + .nav {
    margin-left: 40px;
  }
}
@media (max-width: 1540px) {
  .site_branding + .nav {
    margin-left: 30px;
  }
}

.main_header {
  position: relative;
}
.main_header .container-fluid {
  padding-right: 120px;
  padding-left: 120px;
}

@media screen and (min-width: 1200px) {
  .main_header_center,
  .top_header_center {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .site_header.style_1 .main_header_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    width: 100%;
    max-width: calc(100% - 300px);
  }
  .site_header.style_1 .main_header_left {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    line-height: 1.6em;
    /*! font-size: 17px; */
    font-weight: 500;
  }
  .nav .nav_list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: inherit;
  }
  .nav .nav_list > li {
    margin-right: 40px;
    height: inherit;
  }
  .nav .nav_list > li:last-child {
    margin-right: 0;
  }
  .nav .nav_list > li > a {
    padding: 10px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    height: inherit;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav .nav_list > li > ul {
    left: 0;
    top: calc(100% + 15px);
    pointer-events: none;
  }
  .nav .nav_list > li:hover > ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    border-radius: 16px;
    padding: 20px 30px;
  }
  .nav .nav_list > li.menu-item-has-children > a {
    position: relative;
  }
  .nav .nav_list > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    height: 6px;
    width: 6px;
    border: 2px solid currentColor;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    border-left: 0;
    border-top: 0;
    margin-left: 6px;
    position: relative;
    top: -1px;
    border-radius: 0px 0px 2px 0px;
  }
  .nav .nav_list li:not(.mega_menu) {
    position: relative;
    /*! border: 1px solid #ccc; */
  }
  .nav .nav_list ul {
    width: 760px;
    background-color: var(--blue-color);
    position: absolute;
    border-top: 2px solid var(--accent-color);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
            box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    border-radius: 0 0 5px 5px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav .nav_list ul li:hover ul {
    top: 0px;
  }
  .nav .nav_list ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav .nav_list ul a {
    display: block;
    line-height: inherit;
    padding: 7px 20px;
    border: 1px solid #1453c6;
    border-radius: 20px;
    margin: 14px 0;
    color: var(--white);
  }
  .nav .nav_list ul a:hover {
    border: 1px solid #1453c6;
    color: var(--white);
    background-color: var(--accent-color);
  }
  .nav .nav_list ul ul {
    top: 15px;
    left: 100%;
  }
  .nav + .toolbox {
    margin-left: 40px;
  }
  .menu_toggle,
  .menu_dropdown_toggle {
    display: none;
  }
  .nav .nav_list .mega_menu {
    position: relative;
  }
  .nav .nav_list .mega_wrapper {
    width: 1296px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: fixed;
    top: 100px !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 5px 15px 10px;
    border-top: 2px solid var(--accent-color);
    border-radius: 0 0 5px 5px;
  }
  .nav .nav_list .mega_wrapper.with_thumb {
    display: grid !important;
    grid-gap: 10px;
    grid-template-columns: repeat(6, 1fr);
    padding: 20px 20px 14px 20px;
  }
  .nav .nav_list .mega_wrapper.with_thumb img {
    border: 1px solid var(--border-color);
    border-radius: 2px 20px 2px 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 8px;
  }
  .nav .nav_list .mega_wrapper.with_thumb a {
    padding: 0;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 1.6em;
    font-weight: 500;
  }
  .nav .nav_list .mega_wrapper.with_thumb a:hover img {
    border-color: #d5d4d4;
  }
  .nav .nav_list .mega_wrapper a {
    padding: 7px 10px;
  }
  .nav .nav_list .mega_wrapper > li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 10px 0;
  }
  .nav .nav_list .mega_wrapper > li ul {
    position: initial;
    border: none;
    padding: 0;
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: transparent;
  }
  .nav .nav_list .mega_wrapper > li ul a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav .nav_list .mega_menu:hover .mega_wrapper li ul {
    opacity: 1;
    visibility: visible;
  }
  .nav .nav_list > li ul:not(.mega_wrapper) .menu-item-has-children > a {
    position: relative;
  }
}
@media screen and (max-width: 1600px) {
  .main_header .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 1400px) {
  .nav .nav_list .mega_wrapper {
    width: 1116px !important;
  }
  .site_header_full_width .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .main_header .container-fluid {
    padding-right: 8px;
    padding-left: 8px;
  }
  .nav .nav_list .mega_wrapper {
    width: 100% !important;
  }
  .site_header_full_width .container {
    padding: 0 15px;
  }
  .menu_dropdown_toggle {
    position: absolute;
    height: 40px;
    width: 100%;
    top: 0;
    left: 0px;
    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;
    padding: 23px 18px;
    cursor: pointer;
    z-index: 3;
  }
  .menu_dropdown_toggle span {
    display: block;
    position: relative;
    height: 10px;
    width: 10px;
  }
  .menu_dropdown_toggle span:before, .menu_dropdown_toggle span:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: currentColor;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .menu_dropdown_toggle span:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .menu_dropdown_toggle.active span:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  .menu-item-has-children .menu-item-has-children .menu_dropdown_toggle {
    padding: 20px 18px;
  }
  .site_branding {
    position: relative;
    z-index: 101;
  }
  .nav .nav_list {
    position: fixed;
    width: 100vw;
    left: -100vw;
    background-color: #fff;
    color: var(--heading-color);
    padding: 10px 0;
    top: 0;
    overflow: auto;
    min-height: 100vh;
    line-height: 1.6em;
    margin-top: 100px;
    z-index: 100;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav .nav_list.active {
    left: 0vw;
  }
  .nav .nav_list ul {
    padding-left: 15px;
    display: none;
  }
  .nav .nav_list a {
    display: block;
    padding: 12px 15px;
    line-height: 16px;
  }
  .nav .nav_list > li > a {
    font-size: 18px;
    line-height: 22px;
  }
  .nav .menu-item-has-children {
    position: relative;
  }
  .site_header.style_1.type_1 .nav .nav_list {
    padding-top: 80px;
  }
  .animo_links > li > a .animo_text {
    text-shadow: 0 32px 0 currentColor;
  }
  .animo_links > li > a:hover span {
    -webkit-transform: translateY(-32px);
            transform: translateY(-32px);
  }
  /*Mobile Menu Button*/
  .menu_toggle {
    display: inline-block;
    width: 30px;
    height: 27px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;
    z-index: 101;
  }
  .menu_toggle span,
  .menu_toggle span:before,
  .menu_toggle span:after {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    display: block;
  }
  .menu_toggle span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .menu_toggle span:before {
    content: "";
    position: absolute;
    margin-top: -9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
            transition-delay: 0.2s, 0s;
  }
  .menu_toggle span:after {
    content: "";
    position: absolute;
    margin-top: 9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
            transition-delay: 0.2s, 0s;
  }
  .site_header.style_1 .menu_toggle {
    top: 50%;
    right: 0px;
    margin-top: -13px;
  }
  .toggle_active span {
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .toggle_active span:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition-delay: 0s, 0.2s;
            transition-delay: 0s, 0.2s;
  }
  .toggle_active span:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition-delay: 0s, 0.2s;
            transition-delay: 0s, 0.2s;
  }
  .nav .nav_list a {
    position: relative;
  }
  .site_header.style_1 .main_header_in {
    height: 100px;
  }
  .site_header .current-menu-item > a:before {
    display: none;
  }
  .site_header.style_1 {
    top: 0;
  }
  .site_header.style_1 .main_header_center .site_branding {
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .has_main_nav {
    display: none;
  }
  .nav .nav_list img {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .site_header .container {
    max-width: 100%;
  }
  .site_header.style_1 .action_box > *:not(:last-child) {
    margin-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .site_header .btn.style_1 {
    display: none;
  }
}
/*--------------------------------------------------------------
  8. Footer
----------------------------------------------------------------*/
.footer {
  padding-top: 1px;
  margin-top: 25px;
  border-top: 1px solid #ddd;
  background-color: var(--gray-color);
}
.footer .social_btns.style_1 {
  margin-top: 50px;
}
.footer .social_btns.style_1 a {
  /*! height: 40px; */
  /*! width: 40px; */
  /*! background-color: #54b3f4; */
  /*! -webkit-box-shadow: 0px 0px 57px rgba(0, 0, 0, 0.05); */
          /*! box-shadow: 0px 0px 57px rgba(0, 0, 0, 0.05); */
  /*! font-size: 16px; */
}
.footer .social_btns.style_1 a:hover {
  text-decoration: underline;
}

.footer_highlight_col {
  padding: 60px 35px;
  margin-top: -26px;
  border-radius: 5px 5px 0 0;
}
@media (max-width: 1199px) {
  .footer_highlight_col {
    padding: 50px 15px;
  }
}

.footer_logo {
  margin-bottom: 25px;
}

.footer_contact li {
  position: relative;
  padding-left: 25px;
}
.footer_contact li:not(:last-child) {
  margin-bottom: 10px;
}
.footer_contact li i {
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  text-align: center;
}

.footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 25px;
}
.footer_menu a {
  color: var(--body-color);
}
.footer_menu a:hover {
  text-decoration: underline;
}

.footer_bottom_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid #ddd;
}
@media (max-width: 767px) {
  .footer_bottom_in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px 0;
    text-align: center;
    padding: 18px 0;
  }
  .footer_bottom_in .footer_menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer_widget_title {
  color: var(--body-color);
  font-size: 22px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer_widget_title {
    margin-bottom: 25px;
  }
}

.footer_widget_nav_list li:not(:last-child) {
  margin-bottom: 15px;
}

.footer_widget {
  padding: 35px 0;
}
@media (max-width: 1199px) {
  .footer_widget {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .footer_widget {
    padding: 0 20px;
  }
}
.footer_widget a {
  color: var(--body-color);
}
.footer_widget a:hover {
  text-decoration: underline;
}

.footer_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
@media (max-width: 1400px) {
  .footer_row {
    gap: 40px;
  }
}
@media (max-width: 1199px) {
  .footer_row {
    gap: 40px 25px;
  }
}
@media (max-width: 991px) {
  .footer_row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0px 0px;
  }
}
@media (max-width: 767px) {
  .footer_row {
    gap: 50px 0px;
    padding-bottom: 70px;
  }
}
.footer_row .footer_col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 991px) {
  .footer_row .footer_col {
    -webkit-box-flex: 0 !important;
        -ms-flex: none !important;
            flex: none !important;
    width: 30%;
  }
}
@media (max-width: 767px) {
  .footer_row .footer_col {
    width: 100%;
  }
}
.footer_row .footer_col:first-child {
  -webkit-box-flex: 1.6;
      -ms-flex: 1.6;
          flex: 1.6;
}
@media (max-width: 991px) {
  .footer_row .footer_col:first-child {
    width: 100%;
  }
}
.footer_row .footer_col:last-child {
  -webkit-box-flex: 1.4;
      -ms-flex: 1.4;
          flex: 1.4;
}
@media (max-width: 991px) {
  .footer_row .footer_col:last-child {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .footer_row .footer_col:last-child {
    width: 100%;
  }
}

.recent_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.recent_post .recent_post_thumb {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 85px;
  height: 85px;
  overflow: hidden;
  border-radius: 50%;
}
.recent_post .recent_post_thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recent_post .recent_post_title {
  font-size: 17px;
  color: #fff;
  margin: 0;
  font-weight: 600;
  line-height: 1.4em;
}
.recent_post p {
  font-size: 14px;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.65);
}

.recent_post_list li:not(:last-child) {
  margin-bottom: 20px;
}

.service_footer {
  max-width: 460px;
  margin: 50px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.service_footer .service_footer_icon {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.service_footer .service_footer_text {
  font-size: 18px;
  color: var(--heading-color);
  text-align: center;
}
@media (max-width: 767px) {
  .service_footer .service_footer_text {
    text-align: left;
  }
  .service_footer .service_footer_text br {
    display: none;
  }
}
.service_footer a {
  color: var(--accent-color);
  display: inline-block;
}
.service_footer a {
  margin-left: 7px;
  line-height: 28px;
}
.service_footer a span {
  display: inline-block;
  margin-left: 5px;
}
.service_footer a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
  9. Sidebar
----------------------------------------------------------------*/
.sidebar.style_1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  background-color: var(--bs-gray-100);
  padding: 20px 0;
}
@media (max-width: 991px) {
  .sidebar.style_1 {
    gap: 30px;
  }
}

.sidebar_widget {
  /*! border: 1px solid var(--border-color); */
  padding: 5px 30px 40px;
  /*! background: var(--bs-gray-100); */
}
@media (max-width: 1199px) {
  .sidebar_widget {
    padding: 30px 15px;
  }
}
.sidebar-blue {
  background-color: var(--accent-color);
  color: var(--white);
  padding-top: 30px;
  border-bottom: 20px solid #fff;
}
.sidebar-blue h3 {
  color: var(--white) !important;
}
.sidebar-blue h4 {
  color: var(--white) !important;
}

.sidebar_widget h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--bs-gray-600);
  /*! padding-top: 30px; */
}
.sidebar_widget h3::after {
  content: '';
  display: block;
  width: 90px;
  margin-top: 9px;
  border-bottom: 4px solid var(--bs-gray-300);
}
.post_title {
  color: var(--heading-color) !important;;
  font-size: 22px;
  margin-bottom: 10px !important;;
  font-weight: 600 !important;;
  line-height: 1.4em;
  padding-top: 10px !important;
}
.post_title::after {
  content: none !important;
}
.sidebar_widget h4 {
  font-size: 18px;
  margin-bottom: 1px;
  font-weight: 600;
}
.post_meta {
  padding-top: 10px;
}
.sidebar_widget.service {
  border: none;
}
.sidebar_widget .sidebar_title {
  font-size: 22px;
  /*! text-decoration: underline; */
  margin-bottom: 24px;
}
.sidebar_widget .sidebar_title::after {
  content: '';
  display: block;
  width: 25%;
  margin-top: 9px;
  border-bottom: 4px solid var(--gray-dark);
}
.sidebar_widget .categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.sidebar_widget .categories li {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.sidebar_widget .categories li.current a {
  color: var(--accent-color);
}
.sidebar_widget .categories li:first-child {
  margin-bottom: 1px;
}
.sidebar_widget .categories a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.sidebar_widget .categories a:hover {
  text-decoration: underline;
}
.sidebar_widget .tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sidebar_widget .tag_list .tag_link {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 20px;
  border: 1px solid var(--border-color);
  font-size: 17px;
  font-weight: 400;
  color: var(--body-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sidebar_widget .tag_list .tag_link:hover {
  background-color: var(--blue-color);
  color: var(--white);
  border-color: var(--blue-color);
}

/*--------------------------------------------------------------
  10. Hero
----------------------------------------------------------------*/
.hero.style_1 {
  height: 810px;
}
@media (max-width: 991px) {
  .hero.style_1 {
    height: initial;
    padding: 80px 0 150px 0;
  }
}
.hero.style_1 .hero_title {
  font-size: 66px;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .hero.style_1 .hero_title {
    font-size: 48px;
  }
}
.hero.style_1 .hero_title span {
  color: var(--accent-color);
  display: inline-block;
  position: relative;
}
.hero.style_1 .hero_title span::before {
  content: "";
  position: absolute;
  height: 6px;
  width: 95%;
  left: 0;
  bottom: 5px;
  background-color: var(--accent-color);
}
.hero.style_1 .hero_subtitle {
  font-size: 19px;
  max-width: 600px;
  margin-bottom: 25px;
}
.hero.style_1 .hero_info {
  border-left: 5px solid var(--blue-color);
  position: relative;
  padding: 4px 0px 4px 18px;
  margin-bottom: 35px;
}
.hero.style_1 .hero_info::before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: var(--blue-color);
  left: -4px;
  top: 50%;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 0 0 0 5px;
}
.hero.style_1 .hero_info h3 {
  font-size: 24px;
  color: var(--blue-color);
  margin-bottom: 4px;
}
.hero.style_1 .hero_info p {
  margin: 0;
  color: var(--blue-color);
}
.hero.style_1 .hero_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.hero.style_1 .hero_text {
  background-color: #fff;
  max-width: 825px;
  width: 100%;
  padding: 60px 70px 70px 70px;
  border-radius: 50px;
  position: relative;
}
@media (max-width: 991px) {
  .hero.style_1 .hero_text {
    padding: 40px 30px 50px 30px;
  }
}
.hero.style_1 .hero_text_in {
  position: relative;
  z-index: 2;
}
.hero.style_1 .hero_shape {
  position: absolute;
  right: 75px;
  bottom: 30px;
}
@media (max-width: 575px) {
  .hero.style_1 .hero_shape {
    right: 25px;
  }
}

.hero.style_2 .hero_text,
.hero.style_3 .hero_text {
  max-width: 650px;
  position: relative;
  z-index: 11;
}
@media (max-width: 991px) {
  .hero.style_2 .hero_text,
  .hero.style_3 .hero_text {
    max-width: 550px;
    padding: 0 5px;
  }
}
.hero.style_2 .hero_title,
.hero.style_3 .hero_title {
  font-size: 66px;
  margin-bottom: 52px;
}
@media (max-width: 991px) {
  .hero.style_2 .hero_title,
  .hero.style_3 .hero_title {
    font-size: 2.2em;
  }
}
.hero.style_2 .hero_subtitle,
.hero.style_3 .hero_subtitle {
  var(--heading-color);
  font-size: 19px;
  max-width: 500px;
  margin-bottom: 28px;
  color: var(--heading-color);
}
.hero.style_2 .list.style_2,
.hero.style_3 .list.style_2 {
  font-size: 18px;
  gap: 10px;
  margin-bottom: 30px;
}
.hero.style_2 .list.style_2 li i,
.hero.style_3 .list.style_2 li i {
  top: 4px;
}
.hero.style_2 .list.style_2 li:hover i,
.hero.style_3 .list.style_2 li:hover i {
  color: var(--accent-color);
}

.hero.style_2 {
  height: 810px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .hero.style_2 {
    height: initial;
    padding-top: 80px;
    padding-bottom: 180px;
  }
}
.hero.style_2 .hero_shape {
  position: absolute;
  top: 15%;
  right: 100%;
  width: 135px;
  margin-right: 20px;
}
.hero.style_2 .hero_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 30px;
}
.hero.style_2 .player_btn {
  width: 50px;
  height: 50px;
}
.hero.style_2 .video_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}
.hero.style_2 .video_open:hover .play_btn_text {
  letter-spacing: 0.5px;
}
.hero.style_2 .play_btn_text {
  text-decoration: underline;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .hero.style_2 .play_btn_text {
    color: var(--blue-color);
  }
}
.hero.style_2 .hero_card {
  position: absolute;
  right: 0;
  height: 143px;
  width: 143px;
  border: 7px solid #fff;
  background-color: var(--accent-color);
  border-radius: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 45%;
  right: -70px;
}
@media (max-width: 1400px) {
  .hero.style_2 .hero_card {
    right: 10px;
  }
}
@media (max-width: 1199px) {
  .hero.style_2 .hero_card {
    right: 80px;
  }
}
@media (max-width: 991px) {
  .hero.style_2 .hero_card {
    display: none;
  }
}
.hero.style_2 .hero_card h4 {
  font-size: 34px;
  color: #fff;
  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: 5px;
  margin-bottom: 0;
}
.hero.style_2 .hero_card h4 span {
  font-size: 14px;
  line-height: 1.6em;
}
.hero.style_2 .hero_card p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.hero.style_3 {
  height: 800px;
  position: relative;
  padding-top: 80px;
  border-radius: 20px;
}
.hero.style_3:before{
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  border-radius: 20px;
  background: #FFF;
  background: linear-gradient(90deg, rgba(245, 245, 245, 1) 30%, rgba(245, 245, 245, 0) 80%);
}
@media (max-width: 991px) {
  .hero.style_3 {
    padding-bottom: 205px;
    padding-top: 220px;
    max-height: 100vh;
  }
}
@media (max-width: 350px) {
  .hero.style_3 {
    padding-bottom: 255px;
  }
}
.hero.style_3 .hero_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.hero.style_3 .hero_title span {
  display: inline-block;
  position: relative;
  color: var(--accent-color);
}
.hero.style_3 .hero_title span::after {
  content: '';
  position: absolute;
  left: 0;
  display: inline-block;
  height: 1em;
  width: 45%;
  margin-top: 25px;
  border-bottom: 8px solid var(--accent-color);
}

/*--------------------------------------------------------------
  11. Iconbox
----------------------------------------------------------------*/
.iconbox.style_1 .iconbox_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.iconbox.style_1 .powiat-herb {
  max-height: 70px;;
}
.iconbox.style_1 .iconbox_title {
  font-size: 22px;
}
.iconbox.style_1 .iconbox_subtitle {
  /*! max-width: 250px; */
}
.iconbox.style_1:hover .iconbox_icon {
  background-color: var(--blue-color);
}
.iconbox.style_1:hover .iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.iconbox.style_2 {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 50px 30px 50px;
  margin-bottom: 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.iconbox.style_2.gray_bg {
  background-color: var(--gray-color);
}
.iconbox.style_2 .iconbox_index {
  color: #fff;
  -webkit-text-stroke: 1px #ececec;
  font-size: 68px;
  font-weight: 700;
  line-height: 1.5em;
  position: relative;
  z-index: 1;
  /*! opacity: 0; */
}
.iconbox.style_2 .iconbox_icon {
  width: 120px;
  height: 120px;
  position: relative;
}
.iconbox.style_2 .iconbox_icon img {
  position: relative;
  z-index: 1;
  filter: invert(35%) sepia(84%) saturate(6357%) hue-rotate(210deg) brightness(99%) contrast(101%);
}
.iconbox.style_2 .iconbox_title {
  font-size: 26px;
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-weight: 600;
}
.iconbox.style_2:hover .iconbox_title {
  color: #fff;
  text-decoration: underline;
}
.iconbox.style_2:hover .iconbox_icon img {
  filter: none;
}
.iconbox.style_2 .iconbox_subtitle {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 18px;
}
.iconbox.style_2 .iconbox_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_2 .iconbox_overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--blue-color);
  opacity: 0.8;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_2 .iconbox_shape {
  width: 56px;
  height: 56px;
  background-color: var(--accent-color);
  border-radius: 50%;
  position: absolute;
  bottom: -56px;
  right: -56px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_2:hover .iconbox_overlay,
.iconbox.style_2:hover .iconbox_index {
  opacity: 1;
}
.iconbox.style_2:hover .iconbox_icon::before {
  background-color: var(--accent-color);
}
.iconbox.style_2:hover .iconbox_icon::after {
  background-color: var(--white);
}
.iconbox.style_2:hover .iconbox_title a,
.iconbox.style_2:hover .iconbox_subtitle {
  color: var(--white);
}
.iconbox.style_2:hover .iconbox_shape {
  bottom: -20px;
  right: -20px;
}

.iconbox.style_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  padding: 30px 0 30px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .iconbox.style_3 {
    padding: 30px 0 !important;
  }
  .iconbox.style_3:last-child {
    padding-bottom: 0 !important;
  }
}
.iconbox.style_3:nth-child(1) {
  padding-top: 0;
}
.iconbox.style_3:nth-child(2) {
  padding-top: 0;
}
.iconbox.style_3:nth-child(5) {
  padding-bottom: 0;
}
.iconbox.style_3:nth-child(6) {
  padding-bottom: 0;
}
.iconbox.style_3:nth-child(even) {
  padding-left: 50px;
  padding-right: 0;
}
@media (max-width: 767px) {
  .iconbox.style_3:nth-child(even) {
    padding-left: 0;
  }
}
.iconbox.style_3:nth-child(odd) {
  padding-right: 50px;
}
.iconbox.style_3 .iconbox_icon {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 65px;
  height: 65px;
}
.iconbox.style_3 .iconbox_icon::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_3 .iconbox_icon::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--accent-color);
  -webkit-transform: translate(-50%, -10px) rotate(45deg);
          transform: translate(-50%, -10px) rotate(45deg);
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_3 .iconbox_icon img {
  position: relative;
  z-index: 1;
  -webkit-filter: brightness(1) invert(0);
          filter: brightness(1) invert(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_3 .iconbox_title {
  font-size: 22px;
  margin-bottom: 5px;
}
.iconbox.style_3 .iconbox_subtitle {
  margin-bottom: 0;
}
.iconbox.style_3:hover .iconbox_icon::before {
  background-color: var(--blue-color);
}
.iconbox.style_3:hover .iconbox_icon::after {
  -webkit-transform: translate(-50%, 5px) rotate(45deg);
          transform: translate(-50%, 5px) rotate(45deg);
}
.iconbox.style_3:hover .iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.iconbox_4_wrap {
  position: relative;
  z-index: 10;
  margin-top: -100px;
}

.iconbox.style_4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 50px 70px;
  gap: 30px;
  background-color: #fff;
  border-bottom: 3px solid var(--blue-color);
  -webkit-box-shadow: 0px 0px 128px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 128px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1400px) {
  .iconbox.style_4 {
    padding: 40px;
  }
}
@media (max-width: 1199px) {
  .iconbox.style_4 {
    padding: 30px;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .iconbox.style_4 {
    padding: 25px;
  }
}
@media (max-width: 430px) {
  .iconbox.style_4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.iconbox.style_4 .iconbox_icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  height: 110px;
  width: 110px;
  padding: 20px;
  border-radius: 5px;
  background-color: var(--blue-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1199px) {
  .iconbox.style_4 .iconbox_icon {
    height: 90px;
    width: 90px;
  }
}
.iconbox.style_4 .iconbox_title {
  font-size: 35px;
  margin-bottom: 7px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .iconbox.style_4 .iconbox_title {
    font-size: 30px;
  }
}
.iconbox.style_4 .iconbox_subtitle {
  font-size: 17px;
  margin-bottom: 30px;
  color: var(--heading-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 430px) {
  .iconbox.style_4 .iconbox_subtitle {
    margin-bottom: 20px;
  }
}
.iconbox.style_4 .btn.style_1 {
  border-radius: 5px;
}
.iconbox.style_4:hover {
  background-color: var(--blue-color);
}
.iconbox.style_4:hover .iconbox_icon {
  background-color: var(--accent-color);
}
.iconbox.style_4:hover .btn.style_1 {
  background-color: #fff;
  color: var(--blue-color);
}
.iconbox.style_4:hover .btn.style_1:hover {
  background-color: var(--accent-color);
  color: #fff;
}
.iconbox.style_4:hover .iconbox_title,
.iconbox.style_4:hover .iconbox_subtitle {
  color: #fff;
}

.iconbox.style_5 {
  padding: 37px 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1199px) {
  .iconbox.style_5 {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .iconbox.style_5 {
    -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: start;
    gap: 10px;
  }
  .iconbox.style_5 br {
    display: none;
  }
}
@media (max-width: 575px) {
  .iconbox.style_5 {
    padding: 20px;
  }
}
.iconbox.style_5 .iconbox_icon {
  width: 53px;
  height: 53px;
  position: relative;
}
@media (max-width: 991px) {
  .iconbox.style_5 .iconbox_icon {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin-bottom: 15px;
  }
  .iconbox.style_5 .iconbox_icon img {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
.iconbox.style_5 .iconbox_icon img {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.iconbox.style_5 .iconbox_icon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--white);
  -webkit-filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
          filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_5 .iconbox_icon::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: -4px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  background-color: var(--accent-color);
  z-index: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_5 .iconbox_title {
  font-size: 22px;
}
.iconbox.style_5 .iconbox_line {
  width: 83px;
  height: 2px;
  background-color: var(--border-color);
  opacity: 0.3;
}
@media (max-width: 991px) {
  .iconbox.style_5 .iconbox_line {
    display: none;
  }
}
.iconbox.style_5 .iconbox_thumbnail {
  right: 10%;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.iconbox.style_5 .iconbox_btn {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border-radius: 50%;
  font-size: 30px;
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1199px) {
  .iconbox.style_5 .iconbox_btn {
    right: 30px;
    top: 30px;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@media (max-width: 575px) {
  .iconbox.style_5 .iconbox_btn {
    right: 20px;
    top: 20px;
  }
}
.iconbox.style_5 .iconbox_btn i {
  color: var(--accent-color);
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_5:hover {
  border-style: dashed;
  border-color: var(--accent-color);
}
.iconbox.style_5:hover .iconbox_icon:before {
  background-color: var(--accent-color);
}
.iconbox.style_5:hover .iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.iconbox.style_5:hover .iconbox_icon::after {
  background-color: var(--white);
}
.iconbox.style_5:hover .iconbox_thumbnail {
  right: 15%;
  -webkit-transform: translateY(-50%) rotate(-22deg);
          transform: translateY(-50%) rotate(-22deg);
  opacity: 1;
}
@media (max-width: 991px) {
  .iconbox.style_5:hover .iconbox_thumbnail {
    display: none;
  }
}
.iconbox.style_5:hover .iconbox_btn {
  color: var(--white);
  background-color: var(--accent-color);
}
.iconbox.style_5:hover .iconbox_btn i {
  color: var(--white);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.iconbox_wrapper {
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding-bottom: 77px;
}

.iconbox.style_6 {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  border-bottom: 1px solid rgba(221, 221, 221, 0.3);
}
@media (max-width: 575px) {
  .iconbox.style_6 {
    gap: 20px;
  }
}
.iconbox.style_6 .iconbox_icon {
  width: 70px;
  height: 70px;
  background-color: var(--white);
  border-radius: 50%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 575px) {
  .iconbox.style_6 .iconbox_icon {
    width: 60px;
    height: 60px;
  }
}
.iconbox.style_6 .iconbox_icon img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_6 .iconbox_index {
  width: 24px;
  height: 24px;
  background-color: #0365d3;
  font-size: 9px;
  font-weight: 500;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
  left: 50%;
  bottom: -10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_6 .iconbox_title {
  font-size: 22px;
  margin-bottom: 5px;
}
.iconbox.style_6:hover {
  border-color: #0365d3;
}
.iconbox.style_6:hover .iconbox_icon {
  background-color: #0365d3;
}
.iconbox.style_6:hover .iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.iconbox.style_6:hover .iconbox_index {
  background-color: var(--blue-color);
}

.iconbox.style_7 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.iconbox.style_7 .iconbox_thumbnail {
  border-radius: 10px;
  z-index: 2;
}
.iconbox.style_7 .iconbox_thumbnail img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
.iconbox.style_7 .iconbox_content {
  width: 95%;
  background-color: var(--white);
  border-radius: 0 0 10px 10px;
  position: relative;
  margin: -50px auto 0;
  padding: 70px 30px 30px;
  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;
  text-align: center;
  overflow: hidden;
}
.iconbox.style_7 .iconbox_overlay {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_7 .iconbox_icon {
  width: 53px;
  height: 53px;
  background-color: var(--white);
  border-radius: 50%;
  margin: -50px 0 32px;
  position: relative;
  z-index: 3;
}
.iconbox.style_7 .iconbox_icon img {
  position: relative;
  z-index: 1;
}
.iconbox.style_7 .iconbox_icon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 3px;
  left: 0;
  background-color: var(--blue-color);
  -webkit-filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
          filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_7 .iconbox_icon::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  background-color: var(--accent-color);
  z-index: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_7 .iconbox_title {
  font-size: 22px;
  margin-bottom: 8px;
}
.iconbox.style_7 .iconbox_subtitle {
  margin-bottom: 13px;
}
.iconbox.style_7 .iconbox_title,
.iconbox.style_7 .iconbox_subtitle,
.iconbox.style_7 .iconbox_btn {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_7 .iconbox_shape_1,
.iconbox.style_7 .iconbox_shape_2 {
  width: 40px;
  height: 40px;
  background-color: var(--blue-color);
  border-radius: 50%;
  position: absolute;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_7 .iconbox_shape_1 {
  left: -20px;
  bottom: -20px;
}
.iconbox.style_7 .iconbox_shape_2 {
  right: -20px;
  bottom: -20px;
}
.iconbox.style_7:hover .iconbox_overlay {
  opacity: 1;
}
.iconbox.style_7:hover .iconbox_icon::before {
  background-color: var(--accent-color);
}
.iconbox.style_7:hover .iconbox_icon::after {
  background-color: var(--white);
}
.iconbox.style_7:hover .iconbox_title,
.iconbox.style_7:hover .iconbox_subtitle,
.iconbox.style_7:hover .iconbox_btn {
  color: var(--white);
}
.iconbox.style_7:hover .iconbox_btn {
  color: var(--white);
}
.iconbox.style_7:hover .iconbox_btn:hover {
  color: var(--accent-color);
  letter-spacing: 0.5px;
}
.iconbox.style_7:hover .iconbox_shape_1,
.iconbox.style_7:hover .iconbox_shape_2 {
  background-color: var(--accent-color);
}

.iconbox.style_8 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 40px 20px 1px;
  background-color: #fff;
  gap: 25px;
  height: 190px;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 410px;
}
@media (max-width: 991px) {
  .iconbox.style_8 {
    max-width: calc(100% - 65px);
    height: 170px;
    gap: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 350px) {
  .iconbox.style_8 {
    max-width: calc(100% - 54px);
    height: 140px;
    gap: 12px;
  }
}
.iconbox.style_8 .iconbox_icon {
  height: 120px;
  width: 120px;
  border: 7px solid #fff;
  background-color: var(--accent-color);
  margin-left: -60px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .iconbox.style_8 .iconbox_icon {
    height: 100px;
    width: 100px;
    border-width: 4px;
    margin-left: -50px;
    padding: 18px;
  }
}
@media (max-width: 350px) {
  .iconbox.style_8 .iconbox_icon {
    height: 80px;
    width: 80px;
    margin-left: -40px;
    padding: 14px;
  }
}
.iconbox.style_8 .iconbox_title {
  font-size: 35px;
  margin-bottom: 7px;
}
@media (max-width: 991px) {
  .iconbox.style_8 .iconbox_title {
    font-size: 28px;
  }
}
@media (max-width: 400px) {
  .iconbox.style_8 .iconbox_title {
    font-size: 24px;
  }
}
.iconbox.style_8 .iconbox_subtitle {
  font-size: 20px;
  margin: 0;
  color: var(--heading-color);
}
@media (max-width: 400px) {
  .iconbox.style_8 .iconbox_subtitle {
    font-size: 18px;
  }
}

.iconbox_9_wrapper {
  padding: 30px 0;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background-color: var(--white);
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .iconbox_9_wrapper {
    padding: 30px 15px 0;
  }
}

.iconbox.style_9 {
  padding: 30px 30px 40px;
  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;
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  .iconbox.style_9 {
    padding: 30px 15px;
  }
}
@media (min-width: 1200px) {
  .iconbox.style_9 {
    padding: 30px 40px 40px;
  }
}
.iconbox.style_9.active {
  border: 1px dashed var(--border-color);
  border-radius: 10px;
}
.iconbox.style_9 .index {
  font-size: 48px;
  font-weight: 700;
  color: var(--border-color);
}
.iconbox.style_9 .iconbox_icon {
  width: 124px;
  height: 124px;
  background-color: rgb(240, 244, 246);
  padding: 10px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin-top: -12px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_9 .iconbox_icon img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_9 .iconbox_icon::after {
  content: "";
  width: 104px;
  height: 104px;
  border: 1px dashed var(--border-color);
  border-radius: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_9 .iconbox_title {
  font-size: 22px;
  margin-bottom: 8px;
}
.iconbox.style_9 .iconbox_shape {
  position: absolute;
  right: 0;
  top: 50px;
}
@media (max-width: 991px) {
  .iconbox.style_9 .iconbox_shape {
    display: none;
  }
}
.iconbox.style_9 .iconbox_shape.left {
  left: 0;
  right: auto;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.iconbox.style_9:hover .iconbox_icon {
  background-color: var(--blue-color);
}
.iconbox.style_9:hover .iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.iconbox.style_9:hover .iconbox_icon::after {
  border-color: var(--white);
}

.iconbox.style_10 {
  width: 100%;
  height: 100%;
  padding: 25px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_10 .iconbox_icon {
  font-size: 28px;
  color: var(--accent-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_10 .iconbox_title {
  font-size: 22px;
  margin-bottom: -2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_10 .iconbox_subtitle {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_10:hover {
  background-color: var(--blue-color);
}
.iconbox.style_10:hover .iconbox_icon,
.iconbox.style_10:hover .iconbox_title,
.iconbox.style_10:hover .iconbox_subtitle {
  color: var(--white);
}

.iconbox.style_11 {
  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;
  text-align: center;
}
@media (max-width: 1199px) {
  .iconbox.style_11 {
    padding: 30px 15px;
  }
}
.iconbox.style_11 .iconbox_icon {
  width: 65px;
  height: 65px;
  border-radius: 5px;
  background-color: var(--accent-color);
  margin-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_11 .iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_11 .iconbox_title {
  font-size: 22px;
  margin-bottom: 6px;
}
.iconbox.style_11 .iconbox_subtitle {
  margin-bottom: 13px;
}
.iconbox.style_11 .iconbox_btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--accent-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox.style_11:hover .iconbox_icon {
  background-color: var(--white);
}
.iconbox.style_11:hover .iconbox_icon img {
  -webkit-filter: brightness(1) invert(0);
          filter: brightness(1) invert(0);
}
.iconbox.style_11:hover .iconbox_btn {
  background-color: var(--accent-color);
  color: var(--white);
}
/*--------------------------------------------------------------
  12. Posts
----------------------------------------------------------------*/
.subpage-content {
  padding-top: 60px;
}
.post.style_1 {
  overflow: hidden;
  background: var(--bs-gray-100);
  border-radius: 20px;
}
.post.style_1 .post_thumbnail {
  display: inline-block;
  margin-bottom: -8px;
}
.post.style_1 .post_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post.style_1 .post_content {
  /*! border: 1px solid var(--border-color); */
  /*! background-color: var(--white); */
  padding: 30px 45px 30px 45px;
}
@media (max-width: 575px) {
  .post.style_1 .post_content {
    padding: 40px 20px 30px;
  }
}
.post.style_1 .post_category {
  padding: 5px 20px;
  background-color: var(--white);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  left: 30px;
  top: 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.post.style_1 .post_meta_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.post.style_1 .post_meta_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.post.style_1 .posted_by {
  width: 65px;
  height: 57px;
  padding: 10px;
  border: 2px solid var(--white);
  background-color: var(--blue-color);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  right: 30px;
  top: -30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.post.style_1 .post_title {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.4em;
}
.post.style_1 .post_title a:hover {
  text-decoration: underline;
}
.post.style_1 .post_subtitle {
  font-size: 17px;
  margin-bottom: 14px;
}
.post.style_1 .post_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 500;
}
.post.style_1 .post_shape {
  width: 120px;
  height: 100px;
  background-color: var(--accent-color);
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  right: -150px;
  bottom: -100px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}
.post.style_1 .post_shape::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  opacity: 0.3;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(-30px, -15px);
          transform: translate(-30px, -15px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.post.style_1:hover .post_shape {
  opacity: 1;
  right: -50px;
  bottom: -75px;
}
.post.style_1:hover .post_category {
  background-color: var(--accent-color);
  color: var(--white);
}
.post.style_1:hover .posted_by {
  background-color: var(--accent-color);
}


/*-------------------------------------------
 Blog Details Page Styling
----------------------------------------------*/
.post_details.style_1 p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--body-color);
}
.post_details.style_1 h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--bs-gray-600);
  padding-top: 30px;
}
.post_details.style_1 h3::after {
  content: '';
  display: block;
  width: 90px;
  margin-top: 9px;
  border-bottom: 4px solid var(--bs-gray-300);
}
.post_details.style_1 h4 {
  font-size: 20px;
  margin-bottom: 1px;
  font-weight: 600;
}
.post_details.style_1 a {
  color: var(--accent-color);
  text-decoration: underline;
}
.post_details.style_1 a[href^="tel:"] {
  color: var(--accent-color);
  text-decoration: underline;
}
.post_details.style_1 a:hover {
  text-decoration: none;
}

/* ===================================
    Galeria
====================================== */
.masonry {
  columns: 3;
  column-gap: 16px;
  display: block;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: masonry;
}
@media (max-width: 1200px) {
  .masonry {
    columns: 3;
  }
}
@media (max-width: 992px) {
  .masonry {
    columns: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .masonry {
    columns: 1;
    display: grid;
    grid-template-columns: 1fr;
  }
}
.masonry .grid2 {
  display: inline-block;
  margin-bottom: 16px;
  position: relative;
}
.masonry .grid2:before {
  /*border-radius: 5px;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);*/
}
.masonry .grid2 img {
  width: 100%;
  border-radius: 5px;
}
.masonry .grid2__title {
  font-size: 28px;
  font-weight: bold;
  margin: 0px 0px 10px 0px;
}
.masonry .grid2__author {
  font-size: 14px;
  font-weight: 300;
}
.masonry .grid2__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.masonry .grid2__body {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 30px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.masonry .grid2__tag {
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
  border-radius: 5px;
  padding: 5px 15px;
  margin-bottom: 5px;
}
/*Galeria End*/


/*--------------------------------------------------------------
  13. CTA
----------------------------------------------------------------*/
.cta.style_2 {
  max-width: 80vw;
  height: 100%;
  min-height: 400px;
  position: relative;
  margin: 70px auto 80px auto;
  border-radius: 20px;
}
@media (max-width: 500px) {
  .cta.style_2 {
    min-height: 640px;
    max-width: 95vw;
  }
}
@media (max-width: 500px) {
  .cta.style_2 .row {
    padding: 0 40px;
  }
}
@media (max-width: 380px) {
  .cta.style_2 {
    min-height: 680px;
  }
}
.cta.style_2 .cta_btn_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .cta.style_2 .cta_btn_wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.cta.style_2 .player_btn {
  width: 43px;
  height: 43px;
  color: var(--accent-color);
}
.cta.style_2 .player_btn:before, .cta.style_2 .player_btn:after {
  background-color: var(--white);
}
.cta.style_2 .play_btn_text {
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
  transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}
.cta.style_2 .play_btn_text:hover {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}
.cta.style_2 .video_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
}
.cta.style_2 .video_open:hover .play_btn_text {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}
.cta.style_2 .cta_text {
  max-width: 540px;
  position: relative;
  z-index: 2;
}
.cta.style_2 .section_title {
  margin-bottom: 12px;
}
.cta.style_2 .cta_subtitle {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 44px;
}
.cta.style_2 .btn.style_1 {
  margin-top: 1px;
}
.cta.style_2 .cta_shape {
  right: 3%;
  bottom: 8%;
}
@media (max-width: 767px) {
  .cta.style_2 .cta_shape {
    display: none;
  }
}


@-webkit-keyframes zoom-shape1 {
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

@keyframes zoom-shape1 {
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
@-webkit-keyframes zoom-shape2 {
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
@keyframes zoom-shape2 {
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
  MAP
----------------------------------------------------------------*/
.map-hospital {
  overflow-x: scroll;
}
.map-hospital-svg {
  max-width:100%;
  min-width: 700px;
  height: auto;
}
.icon-scroll {
  max-height: 30px;
  margin-top: 20px;
  vertical-align: bottom;
}
/*** Highlight ***/
.building {
  fill: #D38E75;
  opacity: 1;
}
.building:hover {
  stroke: blue;
  stroke-width: 6px;
  fill: blue;
}
.green {
  fill: #43b52b;
  opacity: 0.4;
}
.orange {
  fill: #ff6001;
  opacity: 0.4;
}
.red {
  fill: #ff2900;
  opacity: 0.4;
}

/* Tooltip */             
.description-building {
  pointer-events: none;
  position: absolute;
  font-size: 0.8rem;
  text-align: center;
  background: white;
  padding: 10px 15px;
  z-index: 999;
  line-height: 1rem;
  margin: 0 auto;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 0 0 1px #eee;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translate(-50%, -50%);
  display: none;
  -webkit-box-shadow: 3px -1px 28px 0px rgba(152, 152, 152, 1);
-moz-box-shadow: 3px -1px 28px 0px rgba(152, 152, 152, 1);
box-shadow: 3px -1px 28px 0px rgba(152, 152, 152, 1);
}
.description-building p {
  color: var(--body-color);
  font-size: 0.8rem;
  font-weight: 400;
}
.description-building .map-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
}
.description-building.active {
  display: block;
}
.description-building:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 80%;
  width: 0;
  height: 0;
  margin-left: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}
/*--------------------------------------------------------------
  FAQ
----------------------------------------------------------------*/
.faq-section {
  /*! max-width: 800px; */
  margin: 50px auto;
  padding: 20px;
}
.faq-icon {
  filter: invert(35%) sepia(84%) saturate(6357%) hue-rotate(210deg) brightness(99%) contrast(101%);
  width: 100px;
  padding-bottom: 20px;
}
.faq-title {
  font-size: 26px;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.faq-question .icon {
  transition: transform 0.3s ease;
  font-weight: bold;
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.faq-answer p {
  margin: 10px 0;
}
.faq-answer a {
  color: var(--accent-color);
  text-decoration: underline;
}
.faq-answer a:hover {
  text-decoration: none;
}
.faq-item.active .faq-answer {
  max-height: 2000px; /* enough for content */
  padding: 10px 0;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
  content: "–";
}


/*--------------------------------------------------------------
  15. Counter
----------------------------------------------------------------*/
.odometer-inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.counter_area {
  position: relative;
}
.counter_area::after {
  content: "";
  width: 100%;
  height: 50%;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
}

.counter_content {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
}
.counter_content .counter_shape {
  width: 100%;
  left: 0;
  top: -20px;
}
.counter_content .counter_shape img {
  display: inline-block;
  width: 100%;
}

.counter_1_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 40px;
  position: relative;
  z-index: 1;
  padding: 65px 20px;
}
.counter_1_wrap .counter.style_1 {
  position: relative;
  z-index: 2;
  width: 25%;
  padding: 0 45px;
  text-align: center;
}
.counter_1_wrap .counter.style_1 .counter_icon {
  width: 74px;
  height: 74px;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.counter_1_wrap .counter.style_1 .counter_icon img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  max-width: 40px;
  height: auto;
}
.counter_1_wrap .counter.style_1 .counter_nmber {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2em;
  margin-bottom: -2px;
  font-family: var(--heading-font);
}
.counter_1_wrap .counter.style_1 .counter_title {
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}
@media (min-width: 575px) {
  .counter_1_wrap .counter.style_1 {
    padding: 0 20px;
  }
}
@media (min-width: 575px) {
  .counter_1_wrap .counter.style_1:not(:nth-child(4n+0))::before {
    content: "";
    height: 57%;
    width: 1px;
    background-color: var(--border-color);
    opacity: 0.3;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
  }
}
.counter_1_wrap .counter.style_1:last-child::before {
  display: none;
}
.counter_1_wrap .counter.style_1:hover .counter_icon {
  background-color: var(--accent-color);
}
.counter_1_wrap .counter.style_1:hover .counter_icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media (max-width: 1199px) {
  .counter_1_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .counter_1_wrap .counter.style_1 {
    width: calc(50% - 25px);
  }
  .counter_1_wrap .counter.style_1:nth-child(2)::before {
    display: none;
  }
}
@media (max-width: 575px) {
  .counter_1_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .counter_1_wrap .counter.style_1 {
    width: 100%;
    margin: auto;
  }
}

.counter.style_1 {
  gap: 17px;
}
@media (max-width: 575px) {
  .counter.style_1 .counter_nmber {
    min-width: 70px;
  }
}

.counter_2_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1199px) {
  .counter_2_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .counter_2_wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.counter_2_wrap .counter.style_2 {
  position: relative;
  width: 100%;
  padding: 48px 15px 45px;
  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;
  border: 1px solid var(--border-color);
  overflow: hidden;
}
@media (min-width: 1200px) {
  .counter_2_wrap .counter.style_2:nth-child(1) {
    border-right: 0;
    border-radius: 10px 0 0 10px;
  }
  .counter_2_wrap .counter.style_2:nth-child(4) {
    border-radius: 0 10px 10px 0;
  }
  .counter_2_wrap .counter.style_2:nth-child(3) {
    border-right: 0;
    border-left: 0;
  }
}
@media (max-width: 1199px) {
  .counter_2_wrap .counter.style_2 {
    border-radius: 10px;
  }
}
.counter_2_wrap .counter.style_2::after, .counter_2_wrap .counter.style_2::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: transparent;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.counter_2_wrap .counter.style_2::after {
  top: 0px;
}
.counter_2_wrap .counter.style_2::before {
  bottom: 0px;
}
.counter_2_wrap .counter.style_2 .counter_icon {
  width: 74px;
  height: 74px;
  background-color: var(--blue-color);
  border-radius: 50%;
  margin-bottom: 16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.counter_2_wrap .counter.style_2 .counter_icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.counter_2_wrap .counter.style_2 .counter_nmber {
  font-size: 40px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2em;
  margin-bottom: -2px;
}
.counter_2_wrap .counter.style_2 .counter_title {
  font-size: 22px;
  font-weight: 500;
  color: var(--heading-color);
}
.counter_2_wrap .counter.style_2:hover .counter_icon {
  background-color: var(--accent-color);
}
.counter_2_wrap .counter.style_2:hover::after, .counter_2_wrap .counter.style_2:hover::before {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
  16. Casestudie
----------------------------------------------------------------*/
.timeline_wrapper {
  overflow-x: auto;
}

.days_row {
  min-width: 1070px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid var(--border-color);
}
.days_row .day_col {
  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;
  padding: 24px 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.days_row .day_col:not(:last-child) {
  border-right: 1px solid var(--border-color);
}
.days_row .day_col:hover {
  background-color: var(--blue-color);
  color: var(--white);
}

.content_row {
  min-width: 1070px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid var(--border-color);
  border-top: 0;
}
.content_row .content_col {
  padding: 30px 10px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  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;
  text-align: center;
  position: relative;
}
.content_row .content_col:not(:last-child) {
  border-right: 1px solid var(--border-color);
}
.content_row .content_col::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../img/schedule_bg_1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.content_row .content_col.time::after {
  display: none;
}
.content_row .content_col:hover::after {
  opacity: 1;
}
.content_row .content_col:hover .schedule_title,
.content_row .content_col:hover .schedule_time,
.content_row .content_col:hover .doctor_title {
  color: var(--white);
}
.content_row .time {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}
.content_row .schedule_wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}
.content_row .schedule_wrapper .schedule_title {
  font-size: 20px;
  margin-bottom: 2px;
}
.content_row .schedule_wrapper .schedule_time {
  font-size: 14px;
  color: var(--accent-color);
  margin-bottom: 0px;
}
.content_row .schedule_wrapper .doctor_title {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
  17. Team
----------------------------------------------------------------*/
.team.style_1 {
  width: 100%;
  max-width: 320px;
  height: 415px;
  margin: 0 auto;
  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;
  gap: 24px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1400px) {
  .team.style_1 {
    height: 360px;
  }
}
@media (max-width: 1199px) {
  .team.style_1 {
    height: 400px;
  }
}
@media (max-width: 991px) {
  .team.style_1 {
    height: 415px;
  }
}
.team.style_1 .team_thumbnail {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.team.style_1 .team_bio {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  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;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.team.style_1 .team_title a {
  font-size: 20px;
  color: var(--white);
}
.team.style_1 .team_subtitle {
  margin-bottom: 10px;
  color: var(--white);
}
.team.style_1 .social_btns.style_1 a {
  background-color: var(--white);
  color: var(--blue-color);
}
.team.style_1 .social_btns.style_1 a:hover {
  background-color: var(--accent-color);
  color: var(--white);
}
.team.style_1 .social_btns.style_1 a:hover.blue_hover {
  background-color: var(--blue-color);
}
.team.style_1 .team_shape {
  width: 330px;
  height: 270px;
  position: absolute;
  top: -250px;
  right: -240px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.team.style_1 .team_shape.blue_bg {
  width: 160px;
  height: 330px;
  top: -125px;
  left: -100px;
  -webkit-transform: rotate(-48deg);
          transform: rotate(-48deg);
}
.team.style_1:hover .team_thumbnail {
  width: 178px;
  height: 178px;
  border-radius: 50%;
  overflow: hidden;
}
.team.style_1:hover .team_bio {
  position: initial;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.team.style_1:hover .team_shape {
  top: -170px;
  right: -110px;
}
.team.style_1:hover .team_shape.blue_bg {
  top: -135px;
  left: -50px;
}

.team_bg_dark {
  width: 100%;
  height: 45%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.team_bg_dark .team_bg_white {
  width: 100%;
  max-width: 1400px;
  height: 170px;
  position: absolute;
  top: -85px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.doctors_grid.style_1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1199px) {
  .doctors_grid.style_1 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .doctors_grid.style_1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .doctors_grid.style_1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*-------------------------------------------
 Doctor Details Page Styling
----------------------------------------------*/
.doctor_details_wrapper {
  width: 100%;
  max-width: 1170px;
}
.doctor_details_wrapper .progress_bar_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 70px;
}
@media (max-width: 767px) {
  .doctor_details_wrapper .progress_bar_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.doctor_details_thumbnail {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.doctor_details_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.doctor_details_thumbnail .doctor_thumbnail_shape1,
.doctor_details_thumbnail .doctor_thumbnail_shape2 {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  opacity: 0.5;
  -webkit-animation: scale-shape 5s linear infinite;
          animation: scale-shape 5s linear infinite;
}
.doctor_details_thumbnail .doctor_thumbnail_shape1 {
  left: -70px;
  top: -100px;
  z-index: 1;
}
.doctor_details_thumbnail .doctor_thumbnail_shape2 {
  left: -100px;
  top: -40px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.doctor_details {
  width: 100%;
      padding-left: 60px;
}
@media (max-width: 991px) {
  .doctor_details {
    max-width: 100%;
  }
}
.doctor_details .doctor_info_header {
  margin-bottom: 17px;
}
.doctor_details .doctor_title {
  font-size: 22px;
  margin-bottom: 3px;
}
.doctor_details .doctor_info_wrapper {
  width: 100%;
  border: 1px solid var(--border-color);
}
@media (max-width: 991px) {
  .doctor_details .doctor_info_wrapper {
    max-width: 100%;
  }
}
.doctor_details .doctor_info_row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 575px) {
  .doctor_details .doctor_info_row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.doctor_details .doctor_info_row:last-child {
  border-bottom: 0;
}
.doctor_details .doctor_info_row::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--border-color);
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 575px) {
  .doctor_details .doctor_info_row::after {
    display: none;
  }
}
.doctor_details .doctor_info_col {
  padding: 5px;
  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;
}
@media (max-width: 575px) {
  .doctor_details .doctor_info_col:first-child {
    border-bottom: 1px solid var(--border-color);
  }
}

@-webkit-keyframes scale-shape {
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-shape {
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/*--------------------------------------------------------------
  18. Card
----------------------------------------------------------------*/
.card.style_1 {
  padding-bottom: 1px;
  position: relative;
}
.card.style_1 .card_info_wrapper {
  width: 100%;
  max-width: 426px;
  padding: 30px;
  position: relative;
  margin-top: -70px;
}
@media (max-width: 480px) {
  .card.style_1 .card_info_wrapper {
    padding: 20px 20px 20px 12px;
  }
}
.card.style_1 .card_info_wrapper::after {
  content: "";
  width: 93%;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 575px) {
  .card.style_1 .card_info_wrapper::after {
    width: 100%;
  }
}
.card.style_1 .card_text {
  width: 100%;
  max-width: 370px;
  padding-left: 20px;
  padding-right: 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 480px) {
  .card.style_1 .card_text {
    padding-left: 0;
  }
}
.card.style_1 .card_text::after {
  content: "";
  width: 3px;
  height: 100%;
  background-color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 480px) {
  .card.style_1 .card_text::after {
    display: none;
  }
}
.card.style_1 .card_index {
  width: 47px;
  height: 47px;
  background-color: var(--blue-color);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.style_1 .card_title {
  font-size: 22px;
  margin-bottom: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.style_1 .card_subtitle {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.style_1:hover .card_info_wrapper:after {
  background-color: var(--blue-color);
}
.card.style_1:hover .card_title,
.card.style_1:hover .card_subtitle {
  color: var(--white);
}
.card.style_1:hover .card_index {
  background-color: var(--accent-color);
}

.card.style_2 {
  padding: 10px 0 10px 10px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
}
@media (max-width: 991px) {
  .card.style_2 {
    padding: 10px 10px 40px 10px;
  }
}
.card.style_2 .card_thumb img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card.style_2 .card_text {
  max-width: 500px;
  margin-left: 30px;
}
.card.style_2 .card_title {
  font-size: 30px;
  margin-bottom: 16px;
}
.card.style_2 .card_subtitle {
  margin-bottom: 28px;
}
.card.style_2 .list.style_1 {
  margin-bottom: 35px;
}
.card.style_2 hr {
  margin-bottom: 40px;
}

.card.style_3 {
  min-height: 800px;
  overflow: hidden;
}
.card.style_3 .solution_content {
  max-width: 550px;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .card.style_3 .solution_content {
    padding-right: 0;
    max-width: 100%;
  }
}
.card.style_3 .section_heading.style_1 {
  margin-bottom: 22px;
}
.card.style_3 .solution_text {
  margin-bottom: 18px;
}
.card.style_3 .solution_list_wrapper {
  margin-bottom: 42px;
}
.card.style_3 .solution_thumbnail {
  height: 100%;
  min-height: 600px;
  width: 50vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 991px) {
  .card.style_3 .solution_thumbnail {
    width: 100%;
    position: initial;
    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;
  }
}
.card.style_3 .player_btn_2 {
  -webkit-transform: translate(-75px, -60px);
          transform: translate(-75px, -60px);
}
@media (max-width: 991px) {
  .card.style_3 .player_btn_2 {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.card.style_3 .player_btn_wrapper {
  width: 150px;
  height: 150px;
  background-color: var(--white);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .card.style_3 .player_btn_wrapper {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    background-color: transparent;
  }
}
.card.style_3 .video_open {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.card.style_3 .player_btn_column {
  width: 40px;
  height: 330px;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  position: absolute;
  left: 50%;
  bottom: 70%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
  border-radius: 20px;
  padding: 10px;
}
@media (max-width: 991px) {
  .card.style_3 .player_btn_column {
    display: none;
  }
}
.card.style_3 .player_btn_column div {
  width: 100%;
  height: 50%;
  background-color: var(--accent-color);
  border-radius: inherit;
  -webkit-animation: thermometer-animation 3s cubic-bezier(0.52, 1.64, 0.37, 0.66) infinite;
          animation: thermometer-animation 3s cubic-bezier(0.52, 1.64, 0.37, 0.66) infinite;
}
.card.style_3 .solution_shape {
  left: 2%;
  bottom: -20px;
  width: 16%;
}
@media (max-width: 991px) {
  .card.style_3 .solution_shape {
    display: none;
  }
}

.card.style_4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .card.style_4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.card.style_4 .card_thumbnail {
  margin-bottom: -189px;
  margin-left: -50px;
}
@media (max-width: 1399px) {
  .card.style_4 .card_thumbnail {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .card.style_4 .card_thumbnail {
    margin-bottom: 0;
  }
}

.card.style_5 {
  position: relative;
}
@media (max-width: 1500px) {
  .card.style_5 {
    height: 450px;
  }
}
@media (max-width: 1200px) {
  .card.style_5 {
    height: 360px;
  }
}
.card.style_5 .card_thumbnail {
  height: 100%;
  width: 100%;
}
.card.style_5 .card_thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card.style_5 .card_info_wrapper {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: calc(100% - 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 30px;
  position: absolute;
  left: 50%;
  bottom: 45px;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1599px) {
  .card.style_5 .card_info_wrapper {
    width: 100%;
    max-width: calc(100% - 30px);
    bottom: 15px;
    -webkit-transform: translate(-50%, 15px);
            transform: translate(-50%, 15px);
    -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: start;
    gap: 15px;
  }
}
.card.style_5 .card_info_wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background-color: rgba(0, 34, 97, 0.8);
  -webkit-transform: skewX(-30deg);
          transform: skewX(-30deg);
}
@media (max-width: 1599px) {
  .card.style_5 .card_info_wrapper::before {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
  }
}
.card.style_5 .card_text {
  position: relative;
  padding-left: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1599px) {
  .card.style_5 .card_text {
    padding-left: 0;
  }
  .card.style_5 .card_text::after {
    display: none;
  }
}
.card.style_5 .card_text::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
}
.card.style_5 .card_index {
  font-size: 28px;
  position: relative;
  z-index: 2;
}
.card.style_5 .card_title {
  font-size: 22px;
}
.card.style_5 .iconbox_btn {
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  color: var(--white);
  border: 5px solid var(--white);
  border-radius: 50%;
  position: absolute;
  top: -30px;
  right: -45px;
  font-size: 30px;
  z-index: 3;
}
@media (max-width: 1599px) {
  .card.style_5 .iconbox_btn {
    width: 60px;
    height: 60px;
    position: initial;
    font-size: 22px;
    border-width: 3px;
  }
}
.card.style_5:hover .card_info_wrapper {
  opacity: 1;
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
}

.card.style_6 {
  position: relative;
  padding: 50px 30px;
  background-color: var(--white);
  border-top: 5px solid var(--accent-color);
  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;
  text-align: center;
}
.card.style_6 .card_shape {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 6px 6px 10px 10px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.style_6 .card_thumbnail {
  width: 200px;
  height: 200px;
  border: 10px solid var(--white);
  -webkit-filter: drop-shadow(0px 0px 13px rgba(0, 0, 0, 0.07));
          filter: drop-shadow(0px 0px 13px rgba(0, 0, 0, 0.07));
  border-radius: 50%;
  margin: -140px 0px 30px;
}
.card.style_6 .card_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card.style_6 .card_info,
.card.style_6 .card_thumbnail {
  position: relative;
  z-index: 1;
}
.card.style_6 .card_title {
  font-size: 22px;
  margin-bottom: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.style_6 .card_btn {
  width: 43px;
  height: 43px;
  background-color: var(--blue-color);
  color: var(--white);
  border: 2px solid transparent;
  border-radius: 50%;
  font-size: 18px;
  position: absolute;
  left: 50%;
  bottom: -20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.style_6:hover .card_btn {
  background-color: var(--accent-color);
  color: var(--white);
  border-color: var(--white);
}
.card.style_6:hover .card_title,
.card.style_6:hover .card_subtitle {
  color: var(--white);
}
.card.style_6:hover .card_shape {
  opacity: 1;
}

.card.style_7 {
  max-height: 312px;
  background-color: #d8e6f3;
  position: relative;
  padding: 114px 40px 40px 40px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.style_7 .card_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.style_7 .card_thumbnail_wrapper {
  width: 257px;
  height: auto;
  position: absolute;
  top: -50px;
  right: -55px;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1199px) {
  .card.style_7 .card_thumbnail_wrapper {
    width: 220px;
    top: -40px;
    right: -35px;
  }
}
.card.style_7 .card_thumbnail {
  width: 257px;
  height: 257px;
  background-color: var(--white);
  border: 1px solid var(--heading-color);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .card.style_7 .card_thumbnail {
    width: 220px;
    height: 220px;
  }
}
.card.style_7 .thumbnail_shape {
  position: absolute;
  left: -15px;
  bottom: -15px;
}
.card.style_7 .card_index {
  width: 65px;
  height: 65px;
  background-color: var(--white);
  font-size: 30px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.style_7 .card_info_wrapper {
  max-width: 220px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.style_7 .card_title {
  font-size: 22px;
  color: var(--heading-color);
  margin-bottom: 7px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.style_7 .card_subtitle {
  margin-bottom: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.style_7 .card_btn {
  width: 30px;
  height: 30px;
  background-color: var(--white);
  color: var(--accent-color);
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  margin-top: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.style_7:hover {
  padding: 68px 20px 40px 40px;
}
.card.style_7:hover .card_overlay {
  opacity: 1;
}
.card.style_7:hover .card_index {
  background-color: var(--accent-color);
  color: var(--white);
}
.card.style_7:hover .card_title,
.card.style_7:hover .card_subtitle {
  color: var(--white);
}
.card.style_7:hover .card_btn {
  visibility: visible;
  opacity: 1;
}
.card.style_7:hover .card_thumbnail_wrapper {
  visibility: hidden;
  opacity: 0;
}

.card.style_8 .card_title {
  font-size: 22px;
  margin-bottom: 15px;
}
.card.style_8 .card_subtitle {
  margin-bottom: 20px;
}
.card.style_8 .progress_bar_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

/*--------------------------------------------------------------
  19. Card
----------------------------------------------------------------*/
.tab_links.style_1 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .tab_links.style_1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media (max-width: 575px) {
  .tab_links.style_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.tab_links.style_1 li {
  border-radius: 5px;
  position: relative;
  background-color: #f1f7fc;
  color: var(--heading-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 575px) {
  .tab_links.style_1 li {
    width: 100%;
    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;
  }
}
.tab_links.style_1 li::after {
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--blue-color);
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, -10px) rotate(45deg);
          transform: translate(-50%, -10px) rotate(45deg);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .tab_links.style_1 li::after {
    display: none;
  }
}
.tab_links.style_1 li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding-right: 40px;
  font-size: 23px;
  color: var(--heading-color);
  height: 69px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1199px) {
  .tab_links.style_1 li a {
    padding-right: 20px;
  }
}
@media (max-width: 575px) {
  .tab_links.style_1 li a {
    height: 60px;
  }
}
.tab_links.style_1 li a span {
  position: relative;
  z-index: 1;
  font-size: 20px;
}
.tab_links.style_1 li .tab_link_icon {
  width: 70px;
  height: 100px;
  background-color: transparent;
  border-right: 2px solid transparent;
  border-radius: 30px 60px 60px 30px;
  margin-left: -2px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tab_links.style_1 li .tab_link_icon img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tab_links.style_1 li.active {
  background-color: var(--blue-color);
}
.tab_links.style_1 li.active a {
  color: var(--white);
}
.tab_links.style_1 li.active::after {
  -webkit-transform: translate(-50%, 14px) rotate(45deg);
          transform: translate(-50%, 14px) rotate(45deg);
  opacity: 1;
}
.tab_links.style_1 li.active .tab_link_icon {
  background-color: var(--accent-color);
  border-color: var(--white);
}
.tab_links.style_1 li.active .tab_link_icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media (max-width: 575px) {
  .tab_links.style_1 li.active .tab_link_icon {
    background-color: inherit;
    border: none;
  }
}
.tab_links.style_1 li:hover {
  background-color: var(--blue-color);
  color: var(--white);
}
.tab_links.style_1 li:hover a {
  color: var(--white);
}
.tab_links.style_1 li:hover::after {
  -webkit-transform: translate(-50%, 10px) rotate(45deg);
          transform: translate(-50%, 10px) rotate(45deg);
  opacity: 1;
}
.tab_links.style_1 li:hover .tab_link_icon {
  background-color: var(--accent-color);
  border-color: var(--white);
}
.tab_links.style_1 li:hover .tab_link_icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media (max-width: 575px) {
  .tab_links.style_1 li:hover .tab_link_icon {
    background-color: inherit;
    border: none;
  }
}
@media (max-width: 1399px) {
  .tab_links.style_1 {
    gap: 15px;
  }
}

/*--------------------------------
 Tab styling
 -------------------------------*/
.tab {
  display: none;
}
.tab.active {
  display: block;
}/*# sourceMappingURL=style.css.map */

/*--------------------------------
 Extra css
 -------------------------------*/
.hero.style_1 .hero_text{
    background-color: inherit;
    padding: inherit;
    border-radius: inherit;
    position: inherit;
}
.tab_links.style_1 li a span {
    font-size: 19px;
}
.card.style_2 .card_text {
    max-width: 530px;
}
.card.style_2 .card_title {
    font-size: 27px;
}
.home_form_area .form_field{
  background-color: #fff;
}


.header {
    padding: 22px 0;
}

/* Navigation */
.navbar-brand {
  --si-navbar-brand-padding-y:0.5rem;
  --si-navbar-brand-margin-end:1rem;
  --si-navbar-brand-font-size:1.375rem;
  --si-navbar-brand-font-weight:800;
  align-items:center;
  display:flex;
  font-weight:var(--si-navbar-brand-font-weight);
  padding:calc(var(--si-navbar-brand-padding-y)*.5) 0
}
.navbar-brand>img {
  margin-right:.4375rem
}
.navbar-toggler {
  height:2.25rem;
  position:relative;
  width:2.875rem;
  box-shadow: none !important;
}
.navbar-toggler-icon {
  display:block;
  margin-top:-.0625rem;
  top:50%;
  transition-duration:75ms;
  transition-timing-function:cubic-bezier(.55,.055,.675,.19)
}
.navbar-toggler-icon,
.navbar-toggler-icon:after,
.navbar-toggler-icon:before {
  background-color:var(--black);
  height:.125rem;
  position:absolute;
  transition-property:transform .15s ease;
  width:1.375rem;
  background-image: none;
}
.navbar-toggler-icon:after,
.navbar-toggler-icon:before {
  content:"";
  display:block;
}
.navbar-toggler-icon:before {
  top:-.4375rem;
  transition:top 75ms ease .12s,opacity 75ms ease
}
.navbar-toggler-icon:after {
  bottom:-.4375rem;
  transition:bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19)
}
[aria-expanded=true] .navbar-toggler-icon {
  transform:rotate(45deg);
  transition-delay:.12s;
  transition-timing-function:cubic-bezier(.215,.61,.355,1)
}
[aria-expanded=true] .navbar-toggler-icon:before {
  opacity:0;
  top:0;
  transition:top 75ms ease,opacity 75ms ease .12s
}
[aria-expanded=true] .navbar-toggler-icon:after {
  bottom:0;
  transform:rotate(-90deg);
  transition:bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s
}
.navbar-nav {
  --si-nav-link-font-weight:600;
  --si-mega-dropdown-column-width:14rem
}
.navbar .dropdown-toggle:after {
  font-size:1em;
  margin-top:.0625rem;
  margin-left: 0.6em;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #767676;
  border-right: 2px solid #767676;
  transform: rotate(135deg);
  border-left: none;
}

.navbar .navbar-nav .dropdown-menu {
  background:none;
  border:0;
  border-radius:0;
  box-shadow:none;
}
.navbar .navbar-nav .dropdown-menu li .dropdown-item {
  font-weight: 400;
  border-bottom: 1px solid #dddbdb;
  padding: 5px 20px;
}
.dropdown-menu.show {
  background-color: #e4e4e4 !important;
  border-radius: 12px !important;
  margin-bottom: 12px;
}
.dropdown-menu.show li {
  padding: 4px 0;
}
.navbar .nav-item .dropdown-menu li a {
  color: var(--e-global-color-very-dark-grayish-blue);
}
.navbar .nav-item .dropdown-menu li a:hover {
  color: var(--e-global-color-accent);
}
.navbar .navbar-nav .dropdown-menu.dropdown-menu-dark,
.navbar .navbar-nav [data-bs-theme=dark] .dropdown-menu:not([data-bs-theme=light]),
[data-bs-theme=dark] .navbar .navbar-nav .dropdown-menu:not([data-bs-theme=light]) {
  border-color:hsla(0,0%,100%,.14)
}
.navbar .navbar-nav .dropdown-menu .dropdown-menu {
  margin-left:.75rem;
  margin-right:.75rem
}
.navbar .navbar-nav .dropdown-menu .dropdown-toggle:after {
  font-size:1em;
  margin-left:.125rem;
  margin-right:0;
  margin-top:-.0625rem
}
@keyframes dropdown-show {
  0% {
    opacity:0;
    transform:scale(.9)
  }
  to {
    opacity:1;
    transform:scale(1)
  }
}
@media (min-width:500px) {
  .navbar-expand-sm .navbar-brand {
    padding:var(--si-navbar-brand-padding-y) 0
  }
  .navbar-expand-sm .offcanvas {
    background-color:transparent!important;
    box-shadow:none
  }
  .navbar-expand-sm .offcanvas-header {
    display:none
  }
  .navbar-expand-sm .dropdown-divider {
    display:block
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    background-color:var(--si-dropdown-bg);
    border:var(--si-dropdown-border-width) solid var(--si-dropdown-border-color);
    border-radius:var(--si-dropdown-border-radius);
    box-shadow:var(--si-dropdown-box-shadow);
    margin-top:var(--si-dropdown-spacer)
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu.dropdown-menu-dark,
  .navbar-expand-sm .navbar-nav [data-bs-theme=dark] .dropdown-menu:not([data-bs-theme=light]),
  [data-bs-theme=dark] .navbar-expand-sm .navbar-nav .dropdown-menu:not([data-bs-theme=light]) {
    background:var(--si-dropdown-bg)
  }
  .navbar-expand-sm .dropdown-menu.show {
    display:none
  }
  .navbar-expand-sm .dropdown:before {
    content:"";
    height:.375rem;
    left:0;
    position:absolute;
    top:100%;
    width:100%
  }
  .navbar-expand-sm .dropdown .dropdown .dropdown-toggle {
    align-items:center;
    display:flex
  }
  .navbar-expand-sm .dropdown .dropdown .dropdown-toggle:after {
    content:"\ea50";
    font-size:1.25em;
    margin-left:auto;
    margin-right:-.3125rem;
    margin-top:0
  }
  .navbar-expand-sm .dropdown .dropdown .dropdown-menu {
    left:100%;
    margin-left:0;
    margin-right:0;
    top:calc((var(--si-dropdown-item-padding-y) + var(--si-dropdown-padding-y))*-1)
  }
  .navbar-expand-sm .dropdown .dropdown-menu-end {
    left:auto;
    right:0
  }
  .navbar-expand-sm .dropstart>.dropdown-menu {
    margin-left:0;
    margin-right:0;
    right:94%;
    top:calc((var(--si-dropdown-item-padding-y) + var(--si-dropdown-padding-y))*-1)
  }
  .navbar-expand-sm .dropdown:hover>.dropdown-menu,
  .navbar-expand-sm .dropstart:hover>.dropdown-menu {
    animation:dropdown-show .2s;
    display:block
  }
  .navbar-expand-sm .mega-dropdown-column {
    padding:0 .75rem;
    width:var(--si-mega-dropdown-column-width)
  }
  .navbar-expand-sm .mega-dropdown-column:last-child {
    border-right:0
  }
}
@media (min-width:768px) {
  .navbar-expand-md .navbar-brand {
    padding:var(--si-navbar-brand-padding-y) 0
  }
  .navbar-expand-md .offcanvas {
    background-color:transparent!important;
    box-shadow:none
  }
  .navbar-expand-md .offcanvas-header {
    display:none
  }
  .navbar-expand-md .dropdown-divider {
    display:block
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    background-color:var(--si-dropdown-bg);
    border:var(--si-dropdown-border-width) solid var(--si-dropdown-border-color);
    border-radius:var(--si-dropdown-border-radius);
    box-shadow:var(--si-dropdown-box-shadow);
    margin-top:var(--si-dropdown-spacer)
  }
  .navbar-expand-md .navbar-nav .dropdown-menu.dropdown-menu-dark,
  .navbar-expand-md .navbar-nav [data-bs-theme=dark] .dropdown-menu:not([data-bs-theme=light]),
  [data-bs-theme=dark] .navbar-expand-md .navbar-nav .dropdown-menu:not([data-bs-theme=light]) {
    background:var(--si-dropdown-bg)
  }
  .navbar-expand-md .dropdown-menu.show {
    display:none
  }
  .navbar-expand-md .dropdown:before {
    content:"";
    height:.375rem;
    left:0;
    position:absolute;
    top:100%;
    width:100%
  }
  .navbar-expand-md .dropdown .dropdown .dropdown-toggle {
    align-items:center;
    display:flex
  }
  .navbar-expand-md .dropdown .dropdown .dropdown-toggle:after {
    content:"\ea50";
    font-size:1.25em;
    margin-left:auto;
    margin-right:-.3125rem;
    margin-top:0
  }
  .navbar-expand-md .dropdown .dropdown .dropdown-menu {
    left:100%;
    margin-left:0;
    margin-right:0;
    top:calc((var(--si-dropdown-item-padding-y) + var(--si-dropdown-padding-y))*-1)
  }
  .navbar-expand-md .dropdown .dropdown-menu-end {
    left:auto;
    right:0
  }
  .navbar-expand-md .dropstart>.dropdown-menu {
    margin-left:0;
    margin-right:0;
    right:94%;
    top:calc((var(--si-dropdown-item-padding-y) + var(--si-dropdown-padding-y))*-1)
  }
  .navbar-expand-md .dropdown:hover>.dropdown-menu,
  .navbar-expand-md .dropstart:hover>.dropdown-menu {
    animation:dropdown-show .2s;
    display:block
  }
  .navbar-expand-md .mega-dropdown-column {
    padding:0 .75rem;
    width:var(--si-mega-dropdown-column-width)
  }
  .navbar-expand-md .mega-dropdown-column:last-child {
    border-right:0
  }
}
@media (min-width:992px) {
  .navbar-expand-lg .navbar-brand {
    padding:var(--si-navbar-brand-padding-y) 0
  }
  .navbar-expand-lg .offcanvas {
    background-color:transparent!important;
    box-shadow:none
  }
  .navbar-expand-lg .offcanvas-header {
    display:none
  }
  .navbar-expand-lg .dropdown-divider {
    display:block
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    background-color:#fff;
    border:1px solid #ccc;
    border-radius:20px;
    box-shadow:0 0.275rem 1.25rem rgba(11,15,25,.05),0 0.25rem 0.5625rem rgba(11,15,25,.03);
    margin-top:0.25rem;
    padding: 20px 10px;
    max-height: 80vh;
    overflow: scroll;
    transform: translateX(-20%);
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu.dropdown-menu-dark,
  .navbar-expand-lg .navbar-nav [data-bs-theme=dark] .dropdown-menu:not([data-bs-theme=light]),
  [data-bs-theme=dark] .navbar-expand-lg .navbar-nav .dropdown-menu:not([data-bs-theme=light]) {
    background:var(--si-dropdown-bg)
  }
  .navbar-expand-lg .dropdown-menu.show {
    display:none
  }
  .navbar-expand-lg .dropdown:before {
    content:"";
    height:.375rem;
    left:0;
    position:absolute;
    top:100%;
    width:100%
  }
  .navbar-expand-lg .dropdown .dropdown .dropdown-toggle {
    align-items:center;
    display:flex
  }
  .navbar-expand-lg .dropdown .dropdown .dropdown-toggle:after {
    content:"\ea50";
    font-size:1.25em;
    margin-left:auto;
    margin-right:-.3125rem;
    margin-top:0
  }
  .navbar-expand-lg .dropdown .dropdown .dropdown-menu {
    left:100%;
    margin-left:0;
    margin-right:0;
    top:calc((var(--si-dropdown-item-padding-y) + var(--si-dropdown-padding-y))*-1)
  }
  .navbar-expand-lg .dropdown .dropdown-menu-end {
    left:auto;
    right:0
  }
  .navbar-expand-lg .dropstart>.dropdown-menu {
    margin-left:0;
    margin-right:0;
    right:94%;
    top:calc((var(--si-dropdown-item-padding-y) + var(--si-dropdown-padding-y))*-1)
  }
  .navbar-expand-lg .dropdown:hover>.dropdown-menu,
  .navbar-expand-lg .dropstart:hover>.dropdown-menu {
    display:block;
  }
  .navbar-expand-lg .mega-dropdown-column {
    padding:0 .75rem;
    width:var(--si-mega-dropdown-column-width)
  }
  .navbar-expand-lg .mega-dropdown-column:last-child {
    border-right:0
  }
}
@media (min-width:1200px) {
  .navbar-expand-xl .navbar-brand {
    padding:var(--si-navbar-brand-padding-y) 0
  }
  .navbar-expand-xl .offcanvas {
    background-color:transparent!important;
    box-shadow:none
  }
  .navbar-expand-xl .offcanvas-header {
    display:none
  }
  .navbar-expand-xl .dropdown-divider {
    display:block
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    background-color:var(--si-dropdown-bg);
    border:var(--si-dropdown-border-width) solid var(--si-dropdown-border-color);
    border-radius:var(--si-dropdown-border-radius);
    box-shadow:var(--si-dropdown-box-shadow);
    margin-top:var(--si-dropdown-spacer)
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu.dropdown-menu-dark,
  .navbar-expand-xl .navbar-nav [data-bs-theme=dark] .dropdown-menu:not([data-bs-theme=light]),
  [data-bs-theme=dark] .navbar-expand-xl .navbar-nav .dropdown-menu:not([data-bs-theme=light]) {
    background:var(--si-dropdown-bg)
  }
  .navbar-expand-xl .dropdown-menu.show {
    display:none
  }
  .navbar-expand-xl .dropdown:before {
    content:"";
    height:.375rem;
    left:0;
    position:absolute;
    top:100%;
    width:100%
  }
  .navbar-expand-xl .dropdown .dropdown .dropdown-toggle {
    align-items:center;
    display:flex
  }
  .navbar-expand-xl .dropdown .dropdown .dropdown-toggle:after {
    content:"\ea50";
    font-size:1.25em;
    margin-left:auto;
    margin-right:-.3125rem;
    margin-top:0
  }
  .navbar-expand-xl .dropdown .dropdown .dropdown-menu {
    left:100%;
    margin-left:0;
    margin-right:0;
    top:calc((var(--si-dropdown-item-padding-y) + var(--si-dropdown-padding-y))*-1)
  }
  .navbar-expand-xl .dropdown .dropdown-menu-end {
    left:auto;
    right:0
  }
  .navbar-expand-xl .dropstart>.dropdown-menu {
    margin-left:0;
    margin-right:0;
    right:94%;
    top:calc((var(--si-dropdown-item-padding-y) + var(--si-dropdown-padding-y))*-1)
  }
  .navbar-expand-xl .dropdown:hover>.dropdown-menu,
  .navbar-expand-xl .dropstart:hover>.dropdown-menu {
    animation:dropdown-show .2s;
    display:block
  }
  .navbar-expand-xl .mega-dropdown-column {
    padding:0 .75rem;
    width:var(--si-mega-dropdown-column-width)
  }
  .navbar-expand-xl .mega-dropdown-column:last-child {
    border-right:0
  }
}
@media (min-width:1400px) {
  .navbar-expand-xxl .navbar-brand {
    padding:var(--si-navbar-brand-padding-y) 0
  }
  .navbar-expand-xxl .offcanvas {
    background-color:transparent!important;
    box-shadow:none
  }
  .navbar-expand-xxl .offcanvas-header {
    display:none
  }
  .navbar-expand-xxl .dropdown-divider {
    display:block
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    background-color:var(--si-dropdown-bg);
    border:var(--si-dropdown-border-width) solid var(--si-dropdown-border-color);
    border-radius:var(--si-dropdown-border-radius);
    box-shadow:var(--si-dropdown-box-shadow);
    margin-top:var(--si-dropdown-spacer)
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu.dropdown-menu-dark,
  .navbar-expand-xxl .navbar-nav [data-bs-theme=dark] .dropdown-menu:not([data-bs-theme=light]),
  [data-bs-theme=dark] .navbar-expand-xxl .navbar-nav .dropdown-menu:not([data-bs-theme=light]) {
    background:var(--si-dropdown-bg)
  }
  .navbar-expand-xxl .dropdown-menu.show {
    display:none
  }
  .navbar-expand-xxl .dropdown:before {
    content:"";
    height:.375rem;
    left:0;
    position:absolute;
    top:100%;
    width:100%
  }
  .navbar-expand-xxl .dropdown .dropdown .dropdown-toggle {
    align-items:center;
    display:flex
  }
  .navbar-expand-xxl .dropdown .dropdown .dropdown-toggle:after {
    content:"\ea50";
    font-size:1.25em;
    margin-left:auto;
    margin-right:-.3125rem;
    margin-top:0
  }
  .navbar-expand-xxl .dropdown .dropdown .dropdown-menu {
    left:100%;
    margin-left:0;
    margin-right:0;
    top:calc((var(--si-dropdown-item-padding-y) + var(--si-dropdown-padding-y))*-1)
  }
  .navbar-expand-xxl .dropdown .dropdown-menu-end {
    left:auto;
    right:0
  }
  .navbar-expand-xxl .dropstart>.dropdown-menu {
    margin-left:0;
    margin-right:0;
    right:94%;
    top:calc((var(--si-dropdown-item-padding-y) + var(--si-dropdown-padding-y))*-1)
  }
  .navbar-expand-xxl .dropdown:hover>.dropdown-menu,
  .navbar-expand-xxl .dropstart:hover>.dropdown-menu {
    animation:dropdown-show .2s;
    display:block
  }
  .navbar-expand-xxl .mega-dropdown-column {
    padding:0 .75rem;
    width:var(--si-mega-dropdown-column-width)
  }
  .navbar-expand-xxl .mega-dropdown-column:last-child {
    border-right:0
  }
}
@media (min-width:1600px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
    columns: 2;
  }
}
.navbar-expand .navbar-brand {
  padding:var(--si-navbar-brand-padding-y) 0
}
.navbar-expand .offcanvas {
  background-color:transparent!important;
  box-shadow:none
}
.navbar-expand .offcanvas-header {
  display:none
}
.navbar-expand .dropdown-divider {
  display:block
}
.navbar-expand .navbar-nav .dropdown-menu {
  background-color:var(--si-dropdown-bg);
  border:var(--si-dropdown-border-width) solid var(--si-dropdown-border-color);
  border-radius:var(--si-dropdown-border-radius);
  box-shadow:var(--si-dropdown-box-shadow);
  margin-top:var(--si-dropdown-spacer)
}
.navbar-expand .navbar-nav .dropdown-menu.dropdown-menu-dark,
.navbar-expand .navbar-nav [data-bs-theme=dark] .dropdown-menu:not([data-bs-theme=light]),
[data-bs-theme=dark] .navbar-expand .navbar-nav .dropdown-menu:not([data-bs-theme=light]) {
  background:var(--si-dropdown-bg)
}
.navbar-expand .dropdown-menu.show {
  display:none
}
.navbar-expand .dropdown:before {
  content:"";
  height:.375rem;
  left:0;
  position:absolute;
  top:100%;
  width:100%
}
.navbar-expand .dropdown .dropdown .dropdown-toggle {
  align-items:center;
  display:flex
}
.navbar-expand .dropdown .dropdown .dropdown-toggle:after {
  content:"\ea50";
  font-size:1.25em;
  margin-left:auto;
  margin-right:-.3125rem;
  margin-top:0
}
.navbar-expand .dropdown .dropdown .dropdown-menu {
  left:100%;
  margin-left:0;
  margin-right:0;
  top:calc((var(--si-dropdown-item-padding-y) + var(--si-dropdown-padding-y))*-1)
}
.navbar-expand .dropdown .dropdown-menu-end {
  left:auto;
  right:0
}
.navbar-expand .dropstart>.dropdown-menu {
  margin-left:0;
  margin-right:0;
  right:94%;
  top:calc((var(--si-dropdown-item-padding-y) + var(--si-dropdown-padding-y))*-1)
}
.navbar-expand .dropdown:hover>.dropdown-menu,
.navbar-expand .dropstart:hover>.dropdown-menu {
  animation:dropdown-show .2s;
  display:block
}
.navbar-expand .mega-dropdown-column {
  padding:0 .75rem;
  width:var(--si-mega-dropdown-column-width)
}
.navbar-expand .mega-dropdown-column:last-child {
  border-right:0
}
.navbar-stuck {
  animation:navbar-show .25s ease-in-out;
  box-shadow:0 .275rem 1.25rem rgba(11,15,25,.05),0 .25rem .5625rem rgba(11,15,25,.03);
  left:0;
  position:fixed!important;
  top:0;
  width:100%;
  z-index:1031
}
.navbar.position-absolute {
  left:0;
  top:0;
  width:100%;
  z-index:1030
}
.navbar.position-absolute .logo-nav-white {
  display: block;
}
.navbar.position-absolute.navbar-stuck .logo-nav-white {
  display: none;
}
.navbar.position-absolute .logo-nav-color {
  display: none;
}
.navbar.position-absolute.navbar-stuck .logo-nav-color {
  display: block;
}
@keyframes navbar-show {
  0% {
    transform:translateY(-100%)
  }
  to {
    transform:translateY(0)
  }
}
.navbar {
  background-color:#fff;
  color:#33354d;
}
.navbar.navbar-stuck {
  background-color:#fff;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(110, 104, 162, 0.1);
  box-shadow: 0px 10px 30px 0px rgba(183, 183, 183, 0.5);
}
.navbar.navbar-stuck .top-header-contact {
  display: none !important;
}
.navbar.navbar-stuck .navbar-nav .nav-item a {
	color: var(--e-global-color-secondary);
}
.navbar .nav-item:hover>.nav-link:not(.disabled) {
  color:var(--e-global-color-accent);
  text-decoration: underline;
}
.navbar .nav-item.active>.nav-link:not(.disabled) {
  color:var(--si-navbar-active-color)
}
.navbar .dropdown:hover>.nav-link {
  color:var(--si-navbar-hover-color)
}
.navbar.fixed-top {
  z-index:1031
}
.navbar-nav li {
    margin: 0 12px;
}
.navbar-nav li:last-child {
  /*! margin: 0 12px; */
  padding: 0;
}
.navbar-nav .nav-item a {
    font-size: 16px;
    font-weight: 500;
    font-family: "Rubik", sans-serif;
    color: var(--heading-color);
    transition: all 0.3s ease-in-out;
    padding: 7px 20px;
}
.offcanvas-contact {
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
@media (min-width: 992px) {
  .offcanvas-contact {
    display: none;
  }
}
.offcanvas-contact-contet {
  padding: 5px 20px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.header .last_list .get_started {
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    padding: 17px 23px;
    margin: 0 24px 0 30px;
    font-family: "Poppins", sans-serif;
    text-align: center;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.header .last_list .get_started i {
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-white);
}
.header .last_list .get_started:hover {
    color: var(--e-global-color-very-dark-grayish-blue);
    background-color: var(--e-global-color-white);
}
.header .last_list .get_started:hover i {
    color: var(--e-global-color-very-dark-grayish-blue);
}
.header .last_list span {
    font-size: 12px;
    line-height: 12px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    display: block;
    margin-bottom: 5px;
    color: var(--e-global-color-white);
}
.header .last_list .number {
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.header .last_list .number:hover {
    color: var(--e-global-color-accent) !important;
}
.header .last_list .number i {
  font-size: 16px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 100px;
  text-align: center;
  color: var(--e-global-color-white);
  background-color: rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1199px){
.header {padding: 20px 0;}
.navbar-nav li {margin: 0 5px;}
.navbar-nav li:first-child {border: none;}
.navbar-nav .nav-item a {font-size: 16px; line-height: 18px;white-space: wrap;padding: 14px 20px;}
.navbar-nav .nav-item li:first-child {border:none;}
.navbar-nav li:last-child {margin: 0 5px;}
.navbar-nav .dropdown-menu {/*! min-width: 385px; */}
.navbar-nav .drop-down-pages .nav-item a {font-size: 12px; line-height: 12px; padding: 8px 18px;}
.header .last_list {padding-left: 16px;}
.header .last_list .search-box {font-size: 16px;}
.header .last_list .get_started {padding: 14px; margin: 0 12px;}
.header .last_list .get_started i {font-size: 10px; margin-left: 8px;}
.header .last_list span {margin-bottom: 6px;}
.header .last_list .number {font-size: 14px; line-height: 14px;}
}
@media (max-width: 1399px) {
  .navbar-nav li {margin: 0 5px;}
}

/* Marquee */
.alerts {
  max-width: 90vw;
  margin: 30px auto;
  border-radius: 20px;
  /*! border: 1px solid var(--red-color); */
}
.alerts-icon {
  filter: brightness(0) saturate(100%) invert(10%) sepia(94%) saturate(2745%) hue-rotate(210deg) brightness(83%) contrast(96%);
}
@media (min-width: 770px) {
  .alerts-title {
    padding: 12px 30px 12px 30px;
}
}
.alerts-title p {
  color: var(--white);
  margin: 0;
  font-weight: 500;
}
.alerts-title img {
  padding-right: 15px;
}
.mk-marquee {
  --mk-marquee-gap: 20px;
  --mk-marquee-height: 70px;
  --mk-marquee-speed: 100s;
  /*! position: fixed; */
  left: 0;
  width: 100%;
  overflow: hidden;
  user-select: none;
  /*! background-color: var(--blue-color); */
  height: 50px;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.mk-marquee__wrapper {
  display: flex;
  width: max-content;
  animation: mk-marquee-scroll var(--mk-marquee-speed) linear infinite;
}

.mk-marquee__content {
  display: flex;
  align-items: center;
  gap: var(--mk-marquee-gap);
  list-style: none;
  font-size: var(--mk-marquee-font-size);
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0;
}

.mk-marquee__content li,
.mk-marquee__content li * {
  color: var(--gray-dark);
}
.mk-marquee__content li::after {
  content: "/";
  padding-left: 20px;
  color: var(--white);
}
.mk-marquee__content a {
  text-decoration: none;
  transition: opacity 0.3s ease-in;
}

.mk-marquee__content a:hover {
  color: inherit;
  opacity: 0.8;
}

@keyframes mk-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.mk-marquee--pause-on-hover:hover .mk-marquee__wrapper {
  animation-play-state: paused;
}

.mk-marquee__wrapper {
  display: flex;
  width: max-content;
  animation: mk-marquee-scroll var(--mk-marquee-speed) linear infinite;
}

.mk-marquee__content {
  display: flex;
  align-items: center;
  gap: var(--mk-marquee-gap);
  list-style: none;
  font-size: var(--mk-marquee-font-size);
  white-space: nowrap;
  flex-shrink: 0;
}

.mk-marquee__content a {
  color: var(--bs-primary-text-emphasis);
  text-decoration: none;
  font-weight: 400;
}

.mk-marquee__content a:hover {
  color: var(--bs-primary-text-emphasis);
  text-decoration: underline;
}

@keyframes mk-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.mk-marquee--pause-on-hover:hover .mk-marquee__wrapper {
  animation-play-state: paused;
}

