/* main-page */
/* s1 */
.s1 {
    height: 100vh;
    max-height: 1080px;
    min-height: 650px;
}
.s1-container,
.s1-container .slides,
.s1-container .slides .slide,
.s1-container .slides .slick-list,
.s1-container .slides .slick-track {
    height: 100%;
}
.s1-container .slides .slide {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    /* background-attachment: fixed; */
}
.s1-container .slides .slide::before {
    content: '';
    display: block;
    background: rgba(0, 0, 0, .8);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.s1-container .slides .slide .slide-container {
    width: calc(100% - 400px);
    margin: 0 auto;
    max-width: 1440px;
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 80px;
}
.s1-container .slides .slide .slide__up-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}
.s1-container .slides .slide .slide__title {
    display: block;
    width:100%;
    max-width: 860px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Montserrat', Verdana, sans-serif, monospace;
}
.s1-container .slides .slide .slide__line {
    width: 50px;
    height: 3px;
    background-color: #ffffff;
    margin: 10px 0;
}
.s1-container .slides .slide .slide__sub-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.s1-container .slides .slide .slide__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.s1-container .slides .slide .slide__buttons .form-btn {
    background-color: #fab700;
    color: #ffffff;
    margin-right: 30px;
    margin-top: 20px;
}
.s1-container .slides .slide .slide__buttons .link-btn {
    color: #ffffff;
    border: 1px solid #ffffff;
    margin-top: 20px;
}
.s1 .slick-dots {
    top: 0;
    right: 50px;
    width: auto;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.s1 .slick-dots li {
    margin-bottom: 40px;
    position: relative;
    width: auto;
    height: auto;
}
.s1 .slick-dots li:last-child {
    margin-bottom: 0px;
}
.s1 .slick-dots li:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 30px;
    position: absolute;
    top: calc(100% + 5px);
    background-color: #fff;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.s1 .slick-dots li button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #ffffff;
    position: relative;
}
.s1 .slick-dots li button:before {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    content: '';
    display: block;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.s1 .slick-dots li:hover button:before {
    opacity: 1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.btn_cont{
         margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
}

.btn_cont .form-btn {
    
    display: inline-block;
    margin: 35px 0;
    background-color: #fab700;
    color: #ffffff;
    /* margin-right: 30px; */
    /* margin-top: 20px; */
    min-width: 230px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 60px;
    height: 60px;
    border-radius: 30px;
    box-sizing: border-box;
}
/* /s1 */
/* s2 */
.s2 {
    background-color: #e0e0fe;
}
.s2 .sides-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.s2 .s2-container .left-side,
.s2 .s2-container .right-side {
    width: calc(100% / 2 - 35px);
}
.s2 .__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.s2 .__buttons .form-btn {
    background-color: #012068;
    color: #ffffff;
    margin-right: 20px;
}
.s2 .__buttons .link-btn {
    border: 1px solid #012068;
    color: #012068;
}
.s2 .s2-container .right-side img {
    width: 100%;
    height: auto;
    border-radius: 50px;
    overflow: hidden;
}
.group-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.group-items__item {
    width: calc(100% / 3 - 16px);
    padding: 20px 20px 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.group-items__item--svg {
    width: 45px;
    height: 39px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: bottom;
    object-position: bottom;
    fill: #012068;
    display: block;
    margin: 0 auto;
}
.group-items__item p {
    color: #012068;
    text-align: center;
    margin-top: 20px;
}
.s2 .call-us {
    color: #012068;
}
.s2 .phone {
    font-size: 30px;
    color: #012068;
    font-weight: 700;
}
.s2 .sep {
    margin: 0 35px;
}
/* / s2 */
/* s3 */
.s3 .up-title {
    text-align: center;
}
.s3 h2 {
    text-align: center;
    max-width: 634px;
    margin: 20px auto 40px auto;
}
.s3 .sub-title {
    text-align: center;
    max-width: 770px;
    margin: 0 auto 10px auto;
}
/* / s3 */
/* s4 */
.s4 {
    background-image: linear-gradient( 90deg, rgb(0,17,57) 1%, rgb(1,32,104) 100%);
}
.s4 .up-title {
    text-align: center;
    color: #ffffff;
}
.s4 .title {
    color: #ffffff;
    max-width: 630px;
    width: 100%;
    font-weight: 700;
    margin: 0 auto 40px auto;
    text-align: center;
}
.s4 .sub-title {
    max-width: 770px;
    text-align: center;
    color: #ffffff;
    margin: 0 auto 30px auto;
}
.s4 .block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.s4 .block-container .block__left {
    width: 60%;
}
.s4 .block-container .block__left img {
    width: 100%;
    height: auto;
}
.s4 .block-container .block__right {
    width: calc(40% - 40px);
    padding-right: 100px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.s4 .competencii-list {
    padding-left: 30px;
    width: 100%;
}
.s4 .competencii-list .competencii-list__item {
    color: #3340ef;
    line-height: 1.4;
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.s4 .competencii-list .competencii-list__item:hover {
    color: #fff;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.s4 .competencii-list .competencii-list__item:last-child {
    margin-bottom: 0px;
}
.s4 .competencii-list .competencii-list__item::before {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #3340ef;
    position: absolute;
    left: -30px;
    top: 3px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.s4 .competencii-list .competencii-list__item:hover::before {
    border-color: #fff;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-box-shadow: inset 0px 0px 0px 2px rgba(51,64,239,1);
    box-shadow: inset 0px 0px 0px 2px rgba(51,64,239,1);
    background-color: #ffffff;
}
/* / s4 */
/* s5 */
.s5 {
    padding: 40px;
    background-color: #060c1c;
}
.s5-container {
    max-width: 950px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.s5__title {
    font-size: 24px;
    text-align: center;
    color: #ffffff;
    width: calc(100% - 350px);
}
.s5 .zayavka-btn {
    background-color: #303ce7;
    color: #fff;
    width: 250px;
}
/* / s5 */
/* s6 */
.s6 .up-title {
    text-align: center;
}
.s6 .title {
    text-align: center;
    max-width: 770px;
    margin: 0 auto 40px auto;
}
.s6 .group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.s6 .group__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(100% / 4 - 14px);
    margin-right: calc(14px * 4 / 3);
    padding: 60px 4%;
    min-height: 475px;
}
.s6 .group__item::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #262e44;
    opacity: 0.58;
    top: 0;
    left: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 1;
}
.s6 .group__item:hover::before {
    background-color: rgba(51,63,239,1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
}
.s6 .group__item::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(51,63,239,0.8)), to(rgba(70,84,240,0)));
    background: linear-gradient(top, rgba(51,63,239,0.8) 0%, rgba(70,84,240,0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(51,63,239,0.8)), color-stop(100%, rgba(70,84,240,0)));
    background: -o-linear-gradient(top, rgba(51,63,239,0.8) 0%, rgba(70,84,240,0) 100%);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(51,63,239,0.8)), to(rgba(70,84,240,0)));
    background: -o-linear-gradient(bottom, rgba(51,63,239,0.8) 0%, rgba(70,84,240,0) 100%);
    background: linear-gradient(to top, rgba(51,63,239,0.8) 0%, rgba(70,84,240,0) 100%);
    bottom: 0;
    left: 0;
    z-index: 1;
}
.s6 .group__item:nth-child(4n) {
    margin-right: 0;
}
.s6 .group__item--img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.s6 .group__item--title {
    position: relative;
    color: #fff;
    z-index: 2;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
}
.s6 .group .group__item .meaning-list {
    width: 100%;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 2;
    display: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    /* -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; */
    margin-bottom: 50px;
}
.s6 .group .group__item:hover .meaning-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.s6 .group .meaning-list .meaning-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}
.s6 .group .meaning-list .meaning-list__item:last-child {
    margin-bottom: 0;
}
.s6 .group .meaning-list .meaning-list__icon {
    display: block;
    margin-right: 10px;
    width: 22px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.s6 .group .meaning-list .meaning-list__sign {
    color: #ffffff;
    display: block;
    text-transform: inherit;
}
.s6 .group .group__item .zayavka-btn {
    width: 100%;
    border: 1px solid #fff;
    color: #fff;
    position: relative;
    z-index: 2;
    display: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.s6 .group .group__item:hover .zayavka-btn {
    display: block;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* / s6 */
/* location */
.location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.location .left-side,
.location .right-side {
    width: calc(100% / 2);
}
.location .right-side .right-side-container {
    margin: 0 240px 0 130px;
}
.location .right-side {
    background-image: -webkit-gradient(linear,left top, left bottom,from(rgba(0,0,0,0.8)),to(rgba(0,0,0,0.8))),url('../img/background_location.jpg');
    background-image: -o-linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url('../img/background_location.jpg');
    background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url('../img/background_location.jpg');
    background-position: center;
    background-repeat: no-repeat;background-size: cover;
}
.location .title,
.location p {
    color: #fff;
    max-width: 465px;
}
.location .up-title {
    margin-bottom: 20px;
    color: #fff;
}
.location .contactform {
    max-width: 465px;
    margin-top: 30px;
}
.location .contactform .field-group .field-group-container {
    width: 100%;
}
.location .contactform .field-group input[type="text"],
.location .contactform .field-group input[type="email"],
.location .contactform .field-group input[type="tel"],
.location .contactform .field-group input[type="submit"] {
    width: 100%;
    border: none;
    background-color: rgba(255, 255, 255, 1);
    margin: 0;
    padding: 15px 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    color: #333333;
    border-radius: 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-left: 11px solid transparent;
    height: 52px;
}
.location .contactform .field-group input[type="text"]:focus,
.location .contactform .field-group input[type="email"]:focus,
.location .contactform .field-group input[type="tel"]:focus,
.location .contactform .field-group input[type="email"]:hover,
.location .contactform .field-group input[type="tel"]:hover,
.location .contactform .field-group input[type="text"]:hover {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-left: 11px solid #3340ef;
}
.location .contactform .field-group-container .field-group_item {
    margin-bottom: 10px;
    width: 100%;
}
.location .contactform .field-group input[type="submit"] {
    background: rgb(51,64,239);
    background: -webkit-gradient(linear, left top, right top, from(rgba(51,64,239,1)), to(rgba(51,64,237,1)));
    background: -o-linear-gradient(left, rgba(51,64,239,1) 0%, rgba(51,64,237,1) 100%);
    background: linear-gradient(90deg, rgba(51,64,239,1) 0%, rgba(51,64,237,1) 100%);
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    color: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    height: 52px;
    line-height: 52px;
}
.location .contactform .field-group .field-group_item.submit {
    position: relative;
}
.location .contactform .field-group .field-group_item.submit::before {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #012068;
    width: 70px;
    height: 100%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.location .contactform .field-group .field-group_item.submit::after {
    content: '';
    display: block;
    width: 25px;
    height: 20px;
    position: absolute;
    right: 22px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url('../img/icons/right-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.location .contactform .field-group input[type="submit"]:hover,
.location .contactform .field-group input[type="submit"]:focus {
    background-color: #012068;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.location .contactform .field-group .field-group_item.submit:hover::after {
    -webkit-animation: blink  1s 1 ease-in-out;
    animation: blink  1s 1 ease-in-out;
}
.location .contactform .field-group ::-webkit-input-placeholder {color:rgba(51,51,51,1);}
.location .contactform .field-group ::-moz-placeholder          {color:rgba(51,51,51,1);}
.location .contactform .field-group :-moz-placeholder           {color:rgba(51,51,51,1);}
.location .contactform .field-group :-ms-input-placeholder
{color:rgba(51,51,51,1);}
/* / location */

/* /main page */
/* / o kompanii */

.asldk {
    line-height: 1;
}
.o-kompanii .content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.o-kompanii .content-container .left-side,
.o-kompanii .content-container .right-side {
    width: calc(100% / 2 - 30px);
}
.o-kompanii .content-container .right-side img {
    width: 100%;
    max-height: 520px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    overflow: hidden;
    border-radius: 50px;
}
.__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 40px 0;
}
.__buttons .zayavka-btn {
    background-color: #012068;
    margin-right: 20px;
    color: #fff;
}
.__buttons .link-btn {
    color: #012068;
    border: 1px solid #012068;
}
.benefits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px;
}
.benefits .benefits__item {
    width: calc(100% / 3 - 20px);
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.benefits .benefits__icon {
    content: '';
    display: block;
    width: 46px;
    height: 39px;
    background-position: center top;
    background-repeat: no-repeat;
    margin: 0 auto 25px auto;
}
.benefits .benefits__icon.multiple-users-silhouette {
    background-image: url('../img/icons/multiple-users-silhouette.png');
}
.benefits .benefits__icon.cargo-truck {
    background-image: url('../img/icons/cargo-truck.png');
}
.benefits .benefits__icon.growth {
    background-image: url('../img/icons/growth.png');
}
.benefits .benefits__text {
    text-align: center;
    margin-bottom: 0;
    display: block;
    text-indent: 0;
}
.o-kompanii__link {
    font-size: 30px;
    font-weight: 700;
    color: #012068;
    text-decoration: none !important;
}
.o-kompanii__link:first-of-type {
    margin-right: 20px;
}
.o-kompanii__link:last-of-type {
    margin-left: 20px;
}
/* / o kompanii */
/* kontakty */
.kontakty .p-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 30px auto;
}
.kontakty .p-content p {
    text-align: center;
}
.kontakty .contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.kontakty .contacts .contacts__item {
    width: calc(100% / 4 - 14px);
    padding: 40px 30px 40px 80px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #f3f3f3;
    border-radius: 10px;
    position: relative;
}
.kontakty .contacts .contacts__item::before {
    content: '';
    width: 20px;
    height: 30px;
    position: absolute;
    top: 45px;
    left: 40px;
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
}
.kontakty .contacts .contacts__item.pin::before {
    background-image: url('../img/icons/pin.png');
}
.kontakty .contacts .contacts__item.clock::before {
    background-image: url('../img/icons/clock.png');
}
.kontakty .contacts .contacts__item.phone::before {
    background-image: url('../img/icons/phone.png');
}
.kontakty .contacts .contacts__item.envelope::before {
    background-image: url('../img/icons/envelope.png');
}
.kontakty .contacts .contacts__item p,
.kontakty .contacts .contacts__item a {
    margin-bottom: 10px;
    display: block;
    line-height: 1.5;
}
.kontakty .contacts .contacts__item p:last-child,
.kontakty .contacts .contacts__item a:last-child {
    margin-bottom: 0;
}
/* / kontakty */
/* 404 */
.not-found .bg p {
    text-align: center;
    margin-top: 20px;
}
/* /404 */
.down-btn {
    margin-bottom: 80px;
}
.up-btn {
    margin-top: 80px;
}
.btn-content {
    text-align: center;
    display: flex;
    justify-content: center;
}
.btn-content a{
    display: block;
    width: 500px;
    height: 120px;
    font-size: 36px;
    color: white;
    text-align: center;
    line-height: 120px;
    /*background: linear-gradient(128deg, rgb(142 69 222) 40%, rgb(156 70 219) 58%);*/
    border-radius: 100px;
    z-index: 1;
    position: relative;
}
.btn-content a:hover{
    animation-name: circle;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes circle{
    0%{
        background: rgba(235, 50, 50, 0.1);
        box-shadow: 0px 0px 20px 0px rgba(235,50,50,0.6);
    }
    20%{
        background: rgba(152, 44, 240, 0.1);
        box-shadow: 0px 0px 20px 0px rgba(152,44,240,0.6);
    }
    40%{
        background: rgba(41, 108, 243, 0.1);
        box-shadow: 0px 0px 20px 0px rgba(41,108,243,0.6);
    }
    60%{
        background: rgba(37, 247, 145, 0.1);
        box-shadow: 0px 0px 20px 0px rgba(37,247,145,0.6);
    }
    80%{
        background: rgba(175, 251, 32, 0.1);
        box-shadow: 0px 0px 20px 0px rgba(175,251,32,0.6);
    }
    100%{
        background: rgba(255, 70, 28, 0.1);
        box-shadow: 0px 0px 20px 0px rgba(255,70,28,0.6);
    }
}

/**************************************************/
/**********************TABLE*STILE*****************************/
/* Общие стили для таблицы */
table {
    width: 100%;                  /* Ширина таблицы на всю доступную область */
    border-collapse: collapse;    /* Убираем промежутки между ячейками */
    margin: 20px 0;               /* Отступы сверху и снизу таблицы */
    font-family: Arial, sans-serif; /* Шрифт таблицы */
}

/* Стилизация заголовков таблицы */
th {
    background-color: #edb155;    /* Цвет фона для заголовков */
    color: white;                 /* Цвет текста заголовков */
    text-align: center;             /* Выравнивание текста по левому краю */
    padding: 12px 15px;           /* Отступы в ячейке */
}

/* Стили для ячеек таблицы */
td {
    background-color: #f9f9f9;    /* Цвет фона для ячеек */
    text-align: center;             /* Выравнивание текста по левому краю */
    padding: 10px 15px;           /* Отступы в ячейке */
    border-bottom: 1px solid #ddd; /* Линия под ячейками */
}

/* При наведении на строки таблицы */
tr:hover {
    background-color: #f1f1f1;    /* Цвет фона для строки при наведении */
}

/* Альтернативные строки с разным фоном */
tr:nth-child(even) {
    background-color: #f2f2f2;    /* Светло-серый фон для четных строк */
}

tr:nth-child(odd) {
    background-color: #ffffff;    /* Белый фон для нечетных строк */
}

/* Стили для последней строки */
tr:last-child td {
    border-bottom: none;          /* Убираем нижнюю границу у последней строки */
}

/**************************************************************/
img{
        display: flex;
    margin: 0 auto;
    padding: 15px 0;
    width: 60%;
    justify-content: center;
}
.faq_bottom{
    padding-bottom:20px;
}
@media (max-width: 768px) {
    .btn-content a {
        font-size: 23px;
        width: 90%;
        margin: 0 auto;
        /* padding: 0; */
        height: 60px;
        line-height: normal;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}