﻿.about-us-container{
    width:100%;
    height:100%;
    display:grid;
    margin-top:10%;
}

.about-us-layout{
    display:grid;

    
}

.about-us-cont{
    display:grid;
    grid-template-rows: 100px 1fr;
    align-items:center;
    gap: 15px;
    margin-top: 5%;
}

.about-us-header01 {
    height: 100px;
    width: 100%;
    color: #1d1d1b;
    display: flex;
    justify-content: center;
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform:uppercase;
}

   


.about-us-wrapper1{
    position:relative;
    top:0;
    width:100%;
    height:400px;
   
}

.about-us-wrapper1::before{
   content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/wallpaper2.jpg);
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: overlay;
    z-index: 1;
    background-size: cover;
    background-position: center;
     overflow:hidden;

}

.about-us-wrapper1-text{
    position:absolute;
    top:25%;
    left:18%;
    z-index:3;
    display:grid;
    grid-template-rows: 55px 1fr;
    gap:25px;
    width:850px;
    height:auto;
    overflow:hidden;
}

.about-us-wrapper1-text h3{
    font-size:30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
    border-bottom: 2px solid #ffd800;
    width:300px;
    animation: slideLeft 2s forwards;
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(500px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn{
    0% {
       
    }

    100% {
        opacity: 1;
    }
}

.about-us-wrapper1-text span{
    font-size: 18px;
    color: #DCDCDc;
    letter-spacing: 1px;
    background-color: rgba(0,0,0,0.5);
    padding:15px 10px;
    animation: fadeIn 2s forwards linear 2s;
    opacity:0;
}

.about-us-wrapper1-text span b{
    color:#ffd800;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
     text-transform:uppercase;

}

.about-us-main-content{
    width:100%;
    height:100%;
    display:grid;
    grid-template-rows: auto auto;
    overflow:hidden;
}

.about-us-main-container{
    width:100%;
    height:100%;
    display:grid;
    overflow:hidden;
}


.about-us-main-div{
    width:100%;
    height:100%;
    display:grid;
    grid-template-rows: 165px 1fr;
    gap: 15px;
    align-items:center;
    justify-content:center;
    padding:50px;
}

.about-us-main-div:first-child{
    border-right:2px solid #DCDCDC;
}


.about-us-icon-wrapper{
    height:100%;
    width:100%;
    display:flex;
    justify-content:center;
}

.about-us-icon-wrapper img{
    height:150px;
    width:150px;
    object-fit: cover;
}

.about-us-main-text-wrapper{
    height:100%;
    width:100%;
    display:grid;
    grid-template-rows:55px 1fr;

}

.about-us-main-text-wrapper #headerTextWrap{
    font-size: 25px;
    color:#696969;
    letter-spacing:1px;
    text-transform: capitalize;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
}

#headerTextWrap h2 {
    color: #d0b702;
    font-size: 30px;
    text-transform:uppercase;
    font-weight:600;
}

#headerMainTextWrapper {
    font-size: 15px;
    color: #1d1d1b;
    display:flex;
    flex-direction:column;
    gap: 10px;
    align-items:center;
    width: 500px;
    text-align:justify;
}

#headerMainTextWrapper ul{
    margin-left:15px;
   /* color: #808080;
    font-weight: bold;*/
}