.Hero {
	height: 75dvh;
	position: relative;
}

.Hero_image {
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
	top: 0;
	filter: brightness(0.5);
}

.Hero_content {
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	padding: 4rem;
}

.Hero::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	display: block;
	top: 0;
	background-color: #0116387d;
}

.Hero_overline {
	color: #83a256;
	text-transform: uppercase;
	letter-spacing: 20%;
	margin-bottom: 2rem;
	display: block;
}

.Hero_heading {
	color: #ffffff;
	margin-bottom: 4rem;
}

.Hero_description {
	color: #b8b8b8;
	margin-bottom: 4rem;
	display: block;
}

.Hero_buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}
.Hero_buttons a:hover {
    background-color: #032255;
    color: white;
    text-decoration: none;
}

.Hero_buttonPrimary, .Hero_buttonSecondary {
	padding: 1rem 2rem;
	text-transform: uppercase;
	color: white;
	font-weight: 500;
}
.Hero_buttonPrimary {
	background-color: #82A256;
}

.Hero_buttonSecondary {
	background-color: transparent;
	border: 1px solid white;
}

.Main, .Section {
    padding-block: 8rem;
}

.Main_heading {
    margin-bottom: 1rem;
}

.Main_subheading {
    font-size: 2rem;
    color: #83a256;
    line-height: 100%;
}


.Section.Carousel {
    background-color: #f2f7fc;
    position: relative;
    overflow: hidden; 
    padding: 4rem 0;
    padding-right: 5%; 
}

.Section.Carousel .Section_items {
    display: flex;
    flex-wrap: nowrap; 
    overflow: visible; 
    gap: 0;           
    padding: 4rem 2rem;
    box-sizing: content-box;
}


.Section.Carousel .Section_items::-webkit-scrollbar {
    scrollbar-width: none;
    display: none;
}


.Carousel_header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.Carousel_arrows {
    display: flex;
    gap: 1rem;
    position: relative;
}

.Section.Carousel .swiper-button-next,
.Section.Carousel .swiper-button-prev {
    position: relative; 
    top: auto;
    left: auto;
    right: auto;
    margin-top: 0;
    color: #83a256;
    background: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.Section.Carousel .swiper-button-next::after,
.Section.Carousel .swiper-button-prev::after {
    font-size: 1.2rem;
}

.Section.Carousel .swiper-pagination {
    position: relative; 
    bottom: 0;
    margin-top: 1rem;
    text-align: center;
}

.Section.Carousel .swiper-pagination-bullet {
    background: #83a256;
    width: 10px;
    height: 10px;
    opacity: 0.3;
}

.Section.Carousel .swiper-pagination-bullet-active {
    background: #83a256;
    width: 24px;
    border-radius: 5px;
    opacity: 1;
}

.Section.Carousel .Item {
    flex-shrink: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: auto;
}

.Section.Carousel .Item_image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.Section.Carousel .Item_content {
    padding: 2rem;
}


.Section.List {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    background-color: #f7f7f7;
}

.Section.List .Section_items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-inline: 2rem;
}

.Section.List .Item_image {
    display: none;
}

.Section.List .Section_content {
    display: flex;
    flex-direction: column;
}

.Section.List .Section_heading {
    color: #83a256;
    line-height: 125%;
    text-transform: none;
    font-weight: 500;
    margin-bottom: 4rem;
}

.Section.List .Item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e3e3e3;
}

.Footer {
    background-color: #011638;
    padding: 8rem 4rem;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
}

.Footer_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 15% 15%;
    border: 4px solid #83a256;
    box-sizing: border-box;
    filter: grayscale(1);
}

.Footer_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.Highlight_heading {
    font-size: 6rem;
    color: #83a256;
    font-weight: 900;
}

.Highlight_subheading {
    text-transform: uppercase;
    color: #dfe4ed;
    line-height: 100%;
}

.Footer_highlights {
    display: flex;
    gap: 25%;
}

.Highlight {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


@media (max-width: 800px) {
    .Section.List {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .Footer {
        position: relative;
        display: flex;
    }
    .Footer_image {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%);
    }
    .Footer_content {
        z-index: 1;
        backdrop-filter: blur(10px) brightness(0.5);
        padding: 4rem;
    }
    .Footer_highlights {
        justify-content: space-evenly;
        gap: revert;
    }
    .Highlight {
        align-items: center;
    }
}