body {
    font-family: 'Outfit', sans-serif; 
}
h1, h2. h3, h4, h5{font-family: Georgia, "Times New Roman", serif;}
img{max-width: 100%;}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
p{
	color: #1a1a1a;
	font-size: 18px;
}
a{text-decoration: none;}
.m-auto{
	margin: 0 auto;
}
.align{
    align-items: center !important;
}
.c-fff{
    color: #fff !important;
}
.c-ffd400 {
    color: #ff7a01 !important;
}
.c-fecf04 {
     color: #fecf04 !important;
}
/**/
.zoom-in-zoom-out { 
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.fa-spin {
    -webkit-animation: fa-spin 9s linear infinite !important;
    animation: fa-spin 15s linear infinite !important;
}
img.vert-move  {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/**/
 

/**/

.call-part  ul {
    margin: 0;
    padding: 0;
}
.call-part ul li {
    position: fixed;
    z-index: 999;
    right: -104px;
    width: 160px;
    list-style: none;
    transition: 1.7s;
    bottom: 50px;
}
.call-part ul li a {
    background: #000;
    padding: 0 0 6px 0;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    border: solid 1px #ffffffb8;
}
.call-part ul li a i {
    width: 45px;
    height: 50px;
   background: linear-gradient(145deg, rgb(0, 22, 62), rgb(16, 100, 141));
    padding: 12px 11px;
    font-size: 25px;
    margin-top: 5px;
    margin-left: 5px;
    color: #fff;
}
.call-part ul li.whats {
    margin-top: 79px;
}
.call-part ul li.whats {
    bottom: 125px;
}
 
.call-part ul li.whats i {
    background: #1d8900;
    color: #fff;
}
.call-part ul li:hover {
    right: 0;
}


/**/ 

.peer-topbar-v2 {
  --peer-blue-dark: #00163e;
  --peer-blue: #10648d;
  --peer-gold: #edb225;
  --peer-gold-light: #ffedc9;
  --peer-white: #ffffff;
  --peer-transition: 250ms ease;
  --peer-blue-gradient: linear-gradient(
    to right,
    #00163e 0%,
    #07527d 50%,
    #00163e 100%
  );
  --peer-gold-gradient: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );

  position: relative;
  z-index: 1000;
  width: 100%;
  min-height: 68px;
  overflow: hidden;
  color: var(--peer-white);
  background: var(--peer-blue-gradient); 
}

.peer-topbar-v2,
.peer-topbar-v2 * {
  box-sizing: border-box;
}

.peer-topbar-v2 a {
  color: inherit;
  text-decoration: none;
}

 


/* Bootstrap Container */

.peer-topbar-v2__container {
  position: relative;
  z-index: 2;
}

.peer-topbar-v2__row {
  min-height: 68px;
  align-items: center;
}


/* Left Side */

.peer-topbar-v2__left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.peer-topbar-v2__info {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.peer-topbar-v2__phone {
  transition:
    transform var(--peer-transition),
    opacity var(--peer-transition);
}

.peer-topbar-v2__phone:hover {
  transform: translateY(-2px);
}


/* Information Icons */

.peer-topbar-v2__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--peer-blue-dark);
  background: var(--peer-gold-gradient);
  border: 1px solid rgba(255, 237, 201, 0.9);
  border-radius: 11px;
  box-shadow:
    0 6px 16px rgba(237, 178, 37, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 17px;
  transition:
    transform var(--peer-transition),
    box-shadow var(--peer-transition);
}

.peer-topbar-v2__phone:hover .peer-topbar-v2__icon {
  transform: rotate(-7deg) scale(1.06);
  box-shadow:
    0 9px 20px rgba(237, 178, 37, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}


/* Information Text */

.peer-topbar-v2__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.peer-topbar-v2__content small {
    color: #ffffffeb;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.15px;
    white-space: nowrap;
}

.peer-topbar-v2__content strong {
  overflow: hidden;
  color: var(--peer-white);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* Vertical Divider */

.peer-topbar-v2__divider {
  width: 1px;
  height: 38px;
  flex: 0 0 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.32),
    transparent
  );
}


/* Right Side */

.peer-topbar-v2__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
}


/* WhatsApp Button */

.peer-topbar-v2__whatsapp {
  position: relative;
  isolation: isolate;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 0 20px;
  color: var(--peer-blue-dark) !important;
  background: var(--peer-gold-gradient);
  border: 1px solid rgba(255, 237, 201, 0.95);
  border-radius: 50px;
  box-shadow:
    0 8px 20px rgba(237, 178, 37, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform var(--peer-transition),
    box-shadow var(--peer-transition);
}

.peer-topbar-v2__whatsapp i {
  color: var(--peer-blue-dark);
  font-size: 19px;
}

.peer-topbar-v2__whatsapp::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: -80%;
  width: 45%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.85),
    transparent
  );
  transform: skewX(-22deg);
  transition: left 600ms ease;
}

.peer-topbar-v2__whatsapp:hover {
  color: var(--peer-blue-dark) !important;
  transform: translateY(-3px);
  box-shadow:
    0 11px 27px rgba(237, 178, 37, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.peer-topbar-v2__whatsapp:hover::before {
  left: 135%;
}


/* Follow Text */
 

/* Social Icons */

.peer-topbar-v2__socials {
  display: flex;
  align-items: center;
  gap: 7px;
}

.peer-topbar-v2__social {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--peer-white) !important;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 15px;
  transition:
    color var(--peer-transition),
    background var(--peer-transition),
    border-color var(--peer-transition),
    transform var(--peer-transition),
    box-shadow var(--peer-transition);
}

.peer-topbar-v2__social:hover {
  color: var(--peer-blue-dark) !important;
  background: var(--peer-gold-gradient);
  border-color: transparent;
  transform: translateY(-3px) rotate(7deg);
  box-shadow: 0 8px 18px rgba(237, 178, 37, 0.35);
}


/* Animated Bottom Line */

.peer-topbar-v2__bottom-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 3px;
  overflow: hidden;
  background: rgba(237, 178, 37, 0.38);
}

.peer-topbar-v2__bottom-line::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 30%;
  background: var(--peer-gold-gradient);
  box-shadow: 0 0 12px rgba(237, 178, 37, 0.85);
  animation: peerTopGoldLine 5s linear infinite;
}


/* Animations */

@keyframes peerTopPattern {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 168px 84px;
  }
}

@keyframes peerTopGoldLine {
  from {
    left: -30%;
  }

  to {
    left: 105%;
  }
}


/* Laptop Responsive */

@media (max-width: 1199px) {
  .peer-topbar-v2__left {
    gap: 15px;
  }

  .peer-topbar-v2__content small {
    font-size: 11px;
  }

  .peer-topbar-v2__content strong {
    font-size: 16px;
  }

  .peer-topbar-v2__privacy {
    display: none;
  }

  .peer-topbar-v2__privacy + .peer-topbar-v2__divider {
    display: none;
  }

  .peer-topbar-v2__whatsapp {
    padding-right: 16px;
    padding-left: 16px;
  }
}


/* Tablet Responsive */

@media (max-width: 991px) {
  .peer-topbar-v2,
  .peer-topbar-v2__row {
    min-height: 62px;
  }

  .peer-topbar-v2__worldwide,
  .peer-topbar-v2__divider {
    display: none;
  }
 
  .peer-topbar-v2__icon {
    width: 37px;
    height: 37px;
    flex-basis: 37px;
  }

  .peer-topbar-v2__whatsapp {
    min-height: 40px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 13px;
  }

  .peer-topbar-v2__social {
    width: 35px;
    height: 35px;
  }
}


/* Mobile Responsive */

@media (max-width: 767px) {
  .peer-topbar-v2,
  .peer-topbar-v2__row {
    min-height: 58px;
  }

  .peer-topbar-v2__row {
    flex-wrap: nowrap;
  }

  .peer-topbar-v2__left {
    padding-right: 4px;
  }

  .peer-topbar-v2__right {
    gap: 6px;
    padding-left: 4px;
  }

  .peer-topbar-v2__content small {
    display: none;
  }

  .peer-topbar-v2__content strong {
    font-size: 16px;
    letter-spacing: 1.5px;
  }

  .peer-topbar-v2__icon {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
    font-size: 15px;
  }

  .peer-topbar-v2__whatsapp {
    min-height: 38px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 12px;
  }

  .peer-topbar-v2__whatsapp i {
    font-size: 17px;
  }

  .peer-topbar-v2__socials {
    gap: 5px;
  }

.peer-topbar-v2__social {
    width: 29px;
    height: 29px;
    font-size: 13px;
}
}


/* Small Mobile */

@media (max-width: 575px) {
  .peer-topbar-v2__whatsapp {
    width: 38px;
    padding: 0;
  }

  .peer-topbar-v2__whatsapp span {
    display: none;
  }

 
  .peer-topbar-v2__social:first-child {
    display: inline-flex;
  }
}
 
/* Disable Animation When Required */

 

@media (max-width: 370px) {
a.peer-topbar-v2__whatsapp { 
  display: none;
}

}

/**/ 

.peer-main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #f1bd46;
    box-shadow: 0 8px 30px rgba(0, 22, 62, 0.08);
    backdrop-filter: blur(14px);
}

.peer-main-header,
.peer-main-header * {
  box-sizing: border-box;
}

.peer-main-header a { 
  text-decoration: none;
}

.peer-main-header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.peer-main-header button {
  font: inherit;
}


/* =================================
   MAIN HEADER ROW
================================= */

.peer-main-header__row {
  min-height: 90px;
  align-items: center;
  flex-wrap: nowrap;
}


/* =================================
   LOGO
================================= */

.peer-main-header__logo-column {
  display: flex;
  align-items: center;
}

.peer-main-header__logo { 
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.peer-main-header__logo-image {
    display: block;
    width: auto;
    object-fit: contain;
    object-position: left center;
    transition: transform 250ms ease,
    opacity 250ms ease;
    width: 218px;
}

.peer-main-header__logo:hover .peer-main-header__logo-image {
  opacity: 0.95;
  transform: scale(1.025);
}


/* =================================
   NAVIGATION
================================= */

.peer-main-header__navigation-column {
  min-width: 0;
}

.peer-main-header__navigation {
    display: flex;
    align-items: center;
    justify-content: end;
}
.peer-main-header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.peer-main-header__menu-item {
  position: relative;
}

.peer-main-header__menu-link,
.peer-main-header__dropdown-button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 9px;
  color: #172b4d;
  background: transparent;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-size: 15px; 
  font-weight: 600 !important;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.peer-main-header__menu-link::after,
.peer-main-header__dropdown-button::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 2px;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border-radius: 20px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.peer-main-header__menu-link:hover,
.peer-main-header__menu-link:focus-visible,
.peer-main-header__dropdown-button:hover,
.peer-main-header__dropdown-button:focus-visible,
.peer-main-header__dropdown.is-open
  > .peer-main-header__dropdown-button {
  color: #10648d;
  background: rgba(16, 100, 141, 0.07);
  outline: none;
}

.peer-main-header__menu-link:hover::after,
.peer-main-header__menu-link:focus-visible::after,
.peer-main-header__dropdown-button:hover::after,
.peer-main-header__dropdown-button:focus-visible::after,
.peer-main-header__dropdown.is-open
  > .peer-main-header__dropdown-button::after {
  transform: scaleX(1);
}

.peer-main-header__dropdown-button > i {
  color: #edb225;
  font-size: 10px;
  transition: transform 220ms ease;
}

.peer-main-header__dropdown.is-open
  > .peer-main-header__dropdown-button > i {
  transform: rotate(180deg);
}


/* =================================
   DROPDOWN MENU
================================= */

.peer-main-header__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 290px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  background: #ffffff;
  border: 1px solid rgba(16, 100, 141, 0.14);
  border-radius: 15px;
  box-shadow: 0 20px 45px rgba(0, 22, 62, 0.16);
  transform: translateY(10px);
  transition:
    visibility 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.peer-main-header__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 30px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-top: 1px solid rgba(16, 100, 141, 0.14);
  border-left: 1px solid rgba(16, 100, 141, 0.14);
  transform: rotate(45deg);
}

.peer-main-header__dropdown-menu li + li {
  margin-top: 3px;
}

.peer-main-header__dropdown-menu a {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 12px;
  color: #344054;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
  transition:
    color 220ms ease,
    background 220ms ease,
    padding-left 220ms ease,
    transform 220ms ease;
}

.peer-main-header__dropdown-menu a > i {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00163e;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(237, 178, 37, 0.18);
  font-size: 11px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.peer-main-header__dropdown-menu a:hover,
.peer-main-header__dropdown-menu a:focus-visible {
  color: #00163e;
  background: linear-gradient(
    90deg,
    rgba(237, 178, 37, 0.16),
    rgba(255, 237, 201, 0.44)
  );
  padding-left: 16px;
  outline: none;
}

.peer-main-header__dropdown-menu a:hover > i {
  transform: rotate(-5deg) scale(1.06);
  box-shadow: 0 6px 14px rgba(237, 178, 37, 0.3);
}

.peer-main-header__dropdown.is-open
  > .peer-main-header__dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}


/* =================================
   HEADER ACTIONS
================================= */

.peer-main-header__actions-column {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
}


/* =================================
   CTA BUTTON
================================= */

.peer-main-header__cta {
  position: relative;
  isolation: isolate;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  padding: 6px 15px 6px 7px;
  color: #00163e !important;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border: 1px solid rgba(237, 178, 37, 0.75);
  border-radius: 13px;
  box-shadow:
    0 9px 22px rgba(237, 178, 37, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition:
    transform 250ms ease,
    box-shadow 250ms ease;
}

.peer-main-header__cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: -75%;
  width: 40%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transform: skewX(-22deg);
  transition: left 600ms ease;
}

.peer-main-header__cta:hover {
  color: #00163e !important;
  transform: translateY(-3px);
  box-shadow:
    0 13px 28px rgba(237, 178, 37, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.peer-main-header__cta:hover::before {
  left: 140%;
}

.peer-main-header__cta-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(
    to right,
    #00163e,
    #10648d,
    #00163e
  );
  border-radius: 10px;
  box-shadow: 0 5px 13px rgba(0, 22, 62, 0.22);
  font-size: 15px;
  transition:
    transform 250ms ease,
    box-shadow 250ms ease;
}

.peer-main-header__cta:hover .peer-main-header__cta-icon {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 7px 17px rgba(0, 22, 62, 0.3);
}

.peer-main-header__cta-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.peer-main-header__cta-content small {
    color: #111;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}
.peer-main-header__cta-content strong {
  color: #00163e;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.peer-main-header__cta-arrow {
  color: #00163e;
  font-size: 11px;
  transition: transform 220ms ease;
}

.peer-main-header__cta:hover
  .peer-main-header__cta-arrow {
  transform: translateX(4px);
}


/* =================================
   MOBILE MENU BUTTON
================================= */

.peer-main-header__toggle {
  width: 48px;
  height: 48px;
  display: none;
  padding: 0;
  color: #00163e;
  background: rgba(16, 100, 141, 0.07);
  border: 1px solid rgba(16, 100, 141, 0.14);
  border-radius: 11px;
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.peer-main-header__toggle:hover {
  color: #ffffff;
  background: linear-gradient(
    to right,
    #00163e,
    #10648d,
    #00163e
  );
  border-color: transparent;
  transform: translateY(-2px);
}

.peer-main-header__toggle span {
  width: 21px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  border-radius: 5px;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.peer-main-header__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.peer-main-header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.peer-main-header__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =================================
   DESKTOP DROPDOWN HOVER
================================= */

@media (min-width: 992px) {
  .peer-main-header__dropdown:hover
    > .peer-main-header__dropdown-menu,
  .peer-main-header__dropdown:focus-within
    > .peer-main-header__dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .peer-main-header__dropdown:hover
    > .peer-main-header__dropdown-button {
    color: #10648d;
    background: rgba(16, 100, 141, 0.07);
  }

  .peer-main-header__dropdown:hover
    > .peer-main-header__dropdown-button::after {
    transform: scaleX(1);
  }

  .peer-main-header__dropdown:hover
    > .peer-main-header__dropdown-button > i {
    transform: rotate(180deg);
  }
}


/* =================================
   LAPTOP RESPONSIVE
================================= */

@media (max-width: 1199px) {
 
  .peer-main-header__menu-link,
  .peer-main-header__dropdown-button {
    padding-right: 7px;
    padding-left: 7px;
    font-size: 12px;
  }

  .peer-main-header__cta {
    padding-right: 11px;
  }

  .peer-main-header__cta-content small {
    display: none;
  }

  .peer-main-header__cta-content strong {
    font-size: 12px;
  }
}


/* =================================
   TABLET AND MOBILE NAVIGATION
================================= */

@media (max-width: 991px) {
  .peer-main-header__row {
    position: relative;
    min-height: 78px;
  }

 
  .peer-main-header__navigation-column {
    position: static;
    width: 0;
    flex: 0 0 0;
    padding: 0;
  }

  .peer-main-header__navigation {
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    display: none;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid rgba(16, 100, 141, 0.14);
    border-top: 3px solid #edb225;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 45px rgba(0, 22, 62, 0.16);
  }

  .peer-main-header__navigation.is-open {
    display: block;
    animation: peerMainMenuOpen 220ms ease both;
  }

  .peer-main-header__menu {
    display: block;
    padding: 12px;
  }

  .peer-main-header__menu-item +
  .peer-main-header__menu-item {
    border-top: 1px solid rgba(16, 100, 141, 0.1);
  }

  .peer-main-header__menu-link,
  .peer-main-header__dropdown-button {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding: 0 12px;
    font-size: 16px;
  }

  .peer-main-header__menu-link::after,
  .peer-main-header__dropdown-button::after {
    display: none;
  }

  .peer-main-header__dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 7px;
    visibility: visible;
    opacity: 1;
    background: rgba(16, 100, 141, 0.045);
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    transform: none;
  }

  .peer-main-header__dropdown-menu::before {
    display: none;
  }

  .peer-main-header__dropdown.is-open
    > .peer-main-header__dropdown-menu {
    display: block;
  }

  .peer-main-header__dropdown-menu a {
    min-height: 44px;
    font-size: 13px;
  }

  .peer-main-header__toggle {
    display: block;
  }
}


/* =================================
   MOBILE
================================= */

@media (max-width: 767px) {
  .peer-main-header__row {
    min-height: 72px;
  }
 
  .peer-main-header__cta {
    min-height: 44px;
    padding: 5px 10px 5px 5px;
  }

  .peer-main-header__cta-icon {
    width: 33px;
    height: 33px;
    flex-basis: 33px;
    font-size: 13px;
  }

  .peer-main-header__cta-content strong {
    font-size: 11px;
  }

  .peer-main-header__cta-arrow {
    display: none;
  }

  .peer-main-header__toggle {
    width: 44px;
    height: 44px;
  }
  .col-auto.peer-main-header__logo-column {
    width: 65%;
}
.col-auto.peer-main-header__actions-column {
    width: 35%;
}

}


/* =================================
   SMALL MOBILE
================================= */

@media (max-width: 575px) {
 

  .peer-main-header__cta-content {
    display: none;
  }

  .peer-main-header__cta {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 4px;
    border-radius: 11px;
  }

  .peer-main-header__cta-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
}


/* =================================
   VERY SMALL MOBILE
================================= */

@media (max-width: 390px) {
 
  .peer-main-header__actions-column {
    gap: 6px;
  }
}


/* =================================
   MOBILE MENU ANIMATION
================================= */

@keyframes peerMainMenuOpen {
  from {
    opacity: 0;
    transform: translateY(-9px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =================================
   REDUCED MOTION
================================= */

@media (prefers-reduced-motion: reduce) {
  .peer-main-header *,
  .peer-main-header *::before,
  .peer-main-header *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/**/

/* =========================================
   THIRD HEADER
========================================= */

.peer-guidance-v2 {
    position: relative;
    z-index: 800;
    width: 100%;
    overflow: hidden;
    background: radial-gradient(
      circle at 88% 50%,
      rgba(237, 178, 37, 0.08),
      transparent 180px
    ),
    #fffaf1;
    border-top: 1px solid rgba(237, 178, 37, 0.28);
    border-bottom: 1px solid #f1bd46;
    box-shadow: 0 5px 15px rgba(0, 22, 62, 0.05);
}

.peer-guidance-v2,
.peer-guidance-v2 * {
  box-sizing: border-box;
}

.peer-guidance-v2 a {
  text-decoration: none;
}


/* =========================================
   ROW
========================================= */

.peer-guidance-v2__row {
  min-height: 84px;
  align-items: stretch;
  flex-wrap: nowrap;
}

/**/
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1230px !important;
    }
}

.container-fluid {
    max-width: 1230px;
    margin: 0 auto;
}
/**/
/* =========================================
   LEFT TITLE
========================================= */

.peer-guidance-v2__title-col {
  width: 185px;
  flex: 0 0 185px;
  display: flex;
  align-items: center;
  padding-right: 5px;
}

.peer-guidance-v2__title {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
}

.peer-guidance-v2__title-line {
  width: 4px;
  height: 43px;
  flex: 0 0 4px;

  background: linear-gradient(
    to bottom,
    #edb225,
    #b87800
  );

  border-radius: 10px;
}

.peer-guidance-v2__title-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.peer-guidance-v2__title-content small {
  color: #a66c00;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
}

.peer-guidance-v2__title-content strong {
  color: #00163e;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}


/* =========================================
   SERVICE AREA
========================================= */

.peer-guidance-v2__services-col {
  min-width: 0;
  display: flex;
  align-items: center;
  padding-right: 0;
  padding-left: 0;
}

.peer-guidance-v2__viewport {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}


/* =========================================
   TRACK
========================================= */

.peer-guidance-v2__track {
  width: 100%;
  display: flex;
  align-items: stretch;
  overflow-x: auto;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  scrollbar-width: none;
}

.peer-guidance-v2__track::-webkit-scrollbar {
  display: none;
}


/* =========================================
   SERVICE ITEM
========================================= */

.peer-guidance-v2__item {
    position: relative;
    min-width: 0;
    min-height: 84px;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 8px;
    color: #00163e !important;
    background: transparent;
    border-left: 1px solid rgba(0, 22, 62, 0.09);
    scroll-snap-align: start;
    transition: background 250ms ease,
    color 250ms ease,
    box-shadow 250ms ease;
}


/* Gold Bottom Hover */

.peer-guidance-v2__item::before {
  content: "";

  position: absolute;
  right: 20%;
  bottom: 0;
  left: 20%;

  height: 3px;

  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );

  border-radius: 5px 5px 0 0;

  transform: scaleX(0);

  transition: transform 250ms ease;
}


/* Shine */

.peer-guidance-v2__item::after {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;
  left: -50%;

  width: 25%;

  pointer-events: none;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.22),
    transparent
  );

  transform: skewX(-20deg);

  transition: left 550ms ease;
}


/* =========================================
   ICON
========================================= */

.peer-guidance-v2__icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #10648d;

  background: #ffffff;

  border: 1px solid rgba(16, 100, 141, 0.14);
  border-radius: 50%;

  box-shadow: 0 4px 12px rgba(0, 22, 62, 0.07);

  font-size: 15px;

  transition:
    color 250ms ease,
    background 250ms ease,
    transform 250ms ease,
    box-shadow 250ms ease;
}


/* =========================================
   TEXT
========================================= */

.peer-guidance-v2__text {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 5px;
}

.peer-guidance-v2__text strong {
    color: #10648d;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    white-space: normal;
    transition: color 250ms ease;
}

.peer-guidance-v2__text small {
  color: #20252a;

  font-size: 11px;
  font-weight: 600;

  line-height: 1.3;

  white-space: normal;

  transition: color 250ms ease;
}


/* =========================================
   HOVER
========================================= */

.peer-guidance-v2__item:hover {
  color: #ffffff !important;

  background: linear-gradient(
    135deg,
    #00163e 0%,
    #10648d 100%
  );

  box-shadow:
    inset 0 -3px 0 #edb225,
    0 6px 15px rgba(0, 22, 62, 0.12);
}

.peer-guidance-v2__item:hover::before {
  transform: scaleX(1);
}

.peer-guidance-v2__item:hover::after {
  left: 125%;
}

.peer-guidance-v2__item:hover
.peer-guidance-v2__text strong {
  color: #ffffff;
}

.peer-guidance-v2__item:hover
.peer-guidance-v2__text small {
  color: rgba(255, 255, 255, 0.82);
}

.peer-guidance-v2__item:hover
.peer-guidance-v2__icon {
  color: #00163e;

  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );

  border-color: transparent;

  transform: rotate(-5deg) scale(1.06);

  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.16);
}


/* =========================================
   ARROWS
========================================= */

.peer-guidance-v2__arrow {
  position: relative;
  z-index: 10;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    #00163e,
    #10648d
  );

  border: none;
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(0, 22, 62, 0.22);
  cursor: pointer;
  font-size: 11px;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease,
    opacity 220ms ease;
}

.peer-guidance-v2__arrow:hover {
  color: #00163e;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );

  transform: scale(1.08);
}

.peer-guidance-v2__arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}


/* =========================================
   DESKTOP
   5 ITEMS = EXACTLY FULL WIDTH
========================================= */

@media (min-width: 992px) {

  .peer-guidance-v2__item {
    width: 20%;
    flex: 0 0 20%;
  }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .peer-guidance-v2__row {
    min-height: 74px;
  }

  .peer-guidance-v2__title-col {
    width: 145px;
    flex-basis: 145px;
    padding-right: 10px;
  }

  .peer-guidance-v2__title-content small {
    font-size: 9px;
  }

  .peer-guidance-v2__title-content strong {
    font-size: 16px;
  }

  .peer-guidance-v2__services-col {
    gap: 8px;
  }

  .peer-guidance-v2__arrow {
    display: inline-flex;
  }

  .peer-guidance-v2__item {
    min-height: 60px;
    flex: 0 0 50%;
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 22, 62, 0.1);
    border-radius: 13px;
  }

  .peer-guidance-v2__item + .peer-guidance-v2__item {
    margin-left: 8px;
  }

  .peer-guidance-v2__icon {
    width: 37px;
    height: 37px;
    flex-basis: 37px;
    font-size: 13px;
  }

  .peer-guidance-v2__text strong {
    font-size: 13px;
  }

  .peer-guidance-v2__text small {
    font-size: 10px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .peer-guidance-v2 {
    overflow: visible;
  }
  .peer-guidance-v2__row {
    min-height: 68px;
  }
  .peer-guidance-v2__title-col {
    width: 100px;
    flex: 0 0 100px;

    padding-right: 7px;
    padding-left: 4px;
  }
  .peer-guidance-v2__title {
    gap: 8px;
  }
  .peer-guidance-v2__title-line {
    width: 3px;
    height: 34px;
    flex-basis: 3px;
  }

  .peer-guidance-v2__title-content small {
    display: none;
  }

  .peer-guidance-v2__title-content strong {
    color: #00163e;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
    white-space: normal;
  }
  .peer-guidance-v2__services-col {
    min-width: 0;
    gap: 6px;
    padding-right: 4px;
    padding-left: 0;
  }

  .peer-guidance-v2__viewport {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    border-radius: 13px;
  }

  .peer-guidance-v2__track {
    width: 100%;
  }

  .peer-guidance-v2__item {
    width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
    min-height: 58px;
    margin-left: 0 !important;
    gap: 9px;
    padding: 7px 10px;
    border-radius: 13px;
  }

  .peer-guidance-v2__icon {
    width: 35px;
    height: 35px;

    flex-basis: 35px;

    font-size: 12px;
  }

  .peer-guidance-v2__text strong {
    font-size: 12px;
    line-height: 1.15;
  }

  .peer-guidance-v2__text small {
    font-size: 9px;
    line-height: 1.2;
  }

  .peer-guidance-v2__arrow {
    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    font-size: 9px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .peer-guidance-v2__title-col {
        width: 110px;
        flex-basis: 110px;
  }

  .peer-guidance-v2__title-content strong {
    font-size: 13px;
  }

  .peer-guidance-v2__arrow {
    width: 29px;
    height: 29px;

    flex-basis: 29px;
  }

  .peer-guidance-v2__item {
    padding-right: 8px;
    padding-left: 8px;
  }

  .peer-guidance-v2__icon {
    width: 33px;
    height: 33px;

    flex-basis: 33px;
  }

  .peer-guidance-v2__text strong {
    font-size: 14px;
  }

  .peer-guidance-v2__text small {
    font-size: 12px;
  }
}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

  .peer-guidance-v2__title-col {
    width: 100px;
    flex-basis: 100px;
  }

  .peer-guidance-v2__title-content strong {
    font-size: 12px;
  }

  .peer-guidance-v2__arrow {
    width: 27px;
    height: 27px;

    flex-basis: 27px;
  }

  .peer-guidance-v2__icon {
    width: 30px;
    height: 30px;

    flex-basis: 30px;
  }
  .peer-guidance-v2__text strong {
    font-size: 12px;
}
.peer-guidance-v2__text small {
    font-size: 10px;
}
  .peer-topbar-v2__content strong {
    font-size: 15px;
    letter-spacing: 1.5px;
  }
}

/**/

/* =========================================
   ABOUT US - NEW DESIGN
========================================= */

.peer-about-new {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background:
    linear-gradient(
      105deg,
      #ffffff 0%,
      #ffffff 56%,
      #fffaf0 100%
    );
}

.peer-about-new,
.peer-about-new * {
  box-sizing: border-box;
}

.peer-about-new a {
  text-decoration: none;
}


/* =========================================
   BACKGROUND SHAPES
========================================= */

.peer-about-new__shape {
  position: absolute;
  pointer-events: none;
}

.peer-about-new__shape--top {
  top: -170px;
  right: -120px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(237, 178, 37, 0.13);
  border-radius: 50%;
}

.peer-about-new__shape--top::before {
  content: "";
  position: absolute;
  inset: 55px;
  border: 1px solid rgba(237, 178, 37, 0.11);
  border-radius: 50%;
}

.peer-about-new__shape--bottom {
  bottom: -130px;
  left: -110px;
  width: 280px;
  height: 280px;
  background: rgba(16, 100, 141, 0.035);
  border-radius: 50%;
}


/* =========================================
   ROW
========================================= */

.peer-about-new__row {
  position: relative;
  z-index: 2;
}


/* =========================================
   LEFT VISUAL
========================================= */

.peer-about-new__visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 25px 32px 50px 18px;
}


/* Image Wrap */

.peer-about-new__image-wrap {
  position: relative;
  width: 100%;
  min-height: 585px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      rgba(0, 22, 62, 0.04),
      rgba(237, 178, 37, 0.08)
    );
  border-radius: 6px 95px 6px 95px;
  box-shadow:
    0 25px 60px rgba(0, 22, 62, 0.12);
  transition:
    transform 400ms ease,
    box-shadow 400ms ease;
}

.peer-about-new__visual:hover
.peer-about-new__image-wrap {
  transform: translateY(-7px);
  box-shadow:
    0 32px 75px rgba(0, 22, 62, 0.18);
}


/* Image */

.peer-about-new__image {
  width: 100%;
  height: 585px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition:
    transform 750ms ease;
}

.peer-about-new__visual:hover
.peer-about-new__image {
  transform: scale(1.04);
}


/* =========================================
   DECORATIVE CORNERS
========================================= */

.peer-about-new__corner {
  position: absolute;
  width: 115px;
  height: 115px;
  pointer-events: none;
}

.peer-about-new__corner--top {
  top: 7px;
  right: 13px;
  border-top: 3px solid #edb225;
  border-right: 3px solid #edb225;
  border-radius: 0 45px 0 0;
}

.peer-about-new__corner--bottom {
  bottom: 33px;
  left: 0;
  border-bottom: 3px solid #10648d;
  border-left: 3px solid #10648d;
  border-radius: 0 0 0 45px;
}


/* =========================================
   DECORATIVE SYMBOL
========================================= */

.peer-about-new__symbol {
  position: absolute;
  top: 72px;
  left: -5px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00163e;
  background:
    linear-gradient(
      to right,
      #edb225,
      #ffedc9,
      #edb225
    );
  border-radius: 50%;
  box-shadow:
    0 8px 22px rgba(0, 22, 62, 0.16);
  font-size: 18px;
  transition:
    transform 350ms ease;
}

.peer-about-new__visual:hover
.peer-about-new__symbol {
  transform: rotate(14deg);
}


/* =========================================
   IMAGE CAPTION
========================================= */

.peer-about-new__image-caption {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 23px;
  padding-left: 20px;
}

.peer-about-new__image-caption > span {
  width: 45px;
  height: 2px;
  flex: 0 0 45px;
  background:
    linear-gradient(
      to right,
      #edb225,
      #10648d
    );
}

.peer-about-new__image-caption p {
  margin: 0;
  color: #00163e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.peer-about-new__image-caption b {
  margin: 0 5px;
  color: #edb225;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.peer-about-new__content {
  max-width: 680px;
  padding-left: 55px;
}


/* =========================================
   EYEBROW
========================================= */

.peer-about-new__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: #a86e00;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.peer-about-new__eyebrow i {
  color: #edb225;
  font-size: 13px;
}


/* =========================================
   HEADING
========================================= */

.peer-about-new__heading {
    max-width: 650px;
    margin: 0 0 22px;
    color: #00163e;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.13;
}

.peer-about-new__heading span {
  display: block;
  margin-top: 4px;
  color: #10648d;
}


/* =========================================
   CONTENT
========================================= */

.peer-about-new__intro {
    margin: 0 0 15px;
    color: #26384e;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}

.peer-about-new__description {
  margin: 0; 
    color: #26384e;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}


/* =========================================
   DIVIDER
========================================= */

.peer-about-new__divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 28px 0;
}
 


/* =========================================
   SIMPLE LIST
========================================= */

.peer-about-new__list {
  display: grid;
  gap: 18px;
}

.peer-about-new__list-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-left: 3px;
}

.peer-about-new__list-item > i {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: #00163e;
  background:
    linear-gradient(
      to right,
      #edb225,
      #ffedc9,
      #edb225
    );
  border-radius: 50%;
  font-size: 10px;
  transition:
    transform 250ms ease,
    background 250ms ease,
    color 250ms ease;
}

.peer-about-new__list-item:hover > i {
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #00163e,
      #10648d
    );
  transform: translateX(4px);
}

.peer-about-new__list-item strong {
    display: block;
    margin-bottom: 4px;
    color: #00163e;
    font-size: 18px;
    font-weight: 700;
}

.peer-about-new__list-item p {
    margin: 0;
    color: #00163e;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}


/* =========================================
   FOCUS AREA
========================================= */

.peer-about-new__focus {
  margin-top: 27px;
  padding: 17px 0;
  border-top: 1px solid rgba(0, 22, 62, 0.09);
  border-bottom: 1px solid rgba(0, 22, 62, 0.09);
}

.peer-about-new__focus small {
  display: block;
  margin-bottom: 7px;
  color: #a66b00;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.peer-about-new__focus p {
    margin: 0;
    color: #00163e;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
}

.peer-about-new__focus p span {
  margin: 0 7px;
  color: #edb225;
}


/* =========================================
   READ MORE BUTTON
========================================= */

.peer-about-new__button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 27px;
    padding: 5px 6px 5px 19px;
    color: #00163e !important;
    background: transparent;
    border: 1px solid #00163e;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: color 280ms ease,
    background 280ms ease,
    border-color 280ms ease,
    transform 280ms ease,
    box-shadow 280ms ease;
}

.peer-about-new__button span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00163e;
  background:
    linear-gradient(
      to right,
      #edb225,
      #ffedc9,
      #edb225
    );
  border-radius: 50%;
  transition:
    transform 280ms ease;
}

.peer-about-new__button:hover {
  color: #ffffff !important;
  background:
    linear-gradient(
      135deg,
      #00163e,
      #10648d
    );
  border-color: #00163e;
  transform: translateY(-3px);
  box-shadow:
    0 12px 25px rgba(0, 22, 62, 0.18);
}

.peer-about-new__button:hover span {
  transform: translateX(3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .peer-about-new {
    padding: 75px 0;
  }

  .peer-about-new__visual {
    max-width: 620px;
    margin: 0 auto 55px;
  }

  .peer-about-new__image-wrap {
    min-height: 520px;
  }

  .peer-about-new__image {
    height: 520px;
  }

  .peer-about-new__content {
    max-width: 100%;
    padding-left: 0;
  }

  .peer-about-new__heading {
    max-width: 760px;
    font-size: 40px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .peer-about-new {
    padding: 60px 0;
  }

  .peer-about-new__visual {
    padding: 15px 18px 38px 10px;
    margin-bottom: 42px;
  }

  .peer-about-new__image-wrap {
    min-height: 430px;
    border-radius: 5px 60px 5px 60px;
  }

  .peer-about-new__image {
    height: 430px;
  }

  .peer-about-new__corner {
    width: 85px;
    height: 85px;
  }

  .peer-about-new__symbol {
    top: 50px;
    left: -2px;
    width: 48px;
    height: 48px;
    font-size: 15px;
  }

  .peer-about-new__image-caption {
    padding-left: 5px;
  }

  .peer-about-new__heading {
    font-size: 33px;
  }
 
 

  .peer-about-new__divider {
    margin: 23px 0;
  }

  .peer-about-new__list {
    gap: 16px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .peer-about-new {
    padding: 50px 0;
  }

  .peer-about-new__visual {
    padding-right: 10px;
  }

  .peer-about-new__image-wrap {
    min-height: 370px;
    border-radius: 4px 50px 4px 50px;
  }

  .peer-about-new__image {
    height: 370px;
  }

  .peer-about-new__image-caption p {
    font-size: 14px;
  }

  .peer-about-new__heading {
    font-size: 28px;
    line-height: 1.2;
  }

  .peer-about-new__eyebrow {
    font-size: 14px;
  }

  .peer-about-new__focus p {
    font-size: 16px;
  }

  .peer-about-new__button {
    min-height: 47px;
    padding-left: 16px;
    font-size: 16px;
  }

  .peer-about-new__button span {
    width: 35px;
    height: 35px;
  }
}

/**/

/* =========================================
   SERVICES SECTION
========================================= */
.peer-services-six {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: linear-gradient(to right, #edb2250d, #fff7e7, #edb2250d);
    border-top: 1px solid #f1bd46;
}

.peer-services-six,
.peer-services-six * {
  box-sizing: border-box;
}

.peer-services-six a {
  text-decoration: none;
}


/* =========================================
   SECTION HEADING
========================================= */

.peer-services-six__heading {
    max-width: 720px;
    margin: 0 auto 18px;
    text-align: center;
}

.peer-services-six__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #a66c00;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.peer-services-six__eyebrow i {
  color: #edb225;
  font-size: 12px;
}

.peer-services-six__heading h2 {
  margin: 0 0 14px;
  color: #00163e;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
}

.peer-services-six__heading p {
  max-width: 650px;
  margin: 0 auto;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}


/* =========================================
   ROW SPACING
========================================= */

.peer-services-six__row {
  margin-right: -11px;
  margin-left: -11px;
}

.peer-services-six__row > div {
  padding: 11px;
}


/* =========================================
   SERVICE CARD
========================================= */

.peer-services-six__card {
  position: relative;
  min-height: 245px;
  height: 100%;
  display: flex;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(16, 100, 141, 0.11);
  border-radius: 18px;
  box-shadow:
    0 10px 30px rgba(0, 22, 62, 0.065);
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.peer-services-six__card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    #00163e,
    #10648d,
    #edb225
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms ease;
}

.peer-services-six__card:hover {
  border-color: rgba(237, 178, 37, 0.5);
  transform: translateY(-7px);
  box-shadow:
    0 20px 42px rgba(0, 22, 62, 0.13);
}

.peer-services-six__card:hover::after {
  transform: scaleX(1);
}


/* =========================================
   LEFT IMAGE
========================================= */

.peer-services-six__image {
  position: relative;
  width: 38%;
  flex: 0 0 38%;
  min-height: 245px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      #00163e,
      #10648d
    );
}

.peer-services-six__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to top,
      rgba(0, 22, 62, 0.2),
      transparent 55%
    );
}

.peer-services-six__image img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition:
    transform 650ms ease,
    filter 650ms ease;
}

.peer-services-six__card:hover
.peer-services-six__image img {
  transform: scale(1.07);
}


/* =========================================
   SERVICE NUMBER
========================================= */

.peer-services-six__number {
  position: absolute;
  z-index: 4;
  top: 13px;
  left: 13px;
  min-width: 34px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00163e;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border-radius: 6px;
  box-shadow:
    0 5px 12px rgba(0, 22, 62, 0.14);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5px;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.peer-services-six__content {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px 21px;
}


/* Mini Heading */

.peer-services-six__mini {
    display: inline-block;
    margin-bottom: 9px;
    color: #a76d00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Service Title */

.peer-services-six__content h3 {
    margin: 0 0 10px;
    color: #00163e;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    transition: color 250ms ease;
}

.peer-services-six__card:hover
.peer-services-six__content h3 {
  color: #10648d;
}


/* Description */

.peer-services-six__content p {
    margin: 0 0 18px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}


/* =========================================
   READ MORE LINK
========================================= */

.peer-services-six__content > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #00163e !important;
    font-size: 15px;
    font-weight: 600;
    transition: color 250ms ease,
    gap 250ms ease;
}
.peer-services-six__content > a::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #edb225;
  transition: width 250ms ease;
}

.peer-services-six__content > a i {
  color: #10648d;
  font-size: 15px;
  transition: transform 250ms ease;
}

.peer-services-six__content > a:hover {
  color: #10648d !important;
  gap: 10px;
}

.peer-services-six__content > a:hover::before {
  width: 27px;
}

.peer-services-six__content > a:hover i {
  transform: translateX(3px);
}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1199px) {

  .peer-services-six__card {
    min-height: 255px;
  }

  .peer-services-six__image {
    width: 35%;
    flex-basis: 35%;
    min-height: 255px;
  }

  .peer-services-six__image img {
    min-height: 255px;
  }

  .peer-services-six__content {
    padding: 21px 15px 18px;
  }

  .peer-services-six__content h3 {
    font-size: 18px;
  }

  .peer-services-six__content p {
    font-size: 14px;
  }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .peer-services-six {
    padding: 75px 0;
  }

  .peer-services-six__heading {
    margin-bottom: 35px;
  }

  .peer-services-six__card {
    min-height: 235px;
  }

  .peer-services-six__image {
    width: 38%;
    flex-basis: 38%;
    min-height: 235px;
  }

  .peer-services-six__image img {
    min-height: 235px;
  }

  .peer-services-six__content {
    padding: 23px 18px 20px;
  }
  .peer-services-six__content p {
    margin: 0 0 8px; 
}
.peer-services-six__content > a { 
    font-size: 15px; 
}

 
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .peer-services-six {
    padding: 60px 0;
  }

  .peer-services-six__heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .peer-services-six__heading h2 {
    font-size: 32px;
  }

  .peer-services-six__heading p {
    font-size: 14px;
    line-height: 1.65;
  }

  .peer-services-six__row {
    margin-right: -6px;
    margin-left: -6px;
  }

  .peer-services-six__row > div {
    padding: 7px 6px;
  }

 

  .peer-services-six__image {
    width: 36%;
    flex-basis: 36%;
    min-height: 215px;
  }

  .peer-services-six__image img {
    min-height: 215px;
  }

  .peer-services-six__content {
    padding: 18px 15px 16px;
  }

  .peer-services-six__content h3 {
    font-size: 18px;
  }

  .peer-services-six__content p {
    font-size: 14px; 
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .peer-services-six {
    padding: 50px 0;
  }

  .peer-services-six__heading h2 {
    font-size: 29px;
  }

  .peer-services-six__card {
    min-height: unset;
    border-radius: 14px;
  }

  .peer-services-six__image {
    width: 34%;
    flex-basis: 34%;
    min-height: unset;
  }

  .peer-services-six__image img {
    min-height: 205px;
  }

  .peer-services-six__content {
    padding: 15px 12px;
  }

  .peer-services-six__mini {
    margin-bottom: 6px; 
  }

 

 
  .peer-services-six__number {
    top: 9px;
    left: 9px;
    min-width: 30px;
    height: 24px;
    font-size: 9px;
  }
}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

  .peer-services-six__image {
    width: 32%;
    flex-basis: 32%;
  }

  .peer-services-six__content {
    padding-right: 10px;
    padding-left: 10px;
  }

  .peer-about-new__image-caption p {
    font-size: 12px;
  }
 
}


/**/

/* =========================================
   WHY CHOOSE US
========================================= */

.peer-why-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: linear-gradient(145deg, #00163e, #10648d);
}

.peer-why-section,
.peer-why-section * {
  box-sizing: border-box;
}


/* =========================================
   SUBTLE BACKGROUND PATTERN
========================================= */

.peer-why-pattern {
  position: absolute;
  top: -130px;
  right: -100px;
  width: 420px;
  height: 420px;
  pointer-events: none;
  opacity: 0.09;
  border: 1px solid #ffedc9;
  border-radius: 50%;
  animation: peerWhyRotate 28s linear infinite;
}

.peer-why-pattern::before,
.peer-why-pattern::after {
  content: "";
  position: absolute;
  border: 1px solid #ffedc9;
  border-radius: 50%;
}

.peer-why-pattern::before {
  inset: 55px;
}

.peer-why-pattern::after {
  inset: 115px;
}


.peer-why-glow {
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 360px;
  height: 360px;
  pointer-events: none;
  background: rgba(237, 178, 37, 0.08);
  border-radius: 50%;
  filter: blur(20px);
}


/* =========================================
   ROW
========================================= */

.peer-why-row {
  position: relative;
  z-index: 2;
}


/* =========================================
   LEFT CONTENT
========================================= */

.peer-why-intro {
  max-width: 500px;
  padding-right: 40px;
}


/* Label */

.peer-why-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #ffedc9;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.peer-why-label i {
  color: #edb225;
  font-size: 15px;
}


/* Heading */

.peer-why-heading {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.peer-why-heading span {
  display: block;
  margin-top: 4px;
  color: #ffda7b;
}


/* Description */

.peer-why-description {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}


/* =========================================
   SIMPLE HIGHLIGHT
========================================= */

.peer-why-highlight {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 28px;
  padding: 10px 0 10px 15px;
  border-left: 2px solid #edb225;
}

.peer-why-highlight__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00163e;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border-radius: 50%;
  font-size: 17px;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}

.peer-why-highlight:hover
.peer-why-highlight__icon {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 8px 22px rgba(237, 178, 37, 0.35);
}

.peer-why-highlight strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.peer-why-highlight p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
}


/* =========================================
   RIGHT PATH
========================================= */

.peer-why-path {
  position: relative;
  padding-left: 25px;
}


/* Main Vertical Line */

.peer-why-path__line {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 55px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.peer-why-path__line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 3px;
    height: 200px;
    background: linear-gradient(
    to bottom,
    transparent,
    #edb225,
    transparent
  );
    animation: peerWhyLine 4s ease-in-out infinite;
}


/* =========================================
   PATH ITEM
========================================= */

.peer-why-item {
  position: relative;
  display: grid;
  grid-template-columns: 65px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 112px;
  padding: 15px 0;
}


/* Number */

.peer-why-number {
  position: relative;
  z-index: 3;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #063d68;
  border: 1px solid rgba(255, 237, 201, 0.28);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(0, 22, 62, 0.2);
  transition:
    background 300ms ease,
    border-color 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}

.peer-why-number span {
  color: #ffedc9;
  font-size: 16px;
  font-weight: 900;
  transition: color 300ms ease;
}


/* Content */

.peer-why-item__content {
  position: relative;
  padding: 7px 25px 7px 0;
  transition: transform 300ms ease;
}

.peer-why-item__content::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.18),
    transparent
  );
}


/* Top Title */

.peer-why-item__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}

.peer-why-item__top i {
  color: #edb225;
  font-size: 16px;
  transition:
    transform 300ms ease,
    color 300ms ease;
}

.peer-why-item__top h3 {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
}

.peer-why-item__content p {
  max-width: 540px;
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}


/* =========================================
   ITEM HOVER
========================================= */

.peer-why-item:hover
.peer-why-number {
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(237, 178, 37, 0.3);
}

.peer-why-item:hover
.peer-why-number span {
  color: #00163e;
}

.peer-why-item:hover
.peer-why-item__content {
  transform: translateX(7px);
}

.peer-why-item:hover
.peer-why-item__top i {
  color: #ffedc9;
  transform: rotate(-8deg) scale(1.12);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes peerWhyRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


@keyframes peerWhyLine {

  0% {
    top: 0;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    top: calc(100% - 90px);
    opacity: 0;
  }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .peer-why-intro {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .peer-why-path {
    padding-left: 0;
  }

  .peer-why-path__line {
    left: 30px;
  }

  .peer-why-item {
    grid-template-columns: 62px 1fr;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .peer-why-heading {
    font-size: 32px;
  }

  .peer-why-description {
    font-size: 16px;
  }

  .peer-why-highlight {
    margin-top: 22px;
    padding-left: 15px;
  }

  .peer-why-highlight strong {
    font-size: 17px;
  }

  .peer-why-path {
    margin-top: 4px;
  }

  .peer-why-path__line {
    left: 25px;
  }

  .peer-why-item {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    min-height: 120px;
  }

  .peer-why-number {
    width: 50px;
    height: 50px;
  }

  .peer-why-number span {
    font-size: 14px;
  }

  .peer-why-item__top h3 {
    font-size: 18px;
  }

  .peer-why-item__content {
    padding-right: 0;
  }

  .peer-why-item__content p {
    font-size: 16px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .peer-why-section {
    padding: 40px 0;
  }

  .peer-why-heading {
    font-size: 29px;
  }

  .peer-why-label {
    font-size: 14px;
  }

  .peer-why-highlight {
    gap: 12px;
  }

  .peer-why-highlight__icon {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }

  .peer-why-item {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .peer-why-path__line {
    left: 22px;
  }

  .peer-why-number {
    width: 44px;
    height: 44px;
  }

  .peer-why-number span {
    font-size: 14px;
  }

  .peer-why-item__top {
    align-items: flex-start;
  }

  .peer-why-item__top h3 {
    font-size: 18px;
  }
  .peer-why-item__top i { 
            font-size: 18px;
        margin-top: 2px;
}

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .peer-why-pattern,
  .peer-why-path__line::after {
    animation: none;
  }

  .peer-why-item,
  .peer-why-number,
  .peer-why-item__content,
  .peer-why-item__top i,
  .peer-why-highlight__icon {
    transition: none;
  }
}


/**/

/* =========================================
   OUR BEST SERVICES
========================================= */

.peer-best-service-cards {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: #f8fafb;
}

.peer-best-service-cards,
.peer-best-service-cards * {
  box-sizing: border-box;
}

.peer-best-service-cards a {
  text-decoration: none;
}


/* =========================================
   HEADING
========================================= */

.peer-best-service-cards__heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.peer-best-service-cards__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: #9c6900;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.peer-best-service-cards__label i {
  color: #edb225;
  font-size: 15px;
}

.peer-best-service-cards__heading h2 {
  margin: 0 0 12px;
  color: #00163e;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.peer-best-service-cards__heading p {
  margin: 0;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}


/* =========================================
   GRID
========================================= */

.peer-best-service-cards__grid {
  margin-right: -10px;
  margin-left: -10px;
}

.peer-best-service-cards__grid > div {
  display: flex;
  padding: 10px;
}


/* =========================================
   CARD
========================================= */

.peer-best-service-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 22, 62, 0.09);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 22, 62, 0.07);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.peer-best-service-card:hover {
  border-color: rgba(237, 178, 37, 0.6);
  transform: translateY(-7px);
  box-shadow: 0 18px 38px rgba(0, 22, 62, 0.14);
}


/* Gold Bottom Accent */

.peer-best-service-card::after {
  content: "";
  position: absolute;
  right: 25%;
  bottom: 0;
  left: 25%;
  height: 3px;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  transform: scaleX(0);
  transition: transform 350ms ease;
}

.peer-best-service-card:hover::after {
  transform: scaleX(1);
}


/* =========================================
   IMAGE
========================================= */

.peer-best-service-card__image {
  position: relative;
  width: 100%;
  height: 220px;
  display: block;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    #00163e,
    #10648d
  );
}

.peer-best-service-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, #00163e29, transparent 55%);
    transition: background 350ms ease;
}

.peer-best-service-card:hover
.peer-best-service-card__image::after {
    background: linear-gradient(to top, rgb(0 22 62 / 13%), rgba(16, 100, 141, 0.05));
}

.peer-best-service-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition:
    transform 650ms ease,
    filter 650ms ease;
}

.peer-best-service-card:hover
.peer-best-service-card__image img {
  transform: scale(1.07);
}


/* =========================================
   IMAGE CATEGORY
========================================= */

.peer-best-service-card__category {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 13px;
  color: #00163e;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(0, 22, 62, 0.16);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  transition: transform 300ms ease;
}

.peer-best-service-card:hover
.peer-best-service-card__category {
  transform: translateY(-3px);
}


/* =========================================
   CARD BODY
========================================= */

.peer-best-service-card__body {
  /*min-height: 250px;*/
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}


/* Title */

.peer-best-service-card__body h3 {
  margin: 0 0 10px;
  color: #00163e;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
}

.peer-best-service-card__body h3 a {
  color: #00163e;
  transition: color 250ms ease;
}

.peer-best-service-card:hover
.peer-best-service-card__body h3 a {
  color: #10648d;
}


/* Content */

.peer-best-service-card__body p {
  margin: 0 0 20px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}


/* =========================================
   READ MORE BUTTON
========================================= */

.peer-best-service-card__read {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: auto;
    padding: 9px 15px;
    color: #00163e !important;
    background: #ffffff;
    border: 1px solid rgba(0, 22, 62, 0.18);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 280ms ease,
    background 280ms ease,
    border-color 280ms ease,
    transform 280ms ease,
    box-shadow 280ms ease;
}

.peer-best-service-card__read i {
  color: #edb225;
  font-size: 13px;
  transition:
    color 280ms ease,
    transform 280ms ease;
}

.peer-best-service-card__read:hover {
  color: #ffffff !important;
  background: linear-gradient(
    145deg,
    #00163e,
    #10648d
  );
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 22, 62, 0.16);
}

.peer-best-service-card__read:hover i {
  color: #ffedc9;
  transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .peer-best-service-card__image {
    height: 215px;
  }

 /* .peer-best-service-card__body {
    min-height: 240px;
  }*/
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .peer-best-service-cards__heading h2 {
    font-size: 32px;
  }

  .peer-best-service-cards__heading p {
    font-size: 16px;
    line-height: 1.4;
  }

  .peer-best-service-cards__grid {
    margin-right: -6px;
    margin-left: -6px;
  }

  .peer-best-service-cards__grid > div {
    padding: 7px 6px;
  }

  .peer-best-service-card__image {
    height: 240px;
  }

  .peer-best-service-card__body {
    min-height: 0;
    padding: 20px;
  }

  
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .peer-best-service-cards__heading h2 {
    font-size: 29px;
  }

  .peer-best-service-card {
    border-radius: 15px;
  }

  .peer-best-service-card__image {
    height: 210px;
  }

  .peer-best-service-card__body {
    padding: 18px;
  }

 
  .peer-best-service-card__category {
    right: 12px;
    bottom: 12px;
    font-size: 14px;
  }

  .peer-best-service-card__read {
    font-size: 15px;
  }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .peer-best-service-card,
  .peer-best-service-card::after,
  .peer-best-service-card__image img,
  .peer-best-service-card__category,
  .peer-best-service-card__read,
  .peer-best-service-card__read i {
    transition: none;
  }
}
/**/

/* =========================================
   HOW IT WORKS
========================================= */

.peer-how-work {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: linear-gradient(145deg, #00163e, #10648d);
}

.peer-how-work,
.peer-how-work * {
  box-sizing: border-box;
}


/* =========================================
   BACKGROUND DECORATION
========================================= */

.peer-how-work__shape {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.peer-how-work__shape--one {
  top: -150px;
  left: -130px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 237, 201, 0.12);
}

.peer-how-work__shape--one::before {
  content: "";
  position: absolute;
  inset: 55px;
  border: 1px solid rgba(255, 237, 201, 0.1);
  border-radius: 50%;
}

.peer-how-work__shape--two {
  right: -100px;
  bottom: -170px;
  width: 330px;
  height: 330px;
  background: rgba(237, 178, 37, 0.06);
}


/* =========================================
   HEADING
========================================= */

.peer-how-work__heading {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-bottom: 30px;
}

.peer-how-work__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #ffedc9;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.peer-how-work__label i {
  color: #edb225;
  font-size: 15px;
}

.peer-how-work__heading h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.peer-how-work__heading p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}


/* =========================================
   PROCESS ROW
========================================= */

.peer-how-work__process {
  position: relative;
  z-index: 2;
  margin-right: -10px;
  margin-left: -10px;
}

.peer-how-work__process > div {
  position: relative;
  padding: 10px;
}


/* =========================================
   CONNECTING LINE
========================================= */

.peer-how-work__process::before {
  content: "";
  position: absolute;
  top: 53px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(237, 178, 37, 0.65),
    rgba(255, 237, 201, 0.35),
    rgba(237, 178, 37, 0.65),
    transparent
  );
}


/* =========================================
   STEP
========================================= */

.peer-how-work__step {
  position: relative;
  height: 100%;
  min-height: 245px;
  padding: 0 16px 18px;
  transition:
    transform 300ms ease,
    background 300ms ease;
}

.peer-how-work__step::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 0;
  left: 16px;
  height: 2px;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.peer-how-work__step:hover {
  transform: translateY(-6px);
}

.peer-how-work__step:hover::after {
  transform: scaleX(1);
}


/* =========================================
   NUMBER + ICON
========================================= */

.peer-how-work__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.peer-how-work__number {
  position: relative;
  z-index: 3;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00163e;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border: 5px solid #064571;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0, 22, 62, 0.25);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}

.peer-how-work__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffedc9;
  border: 1px solid rgba(255, 237, 201, 0.28);
  border-radius: 50%;
  font-size: 16px;
  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}


/* Hover */

.peer-how-work__step:hover
.peer-how-work__number {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(237, 178, 37, 0.28);
}

.peer-how-work__step:hover
.peer-how-work__icon {
  color: #00163e;
  background: #ffedc9;
  transform: rotate(-8deg);
}


/* =========================================
   STEP CONTENT
========================================= */

.peer-how-work__step h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.peer-how-work__step p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .peer-how-work__process::before {
    display: none;
  }

  .peer-how-work__step {
    min-height: 220px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
  }

  .peer-how-work__step:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .peer-how-work__number {
    border-color: #07527d;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .peer-how-work__heading h2 {
    font-size: 34px;
  }

  .peer-how-work__heading p {
    font-size: 16px;
    line-height: 1.4;
  }

  .peer-how-work__process {
    margin-right: -6px;
    margin-left: -6px;
  }

  .peer-how-work__process > div {
    padding: 6px;
  }

  .peer-how-work__step {
    min-height: 0;
  }
 
  .peer-how-work__step p {
    font-size: 16px;
    line-height: 1.4;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .peer-how-work__heading h2 {
    font-size: 29px;
  }

  .peer-how-work__step {
    padding: 16px;
  }

  .peer-how-work__number {
    width: 58px;
    height: 58px;
    border-width: 4px;
    font-size: 16px;
  }

  .peer-how-work__icon {
    width: 42px;
    height: 42px;
  }

 
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .peer-how-work__step,
  .peer-how-work__step::after,
  .peer-how-work__number,
  .peer-how-work__icon {
    transition: none;
  }
}

/**/

/* =========================================
   SUCCESS STORIES
========================================= */

.peer-success-stories {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f8fbfd 55%,
    #fffaf0 100%
  );
}

.peer-success-stories,
.peer-success-stories * {
  box-sizing: border-box;
}


/* =========================================
   HEADING
========================================= */

.peer-success-stories__head {
  margin-bottom: 28px;
}

.peer-success-stories__heading {
  max-width: 720px;
}

.peer-success-stories__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #9b6800;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.peer-success-stories__label i {
  color: #edb225;
  font-size: 15px;
}

.peer-success-stories__heading h2 {
  margin: 0 0 12px;
  color: #00163e;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.peer-success-stories__heading p {
  margin: 0;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.4;
}


/* =========================================
   SIDE NOTE
========================================= */

.peer-success-stories__side-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  max-width: 470px;
  margin-left: auto;
  padding-left: 18px;
  border-left: 3px solid #edb225;
}

.peer-success-stories__side-note i {
  margin-top: 2px;
  color: #edb225;
  font-size: 22px;
}

.peer-success-stories__side-note p {
  margin: 0;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.4;
}


/* =========================================
   GRID
========================================= */

.peer-success-stories__grid {
  margin-right: -10px;
  margin-left: -10px;
}

.peer-success-stories__grid > div {
  display: flex;
  padding: 10px;
}


/* =========================================
   STORY CARD
========================================= */

.peer-success-story {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 25px;
  background: #ffffff;
  border: 1px solid rgba(0, 22, 62, 0.1);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 22, 62, 0.07);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.peer-success-story::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 85px;
  height: 85px;
  background: linear-gradient(
    145deg,
    rgba(237, 178, 37, 0.18),
    rgba(255, 237, 201, 0.04)
  );
  border-radius: 0 0 0 100%;
  transition:
    width 350ms ease,
    height 350ms ease;
}

.peer-success-story:hover {
  border-color: rgba(237, 178, 37, 0.55);
  transform: translateY(-7px);
  box-shadow: 0 18px 38px rgba(0, 22, 62, 0.13);
}

.peer-success-story:hover::before {
  width: 125px;
  height: 125px;
}


/* =========================================
   CARD TOP
========================================= */

.peer-success-story__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.peer-success-story__type {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 13px;
  color: #00163e;
  background: #fff7e5;
  border: 1px solid rgba(237, 178, 37, 0.3);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.peer-success-story__icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00163e;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border-radius: 50%;
  font-size: 16px;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}

.peer-success-story:hover
.peer-success-story__icon {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 8px 18px rgba(237, 178, 37, 0.25);
}


/* =========================================
   STORY CONTENT
========================================= */

.peer-success-story h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: #00163e;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
}

.peer-success-story__text {
  position: relative;
  z-index: 2;
  margin: 0 0 22px;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.4;
}


/* =========================================
   STORY END / FOCUS
========================================= */

.peer-success-story__result {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 15px 16px;
  background: #f8fafb;
  border-left: 3px solid #edb225;
  border-radius: 0 10px 10px 0;
  transition:
    background 300ms ease,
    transform 300ms ease;
}

.peer-success-story:hover
.peer-success-story__result {
  background: #fff8e8;
  transform: translateX(3px);
}

.peer-success-story__result span {
  display: block;
  margin-bottom: 4px;
  color: #9b6800;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.peer-success-story__result strong {
  display: block;
  color: #00163e;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .peer-success-stories__side-note {
    max-width: 100%;
    margin: 20px 0 0;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .peer-success-stories__heading h2 {
    font-size: 32px;
  }

  .peer-success-stories__grid {
    margin-right: -6px;
    margin-left: -6px;
  }

  .peer-success-stories__grid > div {
    padding: 7px 6px;
  }

  .peer-success-story {
    padding: 21px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .peer-success-stories__heading h2 {
    font-size: 29px;
  }

  .peer-success-story {
    padding: 18px;
    border-radius: 15px;
  }

  .peer-success-story h3 {
    font-size: 19px;
  }

  .peer-success-story__icon {
    width: 42px;
    height: 42px;
  }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .peer-success-story,
  .peer-success-story::before,
  .peer-success-story__icon,
  .peer-success-story__result {
    transition: none;
  }
}

/**/

/* =========================================
   TESTIMONIALS
========================================= */

.peer-testimonials {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: linear-gradient(
    to right,
    #edb2250d,
    #fff7e7,
    #edb2250d
  );
  border-top: 1px solid #f1bd46;
}

.peer-testimonials,
.peer-testimonials * {
  box-sizing: border-box;
}


/* =========================================
   HEADING
========================================= */

.peer-testimonials__head {
  margin-bottom: 28px;
}

.peer-testimonials__heading {
  max-width: 720px;
}

.peer-testimonials__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #9b6800;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.peer-testimonials__label i {
  color: #edb225;
  font-size: 15px;
}

.peer-testimonials__heading h2 {
  margin: 0 0 12px;
  color: #00163e;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.peer-testimonials__heading p {
  margin: 0;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.4;
}


/* =========================================
   SLIDER CONTROLS
========================================= */

.peer-testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.peer-testimonials__arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #00163e;
  background: #ffffff;
  border: 1px solid #e5c77f;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition:
    color 280ms ease,
    background 280ms ease,
    border-color 280ms ease,
    transform 280ms ease,
    box-shadow 280ms ease;
}

.peer-testimonials__arrow:hover {
  color: #ffffff;
  background: linear-gradient(
    145deg,
    #00163e,
    #10648d
  );
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 22, 62, 0.16);
}


/* =========================================
   VIEWPORT
========================================= */

.peer-testimonials__viewport {
  width: 100%;
  overflow: hidden;
}

.peer-testimonials__track {
  display: flex;
  margin: 0 -10px;
  transition: transform 500ms ease;
  will-change: transform;
}

.peer-testimonials__slide {
  flex: 0 0 33.333333%;
  padding: 10px;
}


/* =========================================
   TESTIMONIAL
========================================= */

.peer-testimonial {
  position: relative;
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 25px;
  background: #ffffff;
  border: 1px solid rgba(237, 178, 37, 0.35);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 22, 62, 0.07);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.peer-testimonial::before {
  content: "";
  position: absolute;
  top: -45px;
  right: -45px;
  width: 125px;
  height: 125px;
  background: linear-gradient(
    145deg,
    rgba(237, 178, 37, 0.18),
    rgba(255, 237, 201, 0.05)
  );
  border-radius: 50%;
  transition: transform 400ms ease;
}

.peer-testimonial::after {
  content: "";
  position: absolute;
  right: 25px;
  bottom: 0;
  left: 25px;
  height: 3px;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  transform: scaleX(0);
  transition: transform 300ms ease;
}

.peer-testimonial:hover {
  border-color: #edb225;
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 22, 62, 0.12);
}

.peer-testimonial:hover::before {
  transform: scale(1.25);
}

.peer-testimonial:hover::after {
  transform: scaleX(1);
}


/* =========================================
   QUOTE
========================================= */

.peer-testimonial__quote {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  color: #00163e;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border-radius: 13px;
  font-size: 18px;
  transition: transform 300ms ease;
}

.peer-testimonial:hover
.peer-testimonial__quote {
  transform: rotate(-6deg);
}


/* =========================================
   SERVICE LABEL
========================================= */

.peer-testimonial__service {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: fit-content;
  margin-bottom: 11px;
  color: #9b6800;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}


/* =========================================
   TEXT
========================================= */

.peer-testimonial__text {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}


/* =========================================
   PERSON DETAILS
========================================= */

.peer-testimonial__person {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #f0dfb9;
}

.peer-testimonial__avatar {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(
    145deg,
    #00163e,
    #10648d
  );
  border: 2px solid #edb225;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.peer-testimonial__person h3 {
  margin: 0 0 4px;
  color: #00163e;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.peer-testimonial__city {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.peer-testimonial__city i {
  color: #edb225;
}


/* =========================================
   DOTS
========================================= */

.peer-testimonials__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.peer-testimonials__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #f1bd45;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition:
    width 280ms ease,
    background 280ms ease;
}

.peer-testimonials__dot.active {
  width: 30px;
  background: #00163e;
  border-radius: 20px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .peer-testimonials__controls {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .peer-testimonials__slide {
    flex-basis: 50%;
  }

  .peer-testimonial {
    min-height: 355px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .peer-testimonials__heading h2 {
    font-size: 32px;
  }

  .peer-testimonials__slide {
    flex-basis: 100%;
    padding: 6px;
  }

  .peer-testimonials__track {
    margin: 0 -6px;
  }

  .peer-testimonial {
    min-height: 0;
    padding: 21px;
  }

  .peer-testimonials__arrow {
    width: 44px;
    height: 44px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .peer-testimonials__heading h2 {
    font-size: 30px;
  }

  .peer-testimonial {
    padding: 18px;
    border-radius: 15px;
  }

  .peer-testimonial__person h3 {
    font-size: 17px;
  }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .peer-testimonials__track,
  .peer-testimonial,
  .peer-testimonial::before,
  .peer-testimonial::after,
  .peer-testimonial__quote,
  .peer-testimonials__arrow,
  .peer-testimonials__dot {
    transition: none;
  }
}

.banner-img-2 {
    border-radius: 15px;
    border: solid 2px #edb225;
    margin-top: 30px;
}

/**/

/* =========================================
   NEW FAQ SECTION
========================================= */

.peer-faq-new {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: linear-gradient(145deg, #00163e, #10648d);
}

.peer-faq-new,
.peer-faq-new * {
  box-sizing: border-box;
}


/* =========================================
   SUBTLE BACKGROUND PATTERN
========================================= */

.peer-faq-new__pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(
      circle,
      #ffedc9 1.5px,
      transparent 1.5px
    );
  background-size: 24px 24px;
  mask-image: linear-gradient(
    to left,
    #000,
    transparent
  );
}


/* =========================================
   CENTER HEADING
========================================= */

.peer-faq-new__heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.peer-faq-new__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #ffedc9;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.peer-faq-new__label i {
  color: #edb225;
  font-size: 15px;
}

.peer-faq-new__heading h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.peer-faq-new__heading p {
  max-width: 680px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}


/* =========================================
   LARGE FAQ PANEL
========================================= */

.peer-faq-new__panel {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(237, 178, 37, 0.55);
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(0, 22, 62, 0.24);
}


/* =========================================
   PANEL TOP
========================================= */

.peer-faq-new__panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    background: linear-gradient(    to right,    #edb225,    #ffedc9,    #edb225  );
    border-bottom: 1px solid #f1bd46;
}

.peer-faq-new__panel-small {
    display: block;
    margin-bottom: 4px;
    color: #232323;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.peer-faq-new__panel-top strong {
    display: block;
    color: #00163e;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
}

.peer-faq-new__panel-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00163e;
    background: #fff;
    border-radius: 50%;
    font-size: 18px;
}


/* =========================================
   FAQ ITEM
========================================= */

.peer-faq-new__item {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  transition: background 280ms ease;
}

.peer-faq-new__item:last-child {
  border-bottom: 0;
}

.peer-faq-new__item:hover {
  background: #fffdf8;
}

.peer-faq-new__item.active {
  background: #fffaf0;
}


/* Gold Accent */

.peer-faq-new__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(
    to bottom,
    #edb225,
    #ffedc9,
    #edb225
  );
  transform: scaleY(0);
  transition: transform 300ms ease;
}

.peer-faq-new__item.active::before {
  transform: scaleY(1);
}


/* =========================================
   QUESTION
========================================= */

.peer-faq-new__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 24px;
  color: #00163e;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.peer-faq-new__question span {
  flex: 1;
}

.peer-faq-new__question i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00163e;
  background: #f5f7f8;
  border: 1px solid #e2e5e8;
  border-radius: 50%;
  font-size: 14px;
  transition:
    color 280ms ease,
    background 280ms ease,
    border-color 280ms ease,
    transform 300ms ease;
}


/* Active Icon */

.peer-faq-new__item.active
.peer-faq-new__question i {
  color: #00163e;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border-color: transparent;
  transform: rotate(45deg);
}


/* Question Hover */

.peer-faq-new__question:hover i {
  border-color: #edb225;
}


/* =========================================
   ANSWER
========================================= */

.peer-faq-new__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 400ms ease,
    opacity 300ms ease;
}

.peer-faq-new__item.active
.peer-faq-new__answer {
  opacity: 1;
}

.peer-faq-new__answer-inner {
  max-width: 880px;
  padding: 0 75px 20px 24px;
}

.peer-faq-new__answer-inner p {
  margin: 0;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .peer-faq-new__panel {
    max-width: 100%;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .peer-faq-new__heading {
    text-align: left;
  }

  .peer-faq-new__heading h2 {
    font-size: 32px;
  }

  .peer-faq-new__heading p {
    margin-left: 0;
  }

  .peer-faq-new__panel {
    border-radius: 16px;
  }

  .peer-faq-new__panel-top {
    padding: 18px;
  }

  .peer-faq-new__question {
    gap: 12px;
    padding: 17px 18px;
  }

  .peer-faq-new__answer-inner {
    padding: 0 65px 18px 18px;
  }
  .peer-faq-new__question { 
    font-size: 16px; 
}

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .peer-faq-new__heading h2 {
    font-size: 29px;
  }

  .peer-faq-new__panel-top {
    align-items: flex-start;
  }

  .peer-faq-new__panel-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .peer-faq-new__panel-top strong {
    font-size: 20px;
  }
.peer-faq-new__panel-small {  
    font-size: 16px; 
}

  .peer-faq-new__question {
    padding: 15px;
  }

  .peer-faq-new__question i {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .peer-faq-new__answer-inner {
    padding: 0 55px 16px 15px;
  }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .peer-faq-new__item,
  .peer-faq-new__item::before,
  .peer-faq-new__answer,
  .peer-faq-new__question i {
    transition: none;
  }
}

/**/

/* =========================================
   SPECIALIST PAGE DIRECTORY
========================================= */

.peer-page-directory {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0 0 0; 
}

.peer-page-directory,
.peer-page-directory * {
  box-sizing: border-box;
}

.peer-page-directory a {
  text-decoration: none;
}


/* =========================================
   HEADING
========================================= */

.peer-page-directory__heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.peer-page-directory__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: #9b6800;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.peer-page-directory__label i {
  color: #edb225;
}

.peer-page-directory__heading h2 {
  margin: 0 0 12px;
  color: #00163e;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.peer-page-directory__heading p {
  margin: 0;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.4;
}


/* =========================================
   GRID
========================================= */

.peer-page-directory__grid {
  margin-right: -15px;
  margin-left: -15px;
}

.peer-page-directory__grid > div {
  padding: 15px;
}


/* =========================================
   COLUMN
========================================= */

.peer-page-directory__column {
  position: relative;
  height: 100%;
  padding: 0 0 0 22px;
}


/* Gold Vertical Line */

.peer-page-directory__column::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent,
    #edb225 15%,
    #edb225 85%,
    transparent
  );
}


/* =========================================
   COLUMN TITLE
========================================= */

.peer-page-directory__column-title {
  position: relative;
  display: block;
  margin-bottom: 12px;
  color: #00163e;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.peer-page-directory__column-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -27px;
  width: 12px;
  height: 12px;
  background: #edb225;
  border: 3px solid #fffaf0;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 1px #edb225;
}


/* =========================================
   LINKS
========================================= */

.peer-page-directory__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.peer-page-directory__links a {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  overflow: hidden;
  padding: 11px 14px;
  color: #1a1a1a;
  background: transparent;
  border-bottom: 1px solid rgba(0, 22, 62, 0.11);
  border-radius: 7px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    color 280ms ease,
    padding-left 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}


/* Hover Background Animation */

.peer-page-directory__links a::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(
    145deg,
    #00163e,
    #10648d
  );
  transform: translateX(-102%);
  transition: transform 350ms ease;
}

.peer-page-directory__links a span,
.peer-page-directory__links a i {
  position: relative;
  z-index: 2;
}


/* Arrow */

.peer-page-directory__links a i {
  flex: 0 0 auto;
  color: #c58b12;
  font-size: 14px;
  transform: translateX(-4px);
  transition:
    color 280ms ease,
    transform 280ms ease;
}


/* =========================================
   LINK HOVER
========================================= */

.peer-page-directory__links a:hover {
  color: #ffffff;
  padding-left: 19px;
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(0, 22, 62, 0.13);
}

.peer-page-directory__links a:hover::before {
  transform: translateX(0);
}

.peer-page-directory__links a:hover i {
  color: #ffedc9;
  transform: translateX(0);
}


/* =========================================
   LOAD ANIMATION
========================================= */

.peer-page-directory__column {
  opacity: 0;
  animation: peerDirectoryFade 650ms ease forwards;
}

.peer-page-directory__grid > div:nth-child(1)
.peer-page-directory__column {
  animation-delay: 100ms;
}

.peer-page-directory__grid > div:nth-child(2)
.peer-page-directory__column {
  animation-delay: 220ms;
}

.peer-page-directory__grid > div:nth-child(3)
.peer-page-directory__column {
  animation-delay: 340ms;
}


@keyframes peerDirectoryFade {

  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .peer-page-directory__grid > div:last-child {
    margin-top: 5px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .peer-page-directory__heading {
    text-align: left;
  }

  .peer-page-directory__heading h2 {
    font-size: 32px;
  }

  .peer-page-directory__grid {
    margin-right: -6px;
    margin-left: -6px;
  }

  .peer-page-directory__grid > div {
    padding: 12px 6px;
  }

  .peer-page-directory__column {
    padding-left: 20px;
  }

  .peer-page-directory__links a {
    min-height: 48px;
    font-size: 16px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .peer-page-directory__heading h2 {
    font-size: 29px;
  }

  .peer-page-directory__column-title {
    font-size: 17px;
  }

  .peer-page-directory__links a {
    padding: 11px 12px;
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .peer-page-directory__column {
    opacity: 1;
    animation: none;
  }

  .peer-page-directory__links a,
  .peer-page-directory__links a::before,
  .peer-page-directory__links a i {
    transition: none;
  }

}

/**/

/* =========================================
   FINAL CTA
========================================= */

.peer-final-cta {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 40px 0;
  background: #ffffff;
}

.peer-final-cta,
.peer-final-cta * {
  box-sizing: border-box;
}

.peer-final-cta a {
  text-decoration: none;
}


/* CTA BOX */

.peer-final-cta__box {
  position: relative;
  overflow: hidden;
  padding: 32px 38px;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border-radius: 18px;
}


/* Decorative Shape */

.peer-final-cta__box::before {
  content: "";
  position: absolute;
  top: -95px;
  right: 13%;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(0, 22, 62, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.peer-final-cta__box::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -105px;
  width: 220px;
  height: 220px;
  background: rgba(0, 22, 62, 0.06);
  border-radius: 50%;
  pointer-events: none;
}


/* CTA CONTENT */

.peer-final-cta__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.peer-final-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #00163e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.peer-final-cta__label i {
  font-size: 15px;
}

.peer-final-cta__content h2 {
  margin: 0 0 10px;
  color: #00163e;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.peer-final-cta__content p {
  max-width: 680px;
  margin: 0;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}


/* =========================================
   CTA BUTTON
========================================= */

.peer-final-cta__action {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.peer-final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 23px;
  color: #ffffff !important;
  background: linear-gradient(
    145deg,
    #00163e,
    #10648d
  );
  border: 1px solid transparent;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 22, 62, 0.18);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    background 280ms ease;
}

.peer-final-cta__button i {
  font-size: 14px;
  transition: transform 280ms ease;
}

.peer-final-cta__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 22, 62, 0.25);
}

.peer-final-cta__button:hover i {
  transform: translateX(4px);
}


/* =========================================
   FOOTER
========================================= */

.peer-main-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0 0;
  background: linear-gradient(
    145deg,
    #00163e,
    #10648d
  );
  border-top: 3px solid #edb225;
}

.peer-main-footer,
.peer-main-footer * {
  box-sizing: border-box;
}

.peer-main-footer a {
  text-decoration: none;
}


/* Decorative Glow */

.peer-main-footer::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -180px;
  width: 390px;
  height: 390px;
  background: rgba(237, 178, 37, 0.05);
  border-radius: 50%;
  pointer-events: none;
}


/* =========================================
   MAIN FOOTER ROW
========================================= */

.peer-main-footer__main {
  position: relative;
  z-index: 2;
  margin-right: -14px;
  margin-left: -14px;
}

.peer-main-footer__main > div {
  padding: 0 14px;
  margin-bottom: 30px;
}


/* =========================================
   LOGO / BRAND
========================================= */

.peer-main-footer__logo {
  display: inline-block;
  margin-bottom: 18px;
}

.peer-main-footer__logo img {
  display: block;
}


/* No width or height added to logo */


.peer-main-footer__brand > p {
  max-width: 390px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.peer-main-footer__social {
  display: flex;
  align-items: center;
  gap: 9px;
}

.peer-main-footer__social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffedc9;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 237, 201, 0.22);
  border-radius: 50%;
  font-size: 14px;
  transition:
    color 280ms ease,
    background 280ms ease,
    border-color 280ms ease,
    transform 280ms ease;
}

.peer-main-footer__social a:hover {
  color: #00163e;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border-color: transparent;
  transform: translateY(-3px);
}


/* =========================================
   FOOTER COLUMN TITLE
========================================= */

.peer-main-footer__column h3 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.peer-main-footer__column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 2px;
  background: #edb225;
}


/* =========================================
   FOOTER LINKS
========================================= */

.peer-main-footer__column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.peer-main-footer__column li {
  margin-bottom: 10px;
}

.peer-main-footer__column li:last-child {
  margin-bottom: 0;
}

.peer-main-footer__column li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  transition:
    color 250ms ease,
    transform 250ms ease;
}

.peer-main-footer__column li a i {
  color: #edb225;
  font-size: 14px;
  transition: transform 250ms ease;
}

.peer-main-footer__column li a:hover {
  color: #ffedc9;
  transform: translateX(4px);
}

.peer-main-footer__column li a:hover i {
  transform: translateX(2px);
}


/* =========================================
   CONTACT
========================================= */

.peer-main-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #ffffff;
}

.peer-main-footer__contact-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00163e;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border-radius: 50%;
  font-size: 15px;
  transition:
    transform 280ms ease,
    box-shadow 280ms ease;
}

.peer-main-footer__contact-item:hover
.peer-main-footer__contact-icon {
  transform: scale(1.07);
  box-shadow: 0 8px 18px rgba(237, 178, 37, 0.25);
}

.peer-main-footer__contact-item small {
  display: block;
  margin-bottom: 2px;
  color: #ffedc9;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.peer-main-footer__contact-item strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}


/* Availability */

.peer-main-footer__availability {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.peer-main-footer__availability i {
  margin-top: 2px;
  color: #edb225;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.peer-main-footer__bottom {
  position: relative;
  z-index: 2;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.peer-main-footer__bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}


/* Legal Links */

.peer-main-footer__legal {
  display: flex;
  align-items: center;
  gap: 13px;
}

.peer-main-footer__legal a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 250ms ease;
}

.peer-main-footer__legal a:hover {
  color: #ffedc9;
}

.peer-main-footer__legal span {
  width: 4px;
  height: 4px;
  background: #edb225;
  border-radius: 50%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .peer-final-cta__action {
    justify-content: flex-start;
    margin-top: 20px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .peer-final-cta__box {
    padding: 26px 22px;
    text-align: center;
  }

  .peer-final-cta__content h2 {
    font-size: 32px;
  }

  .peer-main-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }


}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .peer-final-cta__box {
    padding: 22px 18px;
    border-radius: 15px;
  }

  .peer-final-cta__content h2 {
    font-size: 29px;
  }

  .peer-final-cta__button {
    width: 100%;
  }

  .peer-main-footer__social {
    flex-wrap: wrap;
  }

  .peer-main-footer__legal {
    flex-wrap: wrap;
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .peer-final-cta__button,
  .peer-final-cta__button i,
  .peer-main-footer__social a,
  .peer-main-footer__column li a,
  .peer-main-footer__column li a i,
  .peer-main-footer__contact-icon {
    transition: none;
  }

}

.footer-logo {
    width: 250px;
}

/*Form css*/
/* =========================================
   CONTACT FORM SECTION
========================================= */

.peer-contact-form-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: linear-gradient(
    to right,
    #edb2250d,
    #fff7e7,
    #edb2250d
  );
}

.peer-contact-form-section,
.peer-contact-form-section * {
  box-sizing: border-box;
}


/* =========================================
   FORM BOX
========================================= */

.peer-contact-form-box {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(237, 178, 37, 0.45);
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(0, 22, 62, 0.09);
}

.peer-contact-form-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 110px;
  height: 4px;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border-radius: 0 0 8px 8px;
}


/* =========================================
   HEADING
========================================= */

.peer-contact-form-heading {
  max-width: 650px;
  margin-bottom: 27px;
}

.peer-contact-form-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: #9b6800;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.peer-contact-form-label i {
  color: #edb225;
  font-size: 15px;
}

.peer-contact-form-heading h2 {
  margin: 0 0 10px;
  color: #00163e;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.peer-contact-form-heading p {
  margin: 0;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}


/* =========================================
   FORM GROUP
========================================= */

.peer-form-group {
  margin-bottom: 20px;
}

.peer-form-group label {
  display: block;
  margin-bottom: 7px;
  color: #00163e;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}


/* =========================================
   INPUT FIELD
========================================= */

.peer-form-field {
  position: relative;
}

.peer-form-field > i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 16px;
  color: #b47b08;
  font-size: 15px;
  transform: translateY(-50%);
  transition:
    color 250ms ease,
    transform 250ms ease;
}

.peer-form-field input,
.peer-form-field select,
.peer-form-field textarea {
  width: 100%;
  outline: none;
  color: #1a1a1a;
  background: #fbfcfd;
  border: 1px solid #dfe4e8;
  border-radius: 11px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  transition:
    border-color 250ms ease,
    background 250ms ease,
    box-shadow 250ms ease;
}

.peer-form-field input,
.peer-form-field select {
  height: 52px;
  padding: 0 45px;
}

.peer-form-field textarea {
  min-height: 135px;
  padding: 14px 16px 14px 45px;
  resize: vertical;
}


/* Placeholder */

.peer-form-field input::placeholder,
.peer-form-field textarea::placeholder {
  color: #6f6f6f;
  opacity: 1;
}


/* Focus */

.peer-form-field:focus-within > i {
  color: #00163e;
  transform: translateY(-50%) scale(1.08);
}

.peer-form-field input:focus,
.peer-form-field select:focus,
.peer-form-field textarea:focus {
  background: #ffffff;
  border-color: #edb225;
  box-shadow: 0 0 0 3px rgba(237, 178, 37, 0.12);
}


/* =========================================
   SELECT
========================================= */

.peer-form-field select {
  cursor: pointer;
  appearance: none;
  padding-right: 45px;
}

.peer-form-select-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  pointer-events: none;
  color: #00163e;
  font-size: 14px;
  transform: translateY(-50%);
}


/* =========================================
   TEXTAREA ICON
========================================= */

.peer-form-textarea > i {
  top: 18px;
  transform: none;
}

.peer-form-textarea:focus-within > i {
  transform: scale(1.08);
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.peer-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 22px;
  color: #ffffff;
  background: linear-gradient(
    145deg,
    #00163e,
    #10648d
  );
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 22, 62, 0.15);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  transition:
    transform 280ms ease,
    box-shadow 280ms ease;
}

.peer-contact-submit .fa-whatsapp {
  color: #ffedc9;
  font-size: 18px;
}

.peer-contact-submit .fa-arrow-right {
  font-size: 14px;
  transition: transform 280ms ease;
}

.peer-contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 22, 62, 0.22);
}

.peer-contact-submit:hover .fa-arrow-right {
  transform: translateX(4px);
}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 767px) {

  .peer-contact-form-box {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .peer-contact-form-box::before {
    left: 20px;
  }

  .peer-contact-form-heading h2 {
    font-size: 32px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .peer-contact-form-box {
    padding: 21px 16px;
  }

  .peer-contact-form-heading h2 {
    font-size: 29px;
  }

  .peer-form-field input,
  .peer-form-field select {
    height: 50px;
  }

  .peer-contact-submit {
    width: 100%;
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .peer-form-field > i,
  .peer-form-field input,
  .peer-form-field select,
  .peer-form-field textarea,
  .peer-contact-submit,
  .peer-contact-submit .fa-arrow-right {
    transition: none;
  }

}
/*Form css End*/

/*pages css*/

/* =========================================
   COMMON INNER PAGE CONTENT
========================================= */

.peer-page-content {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background:
    linear-gradient(
      to right,
      #edb2250d,
      #fffaf2,
      #edb2250d
    );
}

.peer-page-content,
.peer-page-content * {
  box-sizing: border-box;
}


/* =========================================
   MAIN SHELL
========================================= */

.peer-page-content__shell {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 35px 42px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(237, 178, 37, 0.35);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 22, 62, 0.07);
}


/* Gold Top Detail */

.peer-page-content__shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 42px;
  width: 130px;
  height: 4px;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border-radius: 0 0 10px 10px;
}


/* Background Shape */

.peer-page-content__shell::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -100px;
  width: 270px;
  height: 270px;
  pointer-events: none;
  border: 1px solid rgba(237, 178, 37, 0.13);
  border-radius: 50%;
}


/* =========================================
   PAGE INTRO
========================================= */

.peer-page-content__intro {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 34px;
}

.peer-page-content__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #9b6800;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.peer-page-content__eyebrow i {
  color: #edb225;
  font-size: 15px;
}


/* H1 */

.peer-page-content__intro h1 {
  margin: 0 0 14px;
  color: #00163e;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.peer-page-content__intro p {
  max-width: 880px;
  margin: 0;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}


/* =========================================
   CHAPTER
========================================= */

.peer-page-content__chapter {
  position: relative;
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 22, 62, 0.1);
  transition:
    transform 300ms ease,
    border-color 300ms ease;
}

.peer-page-content__chapter:hover {
  border-color: rgba(237, 178, 37, 0.65);
  transform: translateX(4px);
}


/* =========================================
   NUMBER MARKER
========================================= */

.peer-page-content__marker {
  position: relative;
  padding-top: 3px;
}

.peer-page-content__marker::after {
  content: "";
  position: absolute;
  top: 55px;
  bottom: -28px;
  left: 25px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(237, 178, 37, 0.55),
    transparent
  );
}

.peer-page-content__marker span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00163e;
  background: #fff7e7;
  border: 1px solid #edb225;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}

.peer-page-content__chapter:hover
.peer-page-content__marker span {
  color: #ffffff;
  background: linear-gradient(
    145deg,
    #00163e,
    #10648d
  );
  transform: rotate(-5deg);
  box-shadow: 0 8px 18px rgba(0, 22, 62, 0.16);
}


/* =========================================
   CHAPTER BODY
========================================= */

.peer-page-content__chapter-body {
  position: relative;
  min-width: 0;
}


/* H2 */

.peer-page-content__chapter-body h2 {
  margin: 0 0 14px;
  color: #00163e;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}


/* Paragraph */

.peer-page-content__chapter-body > p {
  margin: 0 0 15px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.peer-page-content__chapter-body > p:last-of-type {
  margin-bottom: 0;
}


/* =========================================
   H3 SUBTOPIC
========================================= */

.peer-page-content__subtopic {
  position: relative;
  margin-top: 22px;
  padding: 18px 20px;
  background: linear-gradient(
    to right,
    #edb2250d,
    #fffaf0,
    #edb2250d
  );
  border-left: 3px solid #edb225;
  border-radius: 0 14px 14px 0;
  transition:
    background 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}

.peer-page-content__subtopic:hover {
  background: #fff7e7;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 22, 62, 0.07);
}


/* H3 */

.peer-page-content__subtopic h3 {
  margin: 0 0 9px;
  color: #00163e;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
}

.peer-page-content__subtopic p {
    margin: 0 0 10px 0;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}
ul.list-text {
    margin-bottom: 12px;
}

/* =========================================
   HIGHLIGHT MESSAGE
========================================= */

.peer-page-content__highlight {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 6px 0;
  padding: 18px 22px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    #00163e,
    #10648d
  );
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(0, 22, 62, 0.12);
}

.peer-page-content__highlight::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 237, 201, 0.16);
  border-radius: 50%;
}

.peer-page-content__highlight-icon {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00163e;
  background: linear-gradient(
    to right,
    #edb225,
    #ffedc9,
    #edb225
  );
  border-radius: 50%;
  font-size: 16px;
  transition: transform 300ms ease;
}

.peer-page-content__highlight:hover
.peer-page-content__highlight-icon {
  transform: rotate(-8deg) scale(1.07);
}

.peer-page-content__highlight p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}


/* =========================================
   ENTRY ANIMATION
========================================= */

.peer-page-content__intro,
.peer-page-content__chapter,
.peer-page-content__highlight {
  opacity: 0;
  animation: peerContentEnter 650ms ease forwards;
}

.peer-page-content__intro {
  animation-delay: 80ms;
}

.peer-page-content__chapter:nth-of-type(2) {
  animation-delay: 170ms;
}

.peer-page-content__highlight {
  animation-delay: 260ms;
}

.peer-page-content__chapter:last-child {
  animation-delay: 350ms;
}


@keyframes peerContentEnter {

  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .peer-page-content__shell {
    padding: 30px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .peer-page-content__shell {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .peer-page-content__shell::before {
    left: 20px;
  }

  .peer-page-content__intro h1 {
    font-size: 32px;
  }

  .peer-page-content__chapter {
    grid-template-columns: 55px 1fr;
    gap: 15px;
    padding: 24px 0;
  }

  .peer-page-content__marker span {
    width: 44px;
    height: 44px;
  }

  .peer-page-content__marker::after {
    top: 49px;
    left: 22px;
  }

  .peer-page-content__chapter-body h2 {
    font-size: 24px;
  }

  .peer-page-content__subtopic h3 {
    font-size: 19px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .peer-page-content__shell {
    padding: 21px 16px;
  }

  .peer-page-content__intro h1 {
    font-size: 29px;
  }

  .peer-page-content__chapter {
    display: block;
  }

  .peer-page-content__marker {
    margin-bottom: 14px;
  }

  .peer-page-content__marker::after {
    display: none;
  }

  .peer-page-content__chapter-body h2 {
    font-size: 22px;
  }

  .peer-page-content__subtopic {
    padding: 16px;
  }

  .peer-page-content__highlight {
    align-items: flex-start;
    padding: 16px;
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .peer-page-content__intro,
  .peer-page-content__chapter,
  .peer-page-content__highlight {
    opacity: 1;
    animation: none;
  }

  .peer-page-content__chapter,
  .peer-page-content__marker span,
  .peer-page-content__subtopic,
  .peer-page-content__highlight-icon {
    transition: none;
  }

}

/*pages css*/
 ul.list-text li {
    position: relative;
    padding-left: 25px;
    margin-top: 6px;
    font-size: 16px;
}
ul.list-text li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 16px;
    color: #edb225;
}
.peer-page-directory__links a {
    text-transform: capitalize;
}
.peer-page-content__chapter-body h3 {
    margin: 0 0 14px;
    color: #00163e;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.25;
}
.awimg {
    border-radius: 15px;
    border: solid 2px #edb225;
    margin-top: 20px;
}

@media (max-width:767px) { 
  .peer-about-new__image-caption { 
    margin-top: 10px;
    margin-bottom: 15px; 
}
.peer-main-footer__main > div { 
    margin-bottom: 15px;
}
.peer-main-footer__bottom { 
    gap: 10px; 
}
.peer-about-new__focus {
    display: none;
}
.peer-page-content__chapter-body h3 { 
    font-size: 21px; 
}
 
}

@media (max-width:355px) { 
  .peer-topbar-v2__content strong {
    font-size: 13px; 
  }
}

