/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
    padding: 0px;
    transition: all ease-in-out 0.4s;
    background: var(--color-white);
  }
  
  .featured-services .service-item h4 a {
    color: var(--color-secondary);
    transition: ease-in-out 0.3s;
  }
  
  .featured-services  p {
    line-height: 24px;
    font-size: 15px;
    margin-bottom: 10px;
  }

  @media screen and (max-width:699px) {
    .service-item p {
      line-height: 24px;
      font-size: 11px;
      margin-bottom: 10px;
      color: #BC59A8;
      font-weight: bold;
    }
    
  }
  @media (min-width:700px) {
    .service-item p {
      line-height: 24px;
      font-size: 15px;
      margin-bottom: 10px;
      color: #BC59A8;
      font-weight: bold;
    }
    
    
  }

  .featured-services .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
  }
  
  .featured-services .service-item:hover h4 a {
    color: var(--color-primary);
  }
  
/*--------------------------------------------------------------
# Section-title style only 
--------------------------------------------------------------*/ 

  .section-bg {
    background-color: #f8fcf9;
  }
  
  .section-title {
    text-align: center;
    padding: 10px 0px;
  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  
  .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #ffbb33;
    bottom: 0;
    left: calc(50% - 20px);
  }

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
  }
  
  .features .nav-link {
    border: 0;
    padding: 25px 20px;
    color: var(--color-secondary);
    box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), 0.15);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0s;
    cursor: pointer;
    height: 100%;
  }
  
  .features .nav-link i {
    font-size: 32px;
    line-height: 0;
  }
  
  .features .nav-link h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0 0 0;
    color: var(--color-secondary);
  }
  
  .features .nav-link:hover {
    color: var(--color-primary);
  }
  
  .features .nav-link.active {
    transition: 0.3s;
    background: var(--color-secondary) linear-gradient(rgba(var(--color-primary-rgb), 0.95), rgba(var(--color-primary-rgb), 0.6));
    border-color: var(--color-primary);
  }
  
  .features .nav-link.active h4 {
    color: var(--color-white);
  }
  
  .features .nav-link.active i {
    color: var(--color-white) !important;
  }
  
  .features .tab-content {
    margin-top: 30px;
  }
  
  .features .tab-pane.active {
    -webkit-animation: fadeIn 0.5s ease-out;
    animation: fadeIn 0.5s ease-out;
  }
  
  .features .tab-pane h3 {
    font-weight: 600;
    font-size: 36px;
    color: var(--color-secondary);
  }
  
  .features .tab-pane ul {
    list-style: none;
    padding: 0;
  }
  
  .features .tab-pane ul li {
    padding-bottom: 10px;
  }
  
  .features .tab-pane ul i {
    font-size: 24px;
    margin-right: 4px;
    color: var(--color-primary);
  }
  
  .features .tab-pane p:last-child {
    margin-bottom: 0;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }

  @media screen and (max-width:799px) {
    .border-tab-pane{
      height: 170px;
    }
    
  }
  
  /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
  .services .img {
    border-radius: 8px;
    overflow: hidden;
  }
  
  .services .img img {
    transition: 0.6s;
  }
  
  .services .details {
    padding: 50px 30px;
    margin: -100px 30px 0 30px;
    transition: all ease-in-out 0.3s;
    background: var(--color-white);
    position: relative;
    background: rgba(var(--color-white-rgb), 0.9);
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
  }
  
  .services .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: var(--color-primary);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    border: 6px solid var(--color-white);
  }
  
  .services .details h3 {
    color: var(--color-default);
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s;
  }
  
  .services .details p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .services .service-item:hover .details h3 {
    color: var(--color-primary);
  }
  
  .services .service-item:hover .details .icon {
    background: var(--color-white);
    border: 2px solid var(--color-primary);
  }
  
  .services .service-item:hover .details .icon i {
    color: var(--color-primary);
  }
  
  .services .service-item:hover .img img {
    transform: scale(1.2);
  }
  
  

  /* new css */


  .carousel-control-next, .carousel-control-prev {
    width:7%;
    }

    .carousel-control i{
        font-size: 60px;
        color: #6a0067;
   }

    .shortcut-item img {
        width: 150px;
    }

    .shortcut-item {
        margin-bottom: 20px;
    }

    .by-occasion img {
        width: 100px;
        height: 100px;
    }

    

    .service-item h6{
        font-size: small;
        color: black;
        padding-top: 10px;
    }

    .him-her img, .delivery-options img{
        width: 500px;
        height: 250px;
    }

    .him-her h6{
        font-size: smaller;
    }

    .flags img{
        border-radius: 50%;
    }

    .flags h4{
        color: #BC59A8;
        font-weight: bold;
    }
    
    .tab-pane h6{
        font-size: small;
        color: black;
        padding-top: 10px;
    }
    .tab-pane h5{
        font-size: small;
        color: #BC59A8;

    }
    @media (min-width:1100px) {
        .tab-pane img{
        /* border: 1px solid #BC59A8; */
        border-radius: 10px;
        width:170px;
        height:170px;
    }
    }

    @media (min-width:700px) and (max-width:1099px) {

    .carousel-control-next, .carousel-control-prev {
    width:10%;
    }

        .tab-pane img{
        /* border: 1px solid #BC59A8; */
        border-radius: 10px;
        width:110px;
        height:110px;
    }
    }

    @media screen and (max-width:699px) {

        .carousel-item img{
        height: 150px;
    }

    .carousel-control-next, .carousel-control-prev {
    width:10%;
    }
    .carousel-control i{
        font-size: 40px;
        
   }

        .tab-pane img{
        /* border: 1px solid #BC59A8; */
        border-radius: 10px;
        width:90px;
        height:90px;
    }
    }

    .border{
        border-radius: 10px;
    }
    