/*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
  body {
    font-family: 'Tilt Neon', cursive;
    /* user-select: none; */
    color: #141313;
  }
  
  a {
    color: #3498db;
    text-decoration: none;
  }
  
  a:hover {
    color: #5faee3;
    text-decoration: none;
  }

  /* CSS untuk efek hover pada gambar */
  .img-hover {
    transition: transform 0.1s ease-in-out;
  }

  /* CSS untuk efek transform pada gambar saat dihover */
  .img-hover:hover {
    transform: scale(1.05);
  }

  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    overflow: hidden;
  }
  
  .section-bg {
    background-color: #f7fbfe;
  }
  
  .section-title {
    text-align: center;
    margin: 10px 0;
    padding: 10px 0;
  }
  
  .section-title h2 {
    font-family: 'Caveat';
    font-weight: bold;
    font-size: 50px;
    position: relative;
    color: #222222;
    /* font-family: 'Architects Daughter', cursive; */
  }
  
  .section-title h2::before, .section-title h2::after {
    content: '';
    width: 30px;
    height: 2px;
    background: #3498db;
    display: inline-block;
  }
  
  .section-title h2::before {
    margin: 0 15px 10px 0;
  }
  
  .section-title h2::after {
    margin: 0 0 10px 15px;
  }
  
  .section-title p {
    margin: 15px 0 0 0;
  }
  

/*=============== Home Carousel ==================  */

#home-carousel .carousel-inner {
  height: 750px;
  border-radius: 0 0 50px 50px;
}

#home-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#home-carousel .carousel-caption {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: whitesmoke;
  /* animation: ok 1s ease-in forwards; */
}

@keyframes ok  {
  0% {
    transform: translate(-50%, -65%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -60%);
    opacity: 1;
  }
}

#home-carousel .carousel-caption h1 {
  font-weight: 700;
  font-size: 90px;
  font-family: 'Amaranth', sans-serif;
  text-shadow: 2px 2px 4px #8d8a8a;
}
#home-carousel .carousel-caption h1:hover {
  text-shadow: 2px 2px 4px #201c1c;
}

#home-carousel .carousel-caption p {
  font-size: 50px;
  font-family: 'Ephesis' , cursive;
  text-shadow: 2px 2px 4px #939292;
}

@media screen and (max-width: 1300px) {
  #home-carousel .carousel-caption h1 {
    font-size: 65px;
  }
  #home-carousel .carousel-caption p {
    font-size: 40px;
  }
  #home-carousel .carousel-inner {
    height: 500px;
  }
}

@media screen and (max-width: 1000px) {
  #home-carousel .carousel-caption h1 {
    font-size: 60px;
  }
  #home-carousel .carousel-caption p {
    font-size: 40px;
  }
  #home-carousel .carousel-inner {
    height: 400px;
  }
}

@media screen and (max-width: 800px) {
  #home-carousel .carousel-caption {
    top: 40%;
  }
  #home-carousel .carousel-caption h1 {
    font-size: 35px;
  }
  #home-carousel .carousel-caption p {
    font-size: 22px;
  }
  #home-carousel .carousel-inner {
    margin: 80px 0 0 0;
    height: 250px;
  }
}

@media screen and (max-width: 500px) {
  #home-carousel .carousel-caption h1 {
    font-size: 28px;
  }
}

@media screen and (max-width: 400px) {
  #home-carousel .carousel-caption {
    top: 40%;
  }
  #home-carousel .carousel-caption h1 {
    font-size: 20px;
  }
  #home-carousel .carousel-caption p {
    font-size: 20px;
  }
  #home-carousel .carousel-inner {
    margin: 80px 0 0 0;
    height: 200px;
  }
}

  /* ------=========== DESKRIPSI HOME SECTION ==============--- */
  #home-description p{
    font-size: 22px;
  }
  
  @media screen and (max-width: 767px) {
    #home-description p{
      padding-top: 20px;
      font-size: 16px;
    }
  }

  @media screen and (max-width: 380px) {
    #home-description p{
      padding-top: 20px;
      font-size: 14px;
    }
  }
  
  /* #home .btn-get-started {
    font-family: 'Tilt Neon', cursive;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 40px;
    transition: 0.5s;
    color: #3498db;
    border: 2px solid #3498db;
  }
  
  #home .btn-get-started:hover {
    background: #3498db;
    color: #fff;
  } */

 /* ============ HOME PRODUCTS ===================*/
  
  #home-products {
    background-color: #0979BC;
    /* background-color: #39a3e0; */
  }
  
  #home-products h2{
    font-family: 'Ephesis', cursive;
    font-size: 60px;
    font-weight: 600;
  }

  #home-products p {
    font-size: 22px;
  }

  #home-products .product-list{
    /* transition: transform 0.3s ease-in-out; */
    animation: up-down 1.5s ease-in-out infinite alternate-reverse both;
  }

  #home-products .product-list img {
    margin-top: 20px;
    border-radius: 25px;
    max-width: 300px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#home-products .product-list img:hover {
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
}

@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

@media screen and (max-width: 767px) {
    #home-products h2{
      font-size: 40px;
    }
    #home-products p {
      font-size: 16px;
      margin-bottom: 20px;
    }

    #home-products .product-list img {
      max-width: 60%;
    }
  }
  
  .home-achievement {
    background: #ffffff;
    text-align: center;
  }

  .home-achievement .col-lg-2 {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .home-achievement img {
    width: 50%;
    padding: 10px 0;
  } 

  /*hOME CO-MANUFACTURING */

  /* #co-manufacturing {
    font-family: 'Tilt Neon', cursive;
    font-size: 5vw;
    transition: color 0.3s ease-in-out; 
  }

  #co-manufacturing .container .row {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #93C6E7;
      color: white;
      border-radius: 20px;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease-in-out; 
  }

  #co-manufacturing .container .row:hover {
      background-color: #3498db; 
  }

  #co-manufacturing .container .row img {
      border-radius: 10px;
  }

  #co-manufacturing h2 {
      font-weight: 500;
  }

  #co-manufacturing p {
      font-size: 18px;
  }

  #co-manufacturing img {
      max-width: 100%;
  } */

 /*---------------------------------------------------------------------------------------------------------------
    Our Company Header - Description Section 
 -----------------------------------------------------------------------------------------------------------------*/
 .banner-company {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 0 0 50px 50px;
}

 #company-story {
   background-color: rgba(11, 11, 12, 0.234);
   padding: 150px 0 0 0 ;
   height: 700px;
   color: white;
   border-radius: 0 0 50px 50px;
  }
  
  #company-story h1{
  font-family: 'Ephesis', cursive;
  font-size: 70px;
  font-weight: 600;
}

#company-story p{
  font-size: 20px;
  text-align: justify;
}

#company-story .desc {
  background-color: #0979BC;
  border-radius: 10px;
  opacity: 0.9;
}

 @media screen and (max-width: 1200px) {
  .banner-company {
    height: 550px;
  }

  #company-story {
    height: 550px;
    padding: 120px 0; /* Pengaturan kembali padding pada layar yang lebih kecil */
  }

  #company-story h1 {
      font-size: 60px; /* Ukuran font lebih kecil pada layar kecil */
  }
}
 @media screen and (max-width: 767px) {
   .banner-company {
     height: 450px; /* Mengizinkan tinggi gambar bertambah pada ukuran yang lebih kecil */
   }

  #company-story {
    height: 450px;
    padding: 100px 0; /* Pengaturan kembali padding pada layar yang lebih kecil */
  }

  #company-story h1 {
    padding-top: 50px;
      font-size: 40px; 
  }

  #company-story .desc {
    background-color: #0979BC;
    border-radius: 5px;
    opacity: 1;
  }
  
  #company-story p {
    font-size: 14px; 
  }

}

@media screen and (max-width: 400px) {
  #company-story h1 {
    padding-top: 35px;
  }
  #company-story p {
    font-size: 12px;
  }
}

#company-value .section-title {
  font-family: 'Ephesis', cursive;
}


/*--------------------------------------------------------------
  # Our Company Page- Value dan Visi Misi
  --------------------------------------------------------------*/

  #company-visimisi{
    font-family: 'Tilt Neon', cursive;
    padding: 20px 0;
    margin: 50px 0;
  }

  #company-visimisi h1{
    font-family: 'Ephesis', cursive;
    font-size: 60px;
  }
  
  #company-visimisi p{
    font-size: 20px;
  }

  #company-visimisi .container .row{
    margin: 40px 0;
  }
  
  #company-visimisi .container .row .col{
    color: white;
    /* max-width: 500px; */
    padding: 20px 0;
    font-size: 20px; 
    border-radius: 40px;
    background-color: #0979BC;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease; /* Efek transisi */
  }

  #company-visimisi .container .row .col:hover {
    background-color: #146083; /* Warna yang berbeda saat dihover */
  }

  
  #company-visimisi ul {
    padding: 0 20px; /* Menghilangkan padding default */
    margin: 0; /* Menghilangkan margin default */
    text-align: left; /* Menjadikan teks sejajar kiri */
  }
  
  #company-visimisi ul li {
    margin: 5px 10px; /* Memberikan jarak antar elemen <li> */
  }
  
  @media screen and (max-width: 767px) {
  #company-visimisi{
    padding: 0 0;
  }
  
  #company-visimisi h1{
    font-size: 50px;
  }

  #company-visimisi p{
    padding: 0 10px;
    font-size: 14px;
  }
  #company-visimisi li{
    /* padding: 0 10px; */
    font-size: 14px;
  }



  }
    /*--------------------------------------------------------------
  # Our Company Page- Achievement Section
  --------------------------------------------------------------*/
  .achievement{
    background-color: #ffffff;
  }
  .achievement .container{
    background-color: #f5ffe9;
    border-radius: 10px;
    color: #3d3838;
  }
   

/* ========== PAGES PRODUK  ============*/

.product-container {
  display: flex;
  flex-wrap: wrap; /* Memastikan flex items (product-cards) akan turun ke baris berikutnya jika tidak cukup ruang */
  justify-content: space-around;
}

.product-link {
  color: black; /* Mengubah warna teks menjadi hitam */
  text-decoration: none; /* Menghapus garis bawah default pada tautan */
}

.product-card {
  width: 100%; /* Lebar 100% agar sesuai dengan kolom (col-12) pada layar kecil */
  max-width: 300px; /* Batasi lebar maksimum untuk tetap memberikan tata letak yang baik pada layar besar */
  margin: 0px 0px 20px 0px; /* Mengurangi margin pada layar kecil */
  padding: 20px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.product-card img{
  width: 200px;
}

@media screen and (min-width: 576px) {
  
  .product-card {
    margin: 0px 20px 100px 20px; /* Mengembalikan margin pada layar yang lebih besar dari 576px */
  }
}

.product-card:hover {
  transform: scale(1.05);
  color: #110b09;
}

.product-title {
  margin-top: 10px;
  font-size: 24px;
  /* color: #3498db; */
}

.product-description {
  /* margin-top: 15px; */
  font-size: 16px;
  color: #555;
}

.product-head h1{
  /* padding-top: 10px; */
  font-family: 'Ephesis', cursive;
  font-size: 60px;
  font-weight: 600;
 
}
.product-head {
        padding: 50px;
      }
      
      .product-head img {
        max-width: 100%;
        height: auto;
      }
      
      .product-head .description {
        padding: 20px;
    }

    .product-head p {
        font-size: 20px;
    }

    @media screen and (max-width: 767px) {
        .product-head {
            padding: 10px; /* Mengurangi padding pada layar kecil */
        }

        .product-head h1{
          padding-top: 20px;
          font-size: 50px;
        }

        .product-head img {
            margin-bottom: 20px; /* Menambah ruang antara gambar dan deskripsi */
        }

        .product-head .description {
            max-width: none;
            margin: 20px 0; /* Menambah margin atas dan bawah pada layar kecil */
        }
        .product-head p {
            font-size: 16px;
        }
    }

    /* Background page produk  */
    .bg-products {
      position: absolute;
      z-index: -1;
      width: 100%;
      height: 800px;
      object-fit: cover;
    }
    
    @media screen and (max-width: 767px) {
      .bg-products {
          height: 1000px; /* Mengizinkan tinggi gambar bertambah pada ukuran yang lebih kecil */
      }
    }
/* SECTION CAPABILITY DIBAWAH OUR STORY  */

/* .capa-card {
  margin-top: 10px;
  padding-top: 10px;
  background-color: #0A7BBB;
  opacity: 0.9;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.capa-card:hover {
  transform: scale(1.1);
  opacity: 1;
}

.capa-image {
  width: 30%;
  height: auto;
  object-fit: cover;
  margin: 10px
} */


/*--------------------------------------------------------------
# SECTION VISI MISI
--------------------------------------------------------------*/
/* #our-visimisi {
padding: 20px 0;
}

.our-visimisi .card {
  border: 0;
  padding: 160px 10px 20px 10px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.our-visimisi .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.356);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.our-visimisi .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.our-visimisi .card-title a {
  color: #110b09;
}

.our-visimisi .card-text {
  color: #110b09;
}

.our-visimisi .read-more a {
  color: #656262;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.our-visimisi .read-more a:hover {
  text-decoration: underline;
}

.our-visimisi .card:hover .card-body {
  background: #0A7BBB;
}

.our-visimisi .card:hover .read-more a,
.our-visimisi .card:hover .card-title,
.our-visimisi .card:hover .card-title a,
.our-visimisi .card:hover .card-text {
color: #fff;
} */

  
  /* Move To Page Produk */
  .div-back {
    margin: 50px 0;
    text-align: center;
  }
  
  .div-back a{
    color: #3db74d;
    font-style: normal;
    font-weight: 500;
  }

  .div-back a:hover{
    color: #3f98d7;
  }

 
  

  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99;
  }
  
  .back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #5884dc;
    color: #fff;
    transition: all 0.4s;
  }
  
  .back-to-top i:hover {
    background: rgb(19, 93, 178);
    color: #fff;
  }
  
  /*--------------------------------------------------------------
  # Disable AOS delay on mobile
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  
  /*--------------------------------------------------------------
  # Header navbar
  --------------------------------------------------------------*/
  #header {
    z-index: 997;
    transition: all 0.5s;
    padding: 22px 0;
  }
  
  #header.header-scrolled {
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    background: #fff;
  }
  
  #header .logo h1 {
    margin: 0;
    padding: 0;
    line-height: 1;
    /* font-weight: 700; */
    letter-spacing: 1px;
  }
  
  #header .logo h1 a, #header .logo h1 a:hover {
    color: #222222;
    text-decoration: none;
  }
  
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 45px;
  }
  
  @media (max-width: 768px) {
    #header {
      background: #fff;
    }
    #header .logo img {
      max-height: 35px;
    }
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  .nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
  }
  
  .nav-menu a {
    display: block;
    position: relative;
    color: #3e3b3b;
    padding: 8px 0 12px 25px;
    transition: 0.3s;
    font-size: 18px;
    /* font-family: "Open Sans", sans-serif; */
    /* font-family: 'Tilt Neon', cursive; */
    font-weight: 600;
  }
  
  .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #094ebc;
    text-decoration: none;
  }
  
  .nav-menu .get-started a {
    background: #094ebc;
    color: #fff;
    border-radius: 50px;
    margin: 0 0 0 30px;
    padding: 10px 25px;
  }
  
  .nav-menu .get-started a:hover {
    background: #094ebc;
    color: #fff;
  }
  
  .nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 25px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
    border-radius: 5px;
  }
  
  .nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
  }
  
  .nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #222222;
  }
  
  .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #094ebc;
  }
  
  .nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont , sans-serif;
    padding-left: 5px;
  }
  
  .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
  }
  
  .nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
  }
  
  .nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
  }
  
  .nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont, sans-serif;
    position: absolute;
    right: 15px;
  }
  
  @media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
      left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
      left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
      content: "\ea9d";
    }
  }
  
  /* Mobile Navigation */
  .mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
  }
  
  .mobile-nav-toggle i {
    color: #222222;
  }
  
  .mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    /* bottom: 15px; */
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
  }
  
  .mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .mobile-nav a {
    display: block;
    position: relative;
    color: #222222;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
  }
  
  .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #3498db;
    text-decoration: none;
  }
  
  .mobile-nav .get-started {
    text-align: center;
    margin-top: 10px;
  }
  
  .mobile-nav .get-started a {
    background: #3498db;
    color: #fff;
    border-radius: 50px;
    margin: 0 15px;
    padding: 10px 30px;
    display: inline-block;
  }
  
  .mobile-nav .get-started a:hover {
    background: #57aae1;
    color: #fff;
  }
  
  .mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont , sans-serif;
    padding-left: 10px;
    position: absolute;
    right: 15px;
  }
  
  .mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
  }
  
  .mobile-nav .drop-down > a {
    padding-right: 35px;
  }
  
  .mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
  }
  
  .mobile-nav .drop-down li {
    padding-left: 20px;
  }
  
  .mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(9, 9, 9, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
  }
  
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
  }

 

  /*--------------------------------------------------------------
  # Clients etc : BPOM , HALAL, NKV
  --------------------------------------------------------------*/
  .company-clients {
    /* background: #f2f7fa; */
    /* background: #e5f8b8; */
    padding: 2px 0;
    text-align: center;
    font-family: 'Caveat';
  }
  
  /* .company-clients h2{
    font-size: 50px;
  } */

  .company-clients .col-lg-2 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .company-clients img {
    width: 50%;
    -webkit-filter: grayscale(100);
    filter: grayscale(100);
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 10px 0;
  }
  
  .company-clients img:hover {
    -webkit-filter: none;
    filter: none;
    transform: scale(1.1);
  }
  
  @media (max-width: 768px) {
    .company-clients img {
      width: 70%;
    }
  }
  
  @media (max-width: 575px) {
    .company-clients img {
      width: 50%;
    }
  }

  
  /*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
  .services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
  }
  
  .services .icon-box::before {
    content: '';
    position: absolute;
    background: #e1f0fa;
    right: -60px;
    top: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    transition: all 0.3s;
    z-index: -1;
  }
  
  .services .icon-box:hover::before {
    background: #3498db;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
  
  .services .icon {
    margin: 0 auto 20px auto;
    padding-top: 10px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background: #3498db;
    transition: all 0.3s ease-in-out;
  }
  
  .services .icon i {
    font-size: 36px;
    line-height: 1;
    color: #fff;
  }
  
  .services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .services .title a {
    color: #111;
  }
  
  .services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
  }
  
  .services .icon-box:hover .title a, .services .icon-box:hover .description {
    color: #fff;
  }
  
  .services .icon-box:hover .icon {
    background: #fff;
  }
  
  .services .icon-box:hover .icon i {
    color: #3498db;
  }
  
  /*--------------------------------------------------------------
  # More Services
  --------------------------------------------------------------*/
  /* .more-services {
    padding-top: 20px;
  }
  
  .more-services .card {
    border: 0;
    padding: 160px 20px 20px 20px;
    position: relative;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  
  .more-services .card-body {
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    transition: ease-in-out 0.4s;
    border-radius: 5px;
  }
  
  .more-services .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .more-services .card-title a {
    color: #222222;
  }
  
  .more-services .card-text {
    color: #5e5e5e;
  }
  
  .more-services .read-more a {
    color: #777777;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: 0.4s;
  }
  
  .more-services .read-more a:hover {
    text-decoration: underline;
  }
  
  .more-services .card:hover .card-body {
    background: #3498db;
  }
  
  .more-services .card:hover .read-more a, .more-services .card:hover .card-title, .more-services .card:hover .card-title a, .more-services .card:hover .card-text {
    color: #fff;
  }
   */
  /*--------------------------------------------------------------
  # Features
  --------------------------------------------------------------*/
  /* .features .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f6f6f6;
    transition: ease-in-out 0.3s;
  }
  
  .features .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
  }
  
  .features .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
  }
  
  .features .icon-box h3 a {
    color: #222222;
    transition: ease-in-out 0.3s;
  }
  
  .features .icon-box h3 a:hover {
    color: #3498db;
  }
  
  .features .icon-box:hover {
    background: #eef7fc;
  }
   */
  
  /*--------------------------------------------------------------
  # Portfolio
  --------------------------------------------------------------*/
  /* .portfolio .portfolio-item {
    margin-bottom: 30px;
  }

  #portfolio .filter-web {
    background-color: #ffffff;
  }
  
  
  .portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
  }
  
  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #222222;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
  }
  
  .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: #3498db;
  }
  
  .portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }
  
  .portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(34, 34, 34, 0.6);
  }
  
  .portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(34, 34, 34, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
  }
  
  .portfolio .portfolio-wrap img {
    transition: all ease-in-out 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
  }
  
  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
  }
  
  .portfolio .portfolio-wrap .portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
  }
  
  .portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 5px 0 0;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #3498db;
  }
  
  .portfolio .portfolio-wrap:hover::before {
    opacity: 1;
  }
  
  .portfolio .portfolio-wrap:hover img {
    transform: scale(1.2);
  }
  
  .portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
  } */
  
  /*--------------------------------------------------------------
  # Team
  --------------------------------------------------------------*/
  .team .member {
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  .team .member .member-img {
    position: relative;
    overflow: hidden;
  }
  
  .team .member .social {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 40px;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
  }
  
  .team .member .social a {
    transition: color 0.3s;
    color: #222222;
    margin: 0 10px;
    padding-top: 8px;
    display: inline-block;
  }
  
  .team .member .social a:hover {
    color: #3498db;
  }
  
  .team .member .social i {
    font-size: 18px;
    margin: 0 2px;
  }
  
  .team .member .member-info {
    padding: 25px 15px;
  }
  
  .team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #222222;
  }
  
  .team .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
  }
  
  .team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
  }
  
  .team .member:hover .social {
    opacity: 1;
  }

  
  /*--------------------------------------------------------------
  #  F.A.Q
  --------------------------------------------------------------*/
  .faq .faq-item {
    margin: 20px 0;
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
  }
  
  .faq .faq-item i {
    color: #8bc4ea;
    font-size: 24px;
    float: left;
    line-height: 0;
    padding: 13px 0 0 0;
    margin: 0;
  }
  
  .faq .faq-item h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin: 0 0 10px 32px;
    font-family: "Poppins", sans-serif;
  }
  
  .faq .faq-item p {
    font-size: 15px;
  }
  
  /*--------------------------------------------------------------
  # SECTION CONTACT PAGE
  --------------------------------------------------------------*/
  .contact .contact-about h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222222;
  }
  
  .contact .contact-about p {
    font-size: 14px;
    line-height: 24px;
    font-family: "Raleway", sans-serif;
    color: #888;
  }
  
  .contact .social-links {
    padding-bottom: 20px;
  }
  
  .contact .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #fff;
    color: #3498db;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    border: 1px solid #3498db;
  }
  
  .contact .social-links a:hover {
    background: #3498db;
    color: #fff;
  }
  
  .contact .info {
    color: #444444;
  }
  
  .contact .info i {
    font-size: 32px;
    color: #3498db;
    float: left;
    line-height: 1;
  }
  
  .contact .info p {
    padding: 0 0 10px 42px;
    line-height: 28px;
    font-size: 14px;
  }
  
  .contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }
  
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .error-message br + br {
    margin-top: 25px;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    padding: 10px 15px;
  }
  
  .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
    border-color: #3498db;
  }
  
  .contact .php-email-form button[type="submit"] {
    background: #3498db;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
  }
  
  .contact .php-email-form button[type="submit"]:hover {
    background: #2383c4;
  }
  
  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
  .breadcrumbs {
    padding: 15px 0;
    background: #f8f8f8;
    min-height: 40px;
    margin-top: 86px;
  }
  
  @media (max-width: 992px) {
    .breadcrumbs {
      margin-top: 72px;
    }
  }
  
  .breadcrumbs h2 {
    font-size: 28px;
    font-weight: 400;
    margin: 0;
  }
  
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
  }
  
  @media (max-width: 992px) {
    .breadcrumbs ol {
      margin-top: 10px;
    }
  }
  
  .breadcrumbs ol li + li {
    padding-left: 10px;
  }
  
  .breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #3c3c3c;
    content: "/";
  }
  
  @media (max-width: 768px) {
    .breadcrumbs .d-flex {
      display: block !important;
    }
    .breadcrumbs ol {
      display: block;
    }
    .breadcrumbs ol li {
      display: inline-block;
    }
  }
  
 
  /*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
  /* .portfolio-details {
    padding-top: 20px;
  }
  
  .portfolio-details .portfolio-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: center;
  }
  
  .portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
  }
  
  .portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #3498db !important;
  }
  
  .portfolio-details .portfolio-info {
    padding-top: 45px;
  }
  
  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  
  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
  }
  
  .portfolio-details .portfolio-info p {
    font-size: 15px;
    padding: 15px 0 0 0;
  }
  
  @media (max-width: 992px) {
    .portfolio-details .portfolio-info {
      padding-top: 20px;
    }
  } */

  #banner-yoseo{
      display: flex;
      align-items: center;
      justify-content: center;
  }

  #banner-yoseo img{
      width: 100%;
      height: 100%;
      object-fit: cover;
   }

  /* HEADER PRODUCTS */
  .header-product{
    background-color: #9bdaf9f3;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }

  @media screen and (max-width: 767px) {
    #banner-yoseo{
      padding-top: 80px;
    }

    .header-product{
      margin: 30px 0;
      border-bottom-left-radius: 60px;
      border-bottom-right-radius: 60px;
    }
    #head-yoseo{
      padding-top: 100px;
     }
   }
  
  

  #yoseo-content{
    margin: 0 20px;
  }

  #yoseo-content .container {
    /* opacity: 0.5; */
    background-size: cover;
    background-position: center center;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    /* box-shadow: rgba(33, 28, 28, 0.30) 0px 5px 10px; */
  }

  #yoseo-content p {
    font-size: 20px;
  }

  #yoseo .tag {
    color: #333236f0;
    font-size: 100px;
    font-weight: 600;
  }
  #yoseo .tag2 {
    color: #e92525f0;
    font-size: 70px;
    font-weight: 600;
  }

  #yoseo #tag {
    color: #fffb1bf0;
    font-size: 100px;
  }
  #yoseo .h2 {
    /* background: #43cea2;  
    background: -webkit-linear-gradient(to right, #185a9d, #43cea2);  
    background: linear-gradient(to right, #185a9d, #43cea2); */
    background: #7af558;
    color: white;
    padding: 5px;
    border-radius: 10px;
  }
  
  #yoseo img {
    width: 50%;
  }
  
  @media screen and (max-width: 767px) {
    #yoseo .tag {
      font-size: 70px;
    }
    #yoseo .h2 {
      font-size: 24px;
    }
    #yoseo img {
      width: 90%;
    }
  }
  @media screen and (max-width: 555px) {
    #yoseo .tag {
      font-size: 40px;
    }
    #yoseo .h2 {
      font-size: 18px;
    }
    #yoseo img {
      width: 90%;
    }
  }
 
  #yoseocreamy {
    font-family: 'Changa One', cursive;
  }

  #yoseocreamy h1{
    font-family: 'Varela Round', serif;
    font-weight: 600;
    font-size: 38px;
    color: rgb(234, 54, 54);
  }

  #yoseocreamy img {
    width: 60%;
    border-radius: 20px;
    box-shadow: rgba(33, 28, 28, 0.30) 0px 5px 10px;
  }
  #yoseocreamy img:hover{
  }


  @media screen and (max-width: 767px) {
    #yoseocreamy h1 {
      font-size: 60px;
  
      /* -webkit-text-srgb(240, 202, 202): 1px red;  text-stroke: 2px;  */
    }
    #yoseocreamy h4 {
      font-size: 20px;
      padding: 0 20px;
    }
    #yoseocreamy img {
      width: 80%;

    }
  
  }
  
  @media (max-width: 767px) {
    .custom-responsive-img {
      width: 100%;
      height: auto; /* Untuk memastikan aspek gambar tetap terjaga */
      object-fit: cover; /* Mengisi wadah dengan gambar */
    }
    #yoseocreamy h1 {
      font-size: 20px; /* Sesuaikan ukuran teks sesuai kebutuhan Anda */
    }
  }
  

#yoseocreamix {
    font-family: 'Changa One', cursive;
    /* background: #654ea3;  
    background: -webkit-linear-gradient(to right, #eaafc8, #654ea3); 
    background: linear-gradient(to right, #eaafc8, #654ea3); 
   */
  }

  #yoseocreamix h1{
    text-align: center;
    color: #0979BC;
    font-weight: 600;
    font-size: 40px;
    padding: 20px 0;
  }

  #yoseocreamix img {
    width: 80%;
    border-radius: 20px;
    box-shadow: rgba(33, 28, 28, 0.30) 0px 5px 10px;
  }


#head-cheese img{
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0 10px;
}

@media (max-width: 767px) {
  #head-cheese img {
    /* Mengatur lebar agar sesuai dengan kontainer dan memberikan padding di sekitar gambar */
    width: auto; /* Lebar otomatis agar sesuai dengan kontainer */
    max-width: 100%; /* Maksimum lebar adalah 100% dari kontainer */
    height: auto; /* Tinggi otomatis agar sesuai dengan proporsi asli */
    padding: 50px 0px; /* Memberikan padding di sekitar gambar */
    object-fit: contain; /* Menggunakan object-fit: contain agar proporsi asli gambar tetap terjaga */
  }
}
  /*-----------------------
  SECTION GRANDAIRY PAGE
  -------------------------*/
  #banner-grandairy {
    position: relative;
  }
  
  #banner-grandairy img{
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
  }
  
   .grandairy-content {
    position: absolute;
    background-color: #0f1827;
    opacity: 0.6;
    padding: 90px 0;
    top: 130vh;
    left: 0;
    width: 100%; /* Sesuaikan dengan lebar yang diinginkan */
    z-index: 1; /* Atur nilai z-index agar grandairy-content tampil di atas banner-grandairy */
  }
  .grandairy-content a {
    padding: 10vh 110vh 110vh 110vh;
    background-color: #bee9d2;
  }

  @media screen and (max-width: 767px) {
    #banner-grandairy img{
      padding: 80px 0 0 0; 
    }

    .grandairy-content {
      padding: 20px 0;
      top: 50vh;
    }
    .grandairy-content a {
      padding: 100px;
    }
  }

  
  /* #grandairy-content .container {
    background-size: cover;
    background-position: center center;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: rgba(33, 28, 28, 0.30) 0px 5px 10px;
  } */

  #grandairy-content p {
    font-size: 20px;
  }

  /* Foaming milk */
  #carousel-grandairy {
    max-width: 800px;
    margin: 0 auto;
  }

  #grandairy {
    font-family: 'Nunito Sans', sans-serif;
    }

    #grandairy .tag {
      font-family: 'Changa One', cursive;
      font-size: 100px;
    /* text-align: justify; */
    /* font-weight: 700; */
    }
    
    @media screen and (max-width: 767px) {
      #grandairy .tag {
        font-size: 74px;
      }
      #grandairy h4 {
        font-size: 20px;
      }
      .grandairy-img img {
        width: 100%;
      }
    
    }

    #grandairy p {
    /* text-align: justify; */
    font-size: 14px;
    }
    
    #grandairy img {
      max-width: 100px;
    }

    #grandairy .grand-logo{
      max-width: 200px;
    }
  
    #grandairy .social {
      position: absolute;
      left: 0;
      bottom: 0;
      right: 0;
      height: 40px;
      opacity: 0;
      transition: ease-in-out 0.3s;
      text-align: center;
      background: rgba(255, 255, 255, 0.85);
    }
    
    #grandairy .social a {
      transition: color 0.3s;
      color: #222222;
      margin: 0 10px;
      padding-top: 8px;
      display: inline-block;
    }
    
    #grandairy .social a:hover {
      color: #3498db;
    }
    
    #grandairy .social i {
      font-size: 18px;
      margin: 0 2px;
    }

  
  .grandairy-img a:hover{
    color: rgb(100, 235, 85);
  }
  

  /* LIST GRANDAIRY */

  .list-grandairy .card{
    /* background-color: #006fbe; */
    border-radius: 10px;
    -webkit-box-shadow: -5px 2px 31px -13px rgba(0,0,0,0.2);
    -moz-box-shadow: -5px 2px 31px -13px rgba(0,0,0,0.2);
    box-shadow: -5px 2px 31px -13px rgba(0,0,0,0.2);
  }
  
  /* MORE GRANDAIRY SECTION */
  #grandairy-more {
    background-image: url('../img/products/grandairy/foaming/more.webp');
    background-size: cover;
    background-position: 40%;
    height: 400px;
    margin: 50px 0;
    padding: 100px 0 ;
    color: #fff;
  }

  #grandairy-more a {
    color: #fff;
  }
  #grandairy-more h1 {
    font-size: 50px;
    font-weight: 600;
  }
  
  #grandairy-more h1:hover {
    font-weight: 600;
    color: #006fbe;
  }

  @media (max-width: 767px) {
    #grandairy-more h1 {
      font-size: 30px;
    }
    
  }

  /* RECIPES GRANDAIRY SECTION*/

  #grandairy-detail .tag{
    font-size: 70px;
    font-weight: 600;
  }

  @media (max-width: 767px) {
    #grandairy-detail .tag {
      font-size: 36px;
    }

  }

  table li {
    list-style-type: none;
  }
  

#creamix-detail {
  margin-bottom: 100px;
}

#store {
  /* margin-top: 100px; */
  /* background-color: #1e2122; */
}

  #store img {
  max-width: 200px;
  }


  #end-grandairy img {
    width: 100%;
  }

  /*--------------------------------------------------------------
# Privacy Content
--------------------------------------------------------------*/
#privacy{ 
  margin-top: 100px;
  font-family: 'Nunito Sans', sans-serif;
}

.privacy {
  background-color: #f7f7f7;
  font-size: 20px;
  /* font-family: 'Archivo', sans-serif; */
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.privacy .list {
  /* background-color: #f8f8f8; */
  border-radius: 20px;
  margin-top: 20px;
  /* padding: 20px; */

}


  #supermarket-gallery {
      overflow: hidden;
  }
  #supermarket-gallery h2{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #222222;
  }
  


  /*--------------------------------------------------------------
# VIDEO GRANDAIRY Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/products/grandairy/more.webp") center center;
  background-size: cover;
  padding: 100px 60px;
  border-radius: 15px;
  overflow: hidden;
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 20px;
}

.call-to-action .play-btn {
  width: 94px;
  height: 94px;
  margin-bottom: 20px;
  background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.call-to-action .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 131, 116, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.call-to-action .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.call-to-action .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.call-to-action .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 48px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

#end-logo img{
  width: 300px;
}

.footer-end {
  
  /* color: rgb(46, 45, 45); */
  /* background: rgb(32,61,110);
  background: linear-gradient(141deg, rgba(32,61,110,1) 0%, rgba(23,125,205,1) 100%); */
  background: rgb(45, 45, 45);
 border-radius: 50px 50px 0 0;
  /* background: linear-gradient(90deg, rgba(66,87,108,1) 5%, rgba(44,75,159,1) 100%); */
}
.footer-end a:hover {
  padding: 2px 5px;
  background-color: #094ebc;
  border-radius: 5px;
}
