/*========================================================
                        GLOBAL
========================================================*/
/*font-family: Inter*/
/*font-family: Raleway*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Raleway:wght@700&display=swap');

:root {
    --bg-dark-gray: #303030;
    --bg-light-gray: #F9F9F9;
    --bg-light-orange-pumpkin: #cc9149;
    --bg-orange-pumpkin: #C07212;
    font-size: 16px;
}

* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

input {
    border-radius: 10px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    height: 30px;
    margin-bottom: 48px;
    padding: 15px 30px;
    width: 400px;
}

input:focus {
    border: 2px solid var(--bg-orange-pumpkin);
    color: var(--bg-dark-gray);
    outline: none;
}

input::placeholder {
    color: var(--bg-dark-gray);
    opacity: 30%;
}

button {
    align-items: center;
    background-color: var(--bg-orange-pumpkin);
    border-radius: 10px;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    height: 30px;
    justify-content: center;
    margin-top: 24px;
    padding: 30px;
    transition: 0.2s ease-out;
    width: 300px;
}

button:hover {
    background-color: var(--bg-light-orange-pumpkin);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.651);
    transform: scale(110%);
    transition: 0.2s ease-out;
}
/*========================================================
                    HEADER CONTAINER
========================================================*/
#header {
    background-color: var(--bg-dark-gray);
    color: white;
    padding: 150px 62px;
}

#header .title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 72px;
}

#header .sub-title {
    font-size: 1.1rem;
}
/*========================================================
                INFORMATION CONTAINER
========================================================*/
#info-container {
    align-items: center;
    background-color: var(--bg-light-gray);
    display: flex;
    height: auto;
    justify-content: space-evenly;
    padding: 75px 0;
    width: 100%;
}

.info-content {
    line-height: 28px;
    padding: 0 20px;
    width: 260px;
    animation: opacityShow 0.4s ease-in 0s normal;
}

.info-content .item-value {
    font-size: 2rem;
    word-break: break-word;
    animation: opacityShow 2s ease-out 0s normal;
}

.info-content .item-description {
    font-size: 1.1rem;
}
/*========================================================
                    MAIN CONTAINER
========================================================*/
#main {
    align-items: center;
    display: flex;
    overflow: auto;
    padding: 82px 124px;
}

#main-content {
    margin-right: 82px;
    min-width: 600px;
    width: 60%;
}

#main-content .title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 60px; 
    margin-bottom: 40px;   
}

#main-content .sub-title {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 30px;
    text-align: justify;
}
/*========================================================
                    CONTACT CONTAINER
========================================================*/
#contact {
    align-items: center;
    background-color: var(--bg-dark-gray);
    display: flex;
    flex-direction: column;
    padding: 82px;
}

#contact .title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

#contact-form {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 48px 96px 48px 96px;
}
/*========================================================
                        ANIMATIONS
========================================================*/
@keyframes opacityShow {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}