@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@import './normalize.css';

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: "Mulish", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #6B6B6B;
    background: #ffffff;
}
body.hidden {
    overflow: hidden;
}
.container {
    width: 100%;
    max-width: 1300px;
    padding: 0 10px;
    margin: 0 auto;
}
main {
    margin-top: 120px;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
}
header .header_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    width: 100%;
}
header .menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
header .menu ul li {
    list-style: none;
}
header .menu ul li a {
    text-decoration: none;
    color: rgba(0, 10, 67, 1);
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    transition: all 0.3s ease-out;
}
header .menu ul li a:hover {
    color: rgba(8, 29, 154, 1);
}

header .burger {
    position: relative;
    width: 52px;
    height: 38px;
    padding: 10px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}
header .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}
header .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
header .burger.active span:nth-child(2) {
    opacity: 0;
}
header .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
header .mobile-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
    text-align: center;
    transform: translate(0, -100%);
    padding: 25px 20px;
    flex-direction: column;
    gap: 25px;

}
header .mobile-menu .mob_contacts {
    padding-bottom: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 10, 67, 1);
}
header .mobile-menu .mob_contacts a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(0, 10, 67, 1);
    transition: all 0.3s ease;
}
header .mobile-menu .mob_contacts a:hover {
   opacity: 0.6;
}

header .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0 0 25px 0;
    border-bottom: 1px solid rgba(0, 10, 67, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

header .mobile-menu ul li {
    margin: 10px 0;
}

header .mobile-menu ul li a {
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    color: rgba(0, 10, 67, 1);
    transition: all 0.3s ease;
}
header .mobile-menu ul li a:hover {

}
header .mobile-menu.active {
    transform: translate(0, 50px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



header .lang {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}
header .lang a {
    text-decoration: none;
}
header .lang .lang_item {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    color: rgba(0, 10, 67, 1);
    text-transform: capitalize;
}
header .lang .switcher {
    position: relative;
    width: 72px;
    height: 36px;
    border: 1px solid rgba(0, 10, 67, 1);
    border-radius: 36px;
}
header .lang .switcher:before {
   content: '';
    width: 24px;
    height: 24px;
    background: rgba(0, 10, 67, 1);
    border-radius: 100%;
    position: absolute;
    top: 5px;
}
header .lang .switcher.left:before {
    left: 6px;
}
header .lang .switcher.right:before {
    right: 6px;
}

header .mob_lang {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
header .mob_lang a {
    text-decoration: none;
}
header .mob_lang .lang_item {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(0, 10, 67, 1);
}
header .mob_lang .switcher {
    position: relative;
    width: 43px;
    height: 24px;
    border: 1px solid rgba(0, 10, 67, 1);
    border-radius: 36px;
}
header .mob_lang .switcher:before {
    content: '';
    width: 15px;
    height: 15px;
    background: rgba(0, 10, 67, 1);
    border-radius: 100%;
    position: absolute;
    top: 4px;
}
header .mob_lang .switcher.left:before {
    left: 6px;
}
header .mob_lang .switcher.right:before {
    right: 6px;
}
.home_slider {
    width: 100%;
    height: 788px;
    position: relative;
}
.home_slider .banner_wrapper {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    flex-direction: column;
    max-height: 788px;
}
.home_slider .banner_wrapper .item_slide {
    overflow: hidden;
    position: absolute;
    top: 0;
    max-height: 788px;
    width: 100%;
    left: 0;
    display: flex;
    opacity: 0;
    transition: all 0.5s ease-out;
}
.home_slider .banner_wrapper .item_slide.active {
    opacity: 1;
}
.home_slider .banner_wrapper .item_slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home_slider .banner_wrapper .item_slide .text_banner {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.home_slider .banner_wrapper .item_slide .text_banner .name {
    font-size: 145px;
    font-weight: 900;
    line-height: 181px;
    color: rgba(255, 255, 255, 1);
}
.home_slider .banner_wrapper .item_slide .text_banner .desc {
    font-size: 64px;
    font-weight: 300;
    line-height: 102px;
    color: rgba(255, 255, 255, 1);
}
.about {
    margin-top: 50px;
}
.about .title {
    text-align: center;
    font-size: 72px;
    font-weight: 600;
    line-height: 90px;
    color: rgba(0, 10, 67, 1);
    margin-bottom: 50px;
}
.about .content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    justify-content: space-between;
}
.about .content .col1 {
    width: calc(100% / 12 * 7 - 16px);
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.about .content .col2 {
    width: calc(100% / 12 * 5 - 16px);
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.about .content .col2 img {
    width: 100%;
    height: 675px;
    object-fit: cover;
}
.about .content .col1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.about .content p {
    margin: 0;
    padding: 0;
    font-size: 30px;
    font-weight: 400;
    line-height: 37px;
    text-align: justify;
    color: rgba(0, 10, 67, 1);
}
footer {
    width: 100%;
    background: rgba(0, 10, 67, 1);
    color: #fff;
    margin-top: 100px;
}
footer .footer_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 128px;
    height: 120px;
}
footer .footer_wrapper.copy {
    height: 73px;
}
footer .footer_col_1 {
    width: 270px;
}
footer .footer_col_2 {
    width: 430px;
}
footer .footer_col_3 {
    width: 316px;
}

footer .address {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
}
footer .contacts {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
}
footer .contacts a {
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    line-height: 25px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease-out;
    color: rgba(255, 255, 255, 1);
}
footer .contacts a:hover {
    border-bottom: 1px solid #ffffff;
}
footer .copyright {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    color: rgba(255, 255, 255, 1);
}
footer .policy {
    text-align: left;
}
footer .policy a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease-out;
    color: rgba(255, 255, 255, 1);
}
footer .policy a:hover {
    border-bottom: 1px solid #ffffff;
}
footer .social ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}
footer .social ul li {
    list-style: none;
}
footer .social ul li a {
    text-decoration: none;
}
.breadcrumbs_banner .banner {
    width: 100%;
    height: 260px;
}
.breadcrumbs_banner .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.breadcrumbs_banner .breadcrumbs {
    margin-top: 25px;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: rgba(0, 10, 67, 1);
    display: inline-block;
}
.breadcrumbs_banner .breadcrumbs a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: rgba(0, 10, 67, 1);
}
.team {
    margin-top: 7px;
}
.team .title {
    text-align: center;
    font-size: 72px;
    font-weight: 600;
    line-height: 90px;
    color: rgba(0, 10, 67, 1);
    margin-bottom: 50px;
}
.team .team_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: stretch;
    justify-content: space-between;
}
.team .team_wrapper .item {
    flex: 1;
    display: flex;
    gap: 26px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px;
    background: rgba(249, 249, 251, 1);
    max-width: calc(50% - 16px);
}
.team .team_wrapper .item .avatar {
    width: 150px;
    height: 200px;
    overflow: hidden;
}
.team .team_wrapper .item .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team .team_wrapper .item .info {
    display: flex;
    gap: 26px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.team .team_wrapper .item .info .name {
    font-size: 32px;
    font-weight: 600;
    line-height: 35px;
    color: rgba(0, 10, 67, 1);
}
.team .team_wrapper .item .info .contacts {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.team .team_wrapper .item .info .contacts .position {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    color: rgba(0, 0, 0, 1);
}
.team .team_wrapper .item .info .contacts a.phone,
.team .team_wrapper .item .info .contacts a.email {
    text-decoration: none;
    border-bottom: 1px solid transparent ;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    color: rgba(0, 0, 0, 1);
    transition: all 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: 10px;
}
.team .team_wrapper .item .info .contacts a.phone:hover,
.team .team_wrapper .item .info .contacts a.email:hover {
    border-bottom: 1px solid rgba(0, 0, 0, 1) ;
}
.team .text {
    margin-top: 50px;
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    color: rgba(0, 10, 67, 1);
}
.services {
    margin-top: 7px;
}
.services .service_title {
    width: 100%;
    background: rgba(0, 10, 67, 1);
    text-align: center;
    color: rgba(255, 255, 255, 1);
    font-size: 60px;
    font-weight: 700;
    line-height: 75px;
    padding: 10px 0;
}
.services .brokerage {
    margin: 50px 0 100px 0;
}
.services .brokerage .description {
    color: rgba(0, 10, 67, 1);
    font-size: 30px;
    font-weight: 300;
    line-height: 38px;
}
.services .brokerage .description span{
    font-weight: 400;
}
.services .brokerage .wrapper_commodity {
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
}
.services .brokerage .wrapper_commodity .header_item {
    display: flex;
    align-content: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;

}
.services .brokerage .wrapper_commodity .icon {
    max-height: 130px;
    text-align: center;
}
.services .brokerage .wrapper_commodity .item {
    width: 296px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 10px 90px 10px;
    background: rgba(249, 249, 251, 1);
    border: 1px solid rgba(0, 10, 67, 1);
    cursor: pointer;
    transition: all 0.3s ease-out;
    position: relative;
}
.services .brokerage .wrapper_commodity .item .name {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 10, 67, 1);
    font-size: 40px;
    font-weight: 600;
    line-height: 35px;
    text-align: center;
}
.services .brokerage .wrapper_commodity .item .list  {
    text-align: left;
    width: 100%;
    opacity: 0;
    height: 0;
    transition: all 0.3s ease-out;
    visibility: hidden;
}
.services .brokerage .wrapper_commodity .item .list ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.services .brokerage .wrapper_commodity .item .list ul li {
    color: rgba(0, 10, 67, 1);
    font-size: 26px;
    font-weight: 400;
    line-height: 32px;
}
.services .brokerage .wrapper_commodity .item .arrow {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 10, 67, 1);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);

}
.services .brokerage .wrapper_commodity .item .arrow:before {
    content: '';
    width: 15px;
    height: 15px;
    border-right: 2px solid rgba(0, 10, 67, 1);
    border-top: 2px solid rgba(0, 10, 67, 1);
    transform: rotate(135deg);
    border-radius: 2px;
    margin-top: -5px;
    display: inline-flex;
    transition: all 0.3s ease-out;
}
.services .brokerage .wrapper_commodity .item:hover .arrow {
    background: rgba(0, 10, 67, 1);
}
.services .brokerage .wrapper_commodity .item:hover .arrow:before {
    border-right: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
}

.services .brokerage .wrapper_commodity .item.active .arrow {
    background: rgba(0, 10, 67, 1);
}
.services .brokerage .wrapper_commodity .item.active .arrow:before {
    border-right: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
    transform: rotate(-43deg);
    margin-top: 5px;
}
.services .brokerage .wrapper_commodity .item.active .list {
    opacity: 1;
    height: 270px;
    visibility: visible;
}
.services .analytics {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-top: 100px;
}
.services .analytics .description {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-direction: column;
    color: rgba(0, 10, 67, 1);
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    flex: 1;
    width: calc(100% / 2 - 16px);
}
.services .analytics .description p {
    margin: 0;
    padding: 0;
}
.services .analytics .wrapper_form {
    flex: 1;
    width: calc(100% / 2 - 16px);
}
.serviceForm {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    border: 1px solid rgba(0, 10, 67, 1);
    background-color: rgba(249, 249, 251, 1);
}
.serviceForm p {
   margin: 0;
   padding: 0;
}
.serviceForm .name_form {
    color: rgba(0, 10, 67, 1);
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
}
.serviceForm .field_group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.serviceForm .field_group label {
    color: rgba(0, 10, 67, 1);
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
}
.serviceForm .field_group label span {
    color: rgba(255, 0, 0, 1);
    font-size: 20px;
}
.serviceForm .field_group textarea,
.serviceForm .field_group input {
    padding: 8px 12px;
    color: rgba(0, 10, 67, 1);
    font-size: 24px;
    font-weight: 300;
    line-height: 30px;
}
.serviceForm .field_group textarea {
    height: 100px;
}
.serviceForm .field_group textarea::placeholder,
.serviceForm .field_group input::placeholder {
    color: rgba(95, 95, 97, 1);
    opacity: 0.6;
}
.serviceForm .field_group .input_description {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    width: 100%;
}
.serviceForm .field_group .input_description span {
    color: rgba(255, 0, 0, 1);
    font-size: 20px;
}
.serviceForm .field_group .error_field {
    color: rgba(255, 0, 0, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    display: none;
}
.serviceForm .field_group .agreement {
    color: rgba(0, 10, 67, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
}
.serviceForm .field_group .agreement a {
    color: rgba(0, 10, 67, 1);
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease-out;
}
.serviceForm .field_group .agreement a:hover {
    border-bottom: 1px solid rgba(0, 10, 67, 1);
}
.serviceForm .field_group input[type="submit"] {
    width: 100%;
    padding: 11px 0;
    background: rgba(0, 10, 67, 1);
    color: rgba(255, 255, 255, 1);
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    border: 1px solid rgba(0, 10, 67, 1);
    cursor: pointer;
    transition: all 0.3s ease-out;
}
.serviceForm .field_group input[type="submit"]:hover {
    background: rgba(255, 255, 255, 1);
    color: rgba(0, 10, 67, 1);
}
.text_policy .policy_title{
    width: 100%;
    background: rgba(0, 10, 67, 1);
    text-align: center;
    color: rgba(255, 255, 255, 1);
    font-size: 60px;
    font-weight: 700;
    line-height: 75px;
    padding: 10px 0;
    margin-top: 32px;
}
.text_policy .wrapper_policy {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.text_policy .wrapper_policy .block_text {
    color: rgba(0, 10, 67, 1);
    font-size: 30px;
    font-weight: 300;
    line-height: 38px;
    text-align: justify;
}
.text_policy .wrapper_policy .block_text .name {
    font-weight: 700;
}
.text_policy .wrapper_policy .block_text ul {
    margin: 0;
}

.about .content .col2 img.mob {
    display: none;
}
.about .content .col1 img.mob {
    display: none;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    width: 80%;
    max-width: 1060px;
    padding: 60px 0;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-content .name_modal{
    color: rgba(255, 255, 255, 1);
    font-size: 60px;
    font-weight: 700;
    line-height: 75px;
    text-align: center;
    background-color: rgba(0, 10, 67, 1);
    padding: 10px 0;
}

.modal-content .modal_desc{
    color: rgba(0, 10, 67, 1);
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    text-align: center;
    padding: 60px;
}

.close-btn {
    cursor: pointer;
    border: 1px solid rgba(0, 10, 67, 1);
    padding: 5px 50px;
    background-color: rgba(0, 10, 67, 1);
    color: rgba(255, 255, 255, 1);
    font-size: 30px;
    font-weight: 300;
    line-height: 38px;
    transition: all 0.3s ease-out;
}

.close-btn:hover,
.close-btn:focus {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(0, 10, 67, 1);
}

@media (max-width: 1280px) {
    .home_slider .banner_wrapper .item_slide .text_banner .name {
        font-size: 125px;
        line-height: 160px;
    }
    .home_slider .banner_wrapper .item_slide .text_banner .desc {
        font-size: 52px;
        line-height: 72px;
    }
}
@media (max-width: 1100px) {
    .home_slider .banner_wrapper .item_slide .text_banner .name {
        font-size: 105px;
        line-height: 140px;
    }
    .home_slider .banner_wrapper .item_slide .text_banner .desc {
        font-size: 42px;
        line-height: 62px;
    }
}
@media (max-width: 1024px) {
    header .menu ul {
        gap: 20px;
    }
    header .menu ul li a {
        font-size: 20px;
    }
    header .lang .lang_item {
        font-size: 20px;
    }
    footer .contacts a {
        font-size: 18px;
    }
    footer .footer_wrapper {
        gap: 40px;
    }
    footer .footer_col_1 {
        width: calc(100% / 3 - 20px);
    }
    footer .footer_col_2 {
        width: calc(100% / 3 - 20px);
    }
    footer .footer_col_3 {
        width: calc(100% / 3 - 20px);
    }
    footer .address {
        font-size: 16px;
        line-height: 21px;
    }
    .about .content p {
        font-size: 24px;
        line-height: 30px;
    }
    .home_slider .banner_wrapper .item_slide {
        height: 600px;
    }
    .home_slider {
        height: 600px;
    }

    .team .team_wrapper .item .info .name {
        font-size: 20px;
        font-weight: 500;
        line-height: 20px;
    }
    .team .team_wrapper .item .info {
        gap: 8px;
    }
    .team .team_wrapper .item .info .contacts {
        gap: 8px;
    }
    .team .team_wrapper .item .info .contacts .position {
        font-size: 14px;
        line-height: 18px;
    }
    .team .team_wrapper .item .info .contacts a.phone,
    .team .team_wrapper .item .info .contacts a.email {
        font-size: 12px;
        line-height: 12px;
        gap: 5px;
    }
    .team .team_wrapper .item .info .contacts a.phone svg,
    .team .team_wrapper .item .info .contacts a.email svg {
       width: 15px;
        height: 15px;
    }
    .team .team_wrapper .item .avatar {
        width: 150px;
        height: 150px;
    }
}
@media (max-width: 768px) {
    .home_slider .banner_wrapper .item_slide .text_banner .name {
        font-size: 38px;
        line-height: 48px;
    }
    .home_slider .banner_wrapper .item_slide .text_banner .desc {
        font-size: 19px;
        line-height: 30px;
    }
    .home_slider .banner_wrapper .item_slide {
        height: 297px;
    }
    .home_slider {
        height: 297px;
    }
    .about .title {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 25px;
    }
    .about .content {
        gap: 25px;
        flex-direction: column;
    }
    .about .content .col1 {
        width: 100%;
        gap: 25px;
    }
    .about .content .col2 {
        width: 100%;
        gap: 25px;
    }
    .about .content .col2 img {
        height: 300px;
    }
    .about .content p {
        font-size: 19px;
        line-height: 26px;
        text-align: center;
    }
    footer .footer_logo {
        display: none;
    }
    footer .footer_wrapper {
        gap: 20px;
    }
    footer .footer_wrapper.copy {
        height:auto;
        flex-wrap: wrap;
        padding-bottom: 25px;
    }
    footer .footer_wrapper.copy .footer_col_2 {
        order: 1;
        width: 100%;
    }
    footer .footer_wrapper.copy .footer_col_1 {
        order: 2;
        width: calc(100% / 2 - 20px);
    }
    footer .footer_wrapper.copy .footer_col_3 {
        order: 3;
        width: calc(100% / 2 - 20px);
    }
    footer .social ul {
        align-items: center;
        justify-content: flex-end;
    }
    .container {
        padding: 0 20px;
    }
    footer .footer_wrapper.top {
        height:auto;
        flex-wrap: wrap;
        padding: 25px 0 20px 0;
    }
    footer .footer_wrapper.top .footer_col_2 {
        order: 2;
        width: 100%;
    }
    footer .footer_wrapper.top .footer_col_1 {
        display: none;
    }
    footer .footer_wrapper.top .footer_col_3 {
        order: 1;
        width: 100%;
    }
    footer .contacts {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    footer .policy a {
        font-size: 14px;
        line-height: 18px;
    }
    footer .copyright {
        font-size: 14px;
        line-height: 18px;
    }
    footer .address {
        font-size: 14px;
        line-height: 18px;
    }
    footer .contacts a {
        font-size: 14px;
        line-height: 18px;
    }
    .about .content .col2 img.desc {
       display: none;
    }
    .about .content .col1 img.desc {
       display: none;
    }
    .about .content .col1 img {
       height: 300px;
    }
    .about .content .col2 img {
        width: 100%;
       height: auto;
    }
    .about .content .col2 img.mob {
       display: block;
    }
    .about .content .col1 img.mob {
       display: block;
    }
    header .menu {
        display: none;
    }
    header .lang {
        display: none;
    }
    header .header_wrapper .logo svg{
        height: 50px;
        width: auto;
    }
    header .header_wrapper {
        height: 50px;
    }
    main {
        margin-top: 50px;
    }
    footer {
        margin-top: 50px;
    }
    header .burger {
        display: flex;
    }
    header .mobile-menu {
        display: flex;
    }

    .team .team_wrapper {
        gap: 10px;
        flex-direction: column;
    }
    .team .team_wrapper .item {
        gap: 10px;
        padding: 12px 10px;
        background: rgba(249, 249, 251, 1);
        max-width: 100%;
    }
    .team .team_wrapper .item .avatar {
        width: 91px;
        height: 121px;
    }
    .team .text {
        margin-top: 25px;
        font-size: 19px;
        line-height: 25px;
        text-align: center;
    }
    .team .title {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 25px;
    }
    .breadcrumbs_banner .banner {
        width: 100%;
        height: 96px;
    }
    .services .service_title {
        font-size: 30px;
        font-weight: 6700;
        line-height: 38px;
    }
    .services .brokerage .description {
        font-size: 19px;
        line-height: 25px;
        text-align: center;
    }
    .services .brokerage .wrapper_commodity {
        gap: 10px;
        flex-direction: column;
    }

    .services .brokerage .wrapper_commodity .item {
        width: 100%;
        flex-direction: row;
        gap: 16px;
        padding: 20px;
    }
    .services .brokerage .wrapper_commodity .item .arrow {
        display: none;
    }
    .services .brokerage .wrapper_commodity .item .list {
        opacity: 1;
        height: auto;
        visibility: visible;
        flex: 1;
    }
    .services .brokerage .wrapper_commodity .header_item {
       flex: 1;
    }
    .services .brokerage .wrapper_commodity .item.active .list {
        opacity: 1;
        height: auto;
        visibility: visible;
    }
    .services .brokerage .wrapper_commodity .item .list ul li {
        font-size: 16px;
        line-height: 20px;
    }
    .services .brokerage .wrapper_commodity .item .list ul {
        gap: 5px;
    }
    .services .brokerage .wrapper_commodity .item .name {
        height: 70px;
        font-size: 26px;
        line-height: 32px;
    }
    .services .brokerage .wrapper_commodity .icon {
        max-height: 74px;
        text-align: center;
    }
    .services .brokerage .wrapper_commodity .icon svg {
        height: 74px;
        width: auto;
    }
    .services .analytics {
        gap: 40px;
        margin-top: 22px;
        flex-direction: column;
    }
    .services .analytics .description {
        gap: 25px;
        align-items: flex-start;
        flex-direction: column;
        font-size: 19px;
        line-height: 25px;
        flex: 1;
        width: 100%;
        text-align: center;
    }
    .services .analytics .wrapper_form {
        flex: 1;
        width: 100%;
    }
    .serviceForm .field_group label {
        font-size: 16px;
        font-weight: 500;
        line-height: 29px;
    }
    .serviceForm .field_group textarea, .serviceForm .field_group input {
        font-size: 16px;
        line-height: 20px;
    }
    .serviceForm .field_group .input_description {
        font-size: 11px;
        font-weight: 300;
        line-height: 20px;
    }
    .serviceForm .field_group .error_field {
        font-size: 11px;
        font-weight: 300;
        line-height: 20px;
    }
    .serviceForm {
        gap: 10px;
        padding: 20px 10px;
    }
    .serviceForm .field_group label span {
        font-size: 14px;
    }
    .serviceForm .field_group button {
        padding: 4px 0;
        font-size: 26px;
        line-height: 32px;
    }
    .serviceForm .field_group .agreement {
        text-align: center;
    }
    .text_policy .wrapper_policy .block_text {
        font-size: 19px;
        line-height: 24px;
    }
    .text_policy .policy_title {
        font-size: 30px;
        font-weight: 600;
        line-height: 38px;
        padding: 5px 0;
        margin-top: 25px;
    }
    .text_policy .wrapper_policy {
        margin-top: 30px;
    }
    .modal-content .name_modal {
        font-size: 24px;
        line-height: 30px;
        padding: 5px 0;
    }
    .modal-content {
        width: 90%;
        padding: 30px 0;
    }
    .modal-content .modal_desc {
        font-size: 19px;
        font-weight: 300;
        line-height: 23px;
        padding: 35px;
    }
    .close-btn {
        padding: 5px 40px;
        font-size: 26px;
        line-height: 32px;
    }
}