*{
    margin:0;
    padding:0;
    box-sizing: border-box
}

body {
    background-color: #fff;
    font-family: Poppins, sans-serif;
    color:#626262;
    padding: 20px;
    width: 100vw;
    height: 100vh;
}

.logo-container{
    margin:20px 0px;
    display:flex;
    gap: 24px;
}

hr.vertical {
    height:100%;
    width:0;
    border:1px solid #8E8E8E;
}

.logo-smarttinvest{
    height: 32px;
    width: 156px; 
}

.logo-smarttbot{
    height: 32px;
    width: 124px;    
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height:90%
}

.title {
    font-weight: 500;
    font-size: 48px;
    line-height:57px;
}

.description {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
}

.description > p{
    margin-top:30px;
}

.justify-center {
    justify-self: center;
}
.justify-start {
    justify-self: start;
}

@media screen and (max-width: 700px) {
    .content {
        grid-template-columns: 1fr;
    }
    .image {
      display: none;
    }

    .logo-container{
        margin: 20px 0px;
    }
}

@media screen and (min-width: 1400px) {
    .logo-container{
        margin-left: 150px;
    }
}

@media screen and (min-width: 1700px) {
    .logo-container{
        margin-left: 200px;
    }
}

@media screen and (max-height: 730px) {
    .logo-container{
        margin-bottom: 30px;
    }
} 
