/* 
Grid Template
    grid-template-rows: 900px 200px 200px;
    grid-template-columns: 400px 1200px 270px;
    grid-template-areas:
        "menu header title"
        "menu main-content title";
*/

.main-content-container {
    grid-area: main-content;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.main-content-home-title {
    width: 100%;
    text-align: center;
    font-size: 150%;
    color: #fff;
    padding: 0.5em;
    transition: all 1s;
    background-color: rgb(0,0,0,0.9);
}

.main-content-container::-webkit-scrollbar {
    display: none;
}


/*♠~♠~ About Section CSS ~♠~♠*/
.content-about-title > h1 {
    margin-top: 0;
    font-size: 300%;
    color: #fff;
    width: 100%;
    transition: all 1s;
    text-align: center;
    transform: translateX(-100%);
    display: none;
}

.content-about {
    width: 100%;
    font-size: 130%;
    color: #fff;
    padding-bottom: 80px;
    text-align: center;
    transition: all 1s;
    transform: translateX(100%);
    display: none;
}

.about-list-wrapper {
    display: grid;
    grid-template: auto auto auto;
    color: #fff;
    background-color: #7F0000;
}

.about-content-first {
    border-right: 3px solid #000;
    grid-column-start: 1;
    grid-column-end: 1;
}

.about-content-second {
    border-right: 3px solid #000;
    grid-column-start: 2;
    grid-column-end: 2;
}

.about-content-third {
    border-right: 3px solid #000;
    grid-column-start: 3;
    grid-column-end: 3;
}

.about-content-fourth {
    grid-column-start: 4;
    grid-column-end: 4;
}


/*♠~♠~ Service Section CSS ~♠~♠*/
.content-services-title > h1 {
    font-size: 300%;
    color: #fff;
    width: 100%;
    text-align: center;
    transition: all 1s;
    transform: translateX(-100%);
    display: none;
}

.content-services {
    font-size: 130%;
    width: 100%;
    color: #fff;
    transition: all 1s;
    transform: translateX(100%);
    display: none;
}

.content-services > h4 {
    text-align: center;
}

.service-list-wrapper {
    display: grid;
    grid-template: auto auto auto;
    color: #fff;
    background-color: #7F0000;
}

.services-content-left {
    grid-column-start: 1;
    grid-column-end: 1;
}

.services-content-middle {
    grid-column-start: 2;
    grid-column-end: 2;
}

.services-content-right {
    grid-column-start: 3;
    grid-column-end: 3;
}


/*♠~♠~ Location Section CSS ~♠~♠*/
.content-location-title > h1 {
    font-size: 300%;
    margin-top: 0;
    color: #fff;
    width: 100%;
    text-align: center;
    transition: all 1s;
    transform: translateX(-100%);
    display: none;
}

.content-location {
    width: 100%;
    height: 400px;
    transition: all 1s;
    transform: translateX(100%);
    display: none;
}

.slider {
    height: 100%;
    width: 500%;
    display: none;
}

.slider > img {
    height: 80%;
    width: 7%;
    border-radius: 10%;
    -webkit-box-reflect: below 5px linear-gradient(0deg, black, transparent 20%);
    transform: scale(0.6) rotateY(20deg);
    transition: .3s ease-in;
}

.slider > img ~ img {
    transform: scale(0.6) rotateY(-20deg);
}

.content-location > input {
    display: none;
}

.controls {
    padding: 0.5em;
    text-align: center;
    width: 100%;
    transition: all 1s;
    transform: translateX(100%);
    display: none;
}

.controls > label {
    width: 170px;
    margin: 4px;
    border-radius: 4px;
    overflow: auto;
    color: #fff;
}

.controls > label > span {
    text-align: center;
    font-size: 16;
    width: 10%;
    padding: 1%;
    border: 1px solid red;
    background-color: transparent;
    display: inline-block;
}

.controls > label > span:hover {
    background-color: inherit;
    color: #7F0000;
    border: 1px solid #7F0000;
}

#ok:checked ~ .slider > img:nth-child(1) {
    margin-left: 7%;
}

#nm:checked ~ .slider > img:nth-child(1) {
    margin-left: -7%;
}

#co:checked ~ .slider > img:nth-child(1) {
    margin-left: -13.5%;
}

#ut:checked ~ .slider > img:nth-child(1) {
    margin-left: -20.5%;
}

#ok:checked ~ .slider > img:nth-child(1),
#tx:checked ~ .slider > img:nth-child(2),
#nm:checked ~ .slider > img:nth-child(3),
#co:checked ~ .slider > img:nth-child(4),
#ut:checked ~ .slider > img:nth-child(5) {
    transform: scale(1) rotateY(0deg);
}


/* Broke for some reason ??? */
#ok:checked ~ .controls > label:nth-child(1),
#tx:checked ~ .controls > label:nth-child(2),
#nm:checked ~ .controls > label:nth-child(3),
#co:checked ~ .controls > label:nth-child(4),
#ut:checked ~ .controls > label > span:nth-child(5) {
    border: 1px solid #7F0000;
    opacity: 0.8;
}


/*♠~♠~ Contact Section CSS ~♠~♠*/
.content-contact-title > h1 {
    font-size: 300%;
    margin-top: 0;
    color: #fff;
    width: 100%;
    text-align: center;
    transition: all 1s;
    transform: translateX(-100%);
    display: none;
}

.content-contact {
    width: 100%;
    color: #fff;
    text-align: center;
    transition: all 1s;
    transform: translateX(100%);
    display: none;
}

.content-contact label {
    font-size: 150%;
    color: #fff;
}

.content-contact input, .content-contact textarea {
    color: #fff;
    background-color: inherit;
    border: 1px solid red;
    margin-bottom: 3%;
    width: 50%;
    padding: 1%;
}

.content-contact input::placeholder, .content-contact textarea::placeholder {
    color: #fff;
}

.content-contact input:focus, .content-contact textarea:focus {
    border-color: #7F0000;
    outline: none;
}

#submit {
    width: 25%;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    border-radius: 1.5em; 
}

#submit:hover {
    color: red;
    border-color: #7F0000;
}


/*♠~♠~ Login Section CSS ~♠~♠*/
.content-login-title > h1 {
    margin-top: 0;
    font-size: 300%;
    color: #fff;
    width: 100%;
    text-align: center;
    transition: all 1s;
    transform: translateX(-100%);
    display: none;
}

.content-login {
    width: 100%;
    padding: 0.5em;
    text-align: center;
    color: #fff;
    transition: all 1s;
    transform: translateX(100%);
    display: none;
}

#login-message {
    margin-top: 1%;
    margin-bottom: 1%;
}


.content-login label {
    font-size: 150%;
    color: #fff;
}

.content-login input {
    color: #fff;
    background-color: inherit;
    border: 1px solid red;
    margin-bottom: 3%;
    width: 50%;
    padding: 1%;
}

.content-login input::placeholder {
    color: #fff;
}

.content-login input:focus {
    border-color: #7F0000;
    outline: none;
}

#loginSubmit {
    width: 25%;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    border-radius: 1.5em; 
}

#loginSubmit:hover {
    color: red;
    border-color: #7F0000;
}

#login-message {
    width: 100%;
    color: #fff;
    transition: all 1s;
}