/* ===== topbar ===== */
.cri-neo-topbar{
  position: relative;
  z-index: 20;
  min-height: 52px;
  background: #0b3f39;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.cri-neo-topbar::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.03) 50%, rgba(255,255,255,0.00) 100%);
  pointer-events: none;
}

.cri-neo-topbar__inner{
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.cri-neo-topbar__nav{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cri-neo-topbar__item{
  margin: 0;
  padding: 0;
}

.cri-neo-topbar__link{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1px;
  text-decoration: none;
  transition: all .28s ease;
}

.cri-neo-topbar__link::after{
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e67850 0%, #ff9c79 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s ease;
  opacity: .95;
}

.cri-neo-topbar__link:hover{
  color: #ffffff;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cri-neo-topbar__link:hover::after{
  transform: scaleX(1);
}

.cri-neo-topbar__link.is-active{
  color: #ffffff;
  background: rgba(230,120,80,0.10);
  box-shadow: inset 0 0 0 1px rgba(230,120,80,0.18);
  font-weight: 600;
}

.cri-neo-topbar__link.is-active::after{
  transform: scaleX(1);
}

.cri-neo-topbar__link[dir="rtl"]{
  font-weight: 700;
}

@media (min-width: 1400px){
  .cri-neo-topbar__inner{
    padding-right: 42px;
    padding-left: 42px;
  }
}

@media (max-width: 1199px){
  .cri-neo-topbar{
    min-height: 46px;
  }

  .cri-neo-topbar__inner{
    min-height: 46px;
    padding: 0 12px;
  }

  .cri-neo-topbar__nav{
    gap: 4px;
  }

  .cri-neo-topbar__link{
    min-height: 32px;
    padding: 7px 12px;
    font-size: 14px;
  }
}

/* ===== Topbar END===== */
/* ===== INVESTIR SMALL MEGA MENU ===== */

@media (min-width: 1200px) {
  .tp-header-menu nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .tp-header-menu nav > ul > li {
    margin-left: 4px;
    margin-right: 4px;
  }

  .tp-header-menu nav > ul > li > a {
    white-space: nowrap;
    letter-spacing: 0;
  }

  .tp-header-menu nav > ul > li.cri-investor-path-menu > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 138px;
    padding-right: 13px !important;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }

  .tp-header-menu nav > ul > li.cri-investor-path-menu > a::after {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: 0;
    transform: translateY(-60%) rotate(45deg);
  }

  .tp-header-menu nav > ul > li.cri-investor-path-menu:hover > a::after {
    transform: translateY(-35%) rotate(225deg);
  }

  .tp-header-menu nav ul li.cri-investor-path-menu > .submenu {
    width: 230px;
    padding: 22px 0;
  }

  .tp-header-menu nav ul li.cri-investor-path-menu > .submenu > li {
    margin-bottom: 8px;
    padding: 0 24px;
  }

  .tp-header-menu nav ul li.cri-investor-path-menu > .submenu > li > a {
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
  }
}

.tp-header-menu nav ul li.cri-invest-menu {
  position: relative;
}

/* smaller dropdown */
.tp-header-menu nav ul li.cri-invest-menu > .submenu.cri-invest-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 9999;
  width: 420px;
  max-width: calc(100vw - 40px);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #f7f7f7;
  border-top: 4px solid var(--tp-theme-1);
  box-shadow: 0 14px 35px rgba(2, 6, 38, 0.12);
  transform-origin: top center;
  -webkit-transform: translateX(-50%) perspective(300px) rotateX(-14deg);
  -moz-transform: translateX(-50%) perspective(300px) rotateX(-14deg);
  -ms-transform: translateX(-50%) perspective(300px) rotateX(-14deg);
  -o-transform: translateX(-50%) perspective(300px) rotateX(-14deg);
  transform: translateX(-50%) perspective(300px) rotateX(-14deg);
}

.tp-header-menu nav ul li.cri-invest-menu:hover > .submenu.cri-invest-mega-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) perspective(300px) rotateX(0deg);
  -moz-transform: translateX(-50%) perspective(300px) rotateX(0deg);
  -ms-transform: translateX(-50%) perspective(300px) rotateX(0deg);
  -o-transform: translateX(-50%) perspective(300px) rotateX(0deg);
  transform: translateX(-50%) perspective(300px) rotateX(0deg);
}

/* columns smaller */
.tp-header-menu nav ul li.cri-invest-menu > .submenu.cri-invest-mega-menu > li.cri-invest-mega-col {
  display: block !important;
  width: 50%;
  margin: 0 !important;
  padding: 22px 26px 20px !important;
  list-style: none;
  text-transform: none !important;
  vertical-align: top;
}

.tp-header-menu nav ul li.cri-invest-menu > .submenu.cri-invest-mega-menu > li.cri-invest-mega-col + li.cri-invest-mega-col {
  border-left: 1px solid rgba(2, 6, 38, 0.08);
}

/* titles smaller */
.tp-header-menu nav ul li.cri-invest-menu .cri-invest-mega-title {
  display: block;
  margin: 0 0 12px;
  padding: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase !important;
  color: var(--tp-theme-1);
}

/* lists */
.tp-header-menu nav ul li.cri-invest-menu .cri-invest-mega-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block !important;
}

.tp-header-menu nav ul li.cri-invest-menu .cri-invest-mega-list > li {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  float: none !important;
  clear: both;
}

.tp-header-menu nav ul li.cri-invest-menu .cri-invest-mega-list > li > a {
  display: flex !important;
  align-items: center;
  width: 100% !important;
  min-height: 26px;
  margin: 0 !important;
  padding: 3px 0 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #1f2434 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tp-header-menu nav ul li.cri-invest-menu .cri-invest-mega-list > li > a:hover {
  color: var(--tp-theme-1) !important;
}

/* remove default template submenu effects */
.tp-header-menu nav ul li.cri-invest-menu > .submenu.cri-invest-mega-menu > li > a,
.tp-header-menu nav ul li.cri-invest-menu .cri-invest-mega-list > li::before,
.tp-header-menu nav ul li.cri-invest-menu .cri-invest-mega-list > li > a::before,
.tp-header-menu nav ul li.cri-invest-menu .cri-invest-mega-list > li > a::after {
  display: none !important;
  content: none !important;
}

/* medium desktop */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-menu nav ul li.cri-invest-menu > .submenu.cri-invest-mega-menu {
    width: 560px;
  }

  .tp-header-menu nav ul li.cri-invest-menu > .submenu.cri-invest-mega-menu > li.cri-invest-mega-col {
    padding: 20px 22px !important;
  }

  .tp-header-menu nav ul li.cri-invest-menu .cri-invest-mega-list > li > a {
    font-size: 12.5px !important;
    min-height: 25px;
  }
}

/* mobile menu smaller */
.cri-mobnav__group {
  margin-bottom: 6px;
}

.cri-mobnav__summary {
  padding: 11px 14px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}

.cri-mobnav__group--investor-path .cri-mobnav__summary {
  align-items: center;
  min-height: 48px;
  padding-right: 42px !important;
}

.cri-mobnav__group--investor-path .cri-mobnav__summary::after {
  right: 14px;
  top: 50%;
  margin-top: 0;
}

.cri-mobnav__submenu {
  padding: 8px 14px 12px !important;
}

.cri-mobnav__submenu a {
  display: block;
  padding: 6px 0 !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}

.cri-mobnav__label {
  margin: 10px 0 5px !important;
  font-size: 10.5px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.08em;
}

/* ===== INVESTIR SMALL MEGA MENU END ===== */


/* ===== Desktop header ===== */
@media (min-width: 992px) {
  #header-sticky.tp-header-area {
    min-height: 68px !important;
  }

  .tp-header-logo img {
    max-height: 48px !important;
    width: auto;
    height: auto;
  }

  .tp-header-menu nav > ul > li > a {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    font-size: 13px;
  }

  .header-sticky .tp-header-menu nav > ul > li > a {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .tp-header-right-btn .tp-btn {
    height: 38px !important;
    line-height: 38px !important;
    padding: 0 15px !important;
  }
}

@media (min-width: 1400px) {
  .tp-header-logo img {
    max-height: 50px !important;
  }

  .tp-header-menu nav > ul > li > a {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    font-size: 13px;
  }
}

/* ===== Desktop header END ===== */


/* ===== Mobile header  ===== */



/* ===== Mobile header END ===== */







/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
.tp-footer-top-bdr-bottom {
  border-bottom: 1px solid #0b3f39;
  position: relative;
  z-index: 2;
}
.tp-footer-top-item {
  /* margin-bottom: 35px; */
}
.tp-footer-top-info-icon i {
  font-size: 52px;
  height: 90px;
  width: 90px;
  display: inline-block;
  text-align: center;
  line-height: 103px;
  margin-right: 30px;
  color: var(--tp-theme-1);
  /* background-color: #01221e; */
}
@media (max-width: 767px) {
  .tp-footer-top-info-icon i {
    margin-right: 30px;
    font-size: 38px;
    height: 70px;
    width: 70px;
    line-height: 73px;
  }
}
.tp-footer-top-info span {
  font-size: 16px;
  font-weight: 400;
  color: #a9b5b5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-top-info span {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-top-info span {
    font-size: 13px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-top-info span {
    font-size: 13px;
  }
}
.tp-footer-top-info-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--tp-common-white);
  font-family: var(--tp-ff-dmsans);
  line-height: 1.1;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .tp-footer-top-info-title {
    font-size: 17px;
    margin-bottom: 5px;
  }
}

.tp-footer-top-space-2 {
  padding-left: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-top-space-2 {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-footer-top-space-2 {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .tp-footer-top-space-2 {
    padding-left: 0px;
  }
}
.tp-footer-top-space-3 {
  padding-left: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-top-space-3 {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-top-space-3 {
    padding-left: 0px;
  }
}

.tp-footer-shape {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: -2;
}
.tp-footer-mail-box {
  margin-bottom: 15px;
}
.tp-footer-mail-box button {
  position: absolute;
  top: 0;
  right: 0;
}
.tp-footer-mail-box input {
  height: 48px;
  border: none;
  font-size: 16px;
  font-weight: 400;
  color: #a9b5b5;
  background-color: #01221e;
  padding-right: 140px;
}
.tp-footer-mail-box input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 16px;
  color: #a9b5b5;
  font-weight: 400;
}
.tp-footer-mail-box input::-moz-placeholder { /* Firefox 19+ */
  font-size: 16px;
  color: #a9b5b5;
  font-weight: 400;
}
.tp-footer-mail-box input:-moz-placeholder { /* Firefox 4-18 */
  font-size: 16px;
  color: #a9b5b5;
  font-weight: 400;
}
.tp-footer-mail-box input:-ms-input-placeholder { /* IE 10+  Edge*/
  font-size: 16px;
  color: #a9b5b5;
  font-weight: 400;
}
.tp-footer-mail-box input::placeholder { /* MODERN BROWSER */
  font-size: 16px;
  color: #a9b5b5;
  font-weight: 400;
}
.tp-footer-check-box .form-check-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: #a9b5b5;
  cursor: pointer;
}
.tp-footer-check-box .form-check-input:checked {
  border-color: var(--tp-theme-1);
  background-color: transparent;
}
.tp-footer-check-box .form-check-input:focus {
  box-shadow: none;
}
.tp-footer-check-box .form-check-input.form-check-input[type=checkbox] {
  border-radius: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border-color: var(--tp-theme-1);
  transform: translateY(5px);
}
.tp-footer-widget-logo {
  margin-bottom: 30px;
}
.tp-footer-widget-content p {
  color: #a9b5b5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .tp-footer-widget-content p {
    font-size: 14px;
  }
}
.tp-footer-widget-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--tp-common-white);
  font-family: var(--tp-ff-dmsans);
  line-height: 1;
  margin-bottom: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .tp-footer-widget-title {
    font-size: 20px;
  }
}
.tp-footer-widget-menu ul li {
  list-style-type: none;
  margin-bottom: 10px;
}
.tp-footer-widget-menu ul li:last-child {
  margin-bottom: 0;
}
.tp-footer-widget-menu ul li a {
  font-size: 16px;
  color: #a9b5b5;
  font-weight: 400;
  text-transform: capitalize;
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .tp-footer-widget-menu ul li a {
    font-size: 14px;
  }
}
.tp-footer-widget-menu ul li a:hover {
  color: var(--tp-theme-1);
}
.tp-footer-widget-instagram {
  margin-top: 15px;
  display: inline-block;
}
.tp-footer-widget-instagram ul {
  display: grid;
  grid-template-columns: auto auto auto;
  column-gap: 10px;
  row-gap: 10px;
}
.tp-footer-widget-instagram ul li {
  list-style-type: none;
}
.tp-footer-widget-instagram ul li a {
  display: block;
  position: relative;
}
.tp-footer-widget-instagram ul li a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  background-color: rgba(227, 124, 87, 0.95);
}
.tp-footer-widget-instagram ul li a img {
  width: 100%;
}
.tp-footer-widget-instagram ul li a i {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 22;
  font-size: 17px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: translate(-50%, -50%);
  color: var(--tp-common-white);
}
.tp-footer-widget-instagram ul li:hover a::after {
  visibility: visible;
  opacity: 1;
}
.tp-footer-widget-instagram ul li:hover a i {
  opacity: 1;
  visibility: visible;
}

.footer-col-1 {
  margin-top: -10px;
}
@media (max-width: 767px) {
  .footer-col-1 {
    margin-top: 0;
  }
}
.footer-col-2 {
  padding-left: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-col-2 {
    padding-left: 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-col-2 {
    padding-left: 0;
  }
}
.footer-col-3 {
  padding-left: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-col-3 {
    padding-left: 0;
  }
}
.footer-col-4 {
  padding-left: 28px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-col-4 {
    padding-left: 0;
  }
}
.footer-col-2-1 {
  padding-right: 40px;
}
.footer-col-2-2 {
  padding-left: 10px;
}
@media (max-width: 767px) {
  .footer-col-2-2 {
    padding-left: 0px;
  }
}
.footer-col-2-3 {
  padding-left: 65px;
  padding-right: 65px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-col-2-3 {
    padding-right: 0;
    padding-left: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-col-2-3 {
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  .footer-col-2-3 {
    padding-left: 0px;
    padding-right: 50px;
  }
}

.tp-copyright-left-text p {
  font-size: 16px;
  color: #a9b5b5;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .tp-copyright-left-text p {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.tp-copyright-left-text p a {
  color: var(--tp-theme-1);
}
.tp-copyright-right-social a {
  height: 38px;
  width: 38px;
  text-align: center;
  line-height: 38px;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-2);
  display: inline-block;
  transition: 0.3s;
  margin-left: 10px;
}
.tp-copyright-right-social a:hover {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}


/* =========================================
   MOBILE ONLY FOOTER FIX
   keeps desktop unchanged
========================================= */
@media (max-width: 767px) {
  .cri-footer-sitemap-wrap {
    padding: 56px 0 28px;
    overflow: hidden;
  }

  .cri-footer-sitemap-head {
    margin-bottom: 22px;
  }

  .cri-footer-sitemap-head .tp-footer-top-info-title {
    font-size: 30px;
    line-height: 1.15;
  }

  .cri-sitemap-row {
    display: block !important;
  }

  .cri-sitemap-col,
  .cri-sitemap-col-lg {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin: 0 0 14px;
  }

  .cri-sitemap-col:last-child,
  .cri-sitemap-col-lg:last-child {
    margin-bottom: 0;
  }

  .cri-sitemap-box {
    padding: 18px 16px;
    border-radius: 18px;
    height: auto;
  }

  .cri-sitemap-title {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

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

  .cri-sitemap-list li {
    margin: 0 0 8px;
    padding: 0;
    list-style: none;
  }

  .cri-sitemap-list li:last-child {
    margin-bottom: 0;
  }

  .cri-sitemap-list li a {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    white-space: normal !important;
    word-break: break-word;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
  }

  .cri-sitemap-col .row,
  .cri-sitemap-col-lg .row {
    display: block;
    margin: 0;
  }

  .cri-sitemap-col .row > [class*="col-"],
  .cri-sitemap-col-lg .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-top: 0 !important;
  }

  .cri-sitemap-col .row > [class*="col-"] + [class*="col-"],
  .cri-sitemap-col-lg .row > [class*="col-"] + [class*="col-"] {
    margin-top: 12px !important;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .tp-footer-top-area.theme-bg-2,
  .tp-footer-area.theme-bg-2 {
    overflow: hidden;
  }

  .cri-footer-main {
    padding: 40px 0 14px;
  }

  .cri-footer-line {
    margin-bottom: 26px;
  }

  .cri-footer-brand {
    text-align: center;
    margin: 0 auto 10px;
  }

  .tp-footer-widget-logo {
    margin-bottom: 18px;
  }

  .cri-footer-logo {
    margin: 0 auto;
    max-width: 190px;
    width: 100%;
    height: auto;
  }

  .tp-footer-widget-content p {
    font-size: 13px;
    line-height: 1.75;
  }

  .cri-footer-contact-grid {
    --bs-gutter-y: 14px;
  }

  .cri-footer-contact-card {
    padding: 18px 16px;
    border-radius: 18px;
    margin-bottom: 0;
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px;
    height: auto;
  }

  .cri-contact-icon {
    flex: 0 0 auto;
  }

  .cri-contact-icon i,
  .tp-footer-top-info-icon i {
    width: 58px;
    height: 58px;
    min-width: 58px;
    line-height: 58px;
    margin-right: 0;
    font-size: 26px;
    border-radius: 16px;
  }

  .tp-footer-top-info {
    min-width: 0;
    flex: 1 1 auto;
  }

  .tp-footer-top-info-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .tp-footer-top-info span,
  .tp-footer-top-info a {
    font-size: 13px;
    line-height: 1.65;
    word-break: break-word;
  }

  .tp-copyright-area {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  .tp-copyright-left-text p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .cri-footer-sitemap-head .tp-footer-top-info-title {
    font-size: 28px;
  }

  .cri-sitemap-box,
  .cri-footer-contact-card {
    border-radius: 16px;
  }

  .cri-sitemap-list li a,
  .tp-footer-top-info span,
  .tp-footer-top-info a,
  .tp-footer-widget-content p {
    font-size: 12.5px;
  }
}



.breadcrumb__title {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  text-align: center !important;
}


/* =========================================
   CRI STATIC AI CHATBOT
========================================= */
.cri-ai-chatbot {
  position: fixed;
  right: 36px;
  bottom: 95px;
  z-index: 99999;
  font-family: inherit;
}

.cri-ai-chatbot__button {
  position: relative;
  width: 74px;
  height: 74px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #19443f 0%, #0e3531 100%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cri-ai-chatbot__button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.cri-ai-chatbot__button img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.cri-ai-chatbot__pulse {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: rgba(230, 120, 80, 0.22);
  animation: criChatbotPulse 1.8s ease-in-out infinite;
}

@keyframes criChatbotPulse {
  0% {
    transform: scale(.88);
    opacity: .85;
  }
  70% {
    transform: scale(1.22);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.cri-ai-chatbot__panel {
  position: absolute;
  right: 0;
  bottom: 92px;
  width: 360px;
  max-width: calc(100vw - 32px);
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.96);
  transform-origin: bottom right;
  transition: all .28s ease;
}

.cri-ai-chatbot.is-open .cri-ai-chatbot__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cri-ai-chatbot__header {
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(230, 120, 80, .35), transparent 42%),
    linear-gradient(135deg, #19443f 0%, #0e3531 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cri-ai-chatbot__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cri-ai-chatbot__brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, .12);
  padding: 5px;
}

.cri-ai-chatbot__brand h4 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
}

.cri-ai-chatbot__brand span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.cri-ai-chatbot__close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
  transition: all .25s ease;
}

.cri-ai-chatbot__close:hover {
  background: #e67850;
}

.cri-ai-chatbot__body {
  padding: 18px;
  background: #f7faf9;
}

.cri-ai-chatbot__message {
  width: fit-content;
  max-width: 100%;
  padding: 13px 15px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.55;
}

.cri-ai-chatbot__message--bot {
  color: #173f39;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(14, 53, 49, .08);
  border-bottom-left-radius: 6px;
}

.cri-ai-chatbot__message.is-small {
  margin-top: 14px;
  font-size: 12px;
  color: #72817f;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.cri-ai-chatbot__quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 16px;
}

.cri-ai-chatbot__quick button {
  border: 1px solid rgba(25, 68, 63, .12);
  border-radius: 14px;
  padding: 10px 11px;
  background: #ffffff;
  color: #19443f;
  font-size: 12.5px;
  font-weight: 600;
  text-align: left;
  cursor: default;
  transition: all .25s ease;
}

.cri-ai-chatbot__quick button:hover {
  color: #ffffff;
  background: #e67850;
  border-color: #e67850;
}

.cri-ai-chatbot__footer {
  padding: 13px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid rgba(25, 68, 63, .08);
}

.cri-ai-chatbot__footer input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(25, 68, 63, .12);
  border-radius: 999px;
  padding: 0 15px;
  font-size: 13px;
  color: #19443f;
  background: #f8fbfa;
}

.cri-ai-chatbot__footer button {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: #e67850;
}

@media (max-width: 767px) {
  .cri-ai-chatbot {
    right: 16px;
    bottom: 78px;
  }

  .cri-ai-chatbot__button {
    width: 62px;
    height: 62px;
  }

  .cri-ai-chatbot__button img {
    width: 48px;
    height: 48px;
  }

  .cri-ai-chatbot__panel {
    right: -4px;
    bottom: 78px;
    width: 330px;
    border-radius: 22px;
  }

  .cri-ai-chatbot__quick {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .cri-ai-chatbot__panel {
    width: calc(100vw - 24px);
    right: -8px;
  }
}
@media (min-width: 768px) {
  body.cri-snap-page:not(.cri-accueil-active) .cri-neo-topbar {
    display: none !important;
  }

  body.cri-snap-page.cri-accueil-active .cri-neo-topbar {
    display: block !important;
  }
}



@media (min-width: 992px) {
  #header-sticky.tp-header-area {
    min-height: 78px !important;
  }

  .tp-header-logo img {
    max-height: 54px !important;
  }

  .tp-header-menu nav > ul > li > a {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
}
.cri-about-fs__photo {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #eef4f2;
}

/* show full video without crop */
.cri-about-fs__photo video {
  width: 100%;
  height: auto !important;
  display: block;
  object-fit: contain !important;
  object-position: center center;
  border-radius: inherit;
}
