/* content align */
.wrapper .left,
.wrapper .right {
    overflow: hidden;
    width: 100%;
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
 /* position of image */
.wrapper .image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left:0;
    transition: 0.25s ease all;
}
/* align images of background */
.KAS {
    display: flex;
    position: relative;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: #1f2123;
}

.wrapper .left .name h2{
    color:white;
    text-align: center;
}
 
.TBA {
    background: linear-gradient(45deg,#7689de ,#a9dec3);
    
    display: block;
}


/* text position */
.wrapper .name {
    position: relative;
    z-index: 10;
    text-align: center;
}
/* color of right side text */
.right{
    color: black;
}
.left{
    color: black;
}

.wrapper .name .button {
    background: black;
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1em;
    padding: 1em 2em;
    text-transform: uppercase;
    letter-spacing: 0.02;
    border-radius: 40px;
}
/* changing button color when hover */
.wrapper .right .name .button:hover {
    background: black;
    color:#7689de;
    transition: 0.5s ease all;
    
}

.wrapper .left .name .button:hover {
    background: black;
    color: aqua;
    transition: 0.5s ease all;
}

.wrapper .side::before {
    background: rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    content: '';
    display: block;
}

.wrapper .left:hover .image,
.wrapper .right:hover .image{
    transform: scale(1.1);
}



@media screen and (min-width:900px) {
    .wrapper {
        display: flex;
    }
    .wrapper .left,
    .wrapper .right {
        width: 50%;
        height: 100vh;
    }
}
