@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap');



:root{
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --page-gradient: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23556b3d' stroke-opacity='0.18' stroke-width='1'%3E%3Cpath d='M30 4 L44 30 L30 56 L16 30 Z'/%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3Cpath d='M0 30 L8 30 M52 30 L60 30 M30 0 L30 8 M30 52 L30 60'/%3E%3C/g%3E%3C/svg%3E"), oklch(0.92 0.04 135);
}

*, *::after,*::before{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.container{
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-block: calc(0.25rem * 13);
    padding-inline: calc(0.25rem * 6);
}

body{
    background: var(--page-gradient);
}

a{
    text-decoration: none;
}

header h1{
    text-align: center;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 3.75rem;
}

header h1 span{
    font-style: italic;
}

header p{
    text-align: center;
    margin-top: calc(0.25rem * 5);
    font-size: 18px;
    color: #000;
    font-family: var(--font-sans);
    font-weight: 700 !important;
    line-height: 1.50;
}

.ferrow-c-wrapper{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 32px;
    text-align: center;
}

.ferrow-c-wrapper .web-card-re{
    width: 100%;
    background-color: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: calc(0.625rem + 12px);
    transition: all .3s ease;
}

.ferrow-c-wrapper .web-card-re:hover{
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    transition: all .3s ease;
}

.ferrow-c-wrapper .web-card-re .site-logo{
    max-width: 200px;
    width: 100%;
    height: 150px;
}

.ferrow-c-wrapper .web-card-re .site-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ferrow-contact{
    margin-bottom: 60px;
}


.ferrow-c-wrapper .web-card-re h2{
    font-size: 1.875rem;
    color: #000;
    font-weight: 500;
}

.ferrow-c-wrapper .web-card-re .location-f-d{
    margin-top: calc(0.25rem * 5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.ferrow-c-wrapper .web-card-re .location-f-d p{
    color: #000;
    font-family: var(--font-sans);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ferrow-c-wrapper .web-card-re .site-btn{
    margin-top: calc(0.25rem * 8);
}

.ferrow-c-wrapper .web-card-re .site-btn span{
    display: inline-flex;
    gap: 5px;
    align-items: center;
    background: #000;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: #fff;
    transition: all .3s ease;
}

.ferrow-c-wrapper .web-card-re:hover .site-btn span{
    gap: 8px;
    transition: all .3s ease;
}

.ferrow-c-wrapper .web-card-re h4{
    margin-top: calc(0.25rem * 5);
    color: #000;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font-sans);
}

.bottom-text p{
    text-align: center;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font-sans);
}

.site-logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    align-items: center;
}

.site-logo span{
    text-decoration: none;
    color: #000;
    font-size: 60px;
}

.site-logo p{
    color: #000;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 6px;
}

.f-contact{
    margin-bottom: 15px;
}



@media screen and (max-width: 767px) {
    .ferrow-c-wrapper{
        grid-template-columns: 1fr;
    }
    .ferrow-c-wrapper .web-card-re h2{
        font-size: 1.5rem;
    }
    .ferrow-c-wrapper .web-card-re .site-logo{
        max-width: 192px;
        width: 100%;
        height: 192px;
    }
    .container{
        padding-block: calc(0.25rem * 5);
    }
    header h1{
        font-size: 2.25rem;
    }
    header p{
        font-size: 16px;
    }
    header p br{
        display: none;
    }
}
