*{
padding: 0;
}
.navbar{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    background-color: rgba(165, 99, 99, 0.226)!important;
    color: white;
}

.navbar ul li{
    list-style: none;
    display: inline-block;
    text-decoration: none;
    color: white;
    position: relative;
}
.navbar ul li::after{
    content: '';
    height: 3px;
    width: 0;
    background-color: white;
    position: absolute;
    left: 0;
    bottom: -.25px;
    transition: .5s;
}
.navbar ul li:hover::after{
    width: 100%;
}

ul{
    margin-left: 10%;
}

.carousel-item img{
    object-fit: cover;
    height: 400px;
    width: 100%;
}
.carousel-slide{
        width:100%;
        height:100%;
}
.card{
    margin-left: 30px;
    margin-right: 30px;
    text-align: justify;
}
.Ho{
    background-color: rgba(110, 9, 9, 0.603);
    color: white;
}
.copyrights{
    display: flex;
    column-gap:2%;
    background-color: rgba(173, 123, 123, 0.959);
    color: white;
}
.footer{
    background-color: rgba(170, 101, 101, 0.521);
    text-align: center;
    line-height: 10px;
    padding: 10px;
}

.preloader{
    background: rgba(255, 255, 255, 0.63);
    background-size: 20%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 1100;
    transition: opacity 2s, visibility 2s;
}
.preloader-hidden{
    opacity: 0;
    visibility: hidden;
}
.preloader::after{
    content: "";
    width: 75px;
    height: 75px;
    border-radius: 15px;
    animation: loading 2s ease infinite;
}
@keyframes loading {
    from{
        transform: rotate(0turn);
    }
    to{
        transform: rotate(1turn);
    }
}

.column {
  float: left;
}

.left {
  width: 18%;
}

.right {
  width: 75%;
}

/* Clear floats after the columns */
.row:after {
display: flex;
  content: "";
  display: table;
  clear: both;
}