*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    display: block;
    color: #25797c;
}
li {
    list-style: none;
    transition: all 0.3s ease;
}
li:hover {
    opacity: 0.6;
}
ul {
    padding: 0;
}
html {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 1.6;
    color: #25797c;
}
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}
.burger_menu {
    width: 26px;
    cursor: pointer;
    display: none;
}
.burger_menu div {
    width: 26px;
    height: 3px;
    background-color: #25797c;
    margin: 6px 0;
}
.header {
    margin: 36px 0;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    justify-content: start;
    gap: 8px;
    align-items: center;
}
.header_logo img {
    width: 36px;
}
.header_menu_list {
    display: flex;
    align-items: center;
    gap: 16px;
}


.main {
    background-image: url("../img/bg_green.jpg");
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 460px;
}
.main .container,
.advantage .container,
.about .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 144px 16px;
}
.main_content {
    width: 50%;
}
.main_header {
    font-family: "Ubuntu", sans-serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 72px;
}
.main_description {
    font-size: 20px;
    font-weight: 500;
}
.main_img {
    height: 100%;
    width: 50%;
}
.main_img img {
    width: 100%;
    height: auto;
}

.advantage {
    background-color: #e5e5e5;
}
.advantage_img {
    width: 50%;
}
.advantage_img img {
    width: 100%;
    height: auto;
}
.advantage_content {
    width: 50%;
}
.advantage_content_title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}
.advantage_content_item {
    font-size: 16px;
    color: #25797c;
    margin-bottom: 16px;
}
.advantage_content_item span {
    font-weight: 700;
    font-size: 18px;
}

.about {
    background-color: #25797c;
    color: #fff;
}
.about_img {
    width: 50%;
}
.about_img img {
    width: 100%;
    height: auto;
}
.about_content {
    width: 50%;
}
.about_content_title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}
.about_content_description {
    font-size: 16px;
}

.footer {
    padding: 36px 0;
    background-color: #333333;
    color: #fff;
}
.footer .container {
    display: flex;
    flex-direction: column;

}
.footer_info {
    display: flex;
    justify-content: space-between;
}



.footer_info_menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer_info_contact-address {
    margin-bottom: 16px;
}
.footer_info_contact a {
    margin-bottom: 16px;
    color: #fff;
}
.footer_info_menu {
    display: flex;
    gap: 16px;
}
.footer_copy {
    text-align: center;
    margin: 36px 0 0;
    font-size: 14px;
}
.btn_wrapper {

}
.more_btn {
    color: #fff;
    background-color: #25797c;
    padding: 14px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: inline-block;
    margin-top: 32px;
    font-size: 16px;
    line-height: 1;
    transition: all 0.3s ease;
}
.more_btn.more_btn-white {
    background-color: #fff;
    color: #25797c;
}
.more_btn:hover {
    opacity: 0.6;
}

.privacy {
    padding: 90px 0;
}
.privacy p,
.privacy h2 {
    margin-bottom: 16px;
}
.privacy h1 {
    font-size: 42px;
}
.privacy li {
    list-style: disc;
    margin-left: 32px;
    margin-bottom: 12px;
}


.contact {
    padding: 60px 0 120px 0;
}
.contact h1 {
    font-size: 42px;
    margin-bottom: 60px;
}
.contact span {
    font-weight: 700;
}
.contact_content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 16px;
}