:root {
    --primary-color:#181530;
    --secondary-color: #c5f7f7;
    --dark-color: #041414;
    --light-color:#63beab;
    --success-color: #5cb85c;
    --error-color: #d9534f; 
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: #aabde0; 
}
h1{
    font-size: 3em;
    text-transform: uppercase;
}
p{
    font-size: 1.5em;
}
nav{
    margin:auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 10vh;
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--secondary-color);
}
nav img{
    width: 120px;
    margin-left: 10px;
    padding: 10px;
}
nav h2{
    color: var(--secondary-color);
}
nav ul{
    display: flex;
    justify-content: space-between;
}
nav ul li{
    display: block;
    margin-left: 10px;
    padding: 0 15px;
}
nav ul li a{
    text-decoration: none;
    font-size: 1.4em;
    color: var(--light-color);
    border-radius: 5px;
    padding: 0 5px;
}
nav ul li .active{
    background-color: #041414;
    color: #fff;
    border-bottom: 1px solid var(--secondary-color);
}
nav ul li a:hover{
    background-color: #041414;
    color: #fff;
}
header{
    position: relative;
    max-width: 98%;
    height: 40vh;
    margin: auto;
}
header img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
header h1{
    position: absolute;
    top: 40%;
    left: 40%;
    color: var(--dark-color);
    font-weight: 800;
}
.leadmsg{
    position: relative;
    max-width: 98%;
    height: auto;
    margin: auto;
    text-align: center;
    padding: 1.5rem 2rem;
    background-color: #ced4e0;
}
.leadmsg h2{
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 2.5em;
}
.why-us #rsv-btn{
    justify-content: center;
    margin-left: 380px;
    margin-top: 10px;
}
.hero-display{
    display: flex;
}
.dispbg{
    width: 70%;
    background-color: white;
}
.dispbg-slide{
    width: 100%;
    background-color: var(--secondary-color);
    color: #333;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    padding: 5px 5px;
    margin: 5px;
}
.dispbg-slide h2{
    font-family: Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 2px;
    font-size: 2.5em;
    padding: 0 10px;
    margin-bottom: 20px;
}
.dispbg-slide p{
    font-size: 1.5em;
    padding: 0 10px;
    margin-top: 20px;
    text-align: center;
}
.cap-slide{
    background-color: rgb(238, 207, 207);
    color: #333;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    padding: 7px 10px;
    margin: 5px;
    animation: 20s card infinite;
}
.slider{
    overflow: hidden;
}
.slider .slide-l {
    display: flex;
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    animation: 20s slider infinite;
}
.slider .slide-l img{
    width: 20%;
    float: left;
    height: 20em;
    object-fit: cover;
    border-radius: 0;
}
@keyframes slider {
    0% {
        left: 0;
        color: #000;
    }
    20%{
        left: 0;
        color: #000;
    }
    25%{
        left: -100%;
    }
    45%{
        left: -100%;
    }
    50%{
        left: -200%;
    }
    70%{
        left: -200%;
    }
    75%{
        left: -300%;
    }
    95%{
        left: -300%;
    }
    100%{
        left: -400%;
    }
}
.why-us{
    display: flex;
    flex-wrap: wrap;
    max-width: 98%;
    margin: auto;
    background-color: #ced4e0;
    padding: 10px;
    justify-content: center;
    border-radius: 5px;
    position: relative;
}
.why-us h2{
    position: absolute;
    top: 0;
    left: 40px;
    font-size: 3em;
}
.galery{
    display: flex;
    flex-direction: column;
}
.galery .cat-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.cat-container h3{
    width: 100%;
    text-align: center;
    font-style: oblique;
}
.galery .gal-pic{
    width: 30%;
    margin-bottom: 1.5rem;
}
.galery .gal-pic figure{
    width: 100%;
    height: 40vh;
}
.gal-pic figcaption{
    margin-left: 10px;
    font-size: 1.3em;
    font-style: italic;
    color: var(--dark-color);
    font-weight: 500;
}
.galery .gal-pic figure img{
    width: 100%;
    height: 100%;
    padding: 10px 10px;
    border: 1px solid #ced4e0;
    border-radius: 15px;
    object-fit: cover;
}
.galery h3{
    width: 100%;
    text-align: center;
    margin: 10px;
    padding-top: 10px;
    font-size: 2em;
}
.btn{
    position: absolute;
    top: 0.5%;
    left: 42%;
    width: 12em;
}
.btn-f{
    position: absolute;
    top: 1.8%;
    left: 40%;
    width: 12em;
}
.btn-f1{
    width: 12em;
}
.why-us h1{
    font-size: 2.5em;
    text-align: center;
}
.why-us button{
    background-color: #041414;
    border-radius: 5px;
}
.why-us a{
    text-decoration: none;
    color: #fff;
    padding: 5px;
}
.why-us button:hover{
    width: 15em;
}
#btnf {
    width: 12em;
    height: 1.5em;
    margin-top: 10px;
    background-color: var(--dark-color);
}
#btnf a{
    text-decoration: none;
    color: #fff;
    padding: 5px;
}
#btnf:hover{
    width: 18em;
    height: 1.8em;
    font-size: 1em;
}
#btng {
    width: 12em;
    height: 1.5em;
    margin-left: 40%;
    margin-top: 10px;
    background-color: var(--dark-color);
}
#btng a{
    text-decoration: none;
    color: #fff;
    padding: 5px;
}
#btng:hover{
    width: 18em;
    height: 1.8em;
    font-size: 1em;
}
.this-why{
    width: 48%;
    margin: 10px;
    padding: 5px;
    margin-bottom: 20px;
    text-align: justify;
    border-radius: 5px;
}
.this-why-r{
    width: 50%;
    margin: 10px;
    padding: 5px;
    margin-bottom: 20px;
    text-align: justify;
    border-radius: 5px;
}
.this-why-r h3{
    font-size: 1.6rem;
    margin-bottom: 10px;
    margin-top: 15px;
    padding-top: 20px;
    color: var(--dark-color);
}
.this-why-l{
    justify-content: center;
}
.this-why .first{
    margin-bottom: 10px;
    margin-top: 20px;
    padding-top: 50px;
}
.this-why h3{
    font-size: 1.6rem;
    margin-bottom: 10px;
    margin-top: 15px;
    padding-top: 20px;
    color: var(--dark-color);
}
.this-why img{
    width: 100%;
    padding: 10px 10px;
    border-radius: 15px;
}
.this-why button{
    background-color: #041414;
    border-radius: 5px;
}
.this-why a{
    text-decoration: none;
    color: #fff;
    padding: 5px;
}
.this-why button:hover{
    width: 8em;
}
.this-why-r ul li{
    list-style: url("images/rightarrow.png") inside;
    padding: 4px 5px;
    font-size: 1.4em;
    font-weight: 500;
}
.this-why-r ul span{
    margin-left: 15px;
    padding-left: 10px;
    font-style: oblique;
    font-weight: 400;
}
.showcase-form {
    position: relative;
    justify-content: start;
    top: 60px;
    height: 90%;
    width: 80%;
    padding: 40px;
    z-index: 88;
    animation: slideInFromRight 1s ease-in;
}
.showcase-form h2 {
    font-size: 30px;
    font-style: italic;
    margin: 10px 2px;
    padding: 5px 2px;
}
.showcase-form .form-control {
    margin: 50px auto;
}
.form-control p{
    margin-bottom: 1em;
}
.showcase-form input[type="text"],
.showcase-form input[type="number"],
.showcase-form select[id="dropdown"],
.showcase-form input[type="email"] {
    border: #b4becb;
    border-bottom: 1px #b4becb solid;
    width: 100%;
    padding: 2px;
    font-size: 16px;
    color: #495057;
}
.showcase-form select option{
    color: #495057;
}
.showcase-form input:focus, .showcase-form select[id="dropdown"]:focus{
    outline: none; 
}
.input-textarea {
    min-height: 120px;
    width: 100%;
    padding: 0.625rem;
    resize: vertical;
}
.card {
    background-color: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    padding: 7px 10px;
    margin: 5px;
}
.card ul li {
    margin: 5px;
    padding: 3px;
}
.card a {
    color: royalblue;
    font-style: italic;
}
.this-why-l .btn {
    display: flex;
    padding: 10px 30px;
    width: auto;
    margin: 10px;
    cursor: pointer;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    position: relative;
    left: 20px;
}
.btn-outline {
    background-color: transparent;
    border: 2px #fff solid;
}
.btn:hover {
    transform: scale(0.98);
}
#paytotal{
    display: flex;
    width: 32%;
    margin: 10px auto;
    font-size: medium;
    background: var(--light-color);
    color: var(--dark-color);
    padding: 3px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    outline: none;
}
.this-why-l .btn-primary {
    display: flex;
    padding: 10px 30px;
    width: 70%;
    margin: 10px;
    margin-left: 30px;
    cursor: pointer;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    position: relative;
    left: 20px;
}
.btn-primary:hover {
    transform: scale(0.98);
}
.input-checkbox {
    display: inline-block;
    margin-left: 1.5rem;
    margin-right: 0.5rem;
    min-height: 1rem;
    min-width: 1rem;
}
.location{
    display: flex;
    max-width: 98%;
    margin: 20px 0;
}
.location .find-map{
    width: 60%;
    margin-left: 10px;
}
.location .find-map img{
    width: 100%;
    height: 450px;
    object-fit: fill;
    border-radius: 10px;
}
.location .adress{
    width: 38%;
    margin-right: 20px;
    padding-right: 50px;
}
.adress h3{
    margin: 5px 2px;
    padding: 4px 2px;
    color: var(--dark-color);
}
.adress p{
    margin: 2px;
    padding: 2px;
    font-size: 1.2em;
}
.adress span{
    margin-left: 20px;
}
.adress h4{
    margin: 3px 2px;
    padding: 2px 1px;
    margin-top: 15px;
    color: var(--dark-color);
}
#bk{
    display: block;
    font-size: 26px;
    line-height: 1.2em; 
    margin-top: 5px;
    word-wrap: break-word;
}
.smh {
    display: flex;
}
.smh i{
    margin-right: 25px;
    padding: 5px;
}

footer{
    margin:auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 10vh;
    background-color: var(--primary-color);
}
footer img{
    width: 50px;
    height: 50px;
    margin-left: 20px;
    padding: 10px;
}
footer h2{
    color: var(--secondary-color);
}
footer ul{
    display: flex;
    justify-content: space-between;
}
footer ul li {
    display: block;
    margin-left: 10px;
    padding: 0 15px;
}
footer ul li .active{
    background-color: #041414;
    color: #fff;
    border-top: 1px solid var(--secondary-color);
}
footer ul li a{
    text-decoration: none;
    font-size: 1.4em;
    color: var(--light-color);
    border-radius: 5px;
    padding: 0 5px;
}
footer ul li a:hover{
    background-color: #041414;
    color: #fff;
}
@media (max-width:650px) {
    nav img{
        width: 90px;
        margin: 5px 8px;
        padding: 5px;
    }
    nav h2{
        font-size: 0.8em;
    }
    nav ul{
        flex-wrap: wrap;
    }
    nav ul li{
        display: block;
        margin-left: 6px;
        padding: 3px 5px;
    }
    nav ul li a{
        font-size: 1em;
    }
    header h1{
        position: absolute;
        top: 10%;
        left: 25%;
        color: #041414;
        font-weight: 800;
    }
    .hero-display{
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
        margin: 0 0.6em;
    }
    .why-us h1{
        font-size: 2.5em;
        text-align: start;
    }
    .why-us #rsv-btn{
        margin-left: 100px;
    }
    #bk{
        font-size: 16px;
        line-height: 0.1em; 
        margin-bottom: 15px;
    }
    .galery .gal-pic{
        width: 98%;
        margin: 10px 15px;
        padding: 5px;
    }
    .gal-pic figcaption{
        margin-left: 10px;
        font-size: 1.3em;
        font-style: italic;
        color: var(--dark-color);
        font-weight: 500;
    }
    .galery .gal-pic figure img{
        padding: 10px;
    }
    #btng{
        width: 10em;
        height: 2.8em;
        margin-left: 30%;
        font-size: 1.2em;
        border-radius: 10px;
    }
    #btng:hover{
        width: 9em;
        height: 3em;
        font-size: 1.4em;
    }
    .this-why{
        width: 100%;
        margin-bottom: 10px;
    }
    .showcase-form {
        height: 100%;
    }
    .showcase-form h2 {
        font-size: 20px;
        margin: 3px 2px;
        padding: 2px 2px;
    }
    .showcase-form .form-control {
        margin: 30px auto;
    }
    .input-textarea {
        min-height: 100px;
    }
    .this-why-l .btn-primary {
        padding: 5px 15px;
        width: 70%;
        margin: 6px;
    }
    .this-why-r{
        width: 100%;
        margin-top: 50px;
    }
    .this-why-r ul li{
        justify-content: space-between;
        width: 100%;
        margin: 0;
        font-size: 1.2em;
        font-weight: 600;
    }
    .this-why-r ul span{
        font-style: oblique;
        font-weight: 300;
    }
    #bk{
        display: block;
        font-size: 24px;
        line-height: 1em; 
        margin-top: 5px;
        word-wrap: break-word;
    }
    .adress span{
        margin-left: 2px;
    }
    .smh {
        display: flex;
        flex-direction: column;
    }
    .smh i{
        margin-right: 8px;
        padding: 4px;
    }
    footer{
        justify-content: space-evenly;
    }
    footer .ft-name{
        text-align: center;
    }
    footer img{
        margin-left: 10px;
        margin-right: 5px;
        padding: 4px;
    }
    footer h2{
        font-size: 1em;
    }
    footer p{
        font-size: 12px;
    }
    
    footer ul{
        flex-wrap: wrap;
    }
    footer ul li{
        display: block;
        margin-left: 5px;
        padding: 3px 5px;
    }
    footer ul li a{
        font-size: 1em;
        padding: 0 5px;
    }
}
@media (max-width:360px){
    nav img{
        width: 40px;
        height: 40px;
        margin-left: 5px;
        margin-right: 2px;
        padding: 5px;
    }
    nav h2{
        font-size: 0.7em;
        max-width: 86px;
        padding-right: 0;
    }
    nav ul{
        width: 190px;
        justify-content: space-between;
    }
    nav ul li{
        margin: 0;
        margin-bottom: 6px;
        padding: 2px;
    }
    nav ul li a{
        font-size: 0.9em;
        padding: 0;
        margin: 0;
        padding-right: 7px;
        margin-right: 8px;
    }
    header h1{
        left: 25%;
        font-weight: 500;
    }
    #gc-head{
        font-size: 0.8em;
        text-align: center;
    }
    .leadmsg{
        width: 98%;
        margin: 5px;
        text-align: center;
        padding: 1.5rem 1rem;
        background-color: #ced4e0;
    }
    .galery{
        display: grid;
        grid-template-columns: 1fr;
    }
    .btn{
        position: absolute;
        top: 3.4%;
        left: 26%;
    }
    .adress span{
        display: block;
        word-wrap: break-word;
    }
    .why-us #rsv-btn{
        justify-content: center;
        margin-left: 50px;
        margin-top: 10px;
    }
    #btnf {
        width: 12em;
        height: 1.5em;
        margin: 0;
    }
    #btnf:hover{
        width: 18em;
        height: 1.9em;
        font-size: 0.7em;
    }
    #bk{
        font-size: 20px;
    }
    .location{
        display: grid;
        grid-template-columns: 1fr;
    }
    .location .find-map{
        width: 100%;
        margin-left: 10px;
    }
    .location .adress{
        width: 100%;
        margin: 5px;
        padding: 10px;
    }
    .smh {
        display: flex;
        flex-direction: row;
    }
    .showcase-form h2 {
        font-size: 18px;
    }
}
