*{
    margin: 0px;
    padding: 0px;
    
}

body{
    background-color: rgb(35, 34, 34);
}

.nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

.nav li {
    float: right;
}

.nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 30px 16px;
    text-decoration: none;
}

.nav li a:hover {
    background-color: darkgoldenrod;
}

.nav{
    margin-bottom: 0px;
    width: 100%;
}

.image-cont{
    width: 100%;
    height: 90vh;
    background-image: url('picBig.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    
    color: aliceblue;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;;
}

.top-text{
    text-align: center;
    margin: center;
    background-color: rgba(0, 0, 0, 0.6);
    height: 100px;
    width: 400px;
    border-radius: 10px;
    
}

.about {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: 500px;
    background-color: rgb(35, 34, 34);
    margin-top: 0%;
}

.about-text{
    width: 50%;
    color: aliceblue;
    
}

.about-img{
    width: 50%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cont{
    padding-left: 50px;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding-top: 20px;
}

.btn-cont a{
    background-color: darkgoldenrod;
    color: aliceblue;
    border: none;
    height: 50px;
    width: 160px;
    text-decoration: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.small-info{
    width: 100%;
    height: 71px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 1px;
}

.small-info .card{
    width: 33%;
    height: 50px;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 0.5px solid;
    border-top: 0.01px solid;
    border-bottom: 0.01px solid;
    border-color: aliceblue;
    

    
}

.card i{
    color: darkgoldenrod;
    font-size: larger;
}

.card p{

    font-size: larger;
    font-weight: 400;
    padding-left: 10px;
    color: aliceblue;
}

.row {
    margin: 0 -5px;  
    padding-top: 40px;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: rgb(35, 34, 34);
    border: none;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.column {
    float: left;
    width: 80%;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    
}


.props {
    
    width: 100%;
    justify-content: center;
    
    
}

.prop-card {
    width: 100%;
    height: 400px;
    
    overflow: hidden;
    cursor: pointer;
    position: relative;
    color: aliceblue;
    box-shadow: 0 10px 30px 5px rgba(0, 0, 0, 0.2);

}
.prop-card img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
    transition: opacity .2s ease-out;
}

.prop-card h2 {
    position: absolute;
    inset: auto auto 30px 30px;
    margin: 0;
    transition: inset .3s .3s ease-out;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    color: aliceblue;
}

.prop-card p {
    position: absolute;
    opacity: 0;
    max-width: 80%;
    transition: opacity .3s ease-out;
}

.prop-card p {
    inset: auto auto 80px 30px;
    color: aliceblue;
}

.prop-card a {
    color: aliceblue;
    text-decoration: none;
}



.prop-card:hover h2 {
    inset: auto auto 220px 30px;
    transition: inset .3s ease-out;
}

.prop-card:hover p {
    opacity: 1;
    transition: opacity .5s .1s ease-in;
}

.prop-card:hover img {
    transition: opacity .3s ease-in;
    opacity: .5;
}



.material-symbols-outlined {
vertical-align: middle;
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-3270px);
        transform: translateX(-3270px);
    }
}
@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-3270px);
        transform: translateX(-3270px);
    }
}
.slider {
    background: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.slider::before, .slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}
.slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}
.slider::before {
    left: 0;
    top: 0;
}
.slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
    display: flex;
    width: 7000px;
}
.slider .slide {
    height: 100px;
    width: 100%;
}

.footer{
    width: 100%;
    height: 300px;
    background-color: #333
}

.name-cont{
    width: 100%;
    color: aliceblue;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: xx-large;
    font-weight: 1000;
    margin-top: 1px;
}

.det-cont{
    width: 100%;
    height: 150px;
    display: flex;
    align-items: flex-start;
}

.details{
    width: 50%;
    height: 150px;
}

.details p, .details a{
    color: aliceblue;
    font-size: larger;
}

.details a{
    text-decoration: none;
    padding-left: 30px;
    
    display: block;
    float: left;
    clear: left;
    padding-bottom: 10px;
}

.details p{
    padding-left: 10px;
}

.details i{
    color: darkgoldenrod;
    width: 500px;
    display: flex;
    align-items: flex-start;
    padding-left: 30px;
}

.details i p{
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; 
    font-weight: 100;
    position: relative;
    top: -2px;
}

.social-cont{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-items: center;
    
}

.socials {
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials a{
    font-size: x-large;
    padding-left: 25px;
    color: darkgoldenrod;
}


