/* ------ CSS Reset ------ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: #FADA25;
    transition: all .5s;
}

li {
    list-style: none;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

p, 
label, 
input,
button {
    font-size: 1.5rem;
}

i {
    font-size: 60px;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}


/* ------ CSS Header ------ */
header,
footer,
.title_game {
    padding-block: 1rem;
    background-color: #182C61;
    color: #ECF0F1;
}

.logo,
.products_list,
.banner_prices .container,
.title_game .container,
.about_content,
.content_footer,
.footer_socials,
header .container,
header nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo img,
.content_footer img {
    width: 100px;
}

header h1 span,
#about h1 span {
    text-transform: uppercase;
    text-decoration: underline;
    color: #FADA25;
}

header a {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}

header a:hover {
    color: #ECF0F1;
}

.products_nav {
    width: 100%;
}

.products_list {
    padding-top: 1.5rem;
    
}

.products_list a {
    color: #ECF0F1;
}

.products_list a:hover {
    color: #FADA25;
}

/* ------ CSS Home ------ */
.banner {
    height: 600px;
}

.banner img {
    width: 100%;
    height: 100%;
}

.banner_prices {
    padding: 1rem;
    background-color: #182C61;
    color: #ECF0F1;
}

.banner_prices_content {
    display: flex;
    align-items: center;
}

.banner_prices_content i {
    color: #FADA25;
    margin-right: 1rem;
}

#about,
#contact h1,
#products {
    padding-block: 2rem;
    color: #182C61;
}

#about h1,
#contact h1,
#products h1 {
    text-align: center;
    margin-block: 2.5rem;
}

.about_content img,
.about_content_text {
    width: 50%;
}

.about_content img {
    border-top-right-radius: 25%;
    border-bottom-left-radius: 25%;
}

.about_content_text {
    padding-inline: 1.5rem;
}

.about_form {
    display: flex;
    margin-block: 1.5rem;
}

.about_form input {
    width: 60%;
}

.about_form button {
    width: 40%;
    font-size: 1.3rem;
}

.about_form button,
.contact_form button {
    font-weight: bold;
    background-color: #182C61;
    color: #FADA25;
    cursor: pointer;
    transition: .5s;
}

.about_form button:hover,
.contact_form button:hover {
    background-color: #FADA25;
    color: #182C61;
}

.about_form input,
.about_form button {
    padding: 1rem .5rem;
    border: 1px solid #182C61;
}

#products p {
    text-align: center;
    margin-bottom: 2rem;
}

.title_game i {
    color: #ECF0F1;
}

.banner_card {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    margin-block: 2rem;
}

.card {
    width: 30%;
    display: block;
}

.card img {
    width: 100%;
    height: 400px;
    border-radius: 20px;
}

.card a {
    font-size: 2rem;
    font-weight: bold;
    color: #182C61;
}

.contact_form {
    width: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contact_form input,
.contact_form textarea {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 2px solid #182C61;
    color: #3b4664;
}

.contact_form label {
    color: #182C61;
    font-weight: bold;
}

.contact_form button {
    max-width: 280px;
    width: 100%;
    height: 60px;
    margin-block: 1rem;
    border: none;
    border-radius: 5px;
}

.content_footer {
    padding: 2rem 0;
    align-items: flex-start;
}

.footer_sections a {
    color: #ECF0F1;
}

.footer_sections li {
    font-size: 1.3rem;
    font-weight: bold;
}

.footer_sections li span {
    font-weight: 300;
}

.footer_sections i {
    font-size: 1.3rem;
    margin-right: .5rem;
}

.content_copy {
    text-align: center;
    border-top: 1px solid #ECF0F1;
    padding-top: 1rem;
}

.content_footer h3 {
    font-size: 2rem;
}

.content_copy h3 span,
.content_footer h3,
.footer_sections a:hover,
.footer_socials i:hover {
    color: #FADA25;
}

.footer_socials i {
    font-size: 3rem;
    color: #ECF0F1;
}

.content_footer img {
    margin-top: 2rem;
}

footer iframe {
    width: 350px;
    height: 200px;
    border: none;
}

.footer_address p {
    font-size: .8rem;
}