@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter.ttf') format('truetype');
    font-weight: 300 900;
    font-style: normal;
}
  
@font-face {
      font-family: 'CovesLight';
      src: url('/fonts/coves/CovesLight.otf') format('opentype');
      font-weight: 300;
      font-style: normal;
}
  
@font-face {
    font-family: 'CovesBold';
    src: url('/fonts/coves/CovesBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
  
body {
    margin: 0;
    overflow-x: hidden;
}

/* NEW ABOUT US SECTION */

.about-section .row{
    padding: 180px 0;
}

.about-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.about-section > * {
    position: relative;
    z-index: 1;
}

.about-section {
    position: relative;
    overflow: hidden;
    background-color: #F7F7F7;
    z-index: 1;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/owlcarousel/celhix_carousel_5.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.overlay-text h2{
    font-family: 'Inter';
    font-weight: 500;
    font-size: 45px;
    margin-bottom: 60px;
}

.overlay-text p{
    font-family: 'CovesLight';
    font-weight: 700;
    font-size: 18px;
}

/* MISION VISION */

.mision-show{
    display: block;
}

.mision-x{
    display: none;
}

.mision-vision{
    background: linear-gradient(102.73deg, #004F73 0.76%, #39A78E 99.64%);
}

.mision-vision-background{
    background-image: url('../img/background/mision_vision_background.png');
    background-size: cover;
    background-position: center;
}

.mision-vision .text{
    margin-top: 20px;
    transition: transform 0.3s ease; 
}

.mision-vision .text:hover {
    transform: scale(1.05);
}

.mision-vision .text h2{
    font-family: 'Inter';
    color: white;
    margin-bottom: 20px;
}

.mision-vision .text p{
    font-family: 'CovesLight';
    color: white;
    margin-bottom: 20px;
}

.mision-vision img{
    object-fit: contain;
    width: 250px;
    transition: transform 0.3s ease; 
}

.mision-vision img:hover {
    transform: scale(1.05);
}

.border-start-custom{
    border-left: 2px solid #fff;
}

.border-end-custom{
    border-right: 2px solid #fff;
}