@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --primary-color: #FFD400;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html, body {
    width: 100%;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.forecast__grid {
    width: 100%;
    max-width: 1366px;
    height: auto;
    margin-inline: auto;
}
header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.header__row {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.header__row a {
    font-weight: 600;
    color: black;
    text-decoration: none;
}
.header__row a:hover {
    color: var(--primary-color);
}
main {
    width: 100%;
    height: auto;
    padding: 80px 0 0;
}
section {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}
.banner {
    min-height: 550px;
    background-image: url('./bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.banner h3 {
    max-width: 570px;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 48px;

}

.banner p {
    max-width: 570px;
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    text-align: left;
}
.banner h3 span,
.banner p span {
    color: var(--primary-color);
}
.content {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;

}
.content h3 {
    max-width: 730px;
    font-size: 30px;
    color: black;
    line-height: 42px;
    font-weight: 600;
    text-align: center;
}
.content a {
    font-size: 28px;
    color: black;
    font-weight: 700;
    line-height: 36px;
    text-decoration: none;

}
.content a:hover {
    color: var(--primary-color);
}
.map {
    padding: 0 !important;
}
footer {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    box-shadow: rgba(99, 99, 99, 0.2) 0px -2px 8px 0px;

}
footer p {
    font-size: 14px;
    color: white;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}