* {
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
*,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
    margin: 0;
}
input {
    outline: 0;
}
body {
    font-family: "Comfortaa";
    font-weight: 400;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}
.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}
.title {
    font-weight: 700;
    font-size: 39px;
    line-height: 130%;
    color: #000;
}
.logo {
    width: 200px;
    display: block;
    /* margin-right: 90px; */
}
.logo img {
    width: 100%;
}
.header {
    position: relative;
    padding: 35px 0 45px;
    background: url(../img/header-bkg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
}
.header .bkg {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    color: #fff;
    z-index: 2;
    position: relative;
}
.header_content {
    margin: 300px auto;
}
.header_title {
    font-weight: 700;
    font-size: 63px;
    line-height: 133%;
    letter-spacing: 0.01em;
    margin-bottom: 37px;
}
.header_text {
    font-style: italic;
    font-weight: 700;
    font-size: 30px;
    line-height: 150%;
    max-width: 671px;
    width: 100%;
}
.header_btn {
    background: 0 0;
    border: 0;
    outline: 0;
}
.activity {
    padding: 134px 0 165px;
    text-align: center;
}
.activity_text {
    margin: 0 auto;
    max-width: 560px;
    width: 100%;
    font-size: 20px;
    line-height: 155%;
}
.info {
    padding: 120px 0;
    background: #f2f2f2;
    text-align: center;
}
.info_cart {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}
.info_cart-item {
    background: #fff;
    border-radius: 24px;
    padding: 50px 35px;
    max-width: 345px;
    width: 100%;
    -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.info_cart-item_btn {
    display: block;
    margin: 25px auto 0;
    background: 0 0;
    border: 0;
    outline: 0;
    font-family: "Comfortaa";
    font-size: 15px;
    color: #07f;
    cursor: pointer;
    position: relative;
    -webkit-transition: color 0.25s ease;
    transition: color 0.25s ease;
}
.info_cart-item_btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: currentColor;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    transition:
        transform 0.25s ease,
        -webkit-transform 0.25s ease;
}
.info_cart-item_btn:hover {
    color: #004fe6;
}
.info_cart-item.open .info_cart-item_btn::after,
.info_cart-item_btn:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
}
.info_cart-item_menu {
    text-align: left;
    list-style: disc;
    margin-top: 15px;
    max-height: 165px;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease;
    transition: max-height 0.5s ease;
}
.info_cart-item_menu span {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.info_cart-item_menu-item {
    margin-bottom: 10px;
}
.info_cart-item:hover {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}
.info_cart-item.open {
    overflow: visible;
}
.info_cart-item.open .info_cart-item_menu {
    max-height: none;
}
.info_cart-item.open::after {
    display: none;
}
.info_cart-img {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    display: block;
}
.info_cart-title {
    margin: 30px 0 20px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
}
.info_cart-text {
    max-height: 240px;
    overflow: hidden;
    position: relative;
    font-size: 16px;
    line-height: 155%;
    text-align: left;
}
.team {
    display: none !important;
    padding: 150px 0;
}
.team .container {
    text-align: center;
}
.team_subtitle {
    max-width: 700px;
    width: 100%;
    margin: 39px auto 105px;
    font-size: 24px;
    line-height: 150%;
}
.team_menu {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.team_menu-name {
    margin: 19px auto 3px;
    font-weight: 700;
    font-size: 20px;
    line-height: 143%;
}
.team_menu-role {
    font-size: 14px;
    line-height: 155%;
    color: #7a7a7a;
}
.operate {
    padding: 134px 0 165px;
    text-align: center;
}
.operate_text {
    margin: 0 auto;
    max-width: 560px;
    width: 100%;
    font-size: 20px;
    line-height: 155%;
}
.clients {
    padding: 100px 0;
    background: #f2f2f2;
    text-align: center;
}
.clients_menu {
    margin-top: 35px;
}
.clients_menu-item {
    background: #fff;
    padding: 20px 35px;
    -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    margin-bottom: 15px;
}
.footer {
    padding: 135px 0;
    text-align: center;
}
.footer_address,
.footer_email {
    font-style: italic;
    font-weight: 700;
    font-size: 19px;
    line-height: 123%;
    color: #000;
}
.footer_address {
    font-size: 17px;
    line-height: 78%;
    margin: 44px auto;
}
.footer_phone {
    font-weight: 700;
    font-size: 15px;
    line-height: 155%;
    opacity: 0.6;
    color: #000;
}
@media (max-width: 1440px) {
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }
    .info_cart {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .header {
        height: auto;
    }
}
@media (max-width: 676px) {
    .header_content {
        margin: 100px auto;
    }
}
