:root {
    --ut-color: #00AB84
}

*{
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    color: #1E1E1E;
    min-height: 100vh;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    box-shadow: 0px 3px 8px #0000001a
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo img {
    width: 30px;
}

nav a {
    color: #1E1E1E;
}

.logo span {
    font-family: 'Alike', serif;
    font-size: 16px;
    color: #1E1E1E;
}

.img-zone {
    width: 100%;
    height: 65vh;
    opacity: 80%;
    object-fit: cover;
}

.info_part1{
    margin-bottom: 20px;
}

#name {
    font-size: 32px;
    margin: 5px;
}

#info-card {
    line-height: 1.5;
    margin: 20px 50px;
}

.state-location {
    display: flex;
    width: 50%;
    justify-content: space-between;
    align-items: center;
}

.state{
    display: flex;
}

.state-location img {
    filter: brightness(0) saturate(100%) invert(40%) sepia(34%) saturate(6145%) hue-rotate(146deg) brightness(103%) contrast(101%);
}

.info{
    display: flex;
    width: 100%;
}

.open {
    border: var(--ut-color) 1px solid;
    color: var(--ut-color);
    border-radius: 14px;
    width: 136px;
    height: 28px;
    align-items: center;
    justify-content: center;
    display: flex;
    
}

.close {
    border: #F82A2A 1px solid;
    color: #F82A2A;
    border-radius: 14px;
    width: 136px;
    height: 28px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.general_info{
    width: 50%;
    margin-right: 40px;
}

.info h3{
    background-color: #D9D9D9;
    padding: 6px 0px 6px 6px;
    margin-bottom: 5px;
}

iframe {
    width: 100%;
}

.location-card {
    width: 50%;
}

.info_part2{
    margin-bottom: 15px;
}

.info_part3{
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .info{
        display: block;
    }

    .general_info{
        width: 100%;
        margin-right: 0px;
    }

    #info-card {
        line-height: 1.5;
        margin: 10px 25px;
    }

    .state-location{
        width: 100%;
    }

    .location-card {
        width: 100%;
    }

    #name{
        display: flex;
        justify-content: center;
    }

}

/* footer */

.footer {
    background-color: var(--ut-color);
    padding: 30px 47px 17px 47px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 100;
}

.group{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}

.group a{
    color: #ffffff;
}
