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

section {
    width: 100%;
    height: 100vh;
    display: flex;
}

.left--side {
    width: 50%;
    background: white;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}



h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: #1D2736;
    font-family: 'Roboto', sans-serif;
}

h3 {
    font-weight: 400;
    font-size: 15px;
    line-height: 136%;
    color: #66718E;
    margin-bottom: 28px;
    margin-top: 12px;
    font-family: 'Roboto', sans-serif;
}

button {
    background: #69A8E5;
    border-radius: 24px;
    border: none;
    display: flex;
    padding: 12px 44px;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s linear;
}
button:hover {
    background: #3794dd;
}

button a {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
}
button svg {
    width: 24px !important;
    height: 24p !important;
}
.right--side {
    position: relative;
    width: 50%;
    background: #1D2736;
    background-image: url(./image/Effects.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.pattern {
    width: 70%;
    position: absolute;
}

@media (max-width: 768px) {
    .right--side {
        display: none;
    }
    .left--side {
        width: 100%;
    }
}