@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');



h1,
h2,
h3,
h4,
h5,
h6{
    font-family: "Vollkorn";
}

p,
a,
li,
span,
button,
input,
textarea{
    font-family: "Raleway";
}


.container{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

img{
    max-width: 100%;
    height: auto;
    display: block;
}


a{
    text-decoration: none;
}

ul,
ol{
    list-style: none;
}

header.header_wrapper .container {
    display: flex;
}

header.header_wrapper .container img.logo_img {
    width: 100px;
}  
header.header_wrapper {
    padding: 20px 0;
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}

header.header_wrapper img.logo_img {
    object-fit: contain;
}

img.banner_bg {
    height: 875px;
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: bottom;
}
.banner_inner_wrap {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1400px;
    left: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    z-index: 1;
}
body.scrolled header.header_wrapper {
    background: #fff;
    z-index: 2;
    transition: all ease .5s;
}
section.banner_section {
    position: relative;
}
.banner_section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg, rgb(0 0 0 / 62%) 56%, transparent 50.2%);
    z-index: 0;
    pointer-events: none;
}
.banner_right_image img {
    width: 100%;
    display: block;
    max-width: 900px !important;
    position: absolute;
    right: -5%;
    padding-top: 25px;
}
.banner_inner_wrap h1.heading-title {
    margin: 0;
    font-size: 58px;
    color: #fff;
    line-height: 1;
    font-weight: 800;
    letter-spacing: normal;
    max-width: 700px;
    z-index: 1;
}

.banner_inner_wrap h1.heading-title span.accent {
    font-family: 'Vollkorn';
    color: #8a9676;
}
a.banner_button {
    background: #8a9676;
    color: #fff;
    padding: 15px 34px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #8a9676;
    transition: all 0.5s ease;
}

a.banner_button:hover {
    background: transparent;
    color: #8a9676;
    transition: all ease .5s;
}
.banner_content_wrap p {
    color: #fff;
    font-size: 17px;
    letter-spacing: normal;
    line-height: 1.6;
    margin-top: 10px;
    padding-bottom: 55px;
}