.discover {    
    background-color: var(--color-white);      
    min-height: 80vh;        
    width: 100%;
    position: relative;     
    display: flex;       
}
.discover-container {
    width: 100%;
    padding: 0 2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;              
}
.discover-col1 {
    background-color: var(--color-white);
    width: 100%;    
    text-align: center;             
}
.discover h2 {
    background-color: var(--color-white);
    color: var(--color-primary);
    font-size: var(--fs-lg-heading);
    font-weight: var(--fw-light);
    font-family: var(--font-primary-cursive);    
    display: inline-block; 
    padding-bottom: var(--fs-lg); 
    padding-top: 80px;             
}
/* Start Discover double lines decor */
.discover h3:before {
    content: url(../images/bef-af.png);
    margin-right: 15px; 
}
.discover h3 {
    background-color: var(--color-white);
    color: var(--color-black);
    text-transform: uppercase;  
    font-size: var(--fs-lg); 
    font-family: var(--font-primary);      
    margin-top: -40px;
    margin-bottom: 30px;
}
.discover h3:after {
    content: url(../images/bef-af.png);
    margin-left: 15px;
}
/* End Discover double lines decor */
.discover p {    
    width: 85%;
    box-sizing: border-box;    
    text-align: left;
    display: inline-block;
    background-color: var(--color-white);      
    color: var(--color-gray);
    font-size: var(--fs-base);
    font-family:var(--font-primary);
    font-weight: 100;
    line-height: var(--lh-relaxed); 
    margin: 0 auto;
}
.discover-menu-span {
    background-color: var(--color-white);
    width: 85%;     
    font-weight: var(--fw-regular);
    display: inline-flex;
    padding-left: 25px;    
}
/* Start of white half circle and double chevron decor */
.chevron-db-div {           
    color: var(--color-black);   
    font-size: var(--fs-xl);         
    z-index: 3;         
}
.chevron-db-div a:hover {         
    color: var(--color-primary)!important; 
    font-size: var(--fs-xl);    
    bottom: 55px;
    left: 970px;    
    z-index: 3; 
}
.white-circle-container {    
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -4.0%;
    left: 50%;
    transform: translateX(-50%);    
  } 
.fa-angle-double-down {
    font-size: 22px;
    padding-top: -10px;
    color: var(--color-black);       
}
.fa-angle-double-down:hover {
    font-size: 22px;
    padding-top: -10px;
    color: var(--color-primary);
    transition: color 0.3s ease;
}
/* End of white half circle and double chevron decor */

.discover-menu {   
    color: var(--color-primary);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);       
    font-family: var(--font-primary-cursive); 
    padding: 45px 20px 0 5px;     
}
.discover-menu:hover {   
    color: var(--color-black);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    padding-top: var(--fs-lg);
    padding-left: 70px;
    font-family: var(--font-primary-cursive);
    padding: 45px 20px 0 5px;      
    transition: color 0.3s ease;
}

/* *********Media Queries for 'Discovery' section  ************/

@media screen and (min-width: 1261px) and (max-width:1500px) {         
    .discover {    
        background-color: var(--color-white);           
        min-height: 80vh;
        width: 100%;       
    }   
    .discover-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;              
    }
    .discover-col1 {
        width: 100%;         
        text-align: center; 
        flex-direction: column;
        display: flex;
    }    
    .discover-menu-span {        
        padding-left: 10%; 
    }
}    
@media screen and (min-width: 768px) and (max-width: 1260px) {    
    .discover-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%; 
    }
    .discover-col1 {
        width: 100%;         
        text-align: center; 
        flex-direction: column;
        display: flex;         
    }    
    .discover-menu-span {
        padding-left: 10%;       
    }
}
@media screen and (max-width: 767px) {        
    .discover-col1 {
        width: 100%;
        text-align: center;
        flex-direction: column;        
    }     
    .discover-menu-span {
        font-size: 11px;
        padding-left: 3%;
        padding-bottom: 45px;
       
    }
}
