/*START LOGO*/

.front-page-logo-slogan {
    position:relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.front-page-logo-slogan>h1 {

    font-weight: 300;
    font-size: 5rem;
    letter-spacing: -0.22em;
    color: #FFFFFF;
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.5);
    margin: 0;
}

.front-page-logo-slogan>h2 {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: #FFFFFF;
}

/*START CHECKOUT AREA*/
.checkout {
    max-width: calc(900px + 5rem);
    display: flex;
    position: relative;
    display: flex;
    background-color: #232323;
    border: #fff2 1px solid;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 8px;
    margin-bottom: 8rem;
    flex-wrap: wrap;
}
.checkout>div {
    flex-basis: 350px;
    flex-grow: 1;
    margin: 1rem 2rem;
    color: white;
}
.checkout-title {
    margin-top: 1rem;
    display: flex;
    align-items: center;
}
.checkout h1 {
    margin: 0;
    font-size: 1.8rem;
}
.checkout h2 {
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 8px;
    font-size: 1rem;
    background-color: #131313;
    width: fit-content;
    padding:0.3rem 2rem;
    border-radius: 3rem;
    margin: 0.5rem;
    border: 1px solid #fff8;
}

.checkout form {

    width: 100%;
    display: flex;
    flex-direction: column;
}
.checkout input[type="text"],.checkout input[type="email"],.checkout textarea{
    background: none;
    outline: none;
    border: none;
    font-size: 1rem;
    padding: 0.5rem;
    margin: 1rem 0;
    border-bottom: 2px white solid;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 4px;
    transition: 0.2s all ease-in-out;
}
.checkout input[type="text"]:focus,.checkout input[type="email"]:focus,.checkout textarea:focus {
    
    box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 8px;
    border-bottom: 2px white solid;
    transform: translateX(10px);
}
.checkout input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
} 
.checkout input[type="submit"] {
    
    border: none;
    color: white;
    font-size: 1rem;
    background: none;
    margin: 1rem;
    padding: 0.5rem 2rem;
    border-radius: 0.5rem;
    outline: 1px white solid;
    width: fit-content;
    align-self: center;
    transition: 0.2s all ease-in-out;
}

.checkout input[type="submit"]:hover {
    
    background: #fff2;
    margin: 0.5rem;
    padding: 1rem 1rem;
    outline: 2px white solid;
}
.checkout input[type="submit"]:active {
    
    background: #fff2;
    margin: 1.3rem;
    padding: 0.2rem 1.5rem;
}

/*Start Other Options*/
.other-offers {
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.checkout ul {

    background: #131313;
    border: 1px #fff2 solid;
    margin: 0;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 4px;
}

.checkout li:not(:last-child)  {

    margin-bottom: 1rem;  
}
.other-offers>div {
    display: flex;
    flex-wrap: wrap;
    color: white;
    width: fit-content;
    margin-bottom: 3rem;
    justify-content: center;
}
.other-offers>h2 {
    color: white;
    text-align: center;
}

.other-offers>div>div {

    position: relative;
    display: flex;
    width: 300px;
    flex-direction: column;
    align-items: center;
    background-color: #232323;
    margin: 1rem;
    border: #e41645 1px solid;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 8px;
    padding-bottom: 5rem;
}

.other-offers h1 {
    font-weight: 300;
}

.other-offers>div>div>h2 {
    background-color: #131313;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-weight: 300;
    font-family: var(--font-secondary);
    margin: 0;
}

.other-offers p {

    font-family: var(--font-secondary);
    text-align: center;
    font-weight: 300;
}

.other-offers a {
    text-decoration: none;
    position: absolute;
    bottom: 0;
    color: white;
    padding: 1rem 2rem;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 8px;
    transition: 0.1s all ease-in-out;
    border-radius: 1rem 1rem 0rem 0rem;
    background-color: #444;
}

.other-offers a:hover {
    background-color: #e41645;
    box-shadow: #e41645 0px 0px 8px;
}

