* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
     width: 100%; 
    justify-content: center;
    align-items: center;
}
.container1 {
    width: 100%;
    height: 100%;
    display: flex; 
    max-width: 1820px; 
    align-items: center;  
    flex-wrap: wrap;
    justify-content: center;
}
.card1 {
    width: 100%;
    height: 230px;
    margin: 5px;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    cursor: default;
    transition: all 400ms ease;
    justify-content: center;
    display: flex; 
    align-items: center;
}
.card2 {
    width: 100%;
    height: 470px;
    margin: 5px;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    cursor: default;
    transition: all 400ms ease;
    align-items: center;
    display: flex;
}
.card1:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4) ;
    cursor: pointer;
}
.card2:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4) ;
    cursor: pointer;
}
.card1 img {
    width:100%;
    height: 900px;
    padding: 0;
    vertical-align: center;
    height:max-content;
}
.card2 img {
    width: 100%;
    height: 900px;
    padding: 0;
    vertical-align: baseline;
    height: max-content;
}
.img svg {
    vertical-align: middle;
}
.logo {
    position: absolute;
    top: 70px;
    left: 5%;
    width: 150px;
}