.main-banner {
    background-image: url('/wp-content/themes/main/assets/images/main-banner-bg.png');
    height: calc(100vh - 165px);
    display: flex;
    align-items: center;
}

.main-banner-body {
    display: flex;
    align-items: center;
}

.main-banner-text-field {
    width: 55%;
}

.main-banner-image {
    width: 45%;
}

.main-banner-text {
    padding: 25px 50px;
}

.main-banner-text>h1 {
    font-size: 42px;
    font-weight: 800;    
}

.main-banner-text>hr {
    height: 5px;
    background: #09ab9c;
    border: none;
    border-radius: 5px;
    width: 100px;
    margin: 25px 0;
}

.main-banner-text>p {
    font-size: 22px;
    font-weight: 600;
}

.main-banner-text>a {
    transition: 0.3s;
    display: block;
    width: 100%;
    max-width: 200px;
    background: #09ab9c;
    padding: 15px 25px;
    text-align: center;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.main-banner-text>a:hover {
    transition: 0.3s;
    background: #077c70;
}

.main-banner-image>img {
    width: 100%;
    border-radius: 5px;
    border: 2px solid white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

/* Mobile */

.mobile-main-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100vh - 90px);
    background: #f4f4f4;
    padding-top: 90px;
}

.mobile-main-banner-image {
    text-align: center;
}


.mobile-main-banner-image>img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
}

.mobile-main-banner-text {
    text-align: center;
}

.mobile-main-banner-text>h1 {
    color: #101010;
    font-weight: 800;
    font-size: 28px;
}

.mobile-main-banner-text>hr {
    height: 5px;
    background: #09ab9c;
    border: none;
    border-radius: 5px;
    width: 100px;
    margin: 0 auto;
}

.mobile-main-banner-text>p {
    font-size: 16px;
    color: #101010;
    font-weight: 500;
    margin-bottom: 35px;
}

.mobile-main-banner-text>a {
    transition: 0.3s;
    display: block;
    width: 100%;
    max-width: 200px;
    background: #09ab9c;
    padding: 15px 25px;
    text-align: center;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    margin: 0 auto;
}