@font-face {
    font-family: Gilroy;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../font/Gilroy-Black.ttf) format('truetype')
}
:root {
    --gap-phone: 0px;
    --gap-pc: 40px;
}
.card-wrapper{
    max-width: 1250px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: space-between; 
    gap: 32px 24px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 32px;
}

.card-container {
    display: flex;
    position: relative;
    width: 282px;
    height: 282px;
    padding: 23px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid #F6F6F6;
}
.card-container > a{
    
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.card-container > a:visited{
    text-decoration: none;
    color: #000;
}
.card-logo{
    display: flex;
    height: 142px;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10.758px;
    flex-shrink: 0;
    align-self: stretch;
    overflow: hidden;
}
.card-logo > img{
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    flex-shrink: 1;
}
.card-name{
    display: flex;
    width: 260px;
    height: 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.card-name > span{
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; 
}
.card-container > a > .line{
    width: 82.97%;
    height: 1px;
    background: #F6F6F6;
    margin-top: 16px;
    margin-bottom: 16px;
}
.calla{
    color: black; 
    text-decoration: none;
}
.calla:visited{
    color: black;
    text-decoration: none;
}
@media (max-width: 768px){
    .card-container{
        width: 348px;
        height: 348px;
    }
}
.searchbar{
    position: relative;
    display: flex;
    margin-top: 32px;
    margin-bottom: 32px;
    justify-content: space-between;
}
.searchbar-title{
    color:  #454545;
    font-family: Gilroy;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 41.6px */
    letter-spacing: -0.64px;
}
.searcharea{
    display: flex;  
    width: 420px; 
    align-items: center;
    justify-content: space-between;
    
}
.searchbox{
    width: 420px;
    padding: var(--12, 12px) var(--16, 16px);
    border-radius: var(--8, 8px);
    border: 1px solid var(--gray-200, #EAECF0);
    background: var(--base-white, #FFF);
    justify-content: space-between;
    align-items: center;
}
.marquee-1,.marquee-2,.marquee-3{
    margin-top: 30px;
    margin-bottom: 30px;
    gap: var(--gap-pc); 
    display: flex;
    white-space: nowrap;
    @media (max-width: 400px) {
        gap: var(--gap-phone);
    }
}
.link-box{
    display: contents;
    height: fit-content;
    width: fit-content;
    margin: 10px;
    object-fit: contain
}
.marquee-3{
    animation: move-rtl 200s linear infinite alternate;
} 
.marquee-2{
    animation: move-rtr 200s linear infinite alternate;
}
 .marquee-1{
    animation: move-rtl 200s linear infinite alternate;
} 
.marquee-3:hover{
    -webkit-animation-play-state:paused;
    -moz-animation-play-state:paused;
    -o-animation-play-state:paused;
    animation-play-state:paused;
    cursor: pointer;    
}  
.marquee-2:hover{
    -webkit-animation-play-state:paused;
    -moz-animation-play-state:paused;
    -o-animation-play-state:paused;
    animation-play-state:paused;
    cursor: pointer;    
}  
.marquee-1:hover{
    -webkit-animation-play-state:paused;
    -moz-animation-play-state:paused;
    -o-animation-play-state:paused;
    animation-play-state:paused;
    cursor: pointer;    
}  
@keyframes move-rtl {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(calc(-870% - 20px));
    }
}
@keyframes move-rtr {
    0%{
        transform: translateX(calc(-870% + 20px));
    }
    100%{
        transform: translateX(0);
    }
}
