@charset "UTF-8";
*,
::after,
::before {
    box-sizing: inherit;
}
html {
    box-sizing: border-box;
    font-size: 10px;
}
body {
    font-family: "";
    margin: 0;
    color: #000;
    font-family: Tinos, serif;
    background: #fff;
}
.roboto {
    font-family: Roboto, sans-serif;
}
b {
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .s-title br,
    .t-title br,
    b br,
    li br,
    p br {
        display: none;
    }
}
img {
    max-width: 100%;
}
.fixed {
    position: fixed;
}
@-webkit-keyframes fly_el {
    0%,
    to {
        -webkit-transform: translateY(0) rotate(0.01deg);
        transform: translateY(0) rotate(0.01deg);
    }
    50% {
        -webkit-transform: translateY(-10%) rotate(0.01deg);
        transform: translateY(-10%) rotate(0.01deg);
    }
}
@keyframes fly_el {
    0%,
    to {
        -webkit-transform: translateY(0) rotate(0.01deg);
        transform: translateY(0) rotate(0.01deg);
    }
    50% {
        -webkit-transform: translateY(-10%) rotate(0.01deg);
        transform: translateY(-10%) rotate(0.01deg);
    }
}
a,
button {
    outline: 0;
    border: 0;
    cursor: pointer;
    background: 0 0;
    -webkit-transition: 220ms;
    transition: 220ms;
    text-decoration: none;
}
.footer__main-logo,
.header__logo {
    margin-right: 9.5%;
}
@media (max-width: 991px) {
    .footer__main-logo,
    .header__logo {
        margin-right: 4%;
    }
}
.footer__main-logo .logo,
.header__logo .logo {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    width: 266px;
}

@media screen and (max-width : 991px) {
    .footer__main-logo .logo, .header__logo .logo {
        width: 200px;
    }
}

.footer__main-logo .logo .logo__img,
.header__logo .logo .logo__img {
    /* box-shadow: 0 0 117px rgba(74, 173, 230, 0.16), inset 0 0 7px rgba(35, 96, 181, 0.27); */
}
.footer__main-logo .logo .logo__text,
.header__logo .logo .logo__text {
    margin-left: 2rem;
    color: #dce1f0;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.6rem;
    text-transform: uppercase;
}
.footer__main-logo .logo .logo__text .bold,
.header__logo .logo .logo__text .bold {
    font-weight: 700;
    letter-spacing: 0.68px;
}
@media screen and (max-width: 767px) {
    .footer__main-logo .logo .logo__text,
    .header__logo .logo .logo__text {
        font-size: 14px;
        -webkit-box-ordinal-group: 1;
        order: 0;
    }
}
.t-btn {
    font: 500 1.7rem Roboto, sans-serif;
    background: linear-gradient(-12deg, #144fa2 0, #58c3f4 100%) #74e5c7;
    box-shadow: 0 12px 13px rgba(61, 118, 196, 0.2), 0 5px 0 #184583, 0 0 117px rgba(74, 173, 230, 0.16), inset 0 0 7px rgba(35, 96, 181, 0.27);
    border-radius: 8px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-shadow: 0 2px 0 rgba(100, 99, 99, 0.39);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    white-space: nowrap;
    position: relative;
}
.t-title {
    margin: 0 0 4rem;
    text-align: center;
    font-size: 6.9rem;
    line-height: 7rem;
    color: #32353e;
    font-weight: 400;
    letter-spacing: 0.15rem;
}
.t-title span {
    display: block;
    color: #45a4e1;
    font-style: italic;
}
@media (max-width: 991px) {
    .t-title {
        font-size: 5rem;
        line-height: 5.2rem;
    }
}
@media screen and (max-width: 767px) {
    .t-title {
        font-size: 4.5rem;
        line-height: 5rem;
    }
}
.s-title {
    color: #32353e;
    font-size: 4rem;
    font-weight: 400;
    line-height: 4.1rem;
    letter-spacing: 0.22px;
    margin: 0;
}
.t-btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
}
.t-btn:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fa4923;
    opacity: 0;
    z-index: 1;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
}
.t-btn:after {
    opacity: 0;
    content: "";
    display: block;
    width: 25px;
    height: 300px;
    margin-left: 60px;
    background: #fff;
    position: absolute;
    left: -80px;
    top: -150px;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}
.t-btn:after {
    opacity: 1;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 50ms;
    animation-delay: 50ms;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@keyframes slideme {
    0% {
        left: -60px;
        margin-left: 0;
    }
    30% {
        left: 110%;
        margin-left: 80px;
    }
    100% {
        left: 110%;
        margin-left: 80px;
    }
}
@-webkit-keyframes slideme {
    0% {
        left: -60px;
        margin-left: 0;
    }
    30% {
        left: 110%;
        margin-left: 80px;
    }
    100% {
        left: 110%;
        margin-left: 80px;
    }
}
.modal__info {
    font: 500 17px/19.75px Roboto, sans-serif;
    position: absolute;
    right: 27%;
    top: 44%;
    color: #333;
    letter-spacing: 0.16px;
    z-index: 2;
}
@media screen and (max-width: 767px) {
    .modal__info {
        display: none;
    }
}
.modal__info .info__line {
    position: absolute;
    bottom: 140%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.modal__info .info__name {
    background: #fff;
    width: 180px;
    height: 32px;
    box-shadow: 0 12px 13px rgba(193, 193, 193, 0.2);
    border-radius: 5px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-bottom: -4px;
    position: relative;
    z-index: 2;
}
.modal__info .info__position {
    background: #fff;
    z-index: 1;
    width: 230px;
    height: 50px;
    border-radius: 5px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    font-weight: 400;
}
.ml-auto {
    margin-left: auto;
}
.mr-auto {
    margin-left: auto;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1160px;
    }
}
header {
    position: absolute;
    z-index: 6;
    top: 0;
    left: 0;
    width: 100%;
    padding: 4rem 0;
}
header .header__cont {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
}
@media screen and (max-width: 767px) {
    header .header__cont {
        flex-wrap: wrap;
        padding-left: 20px;
        padding-right: 20px;
    }
}
header .header__geo {
    margin-right: 18%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
}
@media (max-width: 991px) {
    header .header__geo {
        margin-right: 4%;
    }
}
@media screen and (max-width: 767px) {
    header .header__geo {
        display: none;
    }
}
header .header__geo .geo__icon {
    margin-top: -8px;
}
header .header__geo .geo__right {
    margin-left: 21px;
}
header .header__geo .geo__right .geo__title {
    font: 500 1.7rem/2.5rem Roboto, sans-serif;
    color: #cecece;
    letter-spacing: 0.51px;
    margin-bottom: 0.5rem;
}
header .header__geo .geo__right .geo__text {
    font: 500 1.9rem/2.6rem Roboto, sans-serif;
    color: #fefefe;
    letter-spacing: 0.54px;
}
header .header__geo .geo__right .geo__text:hover {
    color: #45a4e1;
}
header .header__phone {
    text-align: right;
}
@media screen and (max-width: 767px) {
    header .header__phone {
        display: none;
    }
}
header .header__phone .phone__text {
    font-family: Roboto, sans-serif;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
}
header .header__phone .phone__text .phone__number {
    white-space: nowrap;
    margin-left: 20px;
    color: #fefefe;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 2.5rem;
    letter-spacing: 0.72px;
}
header .header__phone .phone__btn {
    font: 500 1.7rem/2.5rem Roboto, sans-serif;
    margin-right: 2px;
    margin-top: 9px;
    margin-left: auto;
    color: #bcbcbc;
    letter-spacing: 0.51px;
    position: relative;
    padding: 0;
}
header .header__phone .phone__btn:hover {
    color: #fff;
}
header .header__phone .phone__btn:hover::before {
    background: #fff;
}
header .header__phone .phone__btn::before {
    content: "";
    position: absolute;
    right: 1px;
    left: 1px;
    bottom: 3px;
    height: 1px;
    background: #bcbcbc;
}
@media screen and (max-width: 767px) {
    header .header__phone .phone__btn {
        display: none;
    }
}
header .header__menu {
    margin-left: auto;
}
header .header__menu .menu__control {
    position: relative;
}
@media screen and (max-width: 767px) {
    header .header__menu .menu__control {
        position: static;
    }
}
header .header__menu #menu__open {
    width: 32px;
    cursor: pointer;
    position: relative;
}
header .header__menu #menu__open path {
    fill: #fff;
}
header .header__menu #menu__open:hover path {
    fill: #45a4e1;
}
@media screen and (max-width: 767px) {
    header .header__menu #menu__open {
        position: static;
    }
}
header .header__menu .menu__overlay {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 5;
    background: rgba(0, 0, 0, 0.85);
}
header .header__menu .menu__box {
    background: #fff;
    display: none;
    top: -10px;
    right: 0;
    position: absolute;
    padding: 40px 35px;
    border-radius: 8px;
    min-width: 270px;
    border: 1px solid #f5f5f5;
    z-index: 6;
}
@media screen and (max-width: 767px) {
    header .header__menu .menu__box {
        width: 100%;
        height: 105vh;
        position: fixed;
    }
}
header .header__menu .menu__box #menu__close {
    cursor: pointer;
    position: absolute;
    width: 16px;
    top: 19px;
    right: 19px;
}
header .header__menu .menu__box #menu__close path {
    fill: #000;
}
header .header__menu .menu__box #menu__close:hover path {
    fill: #ca3142;
}
@media screen and (max-width: 767px) {
    header .header__menu .menu__box #menu__close {
        right: 28px;
        top: 40px;
        width: 20px;
    }
}
header .header__menu .menu__box ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    align-items: flex-start;
}
@media screen and (max-width: 767px) {
    header .header__menu .menu__box ul {
        margin-top: 25vh;
    }
}
header .header__menu .menu__box ul .menu__list {
    display: inline-block;
}
header .header__menu .menu__box ul .menu__list .menu__link,
header .header__menu .menu__box ul .menu__list a {
    font: 500 17px/35px Roboto, sans-serif;
    cursor: pointer;
    color: #373737;
    letter-spacing: 0.52px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
}
@media screen and (max-width: 767px) {
    header .header__menu .menu__box ul .menu__list .menu__link,
    header .header__menu .menu__box ul .menu__list a {
        font-size: 30px;
        line-height: 50px;
    }
}
header .header__menu .menu__box ul .menu__list .menu__link.active,
header .header__menu .menu__box ul .menu__list .menu__link:hover,
header .header__menu .menu__box ul .menu__list a.active,
header .header__menu .menu__box ul .menu__list a:hover {
    color: #45a4e1;
}
header .header__menu .menu__box ul .menu__list .menu__link.active .link__icon,
header .header__menu .menu__box ul .menu__list .menu__link:hover .link__icon,
header .header__menu .menu__box ul .menu__list a.active .link__icon,
header .header__menu .menu__box ul .menu__list a:hover .link__icon {
    background: #45a4e1;
}
header .header__menu .menu__box ul .menu__list .menu__link.active .link__icon .img-svg path,
header .header__menu .menu__box ul .menu__list .menu__link:hover .link__icon .img-svg path,
header .header__menu .menu__box ul .menu__list a.active .link__icon .img-svg path,
header .header__menu .menu__box ul .menu__list a:hover .link__icon .img-svg path {
    fill: #fff;
}
header .header__menu .menu__box ul .menu__list .menu__link.active .link__icon .img-svg,
header .header__menu .menu__box ul .menu__list a.active .link__icon .img-svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
header .header__menu .menu__box ul .menu__list .menu__link .link,
header .header__menu .menu__box ul .menu__list a .link {
    flex-shrink: 0;
}
header .header__menu .menu__box ul .menu__list .menu__link .link__icon,
header .header__menu .menu__box ul .menu__list a .link__icon {
    background: #f2f2f2;
    display: none;
    margin-left: 7px;
    width: 19px;
    height: 17px;
    border-radius: 3px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-transition: 220ms;
    transition: 220ms;
}
header .header__menu .menu__box ul .menu__list .menu__link .link__icon .img-svg,
header .header__menu .menu__box ul .menu__list a .link__icon .img-svg {
    width: 9px;
    height: 9px;
}
header .header__menu .menu__box ul .menu__list .menu__link .link__icon .img-svg path,
header .header__menu .menu__box ul .menu__list a .link__icon .img-svg path {
    -webkit-transition: 220ms;
    transition: 220ms;
    fill: #373737;
}
header .header__menu .menu__box ul .menu__list .menu__dropdown {
    display: none;
    margin: 5px 0 0;
    padding-left: 2rem;
}
@media screen and (max-width: 767px) {
    header .header__menu .menu__box ul .menu__list .menu__dropdown {
        margin: 15px 0;
    }
}
header .header__menu .menu__box ul .menu__list .menu__dropdown li {
    margin-bottom: 1rem;
}
header .header__menu .menu__box ul .menu__list .menu__dropdown li a {
    font-size: 14px;
    line-height: 18px;
}
@media screen and (max-width: 767px) {
    header .header__menu .menu__box ul .menu__list .menu__dropdown li a {
        font-size: 20px;
        line-height: 24px;
    }
} /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
}
main {
    display: block;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
pre {
    font: 1em monospace, monospace;
}
a {
    background: 0 0;
}
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
samp {
    font: 1em monospace, monospace;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
img {
    border-style: none;
}
button,
input,
optgroup,
select,
textarea {
    font: 100%/1.15 inherit;
    margin: 0;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
details {
    display: block;
}
summary {
    display: list-item;
}
template {
    display: none;
}
[hidden] {
    display: none;
}
section .container {
    position: relative;
}
section .container .section__name {
    position: absolute;
    width: 10px;
    height: 10px;
    left: -5vw;
    top: 50%;
    color: #b4b4b4;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.18rem;
}
@media (max-width: 1199px) {
    section .container .section__name {
        left: -4vw;
    }
}
@media screen and (max-width: 800px) {
    section .container .section__name {
        display: none;
    }
}
section .container .section__name span {
    display: block;
    white-space: nowrap;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
#intro-section {
    overflow: hidden;
    background-color: #252628;
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
    position: relative;
}
#intro-section .intro__cont {
    padding-top: 18rem;
    padding-bottom: 50px;
    display: -webkit-box;
    display: flex;
    position: relative;
}
@media (max-width: 1400px) {
    #intro-section .intro__cont {
        -webkit-box-align: center;
        align-items: center;
        padding-top: 20rem;
    }
}
@media (min-width: 991px) and (max-height: 1010px) {
    #intro-section .intro__cont {
        min-height: 100vh;
        padding-bottom: 0;
    }
}
@media screen and (max-width: 767px) {
    #intro-section .intro__cont {
        padding-bottom: 70px;
    }
}
#intro-section .intro__scroll {
    position: absolute;
    left: -13vw;
    top: 58%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
#intro-section .intro__scroll:hover {
    cursor: pointer;
}
#intro-section .intro__scroll:hover span {
    color: #fff;
}
#intro-section .intro__scroll:hover .scroll__icon .img-svg path {
    fill: #fff;
}
#intro-section .intro__scroll .scroll__icon {
    margin-right: 6rem;
    position: relative;
}
#intro-section .intro__scroll .scroll__icon::before {
    content: "";
    position: absolute;
    width: 52px;
    height: 48px;
    border: 1px solid #36393e;
    border-radius: 50%;
    left: 53%;
    top: 47%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 220ms;
    transition: 220ms;
}
#intro-section .intro__scroll .scroll__icon::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 72px;
    border: 1px solid #474a4f;
    border-radius: 50%;
    left: 53%;
    top: 47%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 220ms;
    transition: 220ms;
}
#intro-section .intro__scroll .scroll__icon .img-svg {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    height: 43px;
    width: 31px;
}
#intro-section .intro__scroll .scroll__icon .img-svg path {
    fill: #8e96a2;
    -webkit-transition: 220ms;
    transition: 220ms;
}
#intro-section .intro__scroll span {
    -webkit-transition: 220ms;
    transition: 220ms;
    color: #aebbcc;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}
@media (min-width: 1921px) {
    #intro-section .intro__scroll {
        left: -300px;
    }
}
@media (max-width: 1280px) {
    #intro-section .intro__scroll {
        display: none;
    }
}
#intro-section .intro__left {
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    #intro-section .intro__left {
        flex-shrink: 1;
    }
}
#intro-section .intro__right {
    position: absolute;
    left: 47%;
    bottom: 0;
}
@media (max-width: 991px) {
    #intro-section .intro__right {
        left: 37%;
    }
}
@media screen and (max-width: 767px) {
    #intro-section .intro__right {
        display: none;
    }
}
#intro-section .intro__right .right__man {
    position: relative;
}
#intro-section .intro__right .right__man .man__info {
    position: absolute;
    width: 180px;
    top: 14rem;
    left: 45rem;
    color: #b6b6b6;
    font-size: 1.5rem;
    letter-spacing: 0.84px;
    line-height: 2.4rem;
    font-weight: 400;
}
#intro-section .intro__right .right__man .man__info .man__name {
    color: #fff;
    font-size: 2rem;
    letter-spacing: 0.64px;
    line-height: 2.9rem;
    margin-bottom: 5px;
}
#intro-section .intro__right .right__man .man__info .man__line {
    position: absolute;
    right: 115%;
    top: 45%;
}
@media (max-width: 1400px) {
    #intro-section .intro__right .right__man .man__info {
        top: 10rem;
    }
}
#intro-section .intro__right .right__man .man__img {
    margin-left: -90px;
    width: 68rem;
    max-width: none;
}
@media (max-width: 991px) {
    #intro-section .intro__right .right__man .man__img {
        margin: 9px;
        width: 55rem;
    }
}
#intro-section .intro__right .right__man .man__notice {
    position: absolute;
    width: 55rem;
    top: 15rem;
    left: 25rem;
}
#intro-section .intro__right .right__man .man__notice .notice__pencil {
    position: absolute;
    top: 28%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 12rem;
}
#intro-section .intro__right .right__man .man__notice .notice__text {
    max-width: 14rem;
    position: absolute;
    left: 48.5%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #373737;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
    text-align: center;
}
@media (max-width: 1400px) {
    #intro-section .intro__right .right__man .man__notice .notice__text {
        font-size: 2.2rem;
        line-height: 2.8rem;
    }
}
#intro-section .intro__right .right__man .man__notice .notice__text .bold {
    font-weight: 500;
}
#intro-section .intro__title {
    margin: 0;
    color: #fff;
    font-size: 6.2rem;
    font-weight: 400;
    line-height: 6.5rem;
    letter-spacing: 1.7px;
}
#intro-section .intro__title span {
    font-style: italic;
    color: #45a4e1;
}
@media screen and (max-width: 767px) {
    #intro-section .intro__title {
        font-size: 38px;
        line-height: 42px;
    }
    #intro-section .intro__title br {
        display: none;
    }
}
@media (max-width: 360px) {
    #intro-section .intro__title {
        font-size: 30px;
        line-height: 34px;
    }
}
#intro-section .intro__subtitle {
    margin-top: 2.3rem;
    color: #fffefe;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.8rem;
    letter-spacing: 0.2px;
    margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
    #intro-section .intro__subtitle {
        font-size: 15px;
        max-width: 90%;
        line-height: 22px;
    }
    #intro-section .intro__subtitle br {
        display: none;
    }
}
@media (max-width: 360px) {
    #intro-section .intro__subtitle {
        font-size: 13px;
    }
}
#intro-section .intro__btn {
    position: relative;
    display: inline-block;
}
#intro-section .intro__btn img {
    position: absolute;
    height: 137%;
    left: 92%;
    top: -29%;
    z-index: 1;
}
#intro-section .t-btn {
    width: 29rem;
    height: 10rem;
}
@media screen and (max-width: 767px) {
    #intro-section .t-btn {
        width: 230px;
    }
}
#intro-section .intro__trigger {
    display: inline-block;
    margin-left: 3rem;
    margin-top: 4rem;
    font-style: italic;
    opacity: 0.87;
    color: #ececec;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 2.22rem;
    letter-spacing: 0.34px;
    position: relative;
}
#intro-section .intro__trigger img {
    position: absolute;
    top: -33px;
    right: -72px;
    height: 8.7rem;
}
@media (max-width: 1400px) {
    #intro-section .intro__trigger img {
        top: -15px;
        right: -50px;
    }
}
@media (max-width: 767) {
    #intro-section .intro__trigger img {
        display: none;
    }
}
#faq-section {
    background: #fff;
    padding: 8.5rem 0 0;
}
#faq-section .section__name {
    top: 650px;
}
@media (max-width: 1400px) {
    #faq-section .section__name {
        top: 580px;
    }
}
#faq-section .t-title {
    margin: 0 0 65px;
    text-align: center;
}
#faq-section .t-title span {
    display: block;
}
#faq-section .faq__control {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    max-width: 75rem;
    margin: 0 auto 5rem;
}
@media screen and (max-width: 767px) {
    #faq-section .faq__control {
        justify-content: space-around;
    }
}
#faq-section .faq__control .faq__control-btn {
    font: 700 2.6rem/0.893 Roboto, sans-serif;
    color: #8b8b8b;
    position: relative;
    display: inline-block;
}
#faq-section .faq__control .faq__control-btn .img-svg {
    display: none;
    position: absolute;
    width: 2.6rem;
    height: 1.8rem;
    top: -2.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
#faq-section .faq__control .faq__control-btn .img-svg polygon {
    fill: #3a6bb7;
}
#faq-section .faq__control .faq__control-btn.active {
    color: #3a6bb7;
}
#faq-section .faq__control .faq__control-btn.active .img-svg {
    display: block;
}
#faq-section .faq__control .faq__control-btn:hover {
    color: #3a6bb7;
}
#faq-section .faq__tabs .faq__tab {
    display: none;
}
#faq-section .faq__tabs .faq__tab.active {
    display: block;
}
#faq-section .faq__tabs .faq__tab .faq__item {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 4rem 7rem;
    text-align: left;
    border-radius: 8px;
    -webkit-transition: 220ms;
    transition: 220ms;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto 100%;
    position: relative;
}
#faq-section .faq__tabs .faq__tab .faq__item:hover {
    box-shadow: 0 0 45.03px 11.97px rgba(235, 235, 235, 0.38);
    border-color: transparent;
}
@media screen and (max-width: 767px) {
    #faq-section .faq__tabs .faq__tab .faq__item {
        margin-bottom: 15px;
        padding: 4rem 6rem;
    }
    #faq-section .faq__tabs .faq__tab .faq__item:hover {
        box-shadow: none;
        border-color: #eaeaea;
    }
}
#faq-section .faq__tabs .faq__tab .faq__item .title {
    font: 700 2.1rem/3.2rem Roboto, sans-serif;
    color: #373737;
    margin-bottom: 0.9rem;
    position: relative;
}
#faq-section .faq__tabs .faq__tab .faq__item .title::before {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: #1657b3;
    border-radius: 50%;
    left: -2.5rem;
    top: 1rem;
}
#faq-section .faq__tabs .faq__tab .faq__item .text {
    font: 1.8rem/2.8rem Roboto, sans-serif;
    margin-bottom: 4rem;
}
#faq-section .faq__tabs .faq__tab .faq__item .link {
    font: 700 2rem Roboto, sans-serif;
    position: absolute;
    display: block;
    color: #3369b5;
    text-decoration: underline;
    bottom: 4rem;
}
#faq-section .faq__tabs .faq__tab .faq__item .link:hover {
    color: #264f88;
}
@media screen and (max-width: 767px) {
    #faq-section .faq__tabs .faq__tab .faq__item .link {
        position: static;
        display: inline-block;
    }
}
#faq-section .faq__tabs .faq__tab .faq__head {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    #faq-section .faq__tabs .faq__tab .faq__head {
        flex-wrap: wrap;
    }
}
#faq-section .faq__tabs .faq__tab .faq__head .faq__item {
    width: 49%;
}
@media screen and (max-width: 767px) {
    #faq-section .faq__tabs .faq__tab .faq__head .faq__item {
        width: 100%;
    }
}
#faq-section .faq__tabs .faq__tab .faq__bottom {
    margin-top: 2%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    #faq-section .faq__tabs .faq__tab .faq__bottom {
        flex-wrap: wrap;
        margin: 0;
        -webkit-box-align: start;
        align-items: flex-start;
    }
}
#faq-section .faq__tabs .faq__tab .faq__bottom .faq__item {
    padding: 3.5rem;
    padding-right: 2rem;
    padding-left: 4.5rem;
}
#faq-section .faq__tabs .faq__tab .faq__bottom .faq__item .title {
    font-size: 1.7rem;
    line-height: 2.5rem;
}
#faq-section .faq__tabs .faq__tab .faq__bottom .faq__item .title::before {
    width: 0.8rem;
    height: 0.8rem;
    top: 0.7rem;
    left: -2.3rem;
}
@media (max-width: 1400px) and (min-width: 1200px) {
    #faq-section .faq__tabs .faq__tab .faq__bottom .faq__item .title {
        font-size: 2rem;
    }
}
@media (max-width: 1400px) {
    #faq-section .faq__tabs .faq__tab .faq__bottom .faq__item .title {
        line-height: 2.3rem;
    }
}
#faq-section .faq__tabs .faq__tab .faq__bottom .faq__item .text {
    font-size: 1.7rem;
    line-height: 2.6rem;
    margin-bottom: 4rem;
}
#faq-section .faq__tabs .faq__tab .faq__bottom .faq__item .link {
    font-size: 1.8rem;
    left: 5rem;
    bottom: 3rem;
}
#faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__two {
    width: 49%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    #faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__two {
        width: 100%;
    }
}
@media (max-width: 360px) {
    #faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__two {
        flex-wrap: wrap;
    }
}
#faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__two .faq__item {
    width: 48%;
    padding-bottom: 9rem;
}
@media (max-width: 1400px) and (min-width: 1000px) {
    #faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__two .faq__item {
        padding-bottom: 90px;
    }
}
@media screen and (max-width: 767px) {
    #faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__two .faq__item {
        padding: 3rem 3rem 4rem;
    }
}
@media (max-width: 360px) {
    #faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__two .faq__item {
        width: 100%;
    }
}
#faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__two .faq__item .title {
    height: 7rem;
}
@media screen and (max-width: 767px) {
    #faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__two .faq__item .title {
        height: auto;
        margin-bottom: 10px;
        font-size: 1.9rem;
    }
    #faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__two .faq__item .title::before {
        display: none;
    }
}
#faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__two .faq__item .link {
    position: absolute;
    bottom: 4rem;
    left: 3rem;
}
#faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__square {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 49%;
}
@media screen and (max-width: 767px) {
    #faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__square {
        width: 100%;
    }
}
@media (max-width: 360px) {
    #faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__square {
        flex-wrap: wrap;
    }
}
#faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__square .faq__row {
    width: 100%;
    height: 47.5%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 360px) {
    #faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__square .faq__row {
        width: 100%;
        flex-wrap: wrap;
    }
}
#faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__square .faq__row .faq__item {
    padding-left: 6rem;
    flex-shrink: 0;
    width: 48%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    align-items: flex-start;
}
#faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__square .faq__row .faq__item .title {
    margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
    #faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__square .faq__row .faq__item {
        padding: 3rem 3rem 9rem;
    }
    #faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__square .faq__row .faq__item .title {
        font-size: 13px;
        margin-bottom: 1rem;
    }
    #faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__square .faq__row .faq__item .title::before {
        display: none;
    }
}
@media screen and (max-width: 360px) {
    #faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__square .faq__row .faq__item {
        width: 100%;
        flex-wrap: wrap;
    }
}
#faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__square .faq__row .faq__item .link {
    left: 6rem;
}
@media screen and (max-width: 767px) {
    #faq-section .faq__tabs .faq__tab.tab1 .faq__bottom .faq__square .faq__row .faq__item .link {
        position: absolute;
        left: 3rem;
        bottom: 3.5rem;
    }
}
#faq-section .faq__tabs .faq__tab.tab2 .faq__bottom .faq__item {
    width: 32%;
}
@media screen and (max-width: 767px) {
    #faq-section .faq__tabs .faq__tab.tab2 .faq__bottom .faq__item {
        width: 100%;
    }
}
#advantages-section {
    overflow: hidden;
    background: #fff;
    padding: 9rem 0 9rem;
}
@media (max-width: 1500px) {
    #advantages-section {
        font-size: 8px;
    }
}
@media screen and (max-width: 767px) {
    #advantages-section {
        padding-bottom: 4rem;
    }
}
#advantages-section .section__name {
    top: 83%;
}
#advantages-section .advantages__box {
    margin: 50px 0 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    #advantages-section .advantages__box {
        flex-wrap: wrap;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        margin: 80px 0 40px;
    }
}
@media screen and (max-width: 575px) {
    #advantages-section .advantages__box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center;
        margin: 40px 0 10px;
    }
}
#advantages-section .advantages__item {
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 30%;
    text-align: center;
    padding: 9rem 6rem 13rem;
    position: relative;
}
@media screen and (max-width: 767px) {
    #advantages-section .advantages__item {
        width: 230px;
        margin: 0 !important;
        padding: 7rem 6rem 9rem !important;
    }
    #advantages-section .advantages__item:nth-child(3) {
        margin: 0 auto !important;
    }
}
@media screen and (max-width: 767px) and (max-width: 575px) {
    #advantages-section .advantages__item {
        width: 320px;
        border-radius: 10px;
        box-shadow: 0 0 45px 12px rgba(235, 235, 235, 0.38);
        padding: 30px 40px !important;
        margin: 0 0 30px !important;
    }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
    #advantages-section .advantages__item {
        width: 100%;
    }
}
#advantages-section .advantages__item .item__number {
    position: absolute;
    left: 50%;
    top: -50px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #f6f6f6;
    font-size: 25.5rem;
    font-weight: 400;
    line-height: 6.4rem;
    letter-spacing: 1px;
    z-index: 1;
}
@media (max-width: 1200px) {
    #advantages-section .advantages__item .item__number {
        font-size: 20rem;
    }
}
@media (max-width: 991px) {
    #advantages-section .advantages__item .item__number {
        font-size: 15rem;
        top: 0;
    }
}
@media screen and (max-width: 767px) {
    #advantages-section .advantages__item .item__number {
        display: none;
    }
}
#advantages-section .advantages__item .item__img {
    z-index: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 185%;
    max-width: none;
}
@media (max-width: 991px) {
    #advantages-section .advantages__item .item__img {
        width: 200%;
    }
}
@media screen and (max-width: 575px) {
    #advantages-section .advantages__item .item__img {
        display: none;
        box-shadow: 0 0 45px 12px rgba(235, 235, 235, 0.38);
    }
}
#advantages-section .advantages__item .item__main {
    position: relative;
    z-index: 2;
}
#advantages-section .advantages__item .item__title {
    color: #45a4e1;
    font-size: 7.1em;
    font-weight: 400;
    line-height: 6.4rem;
    letter-spacing: 0.7px;
    margin: 0 0 1.9rem;
}
@media (max-width: 991px) {
    #advantages-section .advantages__item .item__title {
        font-size: 5rem;
        margin-bottom: 1rem;
    }
}
@media screen and (max-width: 767px) {
    #advantages-section .advantages__item .item__title {
        font-size: 40px !important;
        margin-bottom: 2rem;
    }
}
#advantages-section .advantages__item .item__subtitle {
    color: #373737;
    font-size: 1.9em;
    font-weight: 500;
    line-height: 2.45rem;
    letter-spacing: 0.57px;
    margin: 0 0 1.5rem;
}
@media screen and (max-width: 767px) {
    #advantages-section .advantages__item .item__subtitle {
        line-height: 2.6rem;
    }
    #advantages-section .advantages__item .item__subtitle br {
        display: none;
    }
}
#advantages-section .advantages__item .item__text {
    color: #373737;
    font-size: 1.6em;
    font-weight: 400;
    line-height: 2.45rem;
    letter-spacing: 0.49px;
}
#advantages-section .advantages__item:nth-child(1),
#advantages-section .advantages__item:nth-child(3) {
    margin-top: 10rem;
}
#advantages-section .advantages__item:nth-child(2) {
    padding: 8rem 5rem 11rem;
}
#advantages-section .advantages__item:nth-child(2) .item__title {
    font-size: 5.2rem;
    font-weight: 400;
    line-height: 4.7rem;
    letter-spacing: 0.23px;
}
@media (max-width: 991px) {
    #advantages-section .advantages__item:nth-child(2) .item__title {
        font-size: 4rem;
    }
}
#advantages-section .advantages__item:nth-child(2) .item__number {
    top: auto;
    bottom: -50px;
}
@media (max-width: 991px) {
    #advantages-section .advantages__item:nth-child(2) .item__number {
        bottom: 0;
    }
}
#resultat-section {
    background: #fbfbfb;
    padding: 8rem 0 6rem;
    position: relative;
    text-align: left;
}
@media screen and (max-width: 767px) {
    #resultat-section {
        margin: 40px 0 0;
        padding-bottom: 10rem;
    }
}
#resultat-section .t-title {
    text-align: left;
    margin: 0 0 3rem;
}
#resultat-section .t-title span {
    display: block;
}
#resultat-section .section__name {
    top: 75%;
}
#resultat-section .resultat__box {
    max-width: 60rem;
    padding-left: 5px;
}
@media screen and (max-width: 767px) {
    #resultat-section .resultat__box {
        padding-left: 0;
    }
}
#resultat-section .resultat__box .resultat__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    font-family: Roboto, sans-serif;
    margin-bottom: 3rem;
}
#resultat-section .resultat__box .resultat__item .step {
    z-index: 3;
    position: relative;
    border-radius: 50%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    box-shadow: inset 0 0 7px rgba(255, 255, 255, 0.41);
    background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#d8d8d8));
    background: linear-gradient(to bottom, #f8f8f8 0, #d8d8d8 100%);
    color: #32353e;
    flex-shrink: 0;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.15px;
}
#resultat-section .resultat__box .resultat__item .content {
    padding-top: 5px;
    margin-left: 3.5rem;
}
@media screen and (max-width: 767px) {
    #resultat-section .resultat__box .resultat__item .content {
        margin-left: 2.5rem;
    }
}
#resultat-section .resultat__box .resultat__item .content .title {
    color: #373737;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.6rem;
    letter-spacing: 0.46px;
    margin-bottom: 5px;
}
#resultat-section .resultat__box .resultat__item .content .text {
    padding-left: 5px;
    color: #373737;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 2.8rem;
    letter-spacing: 0.49px;
}
#resultat-section .resultat__box .resultat__item:first-child .step::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1px;
    height: 34rem;
    background: #eff0f2;
}
@media screen and (max-width: 767px) {
    #resultat-section .resultat__box .resultat__item:first-child .step::before {
        height: 42rem;
    }
}
#resultat-section .container {
    position: relative;
}
#resultat-section .resultat__inner {
    overflow: hidden;
}
#resultat-section .resultat__img {
    position: absolute;
    right: 0;
    top: -18%;
    top: -6vw;
    width: 52%;
}
@media (max-width: 991px) {
    #resultat-section .resultat__img {
        top: 0;
    }
}
@media screen and (max-width: 767px) {
    #resultat-section .resultat__img {
        display: none;
    }
}
#resultat-section .resultat__hex {
    width: 23rem;
    width: 20%;
    text-align: center;
    position: absolute;
    right: 16%;
    top: 60%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: Roboto, sans-serif;
    color: #373737;
}
@media (max-width: 991px) {
    #resultat-section .resultat__hex {
        top: 200px;
        right: 10%;
    }
}
@media screen and (max-width: 767px) {
    #resultat-section .resultat__hex {
        position: static;
        right: auto;
        top: auto;
        -webkit-transform: none;
        transform: none;
        width: 100%;
        text-align: left;
    }
}
#resultat-section .resultat__hex .hex__img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 63rem;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    #resultat-section .resultat__hex .hex__img {
        display: none;
    }
}
#resultat-section .resultat__hex .hex__content {
    z-index: 2;
    position: relative;
}
#resultat-section .resultat__hex .title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.3rem;
    letter-spacing: 0.57px;
    margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
    #resultat-section .resultat__hex .title {
        font-size: 18px;
        line-height: 22px;
    }
}
#resultat-section .resultat__hex .text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0.49px;
}
@media screen and (max-width: 767px) {
    #resultat-section .resultat__hex .text {
        font-size: 14px;
        line-height: 18px;
    }
    #resultat-section .resultat__hex .text br {
        display: none;
    }
}
#family-section {
    padding: 40px 0 11rem;
}
@media screen and (max-width: 767px) {
    #family-section {
        margin: 0;
        padding: 0;
    }
}
@media screen and (max-width: 767px) {
    #family-section .container {
        padding: 0;
    }
}
#family-section .section__name {
    top: 65%;
}
#family-section .family__box {
    border-radius: 11px;
    padding: 7rem 11rem;
    position: relative;
    background-position: -20px -50px;
    background-repeat: no-repeat;
    width: 100%;
}
@media screen and (max-width: 767px) {
    #family-section .family__box {
        padding: 8rem 3rem;
    }
}
@media (max-width: 575px) {
    #family-section .family__box {
        border-radius: 0;
    }
}
#family-section .family__box .family__btn {
    background: linear-gradient(-11deg, #1a5bb5 0, #58c3f4 100%) red;
    position: absolute;
    top: 29%;
    right: 38%;
    width: 12rem;
    height: 11.6rem;
    box-shadow: 0 12px 13px rgba(61, 118, 196, 0.2), 0 5px 0 #184583, 0 0 117px rgba(74, 173, 230, 0.16), inset 0 0 7px rgba(35, 96, 181, 0.27);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: 220ms;
    transition: 220ms;
}
#family-section .family__box .family__btn:hover {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}
#family-section .family__box .family__btn::before {
    background: #fff;
    content: "";
    position: absolute;
    top: -2.3rem;
    left: -2.3rem;
    right: -2.3rem;
    bottom: -2.3rem;
    border-radius: 50%;
    opacity: 0.15;
}
@media screen and (max-width: 767px) {
    #family-section .family__box .family__btn::before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }
}
#family-section .family__box .family__btn img {
    margin-right: -5px;
}
@media screen and (max-width: 767px) {
    #family-section .family__box .family__btn img {
        width: 20px;
    }
}
@media (max-width: 991px) {
    #family-section .family__box .family__btn {
        top: 9%;
        right: 21%;
    }
}
@media screen and (max-width: 767px) {
    #family-section .family__box .family__btn {
        width: 63px;
        height: 60px;
        right: 15%;
        top: 11%;
    }
}
#family-section .family__box .modal__info {
    right: 32%;
    top: 50%;
}
@media (max-width: 991px) {
    #family-section .family__box .modal__info {
        right: 13%;
        top: 30%;
    }
}
@media screen and (max-width: 767px) {
    #family-section .family__box .modal__info {
        display: block;
        right: 5%;
        top: 30%;
    }
}
#family-section .family__box .modal__info .info__name {
    width: 183px;
    height: 32px;
}
@media screen and (max-width: 767px) {
    #family-section .family__box .modal__info .info__name {
        font-size: 13px;
        width: 150px;
        height: 26px;
    }
}
#family-section .family__box .modal__info .info__position {
    width: 233px;
    height: 59px;
    padding-left: 17px;
}
@media (max-width: 991px) {
    #family-section .family__box .modal__info .info__position {
        display: none;
    }
}
#family-section .family__box .family__andrey {
    position: absolute;
    right: 10rem;
    bottom: 0;
    height: 95%;
}
@media (max-width: 991px) {
    #family-section .family__box .family__andrey {
        display: none;
    }
}
#family-section .family__box .family__quote {
    position: absolute;
    width: 21rem;
    left: 5.5rem;
    top: 4rem;
}
#family-section .family__box .family__pechat {
    position: absolute;
    top: -11.3rem;
    left: -9.5rem;
    width: 18.7rem;
    -webkit-animation: fly_el 3s ease-in-out infinite;
    animation: fly_el 3s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
    #family-section .family__box .family__pechat {
        display: none;
    }
}
#family-section .family__box .family__text {
    max-width: 41rem;
}
@media (max-width: 991px) {
    #family-section .family__box .family__text {
        max-width: 100%;
    }
}
#family-section .family__box .t-title {
    text-align: left;
    padding-left: 2.7rem;
    font-size: 6.4rem;
    color: #fff;
    line-height: 6.3rem;
    letter-spacing: 0.22px;
    font-weight: 400;
}
#family-section .family__box .t-title span {
    color: #fff;
}
@media (max-width: 991px) {
    #family-section .family__box .t-title {
        max-width: 300px;
    }
}
@media screen and (max-width: 767px) {
    #family-section .family__box .t-title {
        margin: 0 0 30px;
        padding: 0;
        max-width: 250px;
        font-size: 4.5rem;
        line-height: 5rem;
    }
}
#family-section .family__box .text {
    font: 400 1.9rem/2.8rem Roboto, sans-serif;
    color: #fff;
    letter-spacing: 0.49px;
    margin-bottom: 2rem;
}
#family-section .family__box .text.first {
    max-width: 33rem;
}
@media (max-width: 991px) {
    #family-section .family__box .text.first {
        max-width: 100%;
    }
}
#info-section {
    background: #fff;
    overflow: hidden;
    padding: 30px 0 30px;
}
#info-section .section__name {
    top: 210px;
}
#info-section .s-title {
    margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
    #info-section .s-title {
        margin-bottom: 10px;
    }
}
#info-section .info__box,
#info-section .info__line {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    #info-section .info__box,
    #info-section .info__line {
        flex-wrap: wrap;
    }
}
#info-section .info__box .t-title,
#info-section .info__line .t-title {
    text-align: left;
    margin-bottom: 3rem;
}
#info-section .info__box .info__img,
#info-section .info__line .info__img {
    width: 36%;
    margin-bottom: 3%;
    flex-shrink: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 45px 12px rgba(235, 235, 235, 0.38);
    border-radius: 10px;
}
@media screen and (max-width: 767px) {
    #info-section .info__box .info__img,
    #info-section .info__line .info__img {
        width: 100%;
        height: 250px;
        margin: 0;
        -webkit-box-ordinal-group: 1;
        order: 0;
        background-position: center left;
        box-shadow: 0 0 45px 12px rgba(235, 235, 235, 0.75);
    }
}
#info-section .info__box .info__text,
#info-section .info__line .info__text {
    width: 57%;
}
@media screen and (max-width: 767px) {
    #info-section .info__box .info__text,
    #info-section .info__line .info__text {
        width: 100% !important;
        -webkit-box-ordinal-group: 2;
        order: 1;
        margin-top: 20px !important;
    }
}
#info-section .info__box .info__text p,
#info-section .info__line .info__text p {
    font: 400 2rem/3.2rem Roboto, sans-serif;
    margin: 3.3rem 0;
    padding-left: 4rem;
    color: #373737;
    letter-spacing: 0.46px;
}
#info-section .info__box .last__p,
#info-section .info__line .last__p {
    padding-left: 6rem;
}
#info-section .info__box .info__ul,
#info-section .info__line .info__ul {
    font: 700 2.1rem/3rem Roboto, sans-serif;
    margin-left: 3rem;
    letter-spacing: 0.48px;
    list-style: none;
}
#info-section .info__box .info__ul li,
#info-section .info__line .info__ul li {
    margin-bottom: 4rem;
    color: #1758b2;
    position: relative;
}
#info-section .info__box .info__ul li::before,
#info-section .info__line .info__ul li::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #1758b2;
    border-radius: 50%;
    top: 10px;
    left: -26px;
}
#info-section .info__box .info__ul li span,
#info-section .info__line .info__ul li span {
    color: #373737;
}
#info-section .info__box.first,
#info-section .info__line.first {
    margin-bottom: 4rem;
}
#info-section .info__box.first .info__img,
#info-section .info__line.first .info__img {
    margin-top: 7rem;
    background-position: center right;
}
@media screen and (max-width: 767px) {
    #info-section .info__box.first .info__img,
    #info-section .info__line.first .info__img {
        display: none;
    }
}
#info-section .info__box.first p,
#info-section .info__line.first p {
    padding-left: 1.5rem;
}
#info-section .info__box.second,
#info-section .info__line.second {
    margin-top: 60px;
}
#info-section .info__box.third,
#info-section .info__line.third {
    margin-left: 4rem;
    padding: 10px 0 10rem;
    font-family: Roboto, sans-serif;
    -webkit-box-align: center;
    align-items: center;
}
@media screen and (max-width: 767px) {
    #info-section .info__box.third,
    #info-section .info__line.third {
        margin: 60px 0 0;
        padding: 0;
    }
}
#info-section .info__box.third .info__warning,
#info-section .info__line.third .info__warning {
    background: #376cb6;
    flex-shrink: 0;
    margin-right: 7.5rem;
    width: 41%;
    box-shadow: 0 0 45px 12px rgba(235, 235, 235, 0.38);
    border-radius: 8px;
    padding: 3.4rem 4.5rem;
    color: #fff;
}
@media (max-width: 991px) {
    #info-section .info__box.third .info__warning,
    #info-section .info__line.third .info__warning {
        margin-right: 30px;
    }
}
@media screen and (max-width: 767px) {
    #info-section .info__box.third .info__warning,
    #info-section .info__line.third .info__warning {
        width: 100%;
        margin-bottom: 30px;
    }
}
#info-section .info__box.third .info__warning .title,
#info-section .info__line.third .info__warning .title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 2.8rem;
    letter-spacing: 0.57px;
    display: block;
    margin-bottom: 4px;
}
#info-section .info__box.third .info__warning p,
#info-section .info__line.third .info__warning p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.49px;
}
@media (max-width: 991px) {
    #info-section .info__box.third .info__warning p,
    #info-section .info__line.third .info__warning p {
        font-size: 14px;
        line-height: 20px;
    }
}
#info-section .info__box.third .info__description,
#info-section .info__line.third .info__description {
    -webkit-box-flex: 1;
    flex-grow: 1;
    color: #373737;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}
@media (max-width: 991px) {
    #info-section .info__box.third .info__description,
    #info-section .info__line.third .info__description {
        font-size: 18px;
        line-height: 28px;
    }
}
@media screen and (max-width: 767px) {
    #info-section .info__box.third .info__description,
    #info-section .info__line.third .info__description {
        padding-left: 4.5rem;
        font: 400 2rem/3.2rem Roboto, sans-serif;
    }
}
@media screen and (max-width: 767px) {
    #info-section .info__box.fourth,
    #info-section .info__line.fourth {
        margin: 80px 0 60px;
    }
}
#info-section .info__box.fourth .info__img,
#info-section .info__line.fourth .info__img {
    margin-top: 3rem;
}
@media screen and (max-width: 767px) {
    #info-section .info__box.fourth .info__img,
    #info-section .info__line.fourth .info__img {
        margin: 0;
        background-position: center bottom;
    }
}
#info-section .info__box.fourth .info__text,
#info-section .info__line.fourth .info__text {
    width: 52%;
}
#info-section .info__line {
    display: block;
    margin: 6rem 0;
}
#info-section .info__line .info__text {
    width: 48%;
}
#info-section .info__line .info__text p {
    margin: 0;
}
#info-section .info__line.sixth {
    position: relative;
}
@media screen and (max-width: 767px) {
    #info-section .info__line.sixth {
        margin-top: 80px;
    }
}
#info-section .info__line.sixth .sixth__img {
    position: absolute;
    right: 0;
    width: 53rem;
    top: -6%;
}
@media (min-width: 1921px) {
    #info-section .info__line.sixth .sixth__img {
        left: 60vw;
        right: auto;
    }
}
@media (max-width: 991px) {
    #info-section .info__line.sixth .sixth__img {
        width: 30rem;
        top: 0;
    }
}
@media screen and (max-width: 767px) {
    #info-section .info__line.sixth .sixth__img {
        display: none;
    }
}
#info-section .info__line.sixth .s-title {
    letter-spacing: 0.15rem;
}
#info-section .info__line.sixth .info__text {
    width: 100%;
}
#info-section .info__line.sixth .info__ul {
    margin-top: 3rem;
    margin-left: 7.5rem;
}
#info-section .info__line.sixth .info__ul li {
    margin-bottom: 3rem;
}
#info-section .info__line.sixth .info__ul li::before {
    left: -35px;
}
#info-section .info__line.sixth .info__trigger {
    margin-top: 6rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    #info-section .info__line.sixth .info__trigger {
        flex-wrap: wrap;
    }
}
#info-section .info__line.sixth .info__trigger .trigger__text {
    width: 50%;
    margin-right: 5%;
}
@media screen and (max-width: 767px) {
    #info-section .info__line.sixth .info__trigger .trigger__text {
        width: 100%;
        margin: 0;
    }
}
#info-section .info__line.sixth .info__trigger .trigger__text p {
    color: #373737;
    font-size: 2rem;
    font-weight: 400;
    line-height: 3rem;
}
#info-section .info__line.sixth .info__trigger .trigger__block {
    background: #fff;
    max-width: 50rem;
    padding: 5rem 5rem 6rem;
    box-shadow: 0 0 45px 12px rgba(235, 235, 235, 0.38);
    border-radius: 8px;
    text-align: left;
    position: relative;
}
@media screen and (max-width: 767px) {
    #info-section .info__line.sixth .info__trigger .trigger__block {
        margin: 30px 0 0;
        padding: 30px 25px;
        text-align: center;
    }
}
#info-section .info__line.sixth .info__trigger .trigger__block .trigger__line {
    position: absolute;
    right: 100%;
    top: 50%;
}
#info-section .info__line.sixth .info__trigger .trigger__block .title {
    font: 700 2.2rem/2.8rem Roboto, sans-serif;
    margin-bottom: 2rem;
    color: #32353e;
    letter-spacing: 0.57px;
}
#info-section .info__line.sixth .info__trigger .trigger__block .title span {
    color: #45a4e1;
}
@media screen and (max-width: 767px) {
    #info-section .info__line.sixth .info__trigger .trigger__block .title {
        font-size: 17px;
        line-height: 22px;
    }
    #info-section .info__line.sixth .info__trigger .trigger__block .title span {
        display: block;
    }
}
#info-section .info__line.sixth .info__trigger .trigger__block .t-btn {
    max-width: 33rem;
    width: 100%;
    height: 8.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 3.1rem;
    letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
    #info-section .info__line.sixth .info__trigger .trigger__block .t-btn {
        margin: 20px auto 0;
        font-size: 14px;
        max-width: 100%;
    }
}
@media (max-width: 360px) {
    #info-section .info__line.sixth .info__trigger .trigger__block .t-btn {
        font-size: 12px;
    }
}
#partners-section {
    padding: 6rem 0 8rem;
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
}
@media (max-width: 1000px) {
    #partners-section {
        background-position: -400px top;
    }
}
@media screen and (max-width: 767px) {
    #partners-section {
        background: #f6f9fc !important;
        padding: 8rem 0;
    }
}
#partners-section .section__name {
    top: 70%;
}
#partners-section .t-title {
    text-align: left;
    font-size: 5.2rem;
    line-height: 5.2rem;
    margin-bottom: 5.5rem;
}
@media screen and (max-width: 767px) {
    #partners-section .t-title {
        font-size: 4.5rem;
        line-height: 5rem;
    }
}
#partners-section .partners__box {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    max-width: 78rem;
}
@media screen and (max-width: 767px) {
    #partners-section .partners__box {
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}
#partners-section .partners__box .partner {
    background: #fff;
    width: 23rem;
    height: 11.6rem;
    margin-right: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 0 45px 12px rgba(235, 235, 235, 0.38);
    border-radius: 10px;
    border: 1px solid #f5f5f5;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 15px;
}
@media screen and (max-width: 767px) {
    #partners-section .partners__box .partner {
        width: 48%;
        height: 24vw;
        margin: 0 0 4%;
    }
}
#partners-section .partners__box .partner:last-child img {
    max-width: 45%;
}
#portfolio-section {
    padding: 10rem 0;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    #portfolio-section {
        padding: 8rem 0 0;
    }
}
#portfolio-section .t-title {
    margin: 0 0 20px;
}
#portfolio-section #portfolio__arrow {
    position: absolute;
    top: -75px;
    left: 85%;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}
@media (max-width: 1400px) {
    #portfolio-section #portfolio__arrow {
        top: -60px;
    }
}
@media (max-width: 600px) {
    #portfolio-section #portfolio__arrow {
        position: static;
        display: -webkit-box;
        display: flex;
        margin-bottom: -30px;
    }
}
#portfolio-section #portfolio__arrow div {
    background: #e8e8e8;
    webkit-tap-highlight-color: transparent;
    outline: 0;
    overflow: hidden;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin: 0 1rem;
    width: 5.4rem;
    height: 5.4rem;
    border-radius: 50%;
    cursor: pointer;
}
#portfolio-section #portfolio__arrow div:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
#portfolio-section #portfolio__arrow div .img-svg {
    width: 2.2rem;
}
#portfolio-section #portfolio__arrow div.left {
    background: linear-gradient(to bottom, #f8f8f8 0, #d8d8d8 100%);
    box-shadow: 0 22px 44px 2px rgba(201, 201, 201, 0.23), inset 0 0 7px rgba(255, 255, 255, 0.41);
}
#portfolio-section #portfolio__arrow div.right {
    background: linear-gradient(-11deg, #1758b2 0, #58c3f4 100%);
    box-shadow: 0 0 117px rgba(74, 173, 230, 0.16), inset 0 0 7px rgba(35, 96, 181, 0.27);
}
#portfolio-section #portfolio__arrow div.right .img-svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
#portfolio-section #portfolio__arrow div.right .img-svg path {
    fill: #fff;
}
#portfolio-section .portfolio__container {
    position: relative;
    height: 60rem;
}
@media (max-width: 600px) {
    #portfolio-section .portfolio__container {
        height: auto;
    }
}
#portfolio-section .portfolio__container #portfolio__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 135%;
    height: 100%;
    margin: 0 -40px;
}
@media (max-width: 1500px) {
    #portfolio-section .portfolio__container #portfolio__slider {
        width: 150% !important;
    }
}
@media (max-width: 1200px) {
    #portfolio-section .portfolio__container #portfolio__slider {
        width: 130% !important;
    }
}
@media (max-width: 991px) {
    #portfolio-section .portfolio__container #portfolio__slider {
        width: 170% !important;
        margin: 40px -20px;
    }
}
@media (max-width: 767px) {
    #portfolio-section .portfolio__container #portfolio__slider {
        width: 200% !important;
    }
}
@media (max-width: 600px) {
    #portfolio-section .portfolio__container #portfolio__slider {
        position: static;
        left: auto;
        top: auto;
        width: auto !important;
        height: auto;
        margin: 30px -20px;
    }
}
#portfolio-section .item-wrapper {
    outline: 0;
    position: relative;
    opacity: 0.53;
}
#portfolio-section .item-wrapper.slick-current {
    opacity: 1;
}
@media (max-width: 600px) {
    #portfolio-section .item-wrapper {
        opacity: 1;
    }
}
#portfolio-section .item {
    background: #fff;
    margin: 40px;
    box-shadow: 0 0 40px 12px rgba(235, 235, 235, 0.38);
    border-radius: 10px;
    padding: 4rem 4.5rem 7rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
@media (max-width: 991px) {
    #portfolio-section .item {
        margin: 40px 20px;
        box-shadow: 0 0 20px 12px rgba(235, 235, 235, 0.38);
    }
}
@media (max-width: 600px) {
    #portfolio-section .item {
        margin: 30px 20px;
        flex-wrap: wrap;
    }
}
#portfolio-section .item .user {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    margin-bottom: 3.5rem;
}
#portfolio-section .item .user__img {
    border-radius: 50%;
    width: 9rem;
    height: 9rem;
    background-color: #e8e8e8;
    margin-right: 2.5rem;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}
@media (max-width: 600px) {
    #portfolio-section .item .user__img {
        width: 50px;
        height: 50px;
        background-size: 20px;
    }
}
#portfolio-section .item .user__name {
    font: 700 1.8rem Roboto, sans-serif;
    color: #373737;
    letter-spacing: 0.54px;
}
@media (max-width: 600px) {
    #portfolio-section .item .user__name {
        font-size: 2rem;
    }
}
#portfolio-section .item .title {
    font: 700 2rem/2.5rem Roboto, sans-serif;
    color: #373737;
    letter-spacing: 0.49px;
    margin-bottom: 0.8rem;
}
#portfolio-section .item .title.title2 {
    margin: 0.7rem 0 1rem;
}
#portfolio-section .item .title.title3 {
    margin-top: 2.5rem;
}
#portfolio-section .item .text {
    font: 400 1.8rem/2.5rem Roboto, sans-serif;
    color: #625656;
    letter-spacing: 0.42px;
}
#portfolio-section .item .left {
    width: 45%;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    #portfolio-section .item .left {
        width: 100%;
    }
}
#portfolio-section .item .right {
    width: 45%;
    padding-top: 2rem;
    text-align: center;
}
@media (max-width: 600px) {
    #portfolio-section .item .right {
        width: 100%;
        padding: 30px 0 0;
    }
}
#portfolio-section .item .right .title {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 3.2rem;
    letter-spacing: 0.49px;
}
#portfolio-section .item .right .img {
    margin-top: 2rem;
    box-shadow: 0 0 45px 12px rgba(235, 235, 235, 0.38);
    border-radius: 10px;
    display: block;
    margin: 3rem auto 0;
}
@media (max-width: 600px) {
    #portfolio-section .item .right .img {
        width: 80%;
    }
}
@media (max-width: 360px) {
    #portfolio-section .item .right .img {
        width: 100%;
    }
}
#portfolio-section .item .right .img img {
    height: 42rem;
    margin: 0 auto;
}
#trigger-section {
    overflow: hidden;
    padding: 4rem 0 9rem;
}
@media screen and (max-width: 767px) {
    #trigger-section {
        padding-top: 0;
    }
}
#trigger-section .section__name {
    top: 80%;
}
#trigger-section .trigger__box {
    background: #fff;
    padding: 5rem 12rem 8.5rem;
    margin: 0 auto;
    max-width: 93rem;
    box-shadow: 0 0 45px 12px rgba(235, 235, 235, 0.38);
    border-radius: 10px;
    text-align: center;
    position: relative;
}
@media screen and (max-width: 767px) {
    #trigger-section .trigger__box {
        padding: 8rem 2rem;
    }
}
#trigger-section .trigger__box .trigger__name {
    opacity: 0.36;
    color: #efeeed;
    font-size: 20rem;
    font-weight: 400;
    letter-spacing: 4px;
    position: absolute;
    top: 31%;
    -webkit-transform: rotate(90deg) translateY(-50%);
    transform: rotate(90deg) translateY(-50%);
    right: -20rem;
    z-index: -1;
}
@media screen and (max-width: 767px) {
    #trigger-section .trigger__box .trigger__name {
        display: none;
    }
}
#trigger-section .trigger__box .trigger__img {
    left: 4rem;
    bottom: 0;
    position: absolute;
    width: 33rem;
}
@media screen and (max-width: 767px) {
    #trigger-section .trigger__box .trigger__img {
        width: 50%;
        left: -50px;
    }
}
#trigger-section .trigger__box .t-title {
    letter-spacing: 0.22px;
    font-size: 5.2rem;
    font-weight: 400;
    line-height: 5.2rem;
    margin: 0;
}
@media screen and (max-width: 767px) {
    #trigger-section .trigger__box .t-title {
        font-size: 30px;
        line-height: 32px;
    }
    #trigger-section .trigger__box .t-title span {
        display: inline;
    }
}
#trigger-section .trigger__box .subtitle {
    font: 400 1.9rem/2.9rem Roboto, sans-serif;
    margin: 4rem 0;
    color: #373737;
    letter-spacing: 0.49px;
}
@media screen and (max-width: 767px) {
    #trigger-section .trigger__box .subtitle {
        font-size: 2.2rem;
    }
    #trigger-section .trigger__box .subtitle br {
        display: none;
    }
}
#trigger-section .trigger__box .t-btn {
    box-shadow: 0 12px 13px rgba(61, 118, 196, 0.2), 0 5px 0 #184583, 0 0 117px rgba(74, 173, 230, 0.16), inset 0 0 7px rgba(35, 96, 181, 0.27);
    border-radius: 8px;
    padding: 3.5rem 3rem;
    margin: 0 auto;
    font-size: 1.5rem;
    letter-spacing: 0.9px;
}
@media screen and (max-width: 1500px) {
    html {
        font-size: 9px;
    }
}
@media screen and (max-width: 1430px) {
    html {
        font-size: 7px;
    }
}
@media screen and (max-width: 991px) {
    html {
        font-size: 7px;
    }
}
footer {
    background: #252529;
    padding: 6rem 0;
}
footer .footer__cont {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    justify-content: flex-start;
}
@media screen and (max-width: 767px) {
    footer .footer__cont {
        flex-wrap: wrap;
    }
}
footer .footer__main {
    width: 40%;
}
@media screen and (max-width: 767px) {
    footer .footer__main {
        width: 100%;
    }
}
footer .footer__main-box {
    margin-top: 3rem;
    /* padding-left: 4rem; */
}
@media screen and (max-width: 767px) {
    footer .footer__main-box {
        padding: 0;
    }
}
footer .footer__main-title {
    font: 500 1.6rem/2.3rem Roboto, sans-serif;
    color: #cecece;
    letter-spacing: 0.51px;
}
footer .footer__main-value {
    font: 500 1.8rem/2.3rem Roboto, sans-serif;
    margin-top: 1rem;
    display: block;
    color: #fefefe;
    letter-spacing: 0.6px;
}
footer .footer__main .t-btn {
    background: linear-gradient(to bottom, #f8f8f8 0, #d8d8d8 100%) #ddd;
    /* margin-left: 4rem; */
    margin-top: 3rem;
    padding: 2rem 3.5rem;
    box-shadow: 0 22px 44px 2px rgba(201, 201, 201, 0.23), 0 3px 0 #bbb, inset 0 0 7px rgba(255, 255, 255, 0.41);
    border-radius: 11px;
    border: 1px solid #ddd;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.31);
    color: #565656;
    font-size: 12px;
    font-weight: 500;
    line-height: 18.49px;
    letter-spacing: 0.11px;
}
footer .footer__menu {
    width: 28%;
    padding-right: 4%;
}
@media screen and (max-width: 767px) {
    footer .footer__menu {
        width: 100%;
        margin: 40px 0 0;
    }
}
footer .footer__menu-title {
    font: 700 1.6rem/2.4rem Roboto, sans-serif;
    color: #fff;
    letter-spacing: 0.49px;
}
@media screen and (max-width: 767px) {
    footer .footer__menu-title {
        font-size: 2rem;
    }
}
footer .footer__menu-link {
    font: 400 1.8rem/2.1rem Roboto, sans-serif;
    padding-left: 2rem;
    margin-top: 1.3rem;
    display: block;
    color: #fff;
    letter-spacing: 0.42px;
    position: relative;
}
footer .footer__menu-link:hover {
    color: #45a4e1;
}
@media screen and (max-width: 767px) {
    footer .footer__menu-link {
        font-size: 1.8rem;
        line-height: 2.3rem;
        margin-top: 1.5rem;
    }
}
footer .footer__menu-link::before {
    background: #45a4e1;
    content: "";
    position: absolute;
    width: 0.7rem;
    height: 0.7rem;
    top: 7px;
    left: 0;
    border-radius: 50%;
}
.overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: #242631;
    background: rgba(0, 0, 0, 0.85);
    display: none;
}
.overlay.active {
    display: block !important;
}
.modal {
    background: #f9f9f9;
    display: none;
    z-index: 100;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 86rem;
    width: 100%;
    padding: 5rem 6rem;
    box-shadow: inset 0 3px 0 #fff;
    border-radius: 19px;
    text-align: left;
}
.modal .modal__img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 90%;
}
@media screen and (max-width: 767px) {
    .modal .modal__img {
        display: none;
    }
}
@media (max-width: 1400px) {
    .modal {
        max-width: 100rem;
    }
}
@media screen and (max-width: 767px) {
    .modal {
        max-width: 95%;
        padding: 5rem;
    }
    .modal .hidden-xs {
        display: none;
    }
}
@media (max-width: 360px) {
    .modal {
        padding: 3rem;
    }
}
.modal.active {
    display: block;
}
.modal .modal__close {
    background: linear-gradient(to top, #c8c8c8 0, #fafafa 100%) #f9f9f9;
    position: absolute;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    box-shadow: 0 11px 10px rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    top: -13px;
    right: -13px;
    cursor: pointer;
}
.modal .modal__close .img-svg {
    width: 11px;
    height: 11px;
    opacity: 0.3;
}
.modal .modal__close:hover .img-svg {
    opacity: 1;
}
@media screen and (max-width: 767px) {
    .modal .modal__close {
        right: 10px;
        top: 10px;
    }
}
.modal .modal__title {
    text-align: left;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 3.85rem;
    letter-spacing: 0.36px;
    margin: 0 0 2.5rem;
}
.modal .modal__title span {
    font-weight: 400;
    display: block;
}
@media screen and (max-width: 360px) {
    .modal .modal__title {
        font-size: 24px;
        line-height: 24px;
    }
}
.modal .modal__subtitle {
    font: 400 1.7rem/2.2rem Roboto, sans-serif;
    color: #5e5e5e;
    letter-spacing: 0.08px;
    max-width: 420px;
    margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
    .modal .modal__subtitle br {
        display: none;
    }
}
.modal .modal__form {
    max-width: 27rem;
}
@media (max-width: 1400px) {
    .modal .modal__form {
        max-width: 30rem;
    }
}
@media screen and (max-width: 767px) {
    .modal .modal__form {
        max-width: 100%;
    }
}
.modal .line__title {
    font: 400 1.8rem/2.3rem Roboto, sans-serif;
    margin-top: 3rem;
    color: #32353e;
    letter-spacing: 0.08px;
}
@media screen and (max-width: 767px) {
    .modal .line__title {
        font-size: 16px;
    }
}
.modal .modal__line .line__box {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    margin-top: 1rem;
}
.modal .modal__line .line__box input {
    display: none;
}
.modal .modal__line .line__box input:checked ~ .icon {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.modal .modal__line .line__box .line__radio {
    margin-right: 10px;
    cursor: pointer;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    border: 2px solid transparent;
}
.modal .modal__line .line__box .line__radio:hover {
    border: 2px solid #419bd8;
}
@media screen and (max-width: 767px) {
    .modal .modal__line .line__box .line__radio {
        margin-bottom: 10px;
    }
}
.modal .modal__line .line__control {
    position: relative;
    margin: 2.2rem 0 0;
}
.modal .modal__line .line__control .control__input {
    font: 400 16px Roboto, sans-serif;
    background: #fff;
    width: 100%;
    height: 6rem;
    border-radius: 10px;
    border: 1px solid #f6f6f6;
    padding: 2.7rem;
    color: #000;
    letter-spacing: 0.07px;
    outline: 0;
    border: 1px solid transparent;
    -webkit-transition: 220ms;
    transition: 220ms;
}
.modal .modal__line .line__control .control__input::-webkit-input-placeholder {
    color: #acacac;
}
.modal .modal__line .line__control .control__input::-moz-placeholder {
    color: #acacac;
}
.modal .modal__line .line__control .control__input:-ms-input-placeholder {
    color: #acacac;
}
.modal .modal__line .line__control .control__input::-ms-input-placeholder {
    color: #acacac;
}
.modal .modal__line .line__control .control__input::placeholder {
    color: #acacac;
}
.modal .modal__line .line__control .control__input:focus,
.modal .modal__line .line__control .control__input:hover {
    border: 1px solid #419bd8;
}
@media screen and (max-width: 767px) {
    .modal .modal__line .line__control .control__input {
        height: 55px;
    }
}
.modal .modal__line .line__control .control__icon {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.modal .t-btn {
    width: 100%;
    height: 7rem;
    margin: 2rem 0 3rem;
    text-shadow: 0 2px 1px #396598;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2.3rem;
    text-transform: uppercase;
    letter-spacing: 0.18rem;
}
@media screen and (max-width: 767px) {
    .modal .t-btn {
        font-size: 16px;
        height: 55px;
    }
}
.modal .modal__warning {
    font: 400 1.4rem/2.1rem Roboto, sans-serif;
    text-align: center;
    color: #828282;
    letter-spacing: 0.08px;
}
@media screen and (max-width: 767px) {
    .modal .modal__warning {
        font-size: 12px;
        line-height: 16px;
    }
}
.modal .modal__warning a {
    display: block;
    width: 100%;
    color: #828282;
    text-decoration: underline;
}
@media screen and (max-width: 767px) {
    .modal .modal__warning a {
        font-size: 12px;
    }
}
#menu {
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #fff;
    z-index: 99;
    -webkit-transition: width 220ms;
    transition: width 220ms;
}
#menu.active {
    width: 100%;
}
#menu #menu__close {
    position: absolute;
    right: 25px;
    top: 25px;
}
#menu #menu__close .img-svg {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
#menu #menu__close .img-svg path {
    fill: #000;
}
#menu .menu__list {
    width: 100%;
    position: absolute;
    left: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
#menu .menu__list .menu__link {
    display: block;
    text-transform: uppercase;
    font-size: 3em;
    margin-bottom: 3rem;
    color: #000;
}
.modal[data-modal="youtube"] {
    width: 800px;
    height: 450px;
    background: #0c0b12;
    box-shadow: none;
}
@media screen and (max-width: 992px) {
    .modal[data-modal="youtube"] {
        width: 85vw;
        height: 50vw;
    }
}
@media screen and (max-width: 767px) {
    .modal[data-modal="youtube"] {
        width: 56vw;
        height: 36vw;
    }
}
@media screen and (max-width: 570px) {
    .modal[data-modal="youtube"] {
        width: 95vw;
        height: 57vw;
    }
}
.modal[data-modal="youtube"] iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 10px 0 10px 10px;
    height: 100%;
}
.modal[data-modal="youtube"] .modal__close {
    position: absolute;
    right: 0;
    top: -45px;
    width: 45px;
    height: 45px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background: #0c0b12;
    cursor: pointer;
    border-radius: 0;
}
.modal[data-modal="youtube"] .modal__close .img-svg {
    width: 20px;
    height: 20px;
    opacity: 1;
}
.modal[data-modal="youtube"] .modal__close .img-svg path {
    fill: #777;
}
.modal[data-modal="youtube"] .modal__close:hover .img-svg path {
    fill: #fff;
}
