* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Cuprum', sans-serif;
    line-height: 1.15;
    color: #FFF;
}

#equip,
#about-us { 
    background-color: #F5F5F5;
}

/*animation*/
.material-ripple2 {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.material-ink {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: .4
}
@-webkit-keyframes btn-anim {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: .4
    }
    25% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: .4
    }
    50% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: .4
    }
    75% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: .4
    }
    100% {
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0
    }
}
@keyframes btn-anim {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: .4
    }
    25% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: .4
    }
    50% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: .4
    }
    75% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: .4
    }
    100% {
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0
    }
}
.material-ink.animate {
    -webkit-animation: btn-anim 2.4s linear infinite;
    animation: btn-anim 2.4s linear infinite;
}


.sh-page {
    position: relative;
    background-color: #FFF;
    z-index: 5;
}
.sh-page__sections {
    position: relative;
    background-color: #FFF;
    z-index: 4;
}
.sh-page__sections-wrapper {
    position: relative;
    z-index: inherit;
}
.sh-page__sections_blur {
    filter: blur(6px);
}


/*Header*/
.sh-page__header {
    position: fixed;
    height: 64px;
    width: 100%;
    border-bottom: 1px solid rgba(147, 147, 147, 0.3);
    background-color: #F6F6F6;
    transition: .5s;
    z-index: 99;
}
.sh-header__wrapper {
    display: flex;
    position: relative;
    height: 64px;
}
.sh-header__wrapper::before {
    position: absolute;
    right: calc(100% - 1px);
    content: '';
    width: 200vw;
    background-color: #E53935;
    transition: .4s;
    z-index: -1;
}
.sh-header__descriptor {
    width: 358px;
    overflow: hidden;
    transition: .4s;
}
.sh-header__wrapper[data-state='opened']::before ,
.sh-header__wrapper[data-state='opened'] .sh-header__descriptor {
    height: 111px;
}
.sh-header__wrapper[data-state='closed']::before ,
.sh-header__wrapper[data-state='closed'] .sh-header__descriptor {
    height: 63px;
}
.sh-header__descriptor-content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 111px;
    width: 100%;
    background-image: url(../img/svg/header.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.sh-header__descriptor-logo {
    height: 63px;
    width: 317px;
    background-image: url(../img/svg/si-logo.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor:pointer;
}
.sh-header__descriptor-text {
    width: 86%;
    margin: 0 0 auto;
    font-size: 11px;
    font-weight: 700;
    color: #FFF;
}
.sh-header__nav {
    position: relative;
    display: flex;
    margin-left: 64px;
}
.sh-header__nav-content {
    margin: auto 0;
}
.sh-header__nav-list {
    display: flex;
    justify-content: space-between;
    width: 440px;
    list-style: none;
}
.sh-header__nav-item_mob-catalog {
    display: none;
}
.sh-header__nav-item_general-catalog {
    display: flex;
}
.sh-header__nav-item-link {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #545455;
    transition: .25s;
}
.sh-header__nav-item-link:hover {
    cursor: pointer;
    color: #7D7D7F;
}
.sh-header__nav-item_catalog {
    display: flex;
}
.sh-header__nav-item_catalog-arrow {
    height: 24px;
  width: 15px;
  margin: auto 0 auto 8px;
/*    background-image: url(../img/svg/angle-down.svg);*/
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    fill: #545455;
    transition: .25s;
}
.sh-header__nav-item_catalog:hover {
    cursor: pointer;
    color: #7D7D7F;
}
.sh-header__nav-item_catalog:hover .sh-header__nav-item_catalog-arrow {
    fill: #7D7D7F;
}
.sh-page__catalog-menu {
    position: absolute;
    top: 63px;
    left: -36px;
    display: flex;
    flex-direction: column;
    width: 310px;
    border: 1px solid rgba(147, 147, 147, 0.3);
    border-top: none;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    z-index: 100;
    transition: .4s;
}
.sh-page__catalog-menu[data-catalog-state='closed'] {
    height: 0;
    opacity: 0;
}
.sh-page__catalog-menu[data-catalog-state='opened'] {
    height: 329px;
    opacity: 1;
}
.sh-page__catalog-menu-item {
    padding-left: 36px;
  font-size: 22px;
  font-weight: 700;
  line-height: 46px;
  text-align: left;
  text-transform: uppercase;
  transition: .4s;
  border-top: 1px solid rgba(147, 147, 147, 0.3);
  background-color: #F6F6F6;
  color: #545455;
  transition: .4s;
  outline: none;
}
.sh-page__catalog-menu-item:hover {
    cursor: pointer;
    color: #7D7D7F;
}
.sh-header__mob-nav {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    padding-top: 10px;
    background-color: #E53935;
    overflow: hidden;
    z-index: 90;
}
.sh-header__mob-buttons {
    display: none;
    margin: auto 0;
}
.sh-header__mob-callback {
    height: 34px;
    width: 34px;
    margin-right: 20px;
    background-image: url(../img/mob-callback.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.sh-header__mob-menu-button {
    height: 37px;
    width: 37px;
    background-image: url(../img/mob-menu.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.callbach-thanks,
.callback {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
    position: relative;
    /*height: 0;
    width: 154px;
    box-sizing: content-box;
    text-align: right;*/
}

.header-right-line {
    display: none;
    position: absolute;
    top: 0;
    left: 1150px;
    height: 130px;
    width: 2000px;
    background-color: #d13129;
}

.callback:before {
    content: "";
    background-image: url(../img/svg/header.svg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    width: 258px;
    height: 57px;
    display: block;
    position: absolute;
    transform: scale(-1, 1);
    left: -5px;
    bottom: -57px;
}
.callback:after {
    content: "";
    background: #e53935;
    width: 700px;
    height: 57px;
    position: absolute;
    bottom: -57px;
    right: -698px;
}
.callback-phone {
    display: flex;
    flex-direction: row;
}
.callback-item-icon {
    height: 18px;
    width: 18px;
    margin-right: 10px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.callback-item-icon_phone {
    background-image: url(../img/svg/header-phone-icon.svg);
    margin-top: 4px;
}
.callback-item-icon_mail {
    background-image: url(../img/svg/header-mail-icon.svg);
}
.callback-item {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #545455;
    outline: none;
}
.callback-phone__phone {
    font-size: 26px;
}
.callback-phone__mail {
    margin-left: auto;
    font-size: 18px;
}
.header-button {
    border: 2px solid #fff;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    transition: .4s;
    position: absolute;
    padding: 4px 24px;
    bottom: -44px;
    left: 54px;
    cursor: pointer;
}

.header-button:hover {
    background-color: #fff;
    color: #d13129;
}



/*First Screen*/
.sh-page__first-screen {
    width: 100%;
    overflow: hidden;
}
.sh-first-screen__wrapper {
    display: flex;
    margin-top: 145px;
    color: #545455;
}
.sh-first-screen__title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.16;
}
.sh-first-screen__undertitle {
    width: 730px;
    margin-top: 10px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.16;
}
.sh-first-screen__items {
    margin-top: 20px;
}
.sh-first-screen__item {
    display: flex;
    align-items: center;
    margin-top: 16px;
}
.sh-first-screen__item-icon {
    height: 28px;
    width: 38px;
    margin-right: 8px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.sh-first-screen__item-icon_delivery_main {
    background-image: url(../img/svg/delivery-truck_main.svg);
}
.sh-first-screen__item-icon_courier_main {
    background-image: url(../img/svg/courier_main.svg);
}
.sh-first-screen__item-icon_box_main {
    background-image: url(../img/svg/box_main.svg);
}
.sh-first-screen__item-icon_guarantee_main {
    background-image: url(../img/svg/guarantee_main.svg);
}
.sh-first-screen__item-text {
    font-size: 24px;
    flex-shrink: 999999;
}
.sh-first-screen__item-text_red {
    font-weight: 700;
    color: #E53934;
}
.sh-first-screen__sales {
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding: 25px 35px 35px;
    border: 15px solid #fff;
    border-radius: 0 35px 0 35px;
    box-shadow: 0px 25px 65px rgba(0, 0, 0, 0.15);
    background-color: #F5F5F5;
}
.sh-first-screen__sales-image {
    position: absolute;
    right: -65px;
    bottom: -105px;
    height: 587px;
    width: 730px;
    background-image: url(../img/firstscreen-image.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}
.sh-first-screen__sales-text {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    color: #545455;
}
.sh-first-screen__sales-descr {
    font-size: 24px;
    font-weight: 700;
    color: #545455;
}
.sh-first-screen__sales-button {
    display: flex;
    justify-content: center;
    height: 70px;
    width: 100%;
    max-width: 455px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: inset 0px 0px 0px #A92A27, 0px 10px 36px rgba(0, 0, 0, 0.3), 0px 3px 0px #A82A27;
    background-color: #E53935;
    transition: .25s;
}
.sh-first-screen__sales-button:hover {
    cursor: pointer;
    box-shadow: inset 0px 3px 0px #A92A27, 0px 0px 0px rgba(0, 0, 0, 0.3), 0px 0px 0px #A82A27;
    background-color: #D53532;
}
.sh-first-screen__sales-button-text {
    margin: auto 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFF;
}
.sh-first-screen__sales-button-icon {
    height: 24px;
    width: 24px;
    margin: auto 0 auto 15px;
    background-image: url(../img/svg/fs-arrow-down.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.sh-first-screen__side-items {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 745px;
    margin: 80px 0;
    padding: 15px 25px 15px 0;
    border-radius: 0 35px 35px 0;
    background-color: #fff;
}
.sh-first-screen__side-items::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    display: block;
    height: 100%;
    width: 100vh;
    background-color: #fff;
}
.sh-first-screen__side-item {
    display: flex;
    align-items: center;
}
.sh-first-screen__side-item-icon {
    height: 28px;
    width: 28px;
    margin-right: 10px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.sh-first-screen__side-item-icon_shop {
    background-image: url(../img/svg/i_shop.svg);
}
.sh-first-screen__side-item-icon_manager {
    background-image: url(../img/svg/i_manager.svg);
}
.sh-first-screen__side-item-icon_business {
    background-image: url(../img/svg/i_business.svg);
}
.sh-first-screen__side-item-text {
    font-size: 24px;
    color: #545455;
}

.sh-first-screen__consultation {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 548px;
    width: 100%;
}
.sh-first-screen__consultation-description {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 520px;
    border: 15px solid #fff;
    border-radius: 35px;
    box-shadow: 0px 25px 64px rgba(0, 0, 0, 0.15);
    background-color: #F5F5F5;
    z-index: 1;
}
.sh-first-screen__consultation-description-title {
    position: absolute;
    left: -15px;
    top: -15px;
    padding: 25px 65px 20px 50px;
    border-radius: 35px 0 35px 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #fff;
    color: #545455;
}
.sh-first-screen__consultation-description-title span {
    color: #E53934;
}
.sh-first-screen__consultation-content {
    margin: 130px 0 0 35px;
}
.sh-first-screen__consultation-content-title {
    font-size: 24px;
    font-weight: 700;
    color: #545455;
}
.sh-first-screen__consultation-content-item {
    display: flex;
    margin-top: 23px;
    font-size: 20px;
    color: #545455;
}
.sh-first-screen__consultation-content-item-number {
    margin-right: 15px;
    font-weight: 700;
}
.sh-first-screen__consultation-content-item-text {
    width: 350px;
    font-weight: 400;
}
.sh-first-screen__consultation-form {
    position: relative;
    height: 486px;
    width: 1010px;
    margin: auto 0;
    border-radius: 35px;
    box-shadow: 0px 25px 64px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}
.sh-first-screen__consultation-form-freetext {
    position: absolute;
    left: 32px;
    top: 0;
    height: 100%;
    font-size: 68px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #A7A7A7;
    opacity: 0.1;
}
.sh-first-screen__consultation-form-freetext span {
    display: block;
    transform-origin: bottom left;
    transform: rotate(90deg);
}
.sh-first-screen__consultation-form .sh-form__wrapper {
    height: 366px;
    width: 384px;
    margin: 55px 0 0 144px;
    box-shadow: none;
}
.sh-first-screen__consultation-form .sh-form__title {
    margin: 0;
    font-size: 24px;
    text-align: left;
    color: #545455;
}
.sh-first-screen__consultation-form .sh-form__fields {
    margin: 25px 0 0;
}
.sh-first-screen__consultation-form .sh-form__button {
    align-items: unset;
}
.sh-first-screen__consultation-form .sh-form__button-text {
    margin: auto 0;
    font-size: 24px;
}
.sh-first-screen__consultation-form .sh-form__field {
    width: 100%;
}


.sh-first-screen__nav-wrapper {
    display: flex;
    justify-content: space-between;
    height: 320px;
    margin: 110px 0;
    padding: 20px 15px 0;
    border: 15px solid #FFF;
    border-radius: 38px;
    box-shadow: 0px -17px 104px 50px rgba(0, 0, 0, 0.0775), inset 0px 0px 88px 8px rgba(154, 155, 159, 0.25);
    background-color: #F6F6F6;
}
.sh-first-screen__nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
}
.sh-first-screen__nav-item-bg {
    position: absolute;
    left: -25%;
    content: '';
    display: flex;
    justify-content: center;
    height: 100%;
    width: 150%;
    background-image: url(../img/nav-item-shadow.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: .4s;
    opacity: 0;
}
.sh-first-screen__nav-item:hover {
    cursor: pointer;
}
.sh-first-screen__nav-item:hover .sh-first-screen__nav-item-title {
    color: rgba(48, 48, 48, 1);
}
.sh-first-screen__nav-item:hover .sh-first-screen__nav-item-bg {
    opacity: 1;
}
.sh-first-screen__nav-item-image {
    position: relative;
    height: 200px;
    width: 200px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.sh-first-screen__nav-item-image_cord {
    background-image: url(../img/nav-cord.png);
}
.sh-first-screen__nav-item-image_infr {
    background-image: url(../img/nav-infr.png);
}
.sh-first-screen__nav-item-image_3d {
    background-image: url(../img/nav-3d.png);
}
.sh-first-screen__nav-item-image_truck {
    background-image: url(../img/nav-truck.png);
}
.sh-first-screen__nav-item-image_acc {
    background-image: url(../img/nav-acc.png);
}
.sh-first-screen__nav-item-title {
    position: relative;
    margin-top: 12px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: rgba(48, 48, 48, 0.8);
    transition: .4s;
}
.sh-first-screen__fs-mob-nav {
    display: none;
    position: relative;
    padding: 50px 20px 70px;
    border-top: 9px solid #E53935;
    border-bottom: 9px solid #E53935;
}
.sh-first-screen__mob-triangle {
    position: absolute;
    top: -25px;
    left: calc(50% - 62px);
    height: 75px;
    width: 124px;
    background-image: url(../img/svg/fs-mob-nav-triangle.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.sh-first-screen__mob-triangle_bottom {
    top: unset;
    bottom: -25px;
    transform: scale(1, -1);
}
.sh-first-screen__mob-nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sh-first-screen__mob-nav-container .sh-first-screen__nav-item {
    height: 150px;
    width: calc(50% - 10px);
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 18px rgba(38, 57, 103, 0.25);
    background-color: #FFF;
}
.sh-first-screen__mob-nav-container .sh-first-screen__nav-item_last {
    position: relative;
    height: 70px;
    width: 100%;
    margin-bottom: 0;
}
.sh-first-screen__mob-nav-container .sh-first-screen__nav-item-image {
    margin: 3px auto 0;
}
.sh-first-screen__mob-nav-container .sh-first-screen__nav-item-title {
    margin-top: 0;
    font-size: 18px;
}
.sh-first-screen__nav-item_last .sh-first-screen__nav-item-image {
    position: absolute;
    top: -25px;
    right: calc(50% + 10px);
    margin: 0;
}
.sh-first-screen__nav-item_last .sh-first-screen__nav-item-title {
    position: relative;
    margin: auto auto auto calc(50% + 22px);
}
.first-icons {
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 80px;
}
@keyframes iconsAnim {
    0%     { opacity: .6; }
    7.14%  { opacity: 1; }
    14.28% { opacity: .6; }
    100%   { opacity: .6; }
}
.first-icons-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.first-icons-content a {
    display: flex;
    color: #545455;
    outline: none;
    opacity: .6;
}
.first-icons-content>a:nth-child(1) {
    animation: iconsAnim 14s ease-in-out 0s infinite;
}
.first-icons-content>a:nth-child(3) {
    animation: iconsAnim 14s ease-in-out 2s infinite;
}
.first-icons-content>a:nth-child(5) {
    animation: iconsAnim 14s ease-in-out 4s infinite;
}
.first-icons-content>a:nth-child(7) {
    animation: iconsAnim 14s ease-in-out 6s infinite;
}
.first-icons-content>a:nth-child(9) {
    animation: iconsAnim 14s ease-in-out 8s infinite;
}
.first-icons-content>a:nth-child(11) {
    animation: iconsAnim 14s ease-in-out 10s infinite;
}
.first-icons-content>a:nth-child(13) {
    animation: iconsAnim 14s ease-in-out 12s infinite;
}
.icon-hover {
    transition: .4s;
    opacity: .6;
}
.icon-hover:hover { opacity: 1; }
.f-icon {
    height: 50px;
    width: 50px;
    background-image: url(../img/wheel-icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.f-title {
    margin: auto 0 auto 5px;
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
    text-transform: uppercase;
}
.f-line {
    height: 33px;
    width: 1px;
    margin: auto 0;
    background-color: #FFF;
    opacity: .3;
}
.first-icons-mob {
    display: none;
}



/* Cards */
.shin__card {
    height: 500px;
    width: 100%;
    margin-bottom: 100px;
    border-radius: 35px;
    box-shadow: 0px 25px 64px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    font-weight: bold;
}
.shin__card-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
}
.shin__card-image {
    width: calc(50% - 15px);
    margin: 15px 0 15px 15px;
    border-radius: 35px 0 0 35px;
    background-color: #F5F5F5;
    cursor: pointer;
}
.shin__card-image-wrapper {
    height: 100%;
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.25s;
    transition-timing-function: ease-in-out;
    pointer-events: none;
}
.shin__card-image:hover .shin__card-image-wrapper {
    transform: scale(1.15);
}
.shin__card-content {
    display: flex;
    flex-direction: column;
    margin: auto;
    color: #545455;
}
.shin__card-title {
    font-size: 38px;
    color: inherit;
}
.shin__card-undertitle {
    font-size: 32px;
}
.shin__card-props {
    margin: 10px 0 30px;
    font-size: 24px;
}
.shin__card-props-item {
    list-style-type: none;
}
.shin__card-buttons {
    display: flex;
}
.shin__card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 53px;
    width: 238px;
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: box-shadow 0.25s, background-color 0.25s;
}
.shin__card-button_buy {
    margin-right: 20px;
    box-shadow: inset 0px 0px 0px #A92A27, 0px 10px 36px rgba(0, 0, 0, 0.3), 0px 3px 0px #A82A27;
    background-color: #E53935;
}
.shin__card-button_buy:hover {
    box-shadow: inset 0px 3px 0px #A92A27, 0px 0 0 rgba(0, 0, 0, 0.3), 0px 0 0px #A82A27;
    background-color: #D53532;
}
.shin__card-button_more {
    box-shadow: inset 0px 0px 0px rgba(103, 104, 109, 0.5), 0px 10px 36px rgba(0, 0, 0, 0.3), 0px 3px 0px #787878;
    background-color: #C1C1C1;
}
.shin__card-button_more:hover {
    box-shadow: inset 0px 3px 0px rgba(103, 104, 109, 0.5), 0px 0 0 rgba(0, 0, 0, 0.3), 0px 0 0px #787878;
    background-color: #B9BBC1;
}
.shin__card_reverse .shin__card-wrapper {
    flex-direction: row-reverse;
}
.shin__card_reverse .shin__card-image {
    margin: 15px 15px 15px 0;
    border-radius: 0 35px 35px 0;
}



/*About Company*/
.sh-page__about-company {
    transition: .5s;
}
.sh-company__wrapper {
    margin-bottom: 110px;
}
.sh-company__video {
    position: relative;
    width: 100%;
    padding-bottom: 56.23%;
}
/*
.sh-company__video::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}
*/
.sh-company__video div,
.sh-company__video iframe {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.sh-company__text {
    margin: 50px 0 40px;
    font-size: 24px;
    text-align: center;
    color: #111111;
}
.sh-company__text_bold {
    font-weight: 700;
}
.sh-gallery__wrapper {
    display: flex;
    width: 100%;
}
.sh-gallery__main-photo {
    display: block;
    height: 490px;
    width: 490px;
    box-shadow: 0px 0px 0px #d13129, 0px 0px 0px #cdcdcd;
    background-image: url(../img/company/au-photo-1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    outline: none;
    transition: .5s;
}
.sh-gallery__main-photo:hover {
    cursor: pointer;
    box-shadow: -8px -8px 0px #d13129, 13px 13px 0px #cdcdcd;
}
.sh-gallery__small-photos-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sh-gallery__small-photos-row {
    display: flex;
}
.sh-gallery__small-photo {
    display: inline-block;
    height: 148px;
    width: 194px;
    margin-left: 23px;
    box-shadow: 0px 0px 0px #d13129, 0px 0px 0px #cdcdcd;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    outline: none;
    transition: .3s;
}
.sh-gallery__small-photo:hover {
    cursor: pointer;
    box-shadow: -8px -8px 0px #d13129, 13px 13px 0px #cdcdcd;
}
.sh-gallery__small-photo_1 {
    background-image: url(../img/company/au-photo-2.jpg);
}
.sh-gallery__small-photo_2 {
    background-image: url(../img/company/au-photo-3.jpg);
}
.sh-gallery__small-photo_3 {
    background-image: url(../img/company/au-photo-4.jpg);
}
.sh-gallery__small-photo_4 {
    background-image: url(../img/company/au-photo-5.jpg);
}
.sh-gallery__small-photo_5 {
    background-image: url(../img/company/au-photo-6.jpg);
}
.sh-gallery__small-photo_6 {
    background-image: url(../img/company/au-photo-7.jpg);
}
.sh-gallery__small-photo_7 {
    background-image: url(../img/company/au-photo-8.jpg);
}
.sh-gallery__small-photo_8 {
    background-image: url(../img/company/au-photo-9.jpg);
}
.sh-gallery__small-photo_9 {
    background-image: url(../img/company/au-photo-10.jpg);
}


/*Videos*/
.sh-page__videos {
    padding-bottom: 40px;
    transition: .5s;
}
.sh-videos__item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 56.25%
}

/*
.sh-videos__item::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}
*/
.sh-videos__item_last {
    margin-bottom: 0;
}
.sh-videos__item div, 
.sh-videos__item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/*   C O N T A C T S   */

#contacts {
    display: flex;
    justify-content: center;
    position: relative;
    height: 631px;
    width: 100%;
    overflow: hidden;
}
#ymap {
    position: absolute;
    height: 631px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.contacts-container {
    margin-top: auto;
    pointer-events: none;
}
.contacts-content {
    display: flex;
    flex-direction: column;
    height: 312px;
    width: 100%;
    padding-left: 75px;
    background-image: url(../img/footer-bg.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    border-radius: 10px 10px 0 0;
    color: #fff;
    pointer-events: all;
}
.cline {
    height: 1px;
    width: 187px;
    background-color: rgba(255, 255, 255, .35);
}
.contacts-content>p:nth-child(1) {
    margin: 29px 0 5px;
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    text-transform: uppercase;
}
.contacts-content>p:nth-child(2) {
    margin: 5px 0 7px;
}
.contacts-content>p:nth-child(7) {
    margin: 8px 0 15px;
}
.contacts-content>p>a,
.contacts-content>p,
.contacts-content>a {
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    color: #fff;
    outline: none;
}
.social-icons {
    display: flex;
}
.social-icons a {
    font-size: 36px;
    line-height: 36px;
    color: #fff;
    outline: none;
    transition: .4s;
}
.social-icons a:hover { color: #E53935; }
.social-icons>a:nth-child(1),
.social-icons>a:nth-child(2) { margin-right: 36px; }
.footer-mob-logo { display: none; }



/*   F O O T E R   */

footer {
    position: relative;
    width: 100%;
    background-image: url(../img/footer-bg.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.footer-content {
    display: flex;
    height: 123px;
}
.footer-logo {
    height: 41px;
    width: 263px;
    margin: auto 0;
    background-image: url(../img/header-logo.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.footer-content>p {
    width: 472px;
    margin: 33px auto 31px 71px;
    font-size: 17px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    color: #fff;
}
.footer-callback {
    display: flex;
    flex-direction: column;
    margin: auto 0 auto auto;
}
.footer-callback>a {
    font-size: 26px;
    font-weight: 700;
    line-height: 16px;
    text-align: right;
    color: #fcfcfc;
    outline: none;
}
.fc-button {
    height: 32px;
    width: 195px;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid #fff;
    box-sizing: content-box;
    transition: .4s;
    color: #fff;
}
.fc-button:hover {
    cursor: pointer;
    background-color: #E53935;
}



/*Background*/
.sh-page__background {
    position: absolute;
  top: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(247, 247, 247, 1);
    background-image: url(../img/bg-pattern.jpg);
    background-size: 408px 357px;
    overflow: hidden;
    z-index: 3;
}
.sh-page__background-1 {
    position: relative;
    top: 0;
    left: 0;
    width: 200vw;
    transform-origin: bottom left;
    transform: rotate(-8deg);
    background-color: #FFF;
  overflow: hidden;
}
.sh-page__background-1-wrapper {
    position: relative;
    bottom: 0;
    left: 0;;
    height: 1084px;
    width: 100%;
    transform-origin: bottom left;
    transform: rotate(8deg);
    background-image: url(../img/svg/bg-pattern.svg);
}
.sh-page__background-1-triangles {
    position: relative;
    top: 0;
    bottom: 0;
    left: calc(calc(100vw - 1440px)/2);
    min-width: 1440px;
    max-width: 1440px;
}
.sh-page__background-triangle {
    position: absolute;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.sh-page__background-triangle_1 {
    top: 175px;
    left: 50px;
    height: 610px;
    width: 745px;
    background-image: url(../img/svg/triangle-1.svg);
}
.sh-page__background-triangle_2 {
    top: 0;
    right: 275px;
    height: 420px;
    width: 484px;
    background-image: url(../img/svg/triangle-2.svg);
}
.sh-page__background-triangle_3 {
    top: 465px;
    right: 50px;
    height: 443px;
    width: 579px;
    background-image: url(../img/svg/triangle-3.svg);
}
.sh-page__background-2 {
    position: absolute;
    top: 2350px;
    left: -50vw;
    height: 750px;
    width: 200vw;
    transform-origin: bottom left;
    transform: rotate(-8deg);
    background-color: #FFF;
  overflow: hidden;
}
.sh-page__background-2-wrapper {
    position: relative;
    top: -100%;
    left: 0;
    height: 200%;
    width: 100%;
    transform-origin: bottom left;
    transform: rotate(8deg);
    background-image: url(../img/svg/bg-pattern.svg);
}
.sh-page__background-3 {
    position: absolute;
    top: 4450px;
    left: -50vw;
    height: 750px;
    width: 200vw;
    transform-origin: bottom left;
    transform: rotate(-8deg);
    background-color: #FFF;
  overflow: hidden;
}
.sh-page__background-3-wrapper {
    position: relative;
    top: -100%;
    left: 0;
    height: 200%;
    width: 100%;
    transform-origin: bottom left;
    transform: rotate(8deg);
    background-image: url(../img/svg/bg-pattern.svg);
}




/*Form*/
.sh-page__form {
    position: fixed;
    top: -100vh;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    transition: .25s;
    transition: top 0s;
}
.sh-page__form[data-form-state='closed'] {
    pointer-events: none;
    opacity: 0;
    z-index: -99;
}
.sh-page__form[data-form-state='opened'] {
    pointer-events: auto;
    opacity: 1;
    z-index: 100;
}
.sh-page__form-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.65);
}
.sh-page__form-wrapper {
    position: absolute;
    top: 0;
    display: flex;
  justify-content: center;
  align-items: center;
    height: 100vh;
    width: 100%;
    pointer-events: none;
    transition: .5s;
}
.sh-page__form-wrapper_hidden {
    transition-delay: .25s;
    top: 100%;
}
.sh-form__wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 440px;
    width: 550px;
    border-radius: 4px;
    box-shadow: 0px 15px 54px rgba(0, 0, 0, 0.75);
    background: #FFF;
    pointer-events: auto;
    transition: .25s;
}
.sh-page__form[data-form-state='closed'] .sh-form__wrapper {
    opacity: 0;
}
.sh-page__form[data-form-state='opened'] .sh-form__wrapper {
    transition-delay: .25s;
    opacity: 1;
}
.sh-form__close-cross {
    position: absolute;
    top: 23px;
    right: 20px;
    height: 25px;
    width: 25px;
    background-image: url(../img/close-cross.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .4;
    transition: .4s;
}
.sh-form__close-cross:hover {
    cursor: pointer;
    opacity: 1;
}
.sh-form__title {
    margin: 19px 0 15px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #303030;
}
.sh-form__separator {
    height: 1px;
    width: 100%;
    background-color: rgba(96, 96, 96, 0.3);
}
.sh-form__fields {
    display: flex;
    flex-direction: column;
    margin: 35px auto 0;
}
.sh-form__field {
    display: flex;
    width: 380px;
    margin-bottom: 25px;
}
.sh-form__field_last {
    margin-bottom: 0;
}
.sh-form__field-image {
    flex-shrink: 0;
    display: flex;
    height: 60px;
    width: 60px;
    border: 1px solid rgba(96, 96, 96, 0.3);
    background-color: #FFF;
}
.sh-form__field-image-icon {
    margin: auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.sh-form__field-image-icon_name {
    height: 26px;
    width: 30px;
    background-image: url(../img/svg/form-icon_person.svg);
}
.sh-form__field-image-icon_phone {
    height: 30px;
    width: 30px;
    background-image: url(../img/svg/form-icon_phone.svg);
}
.sh-form__field-image-icon_mail {
    height: 30px;
    width: 23px;
    background-image: url(../img/svg/form-icon_email.svg);
}
.sh-form__field-content {
    position: relative;
    width: 100%;
}
.sh-form__field-label {
    position: absolute;
    top: 50%;
    left: 20px;
    font-size: 24px;
    line-height: 0;
    color: rgba(48, 48, 48, 0.6);
    pointer-events: none;
    opacity: 1;
    transition: .25s;
}
.sh-form__field-input {
    height: 60px;
    width: 100%;
    padding-left: 20px;
    border: none;
    box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    color: rgba(48, 48, 48, 0.85);
}
.sh-form__field-input:focus {
    outline: none;
}
.sh-form__field-input:focus ~ .sh-form__field-label,
.sh-form__field-input:valid ~ .sh-form__field-label {
    opacity: 0;
}
.sh-form__field-input:not(:empty) ~ .sh-form__field-label {
    opacity: 0;
}
.sh-form__button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 100%;
    margin: 35px 0 0;
    border: none;
    box-shadow: inset 0px 0px 0px #A92A27, 0px 10px 36px rgba(0, 0, 0, 0.3), 0px 3px 0px #A82A27;
    background-color: #E53935;
    transition: .25s;
}
.sh-form__wrapper[data-available='false'] .sh-form__button  {
    pointer-events: none;
    background-color: #C45350;
}
.sh-form__wrapper[data-available='true'] .sh-form__button  {
    pointer-events: auto;
}
.sh-form__button:hover {
    cursor: pointer;
    box-shadow: inset 0px 3px 0px #A92A27, 0px 0px 0px rgba(0, 0, 0, 0.3), 0px 0px 0px #A82A27;
    background-color: #D53532;
}
.sh-form__button-text {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFF;
}
.sh-form__personal-data {
    display: flex;
    margin: 25px auto auto;
    color: #303030;
    transition: .4s;
}
.sh-form__wrapper[data-available='false'] .sh-form__personal-data {
    opacity: 1;
}
.sh-form__wrapper[data-available='true'] .sh-form__personal-data {
    opacity: .7;
}
.sh-form__personal-data-check-box {
    position: relative;
}
.sh-form__personal-data-check-box,
.sh-form__personal-data-check-box > svg {
    height: 20px;
    width: 20px;
    fill: #303030;
}
.sh-form__personal-data-check-box:hover {
    cursor: pointer;
}
.sh-form__personal-data-checked-inbox {
    position: absolute;
    top: 4px;
    left: 4px;
}
.sh-form__personal-data-checked-inbox,
.sh-form__personal-data-checked-inbox > svg {
    height: 12px;
    width: 12px;
    fill: #303030;
    transition: .4s;
}
.sh-form__wrapper[data-available='false'] .sh-form__personal-data-checked-inbox {
    opacity: 0;
}
.sh-form__wrapper[data-available='true'] .sh-form__personal-data-checked-inbox {
    opacity: 1;
}
.sh-form__personal-data-text {
    margin: auto 0 auto 15px;
    font-size: 16px;
}
.sh-form__personals-data-link {
    text-decoration: underline;
}
.sh-form__personals-data-link:hover {
    cursor: pointer;
}
.sh-page__thx-wrapper {
    position: fixed;
    display: flex;
  justify-content: center;
  align-items: center;
    height: 100vh;
    width: 100%;
    pointer-events: none;
    transition: top .5s;
    z-index: -5;
}
.sh-page__thx-wrapper[data-thx-state='top'] {
    top: -110%;
}
.sh-page__thx-wrapper[data-thx-state='middle'] {
    transition-delay: 1s;
    top: 0%;
}
.sh-page__thx-wrapper[data-thx-state='bottom'] {
    top: 110%;
}
.sh-thx__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 555px;
    border-radius: 4px;
    box-shadow: 0px 15px 54px rgba(0, 0, 0, 0.75);
    background-color: #FFF;
    color: #5F5F5F;
    pointer-events: auto;
}
.sh-thx__close {
    position: absolute;
    top: 23px;
    right: 20px;
    height: 25px;
    width: 25px;
    background-image: url(../img/close-cross.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .4;
    transition: .4s;
}
.sh-thx__close:hover {
    cursor: pointer;
    opacity: 1;
}
.sh-thx__text-1 {
    margin: 77px auto 24px;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}
.sh-thx__separator {
    height: 1px;
    width: 50%;
    margin: 0 auto;
    background-color: rgba(96, 96, 96, 0.2);
}
.sh-thx__separator_vertical {
    height: 50px;
    width: 1px;
    margin: auto 20px;
}
.sh-thx__text-container {
    display: flex;
    margin: 16px auto;
}
.sh-thx__text-2 {
    font-size: 53px;
    font-weight: 700;
    text-transform: uppercase;
}
.sh-thx__text-3 {
    font-size: 24px;
    font-weight: 700;
}
.sh-thx__button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 380px;
    margin: 50px auto 30px;
    box-shadow: inset 0px 0px 0px #74C17B, 0px 10px 36px rgba(0, 0, 0, 0.309726), 0px 3px 0px #74C17B;
    background-color: #83D98C;
    transition: .25s;
}
.sh-thx__button:hover {
    cursor: pointer;
    box-shadow: inset 0px 3px 0px #74C17B, 0px 0px 0px rgba(0, 0, 0, 0.309726), 0px 0px 0px #74C17B;
}
.sh-thx__button-text {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFF;
}
.sh-thx__social {
    display: flex;
    margin: auto 88px 30px auto;
}
.sh-thx__social-text {
    margin: auto 0;
    font-size: 20px;
    color: rgba(151, 151, 151, 0.8);
}
.sh-thx__social-icons {
    display: flex;
}
.sh-thx__social-icon-link {
    display: flex;
    margin-left: 25px;
}
.sh-thx__social-icon {
    height: 32px;
    width: 36px;
    fill: #979797;
    opacity: .35;
    transition: .25s;
}
.sh-thx__social-icon:hover {
    cursor: pointer;
    opacity: 1;
}
.sh-thx__social-icon_instagram {
    width: 28px;
}

/*Conf policy*/
.sh-page__conf {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
.sh-conf__wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    transition-delay: .25s;
    transition: .5s;
}
.sh-conf__wrapper:hover {
    cursor: pointer;
}
.sh-conf__wrapper[data-state-policy='closed'] {
    height: 0;
}
.sh-conf__wrapper[data-state-policy='opened'] {
    height: 100vh;
}
.sh-conf__content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 80%;
    margin: 5vh 0 2.5vh;
    padding: 50px 40px;
    border: 1px solid #000;
    border-radius: 9px;
    background-color: #FFF;
    color: #303030;
}
.sh-conf__close {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 25px;
    width: 25px;
    background-image: url(../img/close-cross.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .4;
    transition: .4s;
}
.sh-conf__close:hover {
    cursor: pointer;
    opacity: 1;
}
.sh-conf__subtitle {
    margin: 18px 0 5px;
    font-size: 32px;
}
.sh-conf__subtitle_first {
    margin-top: 0;
}
.sh-conf__text {
    margin: 5px 0;
    font-size: 16px;
}
.sh-conf__list-title {
    margin: 10px 0 5px;
    font-size: 16px;
    font-weight: 700;
}
.sh-conf__list {
    list-style-position: inside;
}
.sh-conf__list-item {
    margin: 5px 0;
    font-size: 16px;
}



/* C O M M O N   S T Y L E S */

#equip {
    margin-top: 40px;
}

.sh-section-title__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 100%;
    margin-bottom: 80px;
    border-radius: 0 0 35px 35px;
    box-shadow: 0px 2px 38px rgba(0, 0, 0, 0.25);
    background-color: #E53935;
}
.sh-section-title__text {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.si-text_accent-color {
    color: #E53935;
}
.si-text_line-through {
    text-decoration: line-through;
}