:root {
    --primary: #15302B;
    --secondary: #A2845E;
    --white: #fff;
}

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

body {
    font-family: "Signika Negative", sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    color: var(--primary);
    background: #F4F4F4;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    margin-bottom: 0;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.btn {
    border-radius: 18px;
    min-width: 250px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    border: unset;
	padding: 6px 20px;
}

.btn-primary {
    color: var(--white);
    background-color: var(--secondary);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary:active{
    background-color: var(--secondary);
}

.btn-secondary {
    color: var(--primary);
    background-color: transparent;
    border: 2px solid var(--primary);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-secondary:active{
    background-color: transparent;
    color: var(--primary);
}

.section-title {
    font-size: 64px;
    font-weight: 500;
    line-height: 72px;
}

.section-subtitle {
    font-size: 32px;
    font-weight: 300;
    line-height: 42px;
    color: var(--secondary);
}

.container {
    max-width: 100%;
}
.page-hero-section {
    margin: 54px 12px 100px;
}
.page-hero-section .container{
    padding: 72px 300px;
    border-radius: 18px;
    color: var(--white);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}
.page-hero-section .container::before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(21, 48, 43, 0) -35.36%, rgba(21, 48, 43, 0.9) 50%);
    z-index: 1;
    border-radius: 18px;
}
.page-hero-section .container *{
    z-index: 2;
    position: relative;
}
.page-hero-section .section-title {
    margin-bottom: 12px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

@media (max-width: 1400px) {
    .section-title {
        font-size: 56px;
        line-height: 1.2;
    }
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 48px;
    }

    .section-subtitle {
        font-size: 28px;
        line-height: 1.3;
    }

    .btn {
        width: 270px;
        height: 48px;
        font-size: 20px;
        line-height: 30px;
    }
    .page-hero-section .container{
        padding: 72px 100px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 36px;
		text-align:center;
    }
	.section-subtitle{
		text-align:center;
	}
    .page-hero-section .container{
        padding: 120px 24px;
    }
	
}