﻿.header {
    position: absolute;
    width: 100%;
}

.landing-page {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    height: 100vh;
    width: 100%;
    position: relative;
}

.landing-page-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #F3F3F3;
}

.landing-page-left, .landing-page-right {
    position: relative;
}

.landing-page-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 410px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    align-items: center;
    justify-content: center;
}

.landing-page-image, .landing-page-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.landing-page-title {
    font-family: Mulish;
    font-weight: 700;
    font-size: 54px;
    line-height: 64px;
    letter-spacing: 1%;
    text-align: center;
    
}

.landing-page-left .landing-page-title {
    color: #1F1F1F;
}

.landing-page-right .landing-page-title {
    color: #fff;
}


.landing-page-button a {
    font-family: Mulish;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    padding: 16px 42px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.landing-page-left .landing-page-button a {
    border: 1px solid #FF0000;
    background: #FF0000;
    color: #FFFFFF;
}

.landing-page-right .landing-page-button a {
    border: 1px solid #FF0000;
    background: transparent;
    color: #FFFFFF;
}

@media only screen and (max-width: 767px)
{
    .landing-page-left, .landing-page-right {
        position: relative;
        height: 50vh;
    }

    .landing-page-content {
        width: 280px;
        max-width: 100%;
    }

    .landing-page {
        grid-template-columns: repeat(1,1fr);
    }

    .landing-page-title {
        font-size: 30px;
        line-height: 40px;
    }

    .landing-page-icon img {
        width: 50px;
        height: 50px;
    }

    .landing-page-button a {
        font-size: 16px;
        line-height: 24px;
        padding: 12px 24px;
    }

    .landing-page-logo img {
        width: 44px;
        height: auto;
    }

    .landing-page-logo {
        width: 65px;
        height: 65px;
    }
}