@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box
}
html{
    font-family: 'montserrat';

}
.section2{
    min-height: calc(100-50vh);
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: none;
}

.Content{
    width: 95%;
    max-width: 1900px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: none;
    padding-top: 2
    0px;
    padding-bottom: 10px;
}

.Contentleft{
    width: 100%;
    height: 500px;
    background: url(CONNECTOR_IMAGE.png) no-repeat center / cover;
    border-radius: 5px;
    margin: 30px;
    
}

.Contentleft::after {
    content:'';
    position: absolute;
    display: block;
    padding-top: calc(100% /(16/9))
}

.Contentright{
    width: 30%;
    height: fit-content;
    background-color: rgb(61, 57, 57);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-radius: 8px;
    color: white;
    margin-left:  -100px;
    margin: center;

}
.Contentright h1{
    font-size: 1.1rem;
    font-weight: lighter;
}
.Contentright p{
    font-size: 0.7rem;
    margin: 0px 0;
    padding-bottom: 5px;
    font-weight: 100;    
    line-height: 1rem;
}
.Contentright a{
    font-size: .7remx;
    text-decoration: none;
    text-transform: uppercase;
    background-color: white;
    color: black;
    padding: 5px 20px ;
    display: inline-block;
    letter-spacing: 2px;
}
.Linkbtn{
    display: inline-block;
    padding: 0.5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid green;
    border-radius: 2rem;
    line-height: 1;
    margin: 0 0.2rem;
    transition: .3s; 
    text-transform: uppercase;
}

@media only screen and (max-width: 800px)
{

.Content{
    flex-direction: column;
    width: 100%;
    margin-block-start: 10px;
}
.Contentleft{
    margin: 5px;
    width: 100%;
    height: 300px;
}
.Contentright{
    position: center;
    width: 88%;
    margin: 0;
    margin-top: -30px;
}

}
