.main {
    margin: auto 30em;
}

.logo {
    min-height: 50px;
    max-height: 100px;
    border-radius: 30px;
}
.div-logo {
    display: flex;
    flex-direction: row;
    gap: 1em;
    justify-content: center;
}
.logo-description {
    display: flex;
    flex-direction: column;
    gap: 0.7em;
    justify-content: center;
    font-size: 1.4em;
    color: #1899D6;
}

.header {
    text-transform: uppercase;
    font-size: 3em;
    font-weight: bold;
}

.image {
    width: 45vw;
}

.text-center {
    text-align: center;
}

.paragraph {
    font-size: 2em;
    line-height: 150%
}

.list {
    background: #f1f2fa;
    padding: 20px;
    border-radius: 5px;
    border-bottom: 5px solid #b6cee6;
    margin: 0 auto 20px;
}

.ul-list {
    list-style-type: none; !important;
    padding: 5px;
}

.center {
    margin: auto;
    text-align: center;
}

.cursive {
    font-style: italic;
}

.header-best {
    font-size: 3em;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    margin-top: 3em;
    flex-direction: column;
    padding: 2em 15em;
    font-size: 1em;

}

.links {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    display: flex;
}
.link {
    color: #fff;
}

.states-dropdown {
    min-width: 300px;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1em;
}


.states-dropdown select {
    appearance: none;
    width: 100%;
    font-size: 1.15rem;
    padding: 0.675em 6em 0.675em 1em;
    background-color: #fff;
    border: 1px solid #caced1;
    border-radius: 0.25rem;
    color: #000;
    cursor: pointer;
}

.get-quote-button {
    max-width: 350px;
    background-color: #1899D6;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: none;
    font-family: din-round,sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 20px;
    margin: 0 auto;
    outline: none;
    overflow: visible;
    padding: 13px 16px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transform: translateZ(0);
    transition: filter .2s;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}

.get-quote-button:after {
    background-clip: padding-box;
    background-color: #1CB0F6;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    bottom: -4px;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.get-quote-button:focus {
    user-select: auto;
}

.get-quote-button:hover:not(:disabled) {
    filter: brightness(1.1);
    -webkit-filter: brightness(1.1);
}

.get-quote-button:disabled {
    cursor: auto;
}

.get-quote-button:active {
    border-width: 4px 0 0;
    background: none;
}


path {
    stroke: white;
    fill:paleturquoise !important;

    transition: fill .4s ease;
    transform-origin: center center;
}

path:hover {
    fill: orange !important;
    cursor: pointer;
    transform: scale(1.005, 1.005);
}

/* #map-container {
    display: flex;
    justify-content: center;
    align-items: center;
} */

#us-map {
    /*display: block;*/
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    width: 100%;
    height: 100%;
}

#details-box {
    box-shadow: 0px 7px 40px rgba(0, 0, 0, 0.7);
    opacity: 0%;
    padding: 1rem;
    border-radius: 8px;
    font-size: 24px;
    position: fixed;
    color: white;
    font-family: "Poppins";
    background-color: black;
    width: fit-content;
    transform: translateX(-50%);
    transition: opacity .4s ease;
    z-index: 1;
}


@media (max-width: 1700px) {
    .main {
        margin: auto 12em;
    }

    .image {
        width: 65vw;
    }

}

@media (max-width: 1279px) {
    .main {
        margin: auto 5em;
    }
}

@media (max-width: 991px) {
    .main {
        margin: auto 3em;
    }

    .image {
        width: 90vw;
    }
    .header {
        font-size: 1.5em;
    }
}

@media (max-width: 767px) {
    .main {
        margin: auto 1em;
    }
    .paragraph {
        font-size: 1.5em;
        line-height: 120%;
    }
    .footer {
        padding: 1.5em;
        font-size: 0.5em;
    }
    .header-best {
        font-size: 1.8em;
    }
    .logo{
        max-height: 50px;
    }
    .logo-description {
        font-size: 1em;
        gap: 0.4em
    }
}