.hero-block {
      position: absolute;
      top: 50%;
      left: 6%;
      transform: translateY(-50%);
      max-width: 550px;
      text-align: left;
      z-index: 5;
  }
  .hero-title {
      font-size: clamp(1.8rem, 3.3vw, 4.35rem); 
      font-weight: 800;
      color: #0A1A44; 
      line-height: 1.22;
      margin-bottom: 18px;
  }
  
 

.hero-subtitle {
    font-size: clamp(1.05rem, 1.15vw, 1.35rem);
    color: #ffffff; 
    margin-bottom: 25px;
    line-height: 1.55;
    font-weight: 500; 
    max-width: 60ch;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
  .hero-btn {
      padding: 12px 28px;
      font-size: 1.05rem;
      border-radius: 6px;
  }
  
  .hero-slideshow {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
  }
  

  

.hero-slideshow::before,
.hero-slideshow::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events: none;
}

.hero-slideshow::before{
  background: linear-gradient(
    to right,
    rgba(226,233,242,0.62) 0%,
    rgba(226,233,242,0.42) 38%,
    rgba(226,233,242,0.2) 68%,
    rgba(226,233,242,0.06) 100%
  );
  z-index: 2;
}

.hero-slideshow::after{
  backdrop-filter: blur(1.05px);
  -webkit-backdrop-filter: blur(1.05px);
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.72) 35%,
    rgba(0,0,0,0.38) 65%,
    rgba(0,0,0,0.08) 88%,
    rgba(0,0,0,0) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.72) 35%,
    rgba(0,0,0,0.38) 65%,
    rgba(0,0,0,0.08) 88%,
    rgba(0,0,0,0) 100%
  );
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  z-index: 3;
}
.hero-slideshow picture{
  position:absolute;
  inset:0;
  opacity:0;
  z-index: 0;
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: opacity 1.6s ease-in-out;
}

.hero-slideshow picture img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: brightness(0.76) blur(3.2px);
  transform: scale(1.02);
}

.hero-slideshow picture.hero-slide--soft-blur img{
  filter: brightness(0.76) blur(3.2px);
  transform: scale(1.02);
}

.hero-slideshow picture:first-child,
.hero-slideshow picture.is-active{
  opacity: 1;
  z-index: 1;
}

.hero-slideshow.is-enhanced picture:first-child{
  opacity: 0;
  z-index: 0;
}

.hero-slideshow.is-enhanced picture.is-active{
  opacity: 1;
  z-index: 1;
}

html[dir="rtl"] .hero-slideshow::before{
  background: linear-gradient(
    to left,
    rgba(226,233,242,0.62) 0%,
    rgba(226,233,242,0.42) 38%,
    rgba(226,233,242,0.2) 68%,
    rgba(226,233,242,0.06) 100%
  );
}

html[dir="rtl"] .hero-slideshow::after{
  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.72) 35%,
    rgba(0,0,0,0.38) 65%,
    rgba(0,0,0,0.08) 88%,
    rgba(0,0,0,0) 100%
  );
  mask-image: linear-gradient(
    to left,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.72) 35%,
    rgba(0,0,0,0.38) 65%,
    rgba(0,0,0,0.08) 88%,
    rgba(0,0,0,0) 100%
  );
}

.hero-slideshow{
  position:absolute;
  inset:0;
  overflow:hidden;
  z-index:0;
  background-color: #0A1A44;
}
  
  .carousel-caption,
  .hero-title,
  .hero-subtitle,
  .hero-btn {
      position: relative;
      z-index: 5 !important;
  }
  
  .carousel-item {
      height: 100vh;
      position: relative;
  }
  .carousel-item .carousel-caption {
      top: 50%;
      transform: translateY(-50%);
      padding-top: 70px; 
  }
  .carousel-caption {
      z-index: 10 !important;
      position: relative;
  }
@media (max-width: 768px) {
      .hero-block {
          left: 5%;
          top: 55%;
          max-width: 90%;
      }
  
      .hero-title {
          font-size: 1.9rem;
      }
  
      .hero-subtitle {
          font-size: 1.05rem;
      }
  
      .hero-btn {
          font-size: 1rem;
          padding: 10px 22px;
      }
  }

@media (min-width: 1600px) {
  .hero-block {
    max-width: 680px;
    left: 7%;
  }

  .hero-btn {
    font-size: 1.15rem;
    padding: 14px 34px;
  }
}

.hero-btn-primary {
    background: #1A4FFF;   
    color: #fff;
    border-radius: 8px;
    padding: 12px 26px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.hero-btn-primary:hover {
    background: #0039d6;
    transform: translateY(-2px);
}
.hero-btn-secondary {
    background: rgba(255,255,255,0.10);
    color: #fff;
    border: 2px solid #ffffff;
    border-radius: 8px;
    padding: 12px 26px;
    font-weight: 500;
    transition: 0.3s ease;
}

.hero-btn-secondary:hover {
    background: #ffffff;
    color: #0A1A44;    
    transform: translateY(-2px);
}

.hero-side-box{
  background: #0A1A44;        
  color: #ffffff;

  border-radius:16px;
  box-shadow: 0 22px 60px rgba(10,26,68,0.45);

  padding: 1.05rem;
  z-index:20;
  font-size: 0.9rem;
  line-height: 1.45;
}

@keyframes heroSideIn{
  from{
    opacity: 0;
    transform: translateX(-56px) scale(0.98);
  }
  to{
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.hero-side-box a{
  color:#ffffff;
}

.hero-side-box .btn-outline-dark{
  border-color: rgba(255,255,255,0.8);
  color:#ffffff;
}

.hero-side-box .btn-outline-dark:hover{
  background:#ffffff;
  color:#0A1A44;
}

@media (min-width: 992px){
  .hero-side-box{
    position: absolute;      
    right: 24px;
    bottom: calc(20px + 60px + 24px + 40px + 12px + env(safe-area-inset-bottom));
    max-width: clamp(280px, 30vw, 360px);
    z-index: 999;            
    opacity: 0;
    transform: translateX(-56px) scale(0.98);
    animation: heroSideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
  }
}

@media (min-width: 992px){
  .carousel-caption .col-lg-8{
    flex: 0 0 52%;
    max-width: 52%;
  }
}

@media (min-width: 1200px){
  .carousel-caption .col-lg-8{
    flex: 0 0 56%;
    max-width: 56%;
  }
}

html[dir="rtl"] .carousel-caption .row{
  justify-content: flex-end;
}

html[dir="rtl"] .carousel-caption .col-lg-8{
  text-align: right;
}

html[dir="rtl"] .hero-title,
html[dir="rtl"] .hero-subtitle{
  text-align: right;
}

html[dir="rtl"] .carousel-caption .d-flex{
  justify-content: flex-end;
  flex-direction: row-reverse;
}

@media (min-width: 992px){
  html[dir="rtl"] .hero-side-box{
    right: auto;
    left: 24px;
    text-align: right;
  }
}

@media (min-width: 992px) and (max-width: 1399.98px){
  html[dir="rtl"] .hero-side-box{
    position: static;
    max-width: min(100%, 420px);
    margin-top: 1rem;
    margin-left: 0;
    margin-right: auto;
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.hero-side-box .btn{
  padding: .3rem .65rem;
  font-size: .82rem;
}
@media (max-width: 991.98px){
  .carousel-caption{
    padding-bottom: 40px !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px){
  .carousel-caption .row{
    justify-content: flex-start !important;
  }

  .carousel-caption .col-lg-8{
    max-width: 90%;
    margin: 0;
    text-align: left;
  }

  .hero-title,
  .hero-subtitle{
    text-align: left;
  }

  .carousel-caption .d-flex{
    justify-content: flex-start;
  }
}
@media (max-width: 991.98px){
  .hero-side-box{
    position: static;
    max-width: 100%;
    margin-top: 1.25rem;
  }

  .carousel-item .carousel-caption{
    top: 0 !important;
    transform: none !important;
    padding-top: var(--header-offset) !important;
    padding-bottom: 20px;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero-side-box{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-slideshow picture{
    transition: none !important;
  }
}
@media (max-width: 991.98px){
  .carousel-item{
    height: auto !important;     
    min-height: 100vh;           
    padding-bottom: 24px;        
  }
}

@media (max-width: 991.98px){
  .hero-wrap{
    margin-bottom: 12px !important; 
  }
  .mobile-about{
    margin-top: 12px !important;    
  }
}
@media (max-width: 991.98px){
  #about-details-desktop{ display:none !important; }
}
.section-divider{
  display: block;
  width: 140px;                 
  height: 4px;                  
  border-radius: 999px;         
  background: rgba(10,26,68,.18);
}
.why-box{
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(10,26,68,.12);
  border-radius: 12px;
  padding: 16px 18px;
}

.why-box-title{
  font-weight: 700;
  color: #0A1A44;
  margin-bottom: 10px;
}

.why-list{
  margin: 0 0 12px 18px;
}

.why-list-strong{
  list-style: none;
  padding-left: 0;
}

.why-list-strong li{
  padding: 8px 0;
}
.simple-frame{
  border: 2px solid rgba(10,26,68,.15);
  border-radius: 18px;
  padding: 26px;
  background: #fff;
}

.dossiers-showcase{
  position: relative;
}

.dossiers-shell{
  background: #f8fbff;
  border-radius: 24px;
  padding: 34px;
  border: 1px solid rgba(10, 26, 68, 0.10);
}

.dossiers-head{
  margin-bottom: 22px;
}

.dossiers-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0A1A44;
}

.dossiers-kicker::before{
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--bs-primary);
}

.dossier-stack{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dossier-row{
  display: grid;
  grid-template-columns: minmax(280px, 37%) 1fr;
  background: #ffffff;
  border: 1px solid rgba(10, 26, 68, 0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(10, 26, 68, 0.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.dossier-row:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(10, 26, 68, 0.12);
  border-color: rgba(13, 110, 253, 0.30);
}

.dossier-row-media{
  display: block;
  height: 100%;
  overflow: hidden;
  border-right: 1px solid rgba(10, 26, 68, 0.08);
}

.dossier-row-media img{
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform .4s ease;
}

.dossier-row:hover .dossier-row-media img{
  transform: scale(1.04);
}

.dossier-row-content{
  padding: 28px 30px;
  position: relative;
}

.dossier-row-content::before{
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f78ff 0%, #0A1A44 100%);
}

.dossier-row-meta{
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: #2f78ff;
  margin-bottom: 10px;
}

.dossier-row-title{
  font-size: 1.55rem;
  font-weight: 800;
  color: #0A1A44;
  margin-bottom: 4px;
}

.dossier-row-subtitle{
  font-size: 1.03rem;
  color: #4b5d7d;
  font-weight: 600;
  margin-bottom: 12px;
}

.dossier-row-text{
  color: #2a3a56;
  line-height: 1.7;
  margin-bottom: 16px;
}

.dossier-row-link{
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid rgba(13, 110, 253, 0.32);
  background: #f2f7ff;
  font-weight: 700;
  color: #13439b;
  text-decoration: none;
  transition: all .2s ease;
}

.dossier-row-link:hover{
  background: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
}

.maroc-showcase{
  position: relative;
}

.maroc-shell{
  background: #f8fbff;
  border: 1px solid rgba(10, 26, 68, 0.10);
  border-radius: 24px;
  padding: 34px;
}

.maroc-head{
  margin-bottom: 20px;
  background: linear-gradient(130deg, #0A1A44 0%, #17387e 100%);
  border-radius: 16px;
  padding: 24px 26px;
}

.maroc-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b8d0ff;
}

.maroc-kicker::before{
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: #4ea0ff;
}

.maroc-head h2{
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
}

.maroc-intro{
  color: rgba(255, 255, 255, .92);
  line-height: 1.75;
}

.maroc-narrative{
  background: #ffffff;
  border: 1px solid rgba(10, 26, 68, 0.12);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(10, 26, 68, 0.06);
}

.maroc-narrative p{
  color: #2a3a56;
  line-height: 1.75;
}

.maroc-distance{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f1f6ff;
  border: 1px solid rgba(13, 110, 253, 0.16);
}

.maroc-distance span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 34px;
  border-radius: 999px;
  background: #0d6efd;
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
}

.maroc-flight-panel{
  margin-bottom: 16px;
  border: 1px solid rgba(10, 26, 68, 0.12);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
}

.maroc-flight-panel h3{
  margin-bottom: 12px;
  color: #0A1A44;
  font-size: 1.02rem;
  font-weight: 700;
}

.maroc-flight-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.maroc-flight-list li{
  border-radius: 10px;
  padding: 10px 12px;
  background: #f4f8ff;
  border: 1px solid rgba(13, 110, 253, 0.16);
  color: #18396e;
  font-size: .9rem;
}

.maroc-flight-list li strong{
  font-weight: 800;
  color: #0A1A44;
  margin-right: 5px;
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

html[dir="rtl"] .maroc-flight-list li strong{
  margin-right: 0;
  margin-left: 10px;
}

.maroc-atouts{
  background: #ffffff;
  border: 1px solid rgba(10, 26, 68, 0.14);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 8px 24px rgba(10, 26, 68, 0.08);
}

.maroc-atouts h3{
  font-size: 1.25rem;
  font-weight: 800;
  color: #0A1A44;
  margin-bottom: 14px;
}

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

.maroc-list li{
  position: relative;
  padding: 10px 0 10px 22px;
  line-height: 1.7;
  color: #2a3a56;
  border-bottom: 1px dashed rgba(10, 26, 68, 0.14);
}

.maroc-list li:last-child{
  border-bottom: 0;
}

.maroc-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2f78ff;
  box-shadow: 0 0 0 4px rgba(47, 120, 255, 0.16);
}

@media (max-width: 991.98px){
  .simple-frame{
    padding: 18px;
    border-radius: 14px;
  }

  .dossiers-shell{
    padding: 20px 16px;
    border-radius: 18px;
  }

  .dossier-stack{
    gap: 16px;
  }

  .dossier-row{
    grid-template-columns: 1fr;
  }

  .dossier-row-media{
    border-right: 0;
    border-bottom: 1px solid rgba(10, 26, 68, 0.08);
  }

  .dossier-row-media img{
    min-height: 210px;
    height: 210px;
  }

  .dossier-row-content{
    padding: 18px 18px 20px;
  }

  .dossier-row-content::before{
    top: 18px;
    bottom: 18px;
  }

  .dossier-row-title{
    font-size: 1.25rem;
  }

  .dossier-row-subtitle{
    font-size: .95rem;
  }

  .maroc-shell{
    padding: 20px 16px;
    border-radius: 18px;
  }

  .maroc-head{
    margin-bottom: 12px;
    padding: 18px 16px;
  }

  .maroc-head h2{
    font-size: 1.35rem;
  }

  .maroc-narrative{
    padding: 18px;
  }

  .maroc-distance{
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px;
  }

  .maroc-distance span{
    min-width: 56px;
    height: 30px;
    font-size: .8rem;
  }

  .maroc-flight-panel{
    padding: 12px;
  }

  .maroc-flight-list{
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .maroc-flight-list li{
    font-size: .86rem;
  }

  .maroc-atouts{
    padding: 20px 16px;
    border-radius: 14px;
  }

  .maroc-atouts h3{
    font-size: 1.1rem;
  }
}
.card-img-top{
  height: 230px;
  object-fit: cover;
}

.card{
  border-radius: 12px;
  overflow: hidden;
}

.card-body{
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section-sep{
  display: flex;
  justify-content: center;
  margin: 48px 0;              
}

.section-sep span{
  width: 140px;                
  height: 4px;                 
  border-radius: 999px;        
  background: rgba(10,26,68,.16);
}

@media (max-width: 991.98px){
  .section-sep{
    margin: 28px 0;            
  }
  .section-sep span{
    width: 110px;
    height: 4px;
  }
}

@media (max-width: 991.98px){
  .container-fluid.fixed-top{ box-shadow: none; }
  .container-fluid.fixed-top.is-scrolled{
    background:#fff !important;
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
  }
}

.navbar .navbar-nav .nav-link{
  color: #000 !important;      
  font-weight: 500;
  transition: color 0.2s ease;
}
.navbar .navbar-nav .nav-link:hover{
  color: var(--bs-primary) !important; 
}
.navbar .navbar-nav .nav-link.active{
  color: var(--bs-primary) !important; 
  font-weight: 700;
}
.navbar .dropdown-toggle{
  color: #000 !important;
}

.navbar .dropdown-toggle:hover,
.navbar .dropdown-toggle.show{
  color: var(--bs-primary) !important;
}
.dropdown-menu .dropdown-item{
  color: #000 !important;
  transition: color 0.2s ease, background 0.2s ease;
}

.dropdown-menu .dropdown-item:hover{
  color: var(--bs-primary) !important;
  background: rgba(13,110,253,0.08); 
}

.hero-slideshow,
.hero-slideshow img{
  transform: translateZ(0);
  will-change: opacity, transform;
}
@media (max-width: 991.98px){
  .hero-slideshow img{
    filter: brightness(0.78) blur(2.8px);
  }
  .hero-slideshow::after{
    backdrop-filter: blur(0.9px);
    -webkit-backdrop-filter: blur(0.9px);
  }
}

.hero-hero{
  position: relative;
  height: 100vh;
  overflow: hidden;
}

@media (max-width: 1399.98px){
  .carousel-item .carousel-caption{
    position: relative !important;
    top: 0 !important;
    transform: none !important;
    padding-top: 58px !important;
    padding-bottom: 34px !important;
  }
  .carousel-item,
  .hero-hero{
    height: auto !important;
    min-height: calc(100vh - var(--header-offset));
  }
  .hero-wrap{
    margin-top: calc(var(--header-offset) + 10px);
    overflow: hidden;
  }

  .carousel-caption .col-lg-8{
    max-width: min(94%, 980px);
    margin: 0 auto 0 0;
    text-align: left;
  }

  .hero-title,
  .hero-subtitle{
    text-align: left;
    margin-left: 0;
    margin-right: auto;
  }

  .hero-subtitle{
    max-width: 54ch;
  }

  .carousel-caption .d-flex{
    justify-content: flex-start !important;
    flex-wrap: wrap;
    gap: 10px 12px;
  }
}

@media (max-width: 1399.98px){
  html[dir="rtl"] .carousel-caption .col-lg-8{
    margin: 0 0 0 auto;
    text-align: right;
  }

  html[dir="rtl"] .hero-title,
  html[dir="rtl"] .hero-subtitle{
    margin-right: 0;
    margin-left: auto;
    text-align: right;
  }

  html[dir="rtl"] .carousel-caption .d-flex{
    justify-content: flex-end !important;
  }
}

@media (min-width: 768px) and (max-width: 1399.98px){
  .carousel-item .carousel-caption{
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--header-offset));
    padding-top: 34px !important;
    padding-bottom: 26px !important;
    box-sizing: border-box;
  }

  .carousel-caption .container{
    width: 100%;
  }
}

@media (max-width: 991.98px){
  .hero-wrap{
    margin-top: calc(var(--header-offset) + 14px) !important;
  }

  .carousel-item .carousel-caption{
    padding-top: clamp(24px, 5vh, 48px) !important;
    padding-bottom: clamp(78px, 12vh, 118px) !important;
  }

  .hero-title{
    margin-bottom: 12px;
  }

  .hero-subtitle{
    margin-bottom: 14px;
  }

  .carousel-caption .d-flex.mt-4{
    margin-top: .85rem !important;
  }

  .hero-title{
    max-width: 20ch;
  }
}

@media (max-width: 575.98px){
  .carousel-item .carousel-caption{
    padding-top: clamp(18px, 4vh, 34px) !important;
  }

  .hero-title{
    max-width: 18ch;
  }

  .hero-subtitle{
    max-width: 30ch;
  }
}

.president-pro{
  padding: 100px 0 40px;
  background: #ffffff;
}

.president-pro-box{
  background: #2f3235;
  padding: 56px 54px;
  color: #e6e6e6;
}

.president-pro-title{
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
}

.president-pro-lead{
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #f2f2f2;
}

.president-pro-box p{
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #dcdcdc;
}

.president-pro-sign{
  margin-top: 28px;
}

.president-pro-sign strong{
  display: block;
  font-size: 1rem;
  color: #ffffff;
}

.president-pro-sign span{
  font-size: 0.85rem;
  color: #cfcfcf;
}

.president-pro-image{
  max-height: 540px;
  width: auto;
  object-fit: contain;
}

.president-pro-profile{
  padding: 20px 0 60px;
  background: #ffffff;
}

.profile-line{
  margin-top: 0;
  border-top: 1px solid rgba(10, 26, 68, 0.15);
  border-bottom: 1px solid rgba(10, 26, 68, 0.15);
}

.profile-item{
  padding: 28px 26px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #0A1A44;
  font-weight: 500;
  text-align: center;
  border-right: 1px solid rgba(10, 26, 68, 0.12);
}

.profile-item:last-child{
  border-right: none;
}

.animate-left,
.animate-right{
  opacity: 0;
  transition: all 0.9s ease;
}

.animate-left{
  transform: translateX(-40px);
}

.animate-right{
  transform: translateX(40px);
}

.animate-left.is-visible,
.animate-right.is-visible{
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 991.98px){
  .president-pro{
    padding: 70px 0;
  }

  .president-pro-box{
    padding: 34px 26px;
  }

  .president-pro-title{
    font-size: 1.6rem;
  }

  .president-pro-image{
    max-height: 380px;
    margin-top: 20px;
  }

  .profile-item{
    border-right: none;
    border-bottom: 1px solid rgba(10, 26, 68, 0.12);
  }

  .profile-item:last-child{
    border-bottom: none;
  }
}
