h2{
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.gyik_map{
    height: 350px;
    background-image: url('../img/gyik_map.webp');
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--yellow-color);
    border-radius: 4rem;
}

.faq-answer{
    font-weight: bolder;
    font-size: 1.2rem;
}

.shape-fill{
    fill: var(--yellow-color);
    height: 13px;
    width: 100%;
}

.secondary-bg{
    background-color: var(--secondary-color);
}

.contact-url{
    font-size: 1.2rem;
    color: #222;
    text-decoration: none;
    margin-right: 3rem;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}

.contact-url i{
    color: var(--primary-color);
    font-size: 1.4rem;
}

.clock-wrapper{
    height: 250px;
    border-radius: 4rem;
    background-color: var(--yellow-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock-wrapper img{
    height: 230px;
}

strong{
    color: #222;
}

.green-underline-wrapper{
    /*height: 20px;*/
    width: 100%;
    overflow: hidden;
}

.green-underline-wrapper svg{
    fill: #61ce70;
    height: 25px;
    width: 110%;
    transform: translateY(-10%);
}

.farm-icon-wrapper{
    background-color: var(--yellow-color);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4rem;
}

.btn-partners{
    background-image: linear-gradient(200deg, var(--yellow-color) 0%, var(--primary-color) 100%);
    color: #FFF;
    font-weight: bolder;
    font-size: 1.2rem;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 2rem;
    box-shadow: 0px 6px 22px -8px rgba(0,0,0,0.5);
    transform: scale(1.0);
    transition: all 0.2s ease-in-out;
}

.btn-partners svg{
    height: 1.2rem;
    fill: #FFF;
}

.btn-partners:hover{
    transform: scale(1.1);
    color: #FFF;
}

.product-img{
    border-radius: 4rem;
    max-height: 250px;
}

.product-btn{
    background-color: var(--primary-color);
    color: #FFF;
    font-size: 1.2rem;
    font-weight: bolder;
    border-radius: 1.5rem;
    padding: 0.5rem 2rem;
}

.product-btn:hover{
    background-color: var(--primary-hover-color);
    color: #FFF;
}

@media(max-width: 960px){
    .gyik_map{
        height: 150px;
        background-image: url('../img/gyik_map.webp');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        background-color: var(--yellow-color);
        border-radius: 4rem;
    }
    
    h2{
        font-size: 1.8rem;
        font-weight: 900;
        text-align: center;
    }
    
    .clock-wrapper{
        max-height: 220px;
    }
    
    .clock-wrapper img{
        height: 210px;
    }
}