
/****************************************************************************
        MAIN Section
****************************************************************************/
.inner-section {
    /*
    background-image: linear-gradient(to bottom, rgba(41, 72, 154, 0.8), rgba(41, 72, 154, 0.3)), url('https://images.pexels.com/photos/1591373/pexels-photo-1591373.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260');
    background-position: center center;
    background-size: cover;
    height: 30rem;
     */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}

.heading-bar p {
    color:var(--gray-color);
    max-width: 120rem;
    margin:auto;
    margin-bottom: 3rem;
    text-align: center;
}

.inner-section > div{
    max-width: 120rem;
    text-align: center;
    color: var(--primary-color);
}


.inner-section > div h1 {
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}


.inner-section > div p {
    color:var(--gray-color);
}


h2 {
    margin-bottom: 2rem;
    cursor:pointer;
}
.discover-box {
    margin-bottom: 6rem;
}
.discover-box > section {
    padding:3rem;
}


.discover-box > section:nth-child(even) {
    background: var(--background-gray);
}

.featured-countries .holder {
    /*
    display:flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content:center;
    */
    --gap: 3rem;
    --num-cols: 2;
    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    gap: var(--gap);
}

.featured-countries .holder article {
    flex-basis: 30%;
    --num-cols: 2;
    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
}

.holder article {
    border-radius: 1.5rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.holder article > div:nth-of-type(2){
    padding:1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.holder article .text-description {
    height: 12.5rem;
    overflow: hidden;
    font-size: 1.4rem;
    color: var(--gray-color);
}
.holder article > div > p {
    font-size: 1.4rem;
    color: var(--gray-color);
}


.featured-countries .holder article .img {
    height: 25rem;
    cursor:pointer;
}

.holder article .img {
    background-position: center center;
    background-size: cover;
}



.holder article .title {
    color:var(--primary-color);
    font-weight: 600;
    margin: 1rem 0;
    font-size: 1.8rem;
    cursor:pointer;
}

.clamp-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3.4em;
  line-height: 1.6em;
}
.clamp-5-lines {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4em;
  max-height: calc(1.4em * 5); /* fallback for non-clamp support */
}


.tags{
    text-align: center;
    color: var(--primary-color);
}



@media (max-width: 767px) {
    .section-padding{
        padding:2rem;
    }

    .inner-section > div h1 {
        font-size: 2.6rem;
    }
    .inner-section > div p {
        font-size: 1.4rem;
    }
    .featured-countries .holder {
        --num-cols: 1;
    }

    .featured-countries .holder article {
        --num-cols: 1;
    }
}

@media (min-width : 768px) and (max-width: 1200px){
    .featured-countries .holder article {
        --num-cols: 1;
    }
}