﻿/*======================= Vinyl Styl Custom Styles =======================*/
/*======================= Global declarations =======================*/
html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #282828;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

.container {
    width: 70%;
    max-width: 1000px;
}

header {
    margin: 20px 0;
}

header img {
    width: 100%;
    max-width: 66.478rem;
    height: auto;
}

h1 {
    color: #aaa090;
    font-weight: 600;
    font-size: 1.875rem;
}

.verticalline {
    border-left: 2px solid #F27927;
    height: 120px;
}

.titlePara {
    color: #ECECEC;
    font-weight: 500;
}

.highlight {
    color: #fff;
    font-weight: 600;
}

.featured {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.featured img {
    width: 40%;
    max-width: 400px;
    margin: 15px 0 0 0;
}

.featured p {
    width: 55%;
    color: #aaa090;
    font-weight: 600;
    font-size: 1.875rem;
    text-align: center;
    margin: 15px 0;
}

section {
    margin: 60px 0 40px 0;
}

.products img {
    width: 100%;
    max-width: 66.478rem;
    margin: 15px 0 0 0;
    height: auto;
}

footer {
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #fff;
    width: 100%;
    padding: 10px 0;
    flex-wrap: wrap;
    margin: 40px 0 0 0;
}

footer div:not(.legal-links) {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer div.legal-links {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.logo {
    width: 125px;
    padding-left: 20px;
    height: auto;
}

.arrow {
    width: 30px;
    padding: 0 20px;
    height: auto;
}

.whiteBorder {
    border-left: 1.5px solid #fff;
    height: 15px;
}

.btn-primary {
    background: #F27927;
    border: none;
    width: 100%;
    color: #000;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 4px 8px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active {
    background: #f76400;
}

#contact-us-message,
.user-request-form {
    max-width: 80%;
    margin: auto;
}

form h3 {
    margin: 0 0 20px 0;
    color: #aaa090;
    font-size: 1.875rem;
}

form label {
    margin: 0;
    padding: 0;
    color: #ECECEC;
}

form input,
form textarea {
    width: 55%;
    background-color: transparent;
    border: 1px solid #fff;
    color: #FFF;
    font-weight: 300;
    font-size: 1.3rem;
    margin: 0 0 20px 0;
    padding: 3px;
}

form button {
    font-weight: 500;
    font-size: 1.2rem;
    padding: 4px 8px
}

a {
    color: #F27927;
}

.form-group input,
.form-group select {
    margin-bottom: 10px;
}

/*===== Go Top =====*/
#return-to-top {
    position: fixed;
    bottom: 5px;
    right: 20px;
    background: #F27927;
    width: 50px;
    height: 50px;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    border: 1px solid #ffffff;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 9;
}

#return-to-top i {
    color: #000000;
    margin: 0;
    position: relative;
    left: 12px;
    top: 12px;
    font-size: 25px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/*===== Spinner =====*/
.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../images/spinners/ripple.gif) center no-repeat #fff;
}

.table-bordered thead tr th {
    background-color: #dbdbdb;
}

.user-request-form .row {
    margin-top: 25px;
    margin-bottom: 25px;
}
.user-request-form .row h3 {
    margin-bottom: 5px;
}

.ae-link {
    margin-bottom: 15px;
}

@media (max-width: 950px) {
    .container {
        width: 80%;
        max-width: 950px;
    }

    form input,
    form textarea {
        width: 70%;
    }
}

@media (max-width: 850px) {
    .container {
        width: 90%;
        max-width: 850px;
    }

    h1 {
        color: #aaa090;
        font-weight: 400;
        font-size: 1.675rem;
    }

    form h3 {
        font-size: 1.675rem;
    }

    form input,
    form textarea {
        width: 80%;
    }

    .featured img {
        width: 100%;
        margin: 15px 0 0 0;
    }

    .featured p {
        width: 100%;
        color: #aaa090;
        font-weight: 400;
        font-size: 1.675rem;
        text-align: left;
        margin: 15px 0;
    }
}

@media (max-width: 700px) {
    .container {
        width: 95%;
        max-width: 700px;
    }

    h1 {
        color: #aaa090;
        font-weight: 400;
        font-size: 1.675rem;
    }

    .featured img {
        width: 100%;
        margin: 15px 0 0 0;
    }

    .featured p {
        width: 100%;
        color: #aaa090;
        font-weight: 400;
        font-size: 1.675rem;
        text-align: left;
        margin: 15px 0;
    }

    form h3 {
        font-size: 1.675rem;
    }

    form input,
    form textarea {
        width: 94%;
    }
}

@media (min-width: 992px) {
    #contact-us-message,
    .user-request-form {
        max-width: 50%;
        margin: auto;
    }

    footer div {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    footer {
        background-color: #333333;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        border-top: 1px solid #fff;
        width: 100%;
        padding: 10px 0;
        flex-wrap: wrap;
        margin: 40px 0 0 0;
    }

    footer div.legal-links {
        display: flex;
        align-items: center;
        flex-direction: row;
    }
}