@charset "UTF-8";
.swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Google Sans", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

section {
  overflow-x: hidden;
}

.section-padding {
  padding: 65px 0;
}

.sticky-div {
  position: sticky;
  top: 130px;
  z-index: 4;
}

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

.moreText {
  display: none;
}

.go-top-btn {
  background: #e6121f;
  height: 55px;
  width: 55px;
  right: 15px;
  bottom: 10px;
  position: fixed;
  z-index: 10;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: 0 0 10px 3px rgba(108, 98, 98, 0.2);
  color: #1f1f1f;
  text-decoration: none;
  transition: all 0.4s;
  display: none;
  cursor: pointer;
}
.go-top-btn i {
  display: block;
  line-height: 52px;
  color: #fff;
}

.sticky-div {
  position: sticky !important;
  top: 130px;
  z-index: 4;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #1d8fa5 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 11px;
}

*::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background-color: #1d8fa5;
  border-radius: 10px;
  border: 3px solid #ffffff;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #e6121f;
}

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

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  color: #171717;
}

a {
  color: #171717;
  text-decoration: none;
  transition: 0.4s ease;
}

p {
  color: #171717;
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 22px;
}

.section-title h1,
.section-title h2 {
  font-size: 3em;
  font-weight: 500;
  font-family: "Changa One", sans-serif;
  font-stretch: extra-expanded;
  color: #e6121f;
}
.section-title h2 {
  position: relative;
  width: fit-content;
}
.section-title h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #1d8fa5;
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
}
.section-title span {
  text-transform: uppercase;
  font-size: 0.9em;
  display: block;
  background-color: rgba(29, 143, 165, 0.1);
  color: #1d8fa5;
  font-size: 0.9em;
  font-weight: 100;
  padding: 5px 10px;
  border: 1px solid rgba(29, 143, 165, 0.1);
  width: fit-content;
  border-radius: 12px;
}

.int-typography h2, .int-typography h3, .int-typography h4 {
  margin-bottom: 10px;
}
.int-typography ul {
  margin-bottom: 10px;
}
.int-typography ul li {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 5px;
  font-size: 1em;
}

.divider {
  background: #1d8fa5;
  -webkit-mask-image: url(../img/logo/divider.svg);
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url(../img/logo/divider.svg);
  mask-position: center center;
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 55px;
  height: 25px;
}

header .top_menu {
  border-bottom: 1px solid #e8edf1;
  background-color: #c4c4c4;
  padding: 5px;
  position: relative;
}
header .top_menu::before {
  position: absolute;
  top: 0;
  left: -2rem;
  display: block;
  width: 20vw;
  height: 100%;
  content: "";
  background: #e6121f;
  transform: skewX(20deg);
  border-right: 5px solid #fff;
  z-index: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  header .top_menu {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  header .top_menu {
    display: none;
  }
}
@media (max-width: 575px) {
  header .top_menu {
    display: none;
  }
}
header .top_menu .dn_btn {
  display: inline-block;
  font-size: 13px;
  margin-right: 40px;
  font-weight: 400;
  color: #000;
  transition: all 300ms linear 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .top_menu .dn_btn {
    margin-right: 20px;
  }
}
header .top_menu .dn_btn:hover {
  color: #e6121f;
}
header .top_menu .header-social {
  position: relative;
  z-index: 1;
}
header .top_menu .header-social a {
  color: #fff;
  transition: all 300ms linear 0s;
}
header .top_menu .header-social a:hover {
  color: #1d8fa5;
}
header .top_menu .header-social a i {
  margin-right: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .top_menu .header-social a i {
    margin-right: 6px;
  }
}
header .top_menu .contact-menu a {
  display: inline-block !important;
  font-size: 13px;
}
header .header-area {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.3px);
  -webkit-backdrop-filter: blur(8.3px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  width: 96%;
  z-index: 5;
}
@media (max-width: 991px) {
  header .header-area {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    border: none;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}
header .header-area.sticky {
  background: #fff;
  backdrop-filter: blur(8.3px);
  -webkit-backdrop-filter: blur(8.3px);
  border: 1px solid rgba(0, 0, 0, 0.075);
}
header .header-area.sticky .nav-branding {
  color: #000;
}
header .header-area.sticky .nav-menu .menu li a {
  color: #000;
}
header .header-area.sticky .top_menu {
  display: none;
}
header .header-area .header-main {
  display: flex;
  justify-content: space-between;
  padding: 0px 50px;
  height: 70px;
  align-items: center;
}
@media (max-width: 991px) {
  header .header-area .header-main {
    padding: 0px 20px;
  }
}
header .header-area .header-main .logo {
  padding: 0 15px;
}
header .header-area .header-main .logo img {
  height: 45px;
  object-fit: contain;
}
header .header-area .header-main .nav-menu {
  padding: 0 15px;
}
header .header-area .header-main .nav-menu .menu .menu-item {
  display: inline-block;
  margin-left: 10px;
  position: relative;
}
header .header-area .header-main .nav-menu .menu .menu-item:first-child {
  margin-left: 0;
}
header .header-area .header-main .nav-menu .menu .menu-item > a {
  display: block;
  padding: 6px 12px;
  font-size: 15px;
  color: #000000;
  transition: all 0.3s ease;
  border-radius: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .menu .menu-item > a {
    font-size: 15px;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item > a .plus {
  display: inline-block;
  height: 10px;
  width: 10px;
  position: relative;
  margin-left: 3px;
  pointer-events: none;
}
header .header-area .header-main .nav-menu .menu .menu-item > a .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a .plus::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background: #000;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
header .header-area .header-main .nav-menu .menu .menu-item > a .plus::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
header .header-area .header-main .nav-menu .menu .menu-item > a:hover, header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav {
  background-color: rgba(29, 143, 165, 0.1);
  color: #1d8fa5;
}
header .header-area .header-main .nav-menu .menu .menu-item > a:hover .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a:hover .plus:after, header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav .plus:after {
  background-color: #1d8fa5;
}
header .header-area .header-main .nav-menu .menu .menu-item > a:hover::after, header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav::after {
  width: 100%;
  background: #1d8fa5;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
  border-radius: 20px;
  width: 350px;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  background-color: #ffffff;
  border: 1px solid #e8edf1;
  padding: 10px 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item {
  display: block;
  margin: 0 20px;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  transition: all 0.4s ease;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a:hover {
  color: #1d8fa5;
  padding-left: 4px;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a::after {
  display: none;
}
@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu .has-children:hover .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  header .header-area .header-main .nav-menu .menu .has-children:hover > a .plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@media (max-width: 991px) {
  header .header-area .header-main .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    border-radius: 10px 0px 0 10px;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    top: 0;
    overflow-y: auto;
    background-color: #151616;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  header .header-area .header-main .nav-menu .menu .menu-item {
    display: block;
    margin: 0;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a {
    color: #ffffff;
    padding: 12px 15px;
    border-bottom: 1px solid #333333;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a .plus::after {
    background-color: #ffffff;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a::after {
    display: none;
  }
  header .header-area .header-main .nav-menu .menu .menu-item:first-child a {
    border-top: 1px solid #333333;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }
}
@media only screen and (max-width: 991px) and (min-width: 1200px) and (max-width: 1399px), only screen and (max-width: 991px) and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
    height: auto;
  }
}
@media (max-width: 991px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item {
    margin-left: 0;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a {
    padding: 12px 25px;
    color: #ffffff;
    border-bottom: 1px solid #333333;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a:hover {
    padding-left: 25px;
  }
  header .header-area .header-main .nav-menu .menu .has-children a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .header-area .header-main .nav-menu .menu .has-children.active > a .plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
header .header-area .header-main .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header .header-area .header-main .open-nav-menu span {
  display: block;
  height: 4px;
  width: 40px;
  background-color: #1d8fa5;
  position: relative;
}
header .header-area .header-main .open-nav-menu span::after, header .header-area .header-main .open-nav-menu span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1d8fa5;
  box-sizing: border-box;
}
header .header-area .header-main .open-nav-menu span::before {
  top: -9px;
}
header .header-area .header-main .open-nav-menu span::after {
  top: 9px;
}
@media (max-width: 991px) {
  header .header-area .header-main .open-nav-menu {
    display: flex;
  }
}
header .header-area .header-main .close-nav-menu {
  font-size: 27px;
  background-color: transparent;
  color: #1d8fa5;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
}
header .header-area .header-main .close-nav-menu img {
  width: 16px;
}
@media (max-width: 991px) {
  header .header-area .header-main .close-nav-menu {
    display: flex;
  }
}
header .header-area .header-main .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  header .header-area .header-main .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  header .header-area .header-main .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
}
header .header-area .contact-btn .btn-main {
  padding: 12px 30px;
}

.padding-banner {
  padding-top: 136px;
}
@media (max-width: 991px) {
  .padding-banner {
    padding-top: 70px;
  }
}

@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu.sub-menu-2 {
    top: 8px;
    left: calc(100% + 21px);
    opacity: 0;
    visibility: hidden;
    width: 250px;
  }
  header .header-area .header-main .nav-menu .menu .menu-item.has-children-2:hover .sub-menu-2 {
    top: 0;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 992px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu.sub-menu-2 .menu-item a {
    padding: 12px 45px;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu.sub-menu-2 .menu-item a:hover {
    padding-left: 45px;
  }
}
body.hidden-scrolling {
  overflow: hidden !important;
}

body.home-page header .header-area:not(.sticky) .nav-menu .menu .menu-item > a {
  color: #ffffff;
}
body.home-page header .header-area:not(.sticky) .nav-menu .menu .menu-item > a .plus::before, body.home-page header .header-area:not(.sticky) .nav-menu .menu .menu-item > a .plus::after {
  background: #ffffff;
}

.footer-area {
  background: #f3f3f3;
  padding: 65px 0 0;
}
.footer-area .footer-top {
  border-bottom: 1px solid #ccc;
}
@media (max-width: 991px) {
  .footer-area .footer-top .single-footer-caption {
    margin-bottom: 70px;
  }
}
.footer-area .footer-top .single-footer-caption .footer-logo {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.footer-area .footer-top .single-footer-caption .footer-logo img {
  height: 90px;
  object-fit: contain;
}
.footer-area .footer-top .single-footer-caption .footer-pera .info1 {
  line-height: 1.8;
  margin-bottom: 30px;
  color: #000;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
.footer-area .footer-top .single-footer-caption .footer-tittle span {
  color: #e6121f;
  font-family: "Changa One", sans-serif;
  font-size: 18px;
  margin-bottom: 38px;
  font-weight: 500;
  text-transform: uppercase;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li {
  color: #000;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li a {
  color: #868c98;
  font-weight: 300;
  transition: 0.4s ease;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li a:hover {
  color: #1d8fa5;
  padding-left: 5px;
}
.footer-area .footer-top .single-footer-caption .footer-cap {
  margin-bottom: 30px;
}
.footer-area .footer-top .single-footer-caption .footer-cap span {
  color: #1d8fa5;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
  display: block;
}
.footer-area .footer-top .single-footer-caption .footer-cap p {
  color: #000;
  font-size: 14px;
}
.footer-area .footer-top .single-footer-caption .footer-cap a {
  color: #000;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  display: block;
  transition: 0.4s ease;
}
.footer-area .footer-top .single-footer-caption .footer-cap a:hover {
  color: #1d8fa5;
  padding-left: 5px;
}
.footer-area .footer-bottom {
  padding-bottom: 20px;
  padding-top: 30px;
}
.footer-area .footer-bottom img {
  filter: brightness(0);
  width: 125px;
  height: 52px;
}
.footer-area .footer-bottom .footer-copy-right p {
  color: #000;
  font-weight: 300;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 12px;
}

.social_links {
  margin: 25px 0;
}
@media (max-width: 991px) {
  .social_links {
    margin: 30px 0 40px;
  }
}
.social_links ul li {
  display: inline-block;
}
.social_links ul li a {
  font-size: 18px;
  color: #C3B2F0;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  background: #e6121f;
  border-radius: 50%;
  line-height: 40px !important;
  margin-right: 7px;
  color: #fff;
  line-height: 41px !important;
  transition: 0.4s ease;
}
.social_links ul li a:hover {
  background: #1d8fa5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mob-center {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mob-center {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .mob-center {
    text-align: center;
  }
}

.blog-area {
  padding: 65px 0;
  overflow-y: hidden;
}
.blog-area .blog-page__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-area .blog-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .blog-area .blog-page__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.blog-area .home-blog-single {
  transition: 0.4s ease;
}
.blog-area .home-blog-single .blog-img-cap .blog-img {
  overflow: hidden;
  position: relative;
  height: 190px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.blog-area .home-blog-single .blog-img-cap .blog-img img {
  width: 100%;
  max-width: 100%;
  height: 344px;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s ease-out 0s;
  border-radius: 8px 8px 0 0;
}
.blog-area .home-blog-single .blog-img-cap ul {
  background: #f3f3f3;
}
.blog-area .home-blog-single .blog-img-cap ul li {
  background: #e6121f;
  display: inline-block;
  font-size: 14px;
  font-family: "Google Sans", sans-serif;
  font-weight: 300;
  color: #787878;
  padding: 20px 30px 20px 120px;
  margin-right: 50px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-area .home-blog-single .blog-img-cap ul li {
    padding: 20px 30px 20px 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area .home-blog-single .blog-img-cap ul li {
    padding-top: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .blog-area .home-blog-single .blog-img-cap ul li {
    padding-top: 20px;
    padding-left: 20px;
  }
}
.blog-area .home-blog-single .blog-img-cap .blog-cap {
  background: #f3f3f3;
  padding: 20px 20px 20px 30px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 0 8px 8px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap {
    min-height: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap {
    min-height: 0px;
  }
}
@media (max-width: 575px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap {
    min-height: 0px;
  }
}
.blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
  color: #191d34;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
    font-size: 19px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
    font-size: 19px;
  }
}
@media (max-width: 575px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
    font-size: 19px;
  }
}
.blog-area .home-blog-single .blog-img-cap .blog-cap .more-btn {
  position: relative;
  padding-left: 50px;
}
.blog-area .home-blog-single .blog-img-cap .blog-cap .more-btn::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: #000000;
}
.blog-area .home-blog-single:hover {
  box-shadow: 0px 22px 57px 0px rgba(34, 41, 72, 0.05);
}
.blog-area .home-blog-single:hover .blog-img img {
  transform: scale(1.1);
}

.brands-area {
  background: #e6121f;
  padding: 20px 0;
}
.brands-area img {
  filter: brightness(0) invert(1);
  height: 61px !important;
  object-fit: contain !important;
}

.slider-area {
  background-image: url(../img/banners/banner-breadcrumb.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
  margin: 0px 20px;
  margin-top: 100px;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area {
    margin-top: 107px;
  }
}
.slider-area:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: none;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area:after {
    display: block;
  }
}
.slider-area .slider-height {
  height: 400px;
  background-size: cover;
}
.slider-area .slider-height .hero-cap {
  z-index: 2;
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area .slider-height .hero-cap {
    padding: 0 30px;
  }
}
.slider-area .slider-height .hero-cap:before {
  content: "";
  position: absolute;
  width: 120%;
  left: -70%;
  height: 400px;
  top: 50%;
  transform: translateY(-50%);
  background: #257685;
  border-top-right-radius: 250px;
  border-bottom-right-radius: 250px;
  z-index: -1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area .slider-height .hero-cap:before {
    display: none;
  }
}
.slider-area .slider-height .hero-cap h1 {
  font-size: 45px;
  font-weight: 500;
  font-family: "Changa One", sans-serif;
  font-stretch: extra-expanded;
  color: #fff;
  position: relative;
  margin-bottom: 30px;
}
.slider-area .slider-height .hero-cap h1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 5px;
  border-radius: 10px;
  background: #e6121f;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-area .slider-height .hero-cap h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .slider-area .slider-height .hero-cap h1 {
    font-size: 35px;
  }
}
.slider-area .slider-height .hero-cap .color-w {
  width: fit-content;
  color: #1d8fa5;
  margin: 0;
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.3568627451);
  border: 1px solid rgba(255, 255, 255, 0.4431372549);
  color: #fff;
  border-radius: 10px;
  font-weight: 300;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area .slider-height .hero-cap .color-w {
    font-size: 12px;
  }
}
.slider-area .slider-height .hero-cap .ajust-link {
  font-weight: 500;
  color: #fff;
}
.slider-area .slider-height .hero-cap .ajust-link:hover {
  color: #1d8fa5;
}
.slider-area .slider-height .hero-cap .ajust-link:last-child {
  font-weight: 800;
}

button.btn-main {
  border: none;
}

.btn-main {
  background: #e6121f;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 13px 18px;
  font-family: "Google Sans", sans-serif;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  border-radius: 40px;
  -moz-user-select: none;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.4s linear;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-main::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #1d8fa5;
  border-radius: 40px;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.btn-main:hover {
  color: #fff;
}
.btn-main:hover:after {
  left: 0;
  width: 100%;
}
.btn-main:active {
  top: 2px;
}

.btn-two {
  position: relative;
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: fit-content;
  background-color: #1d8fa5;
  color: #fff;
  border-radius: 10rem;
  padding: 5px 10px;
  margin: 20px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
  box-shadow: 3px 3px 25px -5px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in;
}
.btn-two:hover {
  background-color: #e6121f;
  transform: scale(1.03);
}
.btn-two:hover .icon .i1 {
  transition: transform 0.3s ease-in-out;
  transform: translate(180%, -200%);
}
.btn-two:hover .icon .i2 {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0px, 0px) rotate(-30deg);
}
.btn-two span, .btn-two .txt {
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
}
.btn-two .icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  position: relative;
  color: #1d8fa5;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.btn-two .icon .i1, .btn-two .icon .i2 {
  color: #1d8fa5;
  font-size: 14px;
  margin: 0;
  position: absolute;
  transform: translate(0%, 0%) rotate(-30deg);
}
.btn-two .icon .i2 {
  transform: translate(-200%, 180%) rotate(-30deg);
}

.btn-arrow {
  position: relative;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  font-weight: 800;
  transition: 0.3s all ease;
  color: #e6121f;
  display: inline-block;
}
.btn-arrow:after {
  transition: 0.3s all ease;
  position: absolute;
  content: "➜";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  opacity: 0;
  visibility: hidden;
}
.btn-arrow:hover {
  padding-right: 30px;
  color: #e6121f;
}
.btn-arrow:hover:after {
  opacity: 1;
  visibility: visible;
}

.card-product {
  display: inline-block;
  background: #fff;
  border-radius: 20px;
  transition: 0.3s all ease-in-out;
  position: relative;
  top: 0;
  z-index: 1;
  margin: 0 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 20px;
}
.card-product:hover .image img {
  transform: scale(1.2) rotate(3deg);
}
.card-product .image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 10px;
}
.card-product .image img {
  transition: 0.4s ease-in-out;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.card-product .text span {
  border-radius: 12px;
  font-size: 0.9em;
  background-color: rgba(29, 143, 165, 0.1);
  color: #1d8fa5;
  font-weight: 600;
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 10px;
}
.card-product .text h2,
.card-product .text h3 {
  font-weight: 600 !important;
  font-size: 14px;
  line-height: 1.5em;
}
.card-product .text p {
  font-size: 12px;
  color: #555555;
}
.card-product .text p span {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #e6121f;
  border: 1px solid #e6121f;
  padding: 8px;
  border-radius: 8px;
  width: 80%;
  display: inline-block;
  transition: 0.4s ease;
  margin-bottom: 20px;
}
.card-product .btn-area {
  width: 100%;
  display: flex;
  justify-content: end;
}
.card-product .btn-area .btn-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: #e6121f;
  padding: 7px 12px;
  text-align: center;
  color: #fff;
  font-size: 0.9em;
  border-radius: 25px;
  gap: 6px;
}
.card-product .btn-area .btn-product .icon {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  rotate: 0deg;
  transition: all 0.4s ease;
}
.card-product .btn-area .btn-product .icon i {
  transition: all 0.4s ease;
  font-size: 0.9em;
}
.card-product:hover .icon {
  background-color: #fff;
  color: #e6121f;
}
.card-product:hover .icon i {
  color: #e6121f;
  rotate: 45deg;
}

.blog-card {
  position: relative;
  border-radius: 18px;
  background: #fff;
  border: 1px solid color-mix(in srgb, #1d8fa5, #fff 88%);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1d8fa5 0%, #e6121f 100%);
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.blog-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: color-mix(in srgb, #1d8fa5, #fff 90%);
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.blog-card__img--placeholder {
  display: grid;
  place-items: center;
  color: color-mix(in srgb, #1d8fa5, #fff 40%);
  font-size: 2.4rem;
  background: linear-gradient(145deg, color-mix(in srgb, #1d8fa5, #fff 88%) 0%, #fff 100%);
}
.blog-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(29, 143, 165, 0.35) 100%);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
.blog-card__date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e6121f;
  line-height: 1.4;
}
.blog-card__reading {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #1d8fa5;
  background: color-mix(in srgb, #1d8fa5, #fff 88%);
  line-height: 1.2;
}
.blog-card__reading i {
  font-size: 0.75rem;
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 20px 18px 22px;
}
.blog-card__title {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}
.blog-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #666;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__action {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: #1d8fa5;
  transition: background 0.25s ease, transform 0.25s ease;
}
.blog-card__action i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, #1d8fa5, #fff 60%);
  box-shadow: 0 18px 40px rgba(29, 143, 165, 0.14);
}
.blog-card:hover::before {
  transform: scaleX(1);
}
.blog-card:hover .blog-card__img {
  transform: scale(1.07);
}
.blog-card:hover .blog-card__overlay {
  opacity: 0.75;
}
.blog-card:hover .blog-card__title {
  color: #1d8fa5;
}
.blog-card:hover .blog-card__action {
  background: #e6121f;
}
.blog-card:hover .blog-card__action i {
  transform: translateX(4px);
}

.card-blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 2px solid rgba(230, 18, 31, 0.15);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-blog-featured {
    grid-template-columns: 1fr;
  }
}
.card-blog-featured__media {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}
.card-blog-featured__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-blog-featured__media:hover img {
  transform: scale(1.04);
}
.card-blog-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-blog-featured__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e6121f;
  margin-bottom: 0.75rem;
}
.card-blog-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.75rem;
}
.card-blog-featured h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}
.card-blog-featured h2 a {
  color: #e6121f;
  text-decoration: none;
}
.card-blog-featured h2 a:hover {
  color: #e6121f;
}
.card-blog-featured p {
  color: #444;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.card-blog-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #e6121f;
  text-decoration: none;
}
.card-blog-featured__link:hover {
  color: #e6121f;
}

.card-blog-list {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
@media (max-width: 575px) {
  .card-blog-list {
    flex-direction: column;
  }
}
.card-blog-list__media {
  flex: 0 0 38%;
  max-width: 300px;
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .card-blog-list__media {
    flex: none;
    max-width: 100%;
  }
}
.card-blog-list__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: #f0f0f0;
  color: rgba(0, 0, 0, 0.2);
  font-size: 2rem;
}
.card-blog-list__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.card-blog-list__media:hover .card-blog-list__img {
  transform: scale(1.05);
}
.card-blog-list__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-blog-list__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.card-blog-list h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}
.card-blog-list h3 a {
  color: #e6121f;
  text-decoration: none;
}
.card-blog-list h3 a:hover {
  color: #e6121f;
}
.card-blog-list p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.card-blog-list__link {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.88rem;
  color: #e6121f;
  text-decoration: none;
}
.card-blog-list__link:hover {
  text-decoration: underline;
}

.card-blog-highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: 0;
  margin-bottom: 2rem;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 40px rgba(230, 18, 31, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-blog-highlight {
    grid-template-columns: 1fr;
  }
}
.card-blog-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(230, 18, 31, 0.18);
}
.card-blog-highlight__media {
  display: block;
  height: 100%;
  min-height: 100%;
  align-self: stretch;
  overflow: hidden;
}
.card-blog-highlight__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}
.card-blog-highlight__media:hover img {
  transform: scale(1.04);
}
.card-blog-highlight__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  height: 100%;
  background: linear-gradient(135deg, rgba(29, 143, 165, 0.15), rgba(230, 18, 31, 0.2));
  color: rgba(0, 0, 0, 0.2);
  font-size: 2.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-blog-highlight__media {
    min-height: 240px;
    height: auto;
  }
}
.card-blog-highlight__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.25rem;
}
.card-blog-highlight__label {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #e6121f;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.85rem;
}
.card-blog-highlight__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.75rem;
}
.card-blog-highlight__meta i {
  color: #e6121f;
}
.card-blog-highlight__meta-sep {
  color: #bbb;
}
.card-blog-highlight h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.3;
  color: #e6121f;
  margin-bottom: 0.85rem;
}
.card-blog-highlight p {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.35rem;
}
.card-blog-highlight__btn.btn-main {
  align-self: flex-start;
  padding: 10px 22px;
}

.cta-area {
  background-image: url(../img/gallery/cta-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1000px rgba(21, 22, 22, 0.692);
  padding: 100px 0;
}
.cta-area .cta-caption h3 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area .cta-caption h3 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area .cta-caption h3 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .cta-area .cta-caption h3 {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
.cta-area .cta-caption p {
  color: #fff;
  font-size: 18px;
}
.cta-area .btn-main i {
  font-size: 3em;
}

@media (min-width: 992px) {
  .menu-sidebar {
    display: flex;
    justify-content: end;
  }
}

.accordion {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .accordion {
    width: 95%;
  }
}
.accordion .accordion-item {
  border: none;
}
.accordion .accordion-item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #1d8fa5;
}
.accordion .accordion-item button[aria-expanded=true] .icon {
  color: #1d8fa5;
}
@media (max-width: 991px) {
  .accordion {
    padding: 0 20px;
  }
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #161616;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  transition: 0.4s ease;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #1d8fa5;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #1d8fa5;
  border: 1px solid #1d8fa5;
}
.accordion button .accordion-title {
  font-weight: 600;
  font-size: 1em;
  display: flex;
  width: 90%;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  color: #e6121f;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #e6121f;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 100%;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
@media (max-width: 991px) {
  .accordion button[aria-expanded=true] + .accordion-content {
    overflow-y: scroll;
  }
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p,
.accordion .accordion-content li {
  font-size: 0.9rem;
  font-weight: 300;
  margin: 2em 0;
}
.accordion .accordion-content p a:hover,
.accordion .accordion-content li a:hover {
  color: #1d8fa5;
  padding-left: 5px;
}
@media (max-width: 991px) {
  .accordion .accordion-content p {
    font-weight: 600;
    color: #e6121f;
    padding-bottom: 5px;
  }
}

.card-contact {
  display: inline-block;
  align-items: center;
  border-radius: 10px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(29, 143, 165, 0.2);
  transition: 0.2s ease-in-out;
}
.card-contact:hover {
  border: 1px solid #1d8fa5;
}
.card-contact p {
  margin-bottom: 0;
}

.btn-display .btn-main {
  min-width: 200px;
  width: fit-content;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .btn-display .btn-main {
    width: 100%;
  }
  .btn-display .btn-main.whats-form {
    margin-top: 10px;
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .btn-display {
    flex-direction: column;
  }
}

.home-form {
  padding: 65px 0;
}
.home-form form,
.home-form input,
.home-form label,
.home-form p,
.home-form textarea {
  border-radius: 25px;
  color: #000 !important;
}
.home-form .form-contact {
  margin-top: 90px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(29, 143, 165, 0.2);
}
@media (max-width: 991px) {
  .home-form .form-contact {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .home-form .contact-card {
    padding: 10px;
  }
}
.home-form .contact-card .fa-contact {
  background: transparent;
  padding: 10px;
  text-align: center;
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}
.home-form .contact-card .fa-contact i {
  font-size: 25px;
  color: #1d8fa5;
}
.home-form .contact-card .content h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: rgba(29, 143, 165, 0.6);
  margin-bottom: 5px;
}
.home-form .contact-card .content p {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.home-form .contact-card .content p a {
  line-height: 1;
  color: #000;
}
.home-form .contact-card .content p a:hover {
  color: #1d8fa5;
}

.form-contact label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.form-contact .form-group {
  margin-bottom: 30px;
}
.form-contact .form-group .btn-prod button,
.form-contact .form-group .btn-prod a {
  width: 80%;
  margin-left: 0;
}
.form-contact .form-control {
  border: 1px solid rgba(29, 143, 165, 0.1);
  border-radius: 15px;
  height: 48px;
  padding-left: 18px;
  font-size: 13px;
  background: rgba(29, 143, 165, 0.06);
  width: 100%;
}
.form-contact .form-control:focus {
  border: 1px solid #1d8fa5;
  box-shadow: none;
}
.form-contact .form-control::placeholder {
  font-weight: 300;
  color: #999999;
}
.form-contact textarea {
  border-radius: 0px;
  height: 100% !important;
  padding-top: 20px;
}
.form-contact button {
  border: none;
}

#form-prod-int {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
}

.h3-form {
  font-size: 20px;
  color: #e6121f;
}
.h3-form i {
  color: #1d8fa5;
  font-size: 18px;
  position: relative;
  top: 5px;
}

.whats-form {
  background: #22ba59;
  margin-left: 20px;
}
.whats-form::after {
  background-color: #01a43d;
}

@keyframes sweep {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*=============*/
.whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 75px;
  right: 15px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  animation: sweep 1.5s ease-in-out;
  display: flex;
  justify-content: center;
}

.whatsapp-icon {
  margin-top: 13px;
}

.blog-wp-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.blog-wp-pagination__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  background: #f3f3f3;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #222;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.blog-wp-pagination__btn:hover {
  background: rgba(29, 143, 165, 0.12);
  border-color: rgba(29, 143, 165, 0.45);
  color: #e6121f;
}
.blog-wp-pagination__btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.blog-wp-pagination__info {
  font-weight: 600;
  color: #555;
}

.blog-wp-empty {
  background: #f8f8f8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}
.blog-wp-empty h1,
.blog-wp-empty h2 {
  margin-bottom: 0.75rem;
  color: #e6121f;
}
.blog-wp-empty p {
  margin-bottom: 1.25rem;
  color: #555;
}

.blog-wp-accordion {
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: #f8f8f8;
  overflow: hidden;
}
.blog-wp-accordion--toc {
  margin-bottom: 2rem;
}

.blog-wp-accordion__trigger {
  display: block;
  width: 100%;
  position: relative;
  padding: 1rem 3rem 1rem 1.25rem;
  border: 0;
  background: transparent;
  color: #e6121f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.blog-wp-accordion__trigger:hover, .blog-wp-accordion__trigger:focus-visible {
  color: #e6121f;
  background: rgba(29, 143, 165, 0.06);
  outline: none;
}

.blog-wp-accordion__icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transform: translateY(-50%);
}
.blog-wp-accordion__icon::before, .blog-wp-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  border-radius: 1px;
}
.blog-wp-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.2s ease;
}

.blog-wp-accordion__trigger[aria-expanded=true] .blog-wp-accordion__icon::after {
  opacity: 0;
}

.blog-wp-accordion__panel {
  padding: 0 1.25rem 1.15rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.blog-wp-accordion__panel[hidden] {
  display: none;
}

.blog-wp-accordion__list {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
}
.blog-wp-accordion__list li {
  color: #333;
  line-height: 1.6;
  font-size: 0.95rem;
}
.blog-wp-accordion__list li + li {
  margin-top: 0.5rem;
}

.blog-wp-accordion__toc {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}
.blog-wp-accordion__toc--root > .blog-wp-accordion__toc-item--h2 {
  position: relative;
  padding-left: 1.1rem;
}
.blog-wp-accordion__toc--root > .blog-wp-accordion__toc-item--h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e6121f;
}
.blog-wp-accordion__toc--root > .blog-wp-accordion__toc-item--h2 + .blog-wp-accordion__toc-item--h2 {
  margin-top: 0.75rem;
}

.blog-wp-accordion__toc-sub {
  margin: 0.45rem 0 0;
  padding: 0.35rem 0 0 0.85rem;
  list-style: none;
  border-left: 2px solid rgba(230, 18, 31, 0.3);
}
.blog-wp-accordion__toc-sub .blog-wp-accordion__toc-item--h3 {
  position: relative;
  padding-left: 0.9rem;
}
.blog-wp-accordion__toc-sub .blog-wp-accordion__toc-item--h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: #999;
  transform: rotate(45deg);
}
.blog-wp-accordion__toc-sub .blog-wp-accordion__toc-item--h3 + .blog-wp-accordion__toc-item--h3 {
  margin-top: 0.4rem;
}

.blog-wp-accordion__toc-link {
  display: inline-block;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.blog-wp-accordion__toc-link:hover {
  color: #e6121f;
  text-decoration: underline;
}

.blog-wp-accordion__toc-item--h2 > .blog-wp-accordion__toc-link {
  font-weight: 600;
}

.blog-wp-accordion__toc-item--h3 > .blog-wp-accordion__toc-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
}

.blog-wp-accordion--tags {
  margin-top: 2rem;
}

.blog-wp-accordion__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}
.blog-wp-accordion__tags li {
  list-style: none;
  list-style-type: none;
  margin: 0;
}
.blog-wp-accordion__tags li::marker {
  content: none;
}

.blog-wp-accordion__tag-link {
  display: inline-block;
  background: #f3f3f3;
  color: #444;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.blog-wp-accordion__tag-link:hover {
  color: #e6121f;
  background: rgba(230, 18, 31, 0.08);
  border-color: rgba(230, 18, 31, 0.25);
  text-decoration: none;
}

.int-page-4.blog-page .blog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-4.blog-page .blog-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .int-page-4.blog-page .blog-page__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.int-page-4.blog-page .blog-page__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.int-page-4.blog-page .blog-page__sidebar-block {
  padding: 18px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #f8f8f8;
}
.int-page-4.blog-page .blog-page__sidebar-cta {
  background: rgba(29, 143, 165, 0.08);
  border-color: rgba(29, 143, 165, 0.25);
}
.int-page-4.blog-page .blog-page__sidebar-cta p {
  color: #333 !important;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
  text-align: left;
}
.int-page-4.blog-page .blog-page__sidebar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #e6121f;
  margin-bottom: 0.85rem;
}
.int-page-4.blog-page .blog-page__sidebar-title--section {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}
.int-page-4.blog-page .blog-page__sidebar-block--list .blog-page__sidebar-list li + li,
.int-page-4.blog-page .blog-page__sidebar-block--list .blog-page__sidebar-categories li + li {
  margin-top: 0.65rem;
}
.int-page-4.blog-page .blog-page__sidebar-btn.btn-main {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.88rem;
}
.int-page-4.blog-page .blog-page__sidebar-list,
.int-page-4.blog-page .blog-page__sidebar-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}
.int-page-4.blog-page .blog-page__sidebar-list li,
.int-page-4.blog-page .blog-page__sidebar-categories li {
  list-style: none;
  list-style-type: none;
  margin-bottom: 0;
}
.int-page-4.blog-page .blog-page__sidebar-list li::marker,
.int-page-4.blog-page .blog-page__sidebar-categories li::marker {
  content: none;
}
.int-page-4.blog-page .blog-page__sidebar-list li + li,
.int-page-4.blog-page .blog-page__sidebar-categories li + li {
  margin-top: 0.65rem;
}
.int-page-4.blog-page .blog-page__sidebar-list a,
.int-page-4.blog-page .blog-page__sidebar-categories a {
  display: block;
  color: #222;
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.45;
  transition: color 0.2s ease;
}
.int-page-4.blog-page .blog-page__sidebar-list a:hover,
.int-page-4.blog-page .blog-page__sidebar-categories a:hover {
  color: #e6121f;
}
.int-page-4.blog-page .blog-page__sidebar-list time,
.int-page-4.blog-page .blog-page__sidebar-categories time {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: #888;
}
.int-page-4.blog-page .blog-page__sidebar-categories li.is-active a {
  color: #e6121f;
  font-weight: 700;
}
.int-page-4.blog-page .blog-page__sidebar-empty {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
}

.blog-wp-article__back {
  margin-bottom: 1rem;
}
.blog-wp-article__back a {
  color: #e6121f;
  text-decoration: none;
  font-weight: 600;
}
.blog-wp-article__back a:hover {
  text-decoration: underline;
}
.blog-wp-article__featured {
  margin: 0 0 1.5rem;
  border-radius: 10px;
  overflow: hidden;
}
.blog-wp-article__featured img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.blog-wp-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
  color: #666;
  font-size: 0.92rem;
}
.blog-wp-article__meta-sep {
  color: #bbb;
}
.blog-wp-article__reading {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #e6121f;
}
.blog-wp-article__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.blog-wp-article__content {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 1.5rem;
  color: #333;
}
.blog-wp-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.blog-wp-article__content h2,
.blog-wp-article__content h3,
.blog-wp-article__content h4 {
  scroll-margin-top: 110px;
  font-family: inherit;
  text-transform: none;
  letter-spacing: normal;
}
.blog-wp-article__content h2 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.35;
  font-weight: 700;
  color: #e6121f;
  margin: 2.25rem 0 0.85rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(230, 18, 31, 0.25);
}
.blog-wp-article__content h2:first-child {
  margin-top: 0;
}
.blog-wp-article__content h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.4;
  font-weight: 600;
  color: #e6121f;
  margin: 1.5rem 0 0.65rem;
}
.blog-wp-article__content h4 {
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 600;
  color: #333;
  margin: 1.15rem 0 0.5rem;
}
.blog-wp-article__content p,
.blog-wp-article__content li {
  color: #444;
  font-size: 1rem;
  line-height: 1.75;
}
.blog-wp-article__content a {
  color: #e6121f;
}
.blog-wp-article__content .blog-wp-accordion--toc {
  margin: 1.25rem 0;
}

.blog2-page .blog-page__grid {
  margin-top: 0.5rem;
}

.blog2-article__back {
  margin-bottom: 1rem;
}
.blog2-article__back a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
}
.blog2-article__back a:hover {
  color: #e6121f;
}
.blog2-article__meta-bar {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog2-article__cover {
  margin: 0 0 1.5rem;
  border-radius: 16px;
  overflow: hidden;
}
.blog2-article__cover img {
  width: 100%;
  height: auto;
  display: block;
}
.blog2-article__lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: #222;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
}
.blog2-article__content {
  padding: 0 0.5rem;
}
.blog2-article__content h2,
.blog2-article__content h3 {
  scroll-margin-top: 110px;
}
.blog2-article__content h2 {
  color: #e6121f;
}
.blog2-article__content p,
.blog2-article__content li {
  color: #444;
  line-height: 1.8;
}
.blog2-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.blog2-article__tag {
  font-size: 0.88rem;
  color: #e6121f;
  text-decoration: none;
  font-weight: 600;
}
.blog2-article__tag:hover {
  color: #e6121f;
}
.blog2-article__related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.blog2-article__related h2 {
  font-size: 1.25rem;
  color: #e6121f;
  margin-bottom: 1.25rem;
  text-align: center;
}
.blog2-article__related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 575px) {
  .blog2-article__related-grid {
    grid-template-columns: 1fr;
  }
}
.blog2-article__related-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
  text-decoration: none;
  transition: transform 0.25s ease;
}
.blog2-article__related-card:hover {
  transform: translateY(-4px);
}
.blog2-article__related-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.blog2-article__related-card span {
  display: block;
  padding: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e6121f;
  line-height: 1.35;
}

.contact-section {
  padding: 65px 0 0;
}
.contact-section .info-container.contact-sidebar {
  background: linear-gradient(165deg, #fff 0%, color-mix(in srgb, #1d8fa5, #fff 94%) 100%);
  border: 1px solid color-mix(in srgb, #1d8fa5, #fff 78%);
  box-shadow: 0 12px 32px rgba(29, 143, 165, 0.1);
  position: relative;
  padding: 28px 24px;
  border-radius: 16px;
  overflow: hidden;
}
.contact-section .info-container.contact-sidebar::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1d8fa5 0%, #e6121f 100%);
}
.contact-section .info-container.contact-sidebar::after {
  display: none;
}
.contact-section .contact-sidebar__header {
  margin-bottom: 22px;
}
.contact-section .contact-sidebar__header .contact-sidebar__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e6121f;
  margin-bottom: 8px;
}
.contact-section .contact-sidebar__header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.contact-section .contact-sidebar__header p {
  margin: 0;
  color: #5a5a5a;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-section .contact-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-section .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid color-mix(in srgb, #1d8fa5, #fff 86%);
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  color: inherit;
}
.contact-section .contact-item:hover {
  border-color: color-mix(in srgb, #1d8fa5, #fff 55%);
  box-shadow: 0 8px 20px rgba(29, 143, 165, 0.12);
  transform: translateY(-2px);
  color: inherit;
}
.contact-section .contact-item--static {
  cursor: default;
}
.contact-section .contact-item--static:hover {
  transform: none;
  box-shadow: none;
  border-color: color-mix(in srgb, #1d8fa5, #fff 86%);
}
.contact-section .contact-item--whatsapp .contact-item__icon {
  background: color-mix(in srgb, #25d366, #fff 82%);
  color: #128c7e;
}
.contact-section .contact-item__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, #1d8fa5, #fff 86%);
  color: #1d8fa5;
  font-size: 1.05rem;
}
.contact-section .contact-item__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-section .contact-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e6121f;
}
.contact-section .contact-item strong {
  font-size: 0.98rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
  word-break: break-word;
}
.contact-section .contact-item__meta {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.4;
  word-break: break-word;
}
.contact-section .btn-contact {
  display: flex;
}
@media (max-width: 576px) {
  .contact-section .btn-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .contact-section .btn-contact .btn-main {
    margin-left: 0;
    width: 80%;
  }
}

.banner-area {
  padding-top: 0px;
  position: relative;
}
.banner-area .swiper {
  width: 100%;
  margin: 0 auto;
  border-radius: 0 0px 16px 16px;
  overflow: hidden;
}
.banner-area .swiper-slide img {
  clip-path: circle(0% at 0 50%);
  position: relative;
  height: 700px;
  object-fit: cover;
  object-position: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-area .swiper-slide img {
    object-position: right;
    height: 600px;
  }
}
@media (max-width: 575px) {
  .banner-area .swiper-slide img {
    height: 740px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area .swiper-slide::before {
    content: "";
    box-shadow: inset 0 0 0 1000px rgba(21, 22, 22, 0.55);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.7;
    z-index: 2;
  }
}
.banner-area .swiper-slide-active img {
  clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: clip-path !important;
}
.banner-area .swiper-button-prev,
.banner-area .swiper-button-next {
  background-color: #fff;
  color: #e6121f;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  top: 90%;
  transform: translateY(-50%);
  transition: 0.4s ease-in-out;
}
.banner-area .swiper-button-prev:hover,
.banner-area .swiper-button-next:hover {
  background-color: #e6121f;
}
.banner-area .swiper-button-prev:hover::after,
.banner-area .swiper-button-next:hover::after {
  color: #fff;
}
.banner-area .swiper-button-prev::after,
.banner-area .swiper-button-next::after {
  transition: 0.4s ease-in-out;
  font-weight: 600;
  font-size: 15px;
}
.banner-area .swiper-button-prev {
  left: 20px;
}
.banner-area .swiper-button-next {
  right: 20px;
}
.banner-area .swiper-pagination-bullet {
  height: 11px;
  width: 11px;
  margin: 0 7px !important;
  transition: 0.5s;
  background: #fff;
}
.banner-area .swiper-pagination-bullet:hover {
  transform: scale(1.2);
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}
.banner-area .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 8px;
  background: #1d8fa5;
}
.banner-area .swiper-pagination-bullet-active:hover {
  transform: scale(1);
  box-shadow: none;
}
.banner-area .content {
  position: absolute;
  z-index: 5 !important;
  top: 0;
  padding-left: 4vw;
  width: 50vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-area .content {
    padding-left: 3vw;
    width: 55vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-area .content {
    width: 90vw;
    justify-content: initial;
    margin-top: 120px;
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.banner-area .content h2 .dot {
  width: 10px;
  height: 10px;
  background-color: #1d8fa5;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  transition: all 0.4s ease;
  -webkit-animation: blink 2s infinite;
  animation: blink 1s infinite;
}
.banner-area .content h2 {
  text-transform: initial;
  background-color: rgba(29, 143, 165, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 100;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.4666666667);
  width: fit-content;
  border-radius: 12px;
}
.banner-area .content h1,
.banner-area .content span {
  color: #fff;
  font-family: "Changa One", sans-serif;
  font-size: 3em;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: initial;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area .content h1,
  .banner-area .content span {
    font-size: 2.7em;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-area .content h1,
  .banner-area .content span {
    font-size: 2.5em;
  }
}
@media (max-width: 575px) {
  .banner-area .content h1,
  .banner-area .content span {
    font-size: 2.1em;
    margin-bottom: 15px;
    line-height: 40px;
  }
}
.banner-area .content p {
  margin-bottom: 20px;
  color: #fff;
  font-size: 17px;
  width: 70%;
  text-align: justify;
  hyphens: auto;
  word-break: break-word;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-area .content p {
    width: 95%;
  }
}
@media (max-width: 575px) {
  .banner-area .content p {
    margin-bottom: 35px;
    width: 100%;
    font-size: 16px;
  }
}
.banner-area .content .button-area {
  background: #e6121f;
  padding: 15px 35px;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border-radius: 40px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: 0.4s ease;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 7px;
}
.banner-area .content .button-area a {
  color: inherit;
}
.banner-area .content .button-area:hover {
  background: #1d8fa5;
}
.banner-area .media-icons {
  z-index: 4;
  position: absolute;
  top: 40%;
  right: 50px;
  display: flex;
  flex-direction: column;
  transition: 0.5s ease;
}
@media (max-width: 575px) {
  .banner-area .media-icons {
    display: none;
  }
}
.banner-area .media-icons a {
  color: #fff;
  font-size: 1.6em;
  transition: 0.3s ease;
  background-color: rgba(230, 18, 31, 0.4);
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-area .media-icons a:not(:last-child) {
  margin-bottom: 20px;
}
.banner-area .media-icons a:hover {
  background-color: #e6121f;
  transform: scale(1.3);
}

.features-area {
  padding: 40px 0 20px;
}
.features-area .feature-item {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.features-area .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(29, 143, 165, 0.15);
}
.features-area .feature-item:hover .feature-icon {
  background: #1d8fa5;
  transform: rotate(8deg);
}
.features-area .feature-item:hover .feature-icon i {
  color: #ffffff;
}
.features-area .feature-item .feature-icon {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  border-radius: 14px;
  background: rgba(29, 143, 165, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.features-area .feature-item .feature-icon i {
  font-size: 28px;
  color: #1d8fa5;
  transition: all 0.4s ease;
}
.features-area .feature-item .feature-content h2, .features-area .feature-item .feature-content h3 {
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1e293b;
}
.features-area .feature-item .feature-content p {
  text-align: left;
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.5;
}

.regioes {
  background: linear-gradient(to top, #fff, rgba(29, 143, 165, 0.12));
  padding: 40px 0;
}
.regioes .section-title span {
  background-color: rgba(230, 18, 31, 0.7) !important;
  color: #fff;
  border-color: #e6121f !important;
}
.regioes .section-title {
  margin-bottom: 20px;
}
.regioes .map-area .card-map {
  padding: 24px;
  background: rgba(255, 255, 255, 0.6862745098);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 20px;
}
.regioes .map-area .card-map .map-image {
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  width: 100px;
  height: 100px;
  position: relative;
}
.regioes .map-area .card-map .map-image img {
  width: 100%;
  height: 100%;
}
.regioes .map-area .card-map .map-text {
  width: 100%;
}
.regioes .map-area .card-map .map-text h3 {
  color: #6e6e6e;
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.regioes .map-area .card-map .map-text h4 {
  font-size: 1.2em;
}
.regioes .map-area .card-map .map-text .times {
  margin: 20px 0;
}
.regioes .map-area .card-map .map-text .times p {
  color: #555555;
  font-size: 1em;
  margin: 0;
}
.regioes .map-area .card-map .map-text .button-area {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #1d8fa5;
  transition: all 0.4s ease;
}
.regioes .map-area .card-map .map-text .button-area a {
  transition: all 0.4s ease;
  color: #1d8fa5;
  font-weight: 600;
}
.regioes .map-area .card-map .map-text .button-area:hover {
  color: #e6121f;
  transform: translateX(10px);
}
.regioes .map-area .card-map .map-text .button-area:hover a {
  color: #e6121f;
}
.regioes .list-regioes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.regioes .list-regioes .regioes-item {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 6px 12px;
  background: rgba(29, 143, 165, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.regioes .list-regioes .regioes-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(29, 143, 165, 0.15);
}
.regioes .list-regioes .regioes-item:hover .feature-icon {
  background: #fff;
  transform: rotate(8deg);
}
.regioes .list-regioes .regioes-item:hover .feature-icon i {
  color: #1d8fa5;
}
.regioes .list-regioes .regioes-item h3 {
  font-size: 1em;
}
.regioes .list-regioes .regioes-item .feature-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 14px;
  background: #1d8fa5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.regioes .list-regioes .regioes-item .feature-icon i {
  font-size: 17px;
  color: #fff;
  transition: all 0.4s ease;
}
.regioes .list-regioes .regioes-item .feature-content h3 {
  text-align: left;
  font-size: 0.6em;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1e293b;
}
.regioes .list-regioes .regioes-item .feature-content p {
  text-align: left;
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.5;
}

.about-area {
  padding: 65px 0;
}
.about-area .about-content {
  padding: 0 10px;
}
.about-area .about-content p {
  text-align: justify;
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
  color: #000;
  margin: 5px 0;
}
.about-area .about-content .text-content .desc {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area .about-content .text-content .desc {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-area .about-content .text-content .desc {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .about-area .about-content .text-content .desc {
    width: 100%;
  }
}
.about-area .about-content .text-content .desc p {
  text-align: justify;
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  color: #000;
  margin: 8px 0;
}
.about-area .about-content .about-list {
  margin: 10px 0;
}
.about-area .about-content .about-list .item-list {
  display: flex;
  align-items: center;
  margin: 8px 0;
}
.about-area .about-content .about-list .item-list .icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(233, 233, 233, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-area .about-content .about-list .item-list .icon i {
  font-weight: 600;
  color: #1d8fa5;
}
.about-area .about-content .about-list .item-list .text-p {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #1a1a1a;
  margin-left: 10px;
  margin-bottom: 0;
}
.about-area .image-about {
  position: relative;
  margin-bottom: 35px;
  padding: 0 20px;
}
.about-area .image-about .inner-about {
  position: relative;
  padding-right: 100px;
  padding-bottom: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area .image-about .inner-about {
    padding-right: 5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-area .image-about .inner-about {
    padding-right: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 575px) {
  .about-area .image-about .inner-about {
    padding-right: 0;
    padding-bottom: 0;
  }
}
.about-area .image-about .inner-about .image-1 {
  border-radius: 10px;
  overflow: hidden;
  border-top: 20px solid #e6121f;
  border-left: 10px solid #e6121f;
  border-right: 10px solid #1d8fa5;
  border-bottom: 20px solid #1d8fa5;
  width: 100%;
  height: 570px;
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area .image-about .inner-about .image-1 {
    height: 460px;
  }
}
@media (max-width: 575px) {
  .about-area .image-about .inner-about .image-1 {
    height: 420px;
  }
}
.about-area .image-about .inner-about .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area .image-about .inner-about .image-1 img {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-area .image-about .inner-about .image-1 img {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .about-area .image-about .inner-about .image-1 img {
    width: 100%;
  }
}
.about-area .image-about .inner-about .image-1::before {
  position: absolute;
  left: -30px;
  bottom: -63px;
  width: 61%;
  height: 105px;
  background-color: transparent;
  border: 5px solid #e6121f;
  border-radius: 20px;
  background-position: 14px 14px;
  background-size: 16px 16px;
  z-index: -1;
  content: "";
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area .image-about .inner-about .image-1::before {
    right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-area .image-about .inner-about .image-1::before {
    bottom: -26px;
  }
}
@media (max-width: 575px) {
  .about-area .image-about .inner-about .image-1::before {
    bottom: -26px;
  }
}
.about-area .image-about .inner-about .image-2 {
  width: 300px;
  height: 400px;
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: 0;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area .image-about .inner-about .image-2 {
    width: 225px;
    height: 320px;
    bottom: -80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-area .image-about .inner-about .image-2 {
    display: none;
  }
}
@media (max-width: 575px) {
  .about-area .image-about .inner-about .image-2 {
    display: none;
  }
}
.about-area .image-about .inner-about .image-2 img {
  height: 100%;
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
}
.about-area .image-about .inner-about .experience {
  width: 200px;
  background-color: #e6121f;
  box-shadow: 3px 5px 18px 0 rgba(6, 22, 58, 0.18);
  position: absolute;
  top: -30px;
  right: 30px;
  height: 100px;
  padding: 15px;
  border-radius: 30px;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area .image-about .inner-about .experience {
    width: 60%;
    right: -20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area .image-about .inner-about .experience {
    width: 50%;
    right: -15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-area .image-about .inner-about .experience {
    right: -18px;
    width: 80%;
  }
}
@media (max-width: 575px) {
  .about-area .image-about .inner-about .experience {
    right: -4px;
    bottom: 15px;
    width: 80%;
  }
}
@media (max-width: 320px) {
  .about-area .image-about .inner-about .experience {
    width: 98%;
  }
}
.about-area .image-about .inner-about .experience {
  animation: movedup 2s ease-in-out infinite alternate forwards;
}
@keyframes movedup {
  0% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(2px);
  }
}
.about-area .image-about .inner-about .experience .left-number {
  float: left;
  width: 30%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}
.about-area .image-about .inner-about .experience .left-number span {
  font-family: "Changa One", sans-serif !important;
  font-size: 35px;
  font-weight: 600;
  color: #fff;
}
.about-area .image-about .inner-about .experience .left-number .counter span {
  font-size: 50px;
  font-weight: 700;
  color: #FFF;
  margin: 0px;
  padding: 5px 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area .image-about .inner-about .experience .left-number .counter span {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .about-area .image-about .inner-about .experience .left-number .counter span {
    font-size: 40px;
  }
}
.about-area .image-about .inner-about .experience .right-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  float: right;
  width: 70%;
  height: 100%;
  padding: 10px 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area .image-about .inner-about .experience .right-text {
    padding: 10px;
  }
}
@media (max-width: 575px) {
  .about-area .image-about .inner-about .experience .right-text {
    padding: 12px;
  }
}
.about-area .image-about .inner-about .experience .right-text span {
  font-family: "Changa One", sans-serif !important;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area .image-about .inner-about .experience .right-text span {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .about-area .image-about .inner-about .experience .right-text span {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .about-area .image-about .inner-about .experience .right-text span {
    font-size: 16px;
  }
}
.about-area .image-about .inner-about .experience .right-text p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area .image-about .inner-about .experience .right-text p {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .about-area .image-about .inner-about .experience .right-text p {
    font-size: 12px;
  }
}
@media (max-width: 320px) {
  .about-area .image-about .inner-about .experience .right-text p {
    font-size: 11px;
  }
}
.about-area .about-value-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 24px 30px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid color-mix(in srgb, #1d8fa5, #fff 86%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.about-area .about-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1d8fa5 0%, #e6121f 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.about-area .about-value-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, #1d8fa5, #fff 35%);
}
.about-area .about-value-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: color-mix(in srgb, #1d8fa5, #fff 88%);
  color: #1d8fa5;
  font-size: 1.35rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.about-area .about-value-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  transition: color 0.25s ease;
}
.about-area .about-value-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
  flex: 1;
}
.about-area .about-value-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, #1d8fa5, #fff 55%);
  box-shadow: 0 18px 40px rgba(29, 143, 165, 0.14);
}
.about-area .about-value-card:hover::before {
  transform: scaleX(1);
}
.about-area .about-value-card:hover .about-value-card__icon {
  background: #1d8fa5;
  color: #fff;
  transform: translateY(-2px);
}
.about-area .about-value-card:hover .about-value-card__title {
  color: #1d8fa5;
}

.product-area {
  padding: 65px 0;
  background-color: rgba(29, 143, 165, 0.12);
}
.product-area .box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .product-area .box-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 40px;
  }
}
.product-area .box-header a {
  font-size: 14px;
  font-weight: 500;
  color: #1d8fa5;
  transition: all 0.5s ease;
}
.product-area .box-header a:hover {
  color: #e6121f;
  transform: translateX(5px);
}
.product-area .padding-content {
  padding: 0 7vw;
}
@media (min-width: 992px) {
  .product-area .padding-content {
    padding: 0;
    padding-left: 3rem;
    padding-right: 15px;
  }
}
.product-area .swiper-button-prev,
.product-area .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.product-area .swiper-button-prev::after,
.product-area .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}

.cta-home {
  padding: 40px 0;
}
.cta-home .bg-area {
  overflow: hidden;
  position: relative;
  display: inline-block;
  padding: 60px 40px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(to bottom, #0c4d5a, rgba(29, 143, 165, 0.5));
}
.cta-home .bg-area:hover i.tshirt {
  rotate: 0deg;
  scale: 12;
}
.cta-home .bg-area i.tshirt {
  transition: all 0.7s ease;
  rotate: 12deg;
  position: absolute;
  top: 50%;
  transform: tanslateY(-50%);
  right: 40px;
  color: #fff;
  font-size: 1.5em;
  scale: 10;
  opacity: 0.2;
  z-index: 1;
}
.cta-home .bg-area .text {
  max-width: 60%;
}
.cta-home .bg-area h3, .cta-home .bg-area p {
  color: #fff;
}
.cta-home .bg-area .btn-area {
  width: 100%;
  display: flex;
}
.cta-home .bg-area .btn-area .btn-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: #e6121f;
  padding: 7px 12px;
  text-align: center;
  color: #fff;
  font-size: 0.9em;
  border-radius: 25px;
  gap: 6px;
}
.cta-home .bg-area .btn-area .btn-product .icon {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  rotate: 0deg;
  transition: all 0.4s ease;
}
.cta-home .bg-area .btn-area .btn-product .icon i {
  transition: all 0.4s ease;
  font-size: 0.9em;
}
.cta-home .bg-area:hover .btn-product .icon {
  background-color: #fff;
  color: #e6121f;
}
.cta-home .bg-area:hover .btn-product .icon i {
  rotate: 45deg;
}

.int-page-1 ul li {
  list-style: none;
}
.int-page-1 .gallery-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
}
.int-page-1 .gallery-wrapper .prodintSwiper {
  width: 100%;
  height: 480px;
}
@media (max-width: 767px) {
  .int-page-1 .gallery-wrapper .prodintSwiper {
    height: 320px;
  }
}
.int-page-1 .gallery-wrapper .prodintSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.int-page-1 .gallery-wrapper .prodintSwiper img:hover {
  transform: scale(1.03);
}
.int-page-1 .gallery-wrapper .swiper-button-prev,
.int-page-1 .gallery-wrapper .swiper-button-next {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  color: #1d8fa5;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.int-page-1 .gallery-wrapper .swiper-button-prev::after,
.int-page-1 .gallery-wrapper .swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
}
.int-page-1 .gallery-wrapper .swiper-button-prev:hover,
.int-page-1 .gallery-wrapper .swiper-button-next:hover {
  background: #1d8fa5;
  color: #fff;
  transform: scale(1.1);
}
.int-page-1 .gallery-wrapper .swiper-pagination-fraction {
  bottom: 20px;
  left: auto;
  right: 20px;
  width: auto;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}
.int-page-1 .product-description-main .spec-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 8px;
}
.int-page-1 .product-description-main .spec-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #1d8fa5;
  border-radius: 2px;
}
.int-page-1 .product-description-main p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 16px;
  text-align: justify;
}
.int-page-1 .boxExpand {
  margin: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
}
.int-page-1 .boxExpand #contentExpand {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
}
.int-page-1 .boxExpand #contentExpand p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
.int-page-1 .boxExpand #contentExpand .specs-bullets {
  padding-left: 0;
  list-style: none;
}
.int-page-1 .boxExpand #contentExpand .specs-bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #555;
}
.int-page-1 .boxExpand #contentExpand .specs-bullets li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #1d8fa5;
}
.int-page-1 .boxExpand #contentExpand.expanded {
  max-height: 2000px;
}
.int-page-1 .boxExpand #contentExpand.expanded::before {
  display: none;
}
.int-page-1 .boxExpand #contentExpand::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
  background: linear-gradient(to top, #ffffff 10%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.int-page-1 .boxExpand .btn-expand {
  border: none;
  background: transparent;
  color: #1d8fa5;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.int-page-1 .boxExpand .btn-expand i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.int-page-1 .boxExpand .btn-expand:hover {
  color: rgb(6.8880129371%, 33.9650293107%, 39.1904184354%);
}
.int-page-1 .boxExpand .btn-expand:hover i {
  transform: translateY(3px);
}
.int-page-1 .product-faq {
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
}
.int-page-1 .product-faq .spec-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 8px;
}
.int-page-1 .product-faq .spec-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #1d8fa5;
  border-radius: 2px;
}
.int-page-1 .product-faq .accordion {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 24px 28px;
}
@media (max-width: 991px) {
  .int-page-1 .product-faq .accordion {
    padding: 16px 20px;
  }
}
.int-page-1 .product-faq .accordion .accordion-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}
.int-page-1 .product-info-panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .int-page-1 .product-info-panel {
    position: relative;
    top: 0;
    margin-top: 20px;
    padding: 24px;
  }
}
.int-page-1 .product-info-panel .category-badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1d8fa5;
  background: rgba(29, 143, 165, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
}
.int-page-1 .product-info-panel .product-title {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  line-height: 1.25;
  margin-top: 12px;
}
.int-page-1 .product-info-panel .title-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1d8fa5 0%, #e6121f 100%);
  border-radius: 2px;
  margin-top: 12px;
}
.int-page-1 .product-info-panel .intro-text {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 24px;
}
.int-page-1 .product-info-panel .highlight-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.int-page-1 .product-info-panel .highlight-features .feature-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.int-page-1 .product-info-panel .highlight-features .feature-bullet .icon-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(29, 143, 165, 0.1);
  color: #1d8fa5;
  border-radius: 50%;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.int-page-1 .product-info-panel .cta-action-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.int-page-1 .product-info-panel .cta-action-box .btn-quick-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #1d8fa5 0%, #128c7e 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(18, 140, 126, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}
.int-page-1 .product-info-panel .cta-action-box .btn-quick-quote i {
  font-size: 20px;
}
.int-page-1 .product-info-panel .cta-action-box .btn-quick-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.35);
  background: linear-gradient(135deg, rgb(12.2694562361%, 60.5011117849%, 69.8089751364%) 0%, #128c7e 100%);
  color: #fff;
}
.int-page-1 .product-info-panel .cta-action-box .btn-quick-quote:active {
  transform: translateY(0);
}
.int-page-1 .product-info-panel .cta-action-box .cta-helper-text {
  font-size: 11px;
  color: #888;
  text-align: center;
  display: block;
  margin-top: 4px;
}
.int-page-1 .product-info-panel .sidebar-contact-form {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 25px;
  padding-top: 25px;
}
.int-page-1 .product-info-panel .sidebar-contact-form .form-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}
.int-page-1 .product-info-panel .sidebar-contact-form form .form-group, .int-page-1 .product-info-panel .sidebar-contact-form form .mb-3 {
  margin-bottom: 12px !important;
}
.int-page-1 .product-info-panel .sidebar-contact-form form input, .int-page-1 .product-info-panel .sidebar-contact-form form textarea, .int-page-1 .product-info-panel .sidebar-contact-form form select {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px 14px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.int-page-1 .product-info-panel .sidebar-contact-form form input:focus, .int-page-1 .product-info-panel .sidebar-contact-form form textarea:focus, .int-page-1 .product-info-panel .sidebar-contact-form form select:focus {
  border-color: #1d8fa5;
  box-shadow: 0 0 0 3px rgba(29, 143, 165, 0.15);
}
.int-page-1 .product-info-panel .sidebar-contact-form form button[type=submit], .int-page-1 .product-info-panel .sidebar-contact-form form .btn-main {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  margin-left: 0;
  text-align: center;
}

.int-page-2 .prodintSwiper {
  height: 400px;
}
.int-page-2 .swiper-button-prev,
.int-page-2 .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.int-page-2 .swiper-button-prev::after,
.int-page-2 .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}
.int-page-2 .img-text {
  position: relative;
  background-image: url(../img/gallery/about.webp);
}
.int-page-2 .img-text::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #454545, rgba(255, 255, 255, 0));
  z-index: 0;
}
.int-page-2 .img-text .content-padding {
  padding: 32px;
  z-index: 1;
}
.int-page-2 .img-text .content-padding h2,
.int-page-2 .img-text .content-padding p {
  color: #FFF;
}
.int-page-2 .buttons .btn-main {
  width: 100%;
  text-align: center;
  margin-left: 0;
}

.int-page-3 .title-text01 {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  padding: 10px;
}
.int-page-3 .title-text01 .title {
  position: relative;
}
.int-page-3 .title-text01 .title .sub-bg {
  position: absolute;
  top: -40px;
  left: -40px;
  font-size: 100px;
  font-weight: 600;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #1d8fa5;
  opacity: 0.2;
}
.int-page-3 .title-text01 .title h1,
.int-page-3 .title-text01 .title h2,
.int-page-3 .title-text01 .title h3 {
  position: relative;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 10px 0;
  background: -webkit-linear-gradient(#1d8fa5, #e6121f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.int-page-3 .box-navfeatures .custom-nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  border: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .custom-nav {
    margin-bottom: 15px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style {
    width: 48%;
    margin: 5px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: 0 0;
  border: none;
  border-radius: 10px;
  background-color: #f5f5f5;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  padding: 10px 30px;
  width: 100%;
  color: #000000;
  cursor: pointer;
  border: 1px solid #d8d8d8;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 15px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    margin: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 20px;
  }
}
@media (max-width: 575px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 20px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon i {
  font-size: 30px;
  color: #1d8fa5;
  background: linear-gradient(120deg, #e6121f 45%, #1d8fa5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon i {
    font-size: 25px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link.active {
  color: #ffffff;
  background: linear-gradient(130deg, #e6121f 60%, #1d8fa5 100%);
  border-color: #dee2e6;
  border: 0;
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link.active img {
  filter: brightness(600%) saturate(0);
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link.active i {
  color: #fff;
  background: linear-gradient(120deg, #fff 45%, #eee 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.int-page-3 .box-navfeatures .tab-content .tab-pane {
  display: none;
  padding: 5px;
}
.int-page-3 .box-navfeatures .tab-content .tab-pane.active {
  display: flex;
  animation: zoomIn 1s ease 0s 1 normal forwards;
}
.int-page-3 .box-navfeatures .tab-content .box-img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #e8e8e8;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .tab-content .box-img {
    height: 400px;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .int-page-3 .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
@media (max-width: 320px) {
  .int-page-3 .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding-left: 18px;
  color: #1a1a1a;
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 2px;
  height: 15px;
  background: #e6121f;
  transform: translateY(-50%) skew(-10deg);
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  width: 2px;
  height: 15px;
  background: #e6121f;
  transform: translateY(-50%) skew(-10deg);
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle span {
  font-weight: 500;
  color: #1d8fa5;
}
.int-page-3 .box-navfeatures .tab-content .box-text .title {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 700;
  color: #e6121f;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .tab-content .box-text .subtitle {
    font-size: 16px;
  }
  .int-page-3 .box-navfeatures .tab-content .box-text .title {
    font-size: 25px;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-text .desc p {
  text-align: justify;
  font-size: 16px;
  margin: 5px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .tab-content .box-text .desc p {
    font-size: 14px;
    line-height: 25px;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-text .list {
  margin: 10px 0;
}
.int-page-3 .box-navfeatures .tab-content .box-text .list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 5px 0;
}
.int-page-3 .box-navfeatures .tab-content .box-text .list li i {
  margin-right: 5px;
  font-size: 20px;
  background-color: #fff;
  color: #1d8fa5;
}
.int-page-3 .box-navfeatures .tab-content .box-text .btn-four {
  margin-top: 10px;
  padding: 8px 20px;
}
.int-page-3 .section-title02 {
  position: relative;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  z-index: 1;
}
.int-page-3 .section-title02 .icon {
  width: 120px;
  opacity: 1;
  z-index: -1;
}
.int-page-3 .section-title02 .subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #e6121f;
  background: linear-gradient(90deg, #1d8fa5 45%, #e6121f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
@media (max-width: 575px) {
  .int-page-3 .section-title02 .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .int-page-3 .section-title02 .subtitle {
    font-size: 16px;
  }
}
.int-page-3 .section-title02 .title {
  font-size: 45px;
  font-weight: 800;
  color: #2c2b2b;
  text-align: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .int-page-3 .section-title02 .title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .int-page-3 .section-title02 .title {
    font-size: 30px;
  }
}
@media (max-width: 320px) {
  .int-page-3 .section-title02 .title {
    font-size: 22px;
  }
}
.int-page-3 .section-title02 .title.color-gradint {
  background: linear-gradient(90deg, #1d8fa5 45%, #e6121f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.int-page-3 .section-title02 .desc {
  margin: 5px 0;
}
.int-page-3 .section-title02 .desc p {
  text-align: center;
  font-size: 16px;
  color: #1a1a1a;
  margin: 0;
}
.int-page-3 .style-img01 {
  position: relative;
  transition: all 0.3s ease-in-out;
  background: #fff;
  border: 1px solid #1d8fa5;
  text-align: center;
  padding: 20px 20px;
  border-radius: 10px;
  height: 415px;
  width: 90%;
}
.int-page-3 .style-img01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80%;
  width: 60px;
  height: 70%;
  background: #1d8fa5;
  background: linear-gradient(180deg, #1d8fa5 40%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
.int-page-3 .style-img01::after {
  content: "";
  position: absolute;
  bottom: -3%;
  left: -3%;
  width: 250px;
  height: 80%;
  border-radius: 5%;
  transform: rotate(0deg);
  background: radial-gradient(farthest-side at -33.33% 50%, rgba(0, 0, 0, 0) 52%, #e6121f 54% 57%, rgba(0, 0, 0, 0) 59%) 0 40px, radial-gradient(farthest-side at 50% 133.33%, rgba(0, 0, 0, 0) 52%, #e6121f 54% 57%, rgba(0, 0, 0, 0) 59%) 40px 0, radial-gradient(farthest-side at 133.33% 50%, rgba(0, 0, 0, 0) 52%, #e6121f 54% 57%, rgba(0, 0, 0, 0) 59%), radial-gradient(farthest-side at 50% -33.33%, rgba(0, 0, 0, 0) 52%, #e6121f 54% 57%, rgba(0, 0, 0, 0) 59%), #fefeff;
  background-size: 17.1416327405px 80px, 80px 17.1416327405px;
  opacity: 0.5;
  z-index: -1;
}
.int-page-3 .style-img01 img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -5%;
  width: 110%;
  height: 90%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.int-page-4 .box-img {
  margin-bottom: 20px;
  height: 450px;
}
.int-page-4 .box-img .prodintSwiper {
  width: 100%;
  height: 100%;
}
.int-page-4 .service-content .titles1 {
  font-size: 26px;
  margin: 15px 0;
  color: #e6121f;
}
.int-page-4 .service-content .titles2 {
  color: #e6121f;
  font-size: 24px;
  margin: 15px 0;
}
.int-page-4 .service-content p {
  font-size: 16px;
  text-align: justify;
  color: #000;
}
.int-page-4 .service-details-card {
  padding: 20px;
  box-shadow: 0px 8px 30px rgba(106, 106, 106, 0.1019607843);
  display: flex;
  align-items: start;
  border-left: 5px solid #1d8fa5;
  margin: 20px 0;
}
.int-page-4 .service-details-card .icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background-color: #f2f2f2;
  font-size: 35px;
  color: #1d8fa5;
}
.int-page-4 .service-details-card .details {
  margin-left: 20px;
}
.int-page-4 .service-details-card .details h2,
.int-page-4 .service-details-card .details h3 {
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin-bottom: 10px;
}
.int-page-4 .service-details-card .details p {
  font-size: 16px;
  color: #000;
}
.int-page-4 .sidebar02 .box-categoria {
  padding: 20px 30px;
  margin-bottom: 10px;
  background-color: rgba(238, 238, 238, 0.9333333333);
}
.int-page-4 .sidebar02 .box-categoria .cat-title {
  font-size: 30px;
  font-weight: 600;
  margin: 15px 0;
}
.int-page-4 .sidebar02 .box-categoria ul {
  margin-bottom: 10px;
}
.int-page-4 .sidebar02 .box-categoria ul li {
  padding: 18px 25px;
  list-style: none;
  background: #fff;
  margin-top: 15px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  overflow: hidden;
  transition: 0.3s ease;
}
.int-page-4 .sidebar02 .box-categoria ul li a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  color: #000;
}
.int-page-4 .sidebar02 .box-categoria ul li:hover {
  transform: scale(1.03);
  background: #1d8fa5;
}
.int-page-4 .sidebar02 .box-categoria ul li:hover a {
  color: #fff;
}
.int-page-4 .sidebar02 .sidebar-cta {
  position: relative;
  padding: 20px 30px;
  margin: 20px 0;
  height: 450px;
}
.int-page-4 .sidebar02 .sidebar-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 1;
}
.int-page-4 .sidebar02 .sidebar-cta img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px 30px;
  z-index: 2;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #1d8fa5;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner h2,
.int-page-4 .sidebar02 .sidebar-cta .content-inner h3 {
  color: #fff;
  font-size: 26px;
  margin: 15px 0;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner a {
  padding: 15px 30px;
  background-color: #1d8fa5;
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner a:hover {
  background-color: #fff;
  color: #1d8fa5;
}
.int-page-4 .swiper-button-prev,
.int-page-4 .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.int-page-4 .swiper-button-prev::after,
.int-page-4 .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}

.map-site ul li {
  margin-bottom: 10px;
}
.map-site ul li i {
  color: #e6121f;
}
.map-site ul li a {
  color: #000;
  text-transform: uppercase;
  font-size: 0.9em;
}
.map-site ul li a:hover {
  color: #1d8fa5;
  padding-left: 5px;
}

.politica-de-privacidade h2 {
  margin-top: 15px;
}

.lgpd {
  position: fixed;
  bottom: 4%;
  left: 2%;
  max-width: 360px;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 9999;
}
.lgpd .title {
  font-weight: 600;
  color: rgb(31, 41, 55);
}
.lgpd .description {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(75, 85, 99);
}
.lgpd .description a {
  color: rgb(59, 130, 246);
}
.lgpd .description a:hover {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
.lgpd .actions {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  flex-shrink: 0;
}
.lgpd .actions .pref {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(31, 41, 55);
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  background-color: transparent;
}
.lgpd .actions .pref:hover {
  color: rgb(156, 163, 175);
}
.lgpd .actions .pref:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.lgpd .actions .accept {
  font-size: 0.75rem;
  line-height: 1rem;
  background-color: rgb(17, 24, 39);
  font-weight: 500;
  border-radius: 0.5rem;
  color: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  cursor: pointer;
  border: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.lgpd .actions .accept:hover {
  background-color: rgb(55, 65, 81);
}
.lgpd .actions .accept:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* ==========================================================================
   Página SEO (pg-seo.php) - Estilos das Fontes e Menu Lateral
   ========================================================================== */
body.seo {
  font-family: "Google Sans", sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
}
body.seo h1, body.seo h2, body.seo h3, body.seo h4, body.seo h5, body.seo h6 {
  font-family: "Google Sans", sans-serif;
  color: #111111;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
body.seo p {
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 16px;
  text-align: justify;
}
body.seo strong, body.seo b {
  color: #111111;
  font-weight: 600;
}
body.seo ul, body.seo ol {
  padding-left: 0;
}
body.seo ul li, body.seo ol li {
  font-family: "Google Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 8px;
  list-style: disc inside;
}
body.seo blockquote {
  border-left: 4px solid #1d8fa5;
  background: #f8fafc;
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #4a4a4a;
  margin: 20px 0;
}
body.seo .prodintSwiper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
body.seo .prodintSwiper img {
  border-radius: 16px;
}

#contentExpand {
  font-family: "Google Sans", sans-serif;
}
#contentExpand h2 {
  font-size: 24px;
  color: #111111;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 8px;
}
#contentExpand h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background-color: #1d8fa5;
  border-radius: 2px;
}
#contentExpand h3 {
  font-size: 20px;
  color: #1d8fa5;
  margin-top: 20px;
  margin-bottom: 10px;
}

.menuLateral {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.menuLateral .title {
  font-family: "Google Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  display: block;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border: none;
}
.menuLateral .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #1d8fa5 0%, #e6121f 100%);
  border-radius: 2px;
}
.menuLateral ul {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 4px !important;
}
.menuLateral ul::-webkit-scrollbar {
  width: 5px;
}
.menuLateral ul::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.menuLateral ul::-webkit-scrollbar-thumb {
  background: #1d8fa5;
  border-radius: 10px;
}
.menuLateral li {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
.menuLateral li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #4a4a4a;
  text-decoration: none;
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  line-height: 1.4;
}
.menuLateral li a span {
  flex: 1;
  word-break: break-word;
}
.menuLateral li a i {
  font-size: 12px;
  color: #a0aec0;
  transition: transform 0.3s ease, color 0.3s ease;
}
.menuLateral li a:hover {
  background: rgba(29, 143, 165, 0.08);
  color: #1d8fa5;
  border-color: rgba(29, 143, 165, 0.2);
  padding-left: 20px;
}
.menuLateral li a:hover i {
  color: #1d8fa5;
  transform: translateX(4px);
}
.menuLateral li a.active {
  background: #1d8fa5;
  color: #ffffff !important;
  font-weight: 600;
  border-color: #1d8fa5;
  box-shadow: 0 4px 14px rgba(29, 143, 165, 0.3);
}
.menuLateral li a.active i {
  color: #ffffff !important;
  transform: translateX(2px);
}
@media (max-width: 991px) {
  .menuLateral {
    margin-top: 24px;
    padding: 20px 16px;
  }
  .menuLateral ul {
    max-height: 360px;
  }
}

/*# sourceMappingURL=style.css.map */
