@os: 'Open Sans', sans-serif;

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.space-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.v-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}
.flex_and { 
    -webkit-box-align:end;
    -webkit-align-items:flex-end;
    -ms-flex-align:end;
    align-items:flex-end;

}

body {
    font-family: @os;
    line-height: 1;

    @media (max-width: 992px) {
        overflow-x: hidden;
    }
}

.header {
    padding: 30px 0;

    flex-wrap: wrap;
    @media (max-width: 992px) {
        display: block;
        text-align: center;


        .phone_header  {
            padding: 15px 0;
        }
    }
}
.phone_header {
    color: #909090;
    font-size: 14px;
    width: 180px;
    margin: 0 auto;
    text-align: right;
    background: url(../img/phone-icon.svg) no-repeat left center;
    padding-left: 20px !important;
    position: relative;
    left: 10px;

    span.phone_bold {
        font-size: 18px;
        padding-left: 10px;
        font-weight: 600;
    }
}

.first_title {
    background: url(../img/pdf.svg) no-repeat left center;
    background-size: 59px 72px;


    h1 {
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 33px;
        font-weight: 600;
        text-transform: uppercase;
        padding-left: 80px;
        line-height: 1.3;
        @media (max-width: 992px) {
            font-size: 20px;
        }
    }
}

.blue_bg {
    background: #006bac;
    padding: 50px 0;
}
.text {
    span {
        text-transform: uppercase;
        color: rgba(254, 254, 254, 0.51);
        font-size: 16px;
        padding: 0 30px 0 53px;
        @media (max-width: 767px) {
            padding-left: 80px;
        }
    }
}

.mb_5 {
    margin-bottom: 5px;
    padding-left: 28px;
}
.mb_2 {
    margin-bottom: 2px;
}
.pt_25 {
    padding-top: 25px;
}
.preview {
    position: absolute;top: -60px;
    @media (max-width: 992px) {
        position: static;


    }
    @media (max-width: 500px) {
        img {
            width: 100%;
            height: auto;
        }
    }
}
.form {
    padding: 20px 25px;
    background: #f9f9f9;
    position: absolute;
    width: 320px !important;
    border-radius: 5px;
    z-index: 9;
    top: 85px;
    border: 1px solid #f1f1f1;
    border-radius: 7px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 10px;

    @media (max-width: 992px) {
        transform: translateX(0);
        margin-left: 0;
        width: 100% !important;
        max-width: 340px;
        margin: 0 auto;
    }
    @media (max-width: 767px) {
        margin-top: 40px !important; 
    }
    &:after {
        display: block;
        content:"";
        left: 0;
        top: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        background: #f9f9f9;
        z-index: 0;
        border-radius: 5px;
    }
    &:before {
        display: block;
        border-radius: 5px;
        content:"";
        left: 0;
        top: 6px;
        height: 100px;
        width: 100%;
        position: absolute; 
        -webkit-box-shadow: 0px 0px 20px 0px rgba(8, 75, 115, 1);
        -moz-box-shadow:    0px 0px 20px 0px rgba(8, 75, 115, 1);
        box-shadow:         0px 0px 20px 0px rgba(8, 75, 115, 1);
        @media (max-width: 767px) {
            display: none !important; 
        }
    }
    @media (max-width: 992px) {
        position: static;
        margin-top: 25px;
    }

    button {
        background: #6CB113;
        color: #fff;
        font-size: 15px;
        border: none;
        border-radius: 3px;
        width: 100%;
        padding: 17px 0;
        outline: none;
        text-transform: uppercase;
        transition: 0.5s;

        @media (max-width: 992px) {
            font-size: 13px;
        }

        &:hover {
            background: #84C72E;

        }

    }
}
form button, form div{
    position: relative;
    z-index: 999;
}
.inpt {
    background-color: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 3px;
    width: 100%;
    margin-bottom: 20px;
    height: 45px;
    outline: none;
    line-height: 1.4;
    position: relative;
    z-index: 999;
    padding-left: 43px;
    background: #fff url(../img/name-icon.svg) no-repeat 15px center;

    &.email {
        background: #fff url(../img/mail-icon.svg) no-repeat 15px center;
    }
    &.phone {
        background: #fff url(../img/phone-icon-form.svg) no-repeat 15px center;
    }
}

.form_title {
    color: #006bac;
    text-align: center;
    font-size: 16px;
    border-bottom: 1px solid #ededed;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 999; 
    &:after {
        display: block;
        height: 1px;
        width: 100%;
        content: "";
        background: #fff;
        position: absolute;
        bottom: -2px;

    }
}
.confirm {
    color: #b9b9b9;
    font-size: 10px;
    text-align: center;
    padding-top: 20px;
    line-height: 1.4;
    position: relative;
    z-index: 999;

    a {
        color: inherit;
        text-decoration: underline;

        transition: 0.5s;

        &:hover {
            color: #848484;
        }
    }
}

.text_title {
    color: #393939;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.p50 {
    padding: 50px 15px;
}

.list {

    ul {
        list-style: none;
        padding: 0;
        margin: 0;
        padding-top: 45px;
        li {
            background: url(../img/check-icon.svg) no-repeat left center;
            padding-left: 38px;
            color: #555;
            font-size: 16px;
            margin-bottom: 20px;
            line-height: 1.4;

            span {
                font-weight: 700;
            }
        }
    }
}

.gray_bg {
    background: #efefef;
    padding: 50px 0;
    padding-bottom: 60px;

    @media (max-width: 992px) {
        text-align: center;
        padding: 20px 0;
        .row {
            display: block;
        }
        .igor_img {
            margin-bottom: 25px;
        }
    }

    p.text {
        color: #313131;
        font-size: 17px;
        line-height: 1.4;
        margin: 0;
        padding-bottom: 10px;
    }
    p.author {
        color: #787878;
        font-size: 14px;
        margin: 0;
        padding-top: 10px; 
        @media (max-width: 992px) {
            line-height: 1.4;
        }
        span {
            font-weight: 700;
        }
    }
}

.gray_2 {
    background: #4e4e4e;
    padding: 50px 0;

    .title_gray {
        color: #fff;
        font-size: 23px;
        font-weight: 600;
        padding-bottom: 40px;
        @media (max-width: 992px) {
            line-height: 1.4;
        }
    }
    .download_link {
        text-align: center;


        a {
            background: #bbd610;
            font-size: 23px;
            color: #373737;
            display: inline-block;
            padding: 20px 35px;
            text-transform: uppercase;
            border-radius: 3px;
            transition: 0.5s;
            &:hover {
                text-decoration: none;
                background: #DDFF0D;
            }

            &:focus, &:active {
                text-decoration: none;

            }
        }
    }
}
.copy {
    color: #989898;
    font-size: 13px;
    @media (max-width: 992px) {
        text-align: center;

    }
}
.foot_menu {
    ul {
        margin: 0;
        padding: 0;
        text-align: right;

        li {
            display: inline-block;
            padding: 0 15px;
            @media (max-width: 992px) {
                display: block;
                text-align: center;
            }

            a {
                text-decoration: underline;
                color: #989898;
                font-size: 13px;
                transition: 0.3s;
                @media (max-width: 992px) {
                    padding: 5px 15px;
                    display: block;
                }

                &:hover {
                    color: #000;
                }
            }
        }
    }
}
footer {
    padding: 20px 0;
}

.dot_1 { 
    width: 30px;
    height: 33px;
    position: relative;

    span {
        position: absolute;
        display: block;
        background: #3b84b1;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        opacity: 0.3;
        transition: 0.25s;

        &.active {
            opacity: 1;
            background: red;
        }

        &:nth-child(1) {
            left: 0;
            top: 0;
        }
        &:nth-child(2) {
            left: 4px;
            top: 13px;
        }
        &:nth-child(3) {
            left: 12px;
            top: 23px;
        }
        &:nth-child(4) {
            left: 24px;
            top: 27px;
        }
    }
}

.dot_2 { 
    width: 375px; 
    position: relative;
    margin-bottom: 5px;

    span {
        display: block;
        background: #3b84b1;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        margin-left: 5px;
        opacity: 0.3;
        transition: 0.25s;

        &.active {
            opacity: 1;
            background: red;
        }
    }
}


.trip_wire2, .trip_wire { 

    .form {
        margin-left: 100px;

        @media (max-width: 992px) {
            margin-left: 0;
            margin: 0 auto;
        }
    }

    @media (max-width: 992px) {
        padding-top: 0 !important;
    }

    transition: padding 0.5s;

    .phone_header { 
         -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
              float: right;
    }

    footer {
        background: #303030;
    }

    .gray_text {
        padding: 30px 0;
        background: #f4f4f4;
        h3 {
            margin: 0;
            color: #5b5b5b;
            font-size: 16px;
            padding-bottom: 27px;
            font-weight: bold;
            @media (max-width: 992px) {
                line-height: 1.4;
                padding-bottom: 20px;
            }

        }
        p {
            color: #8f8f8f;
            font-size: 14px;
            line-height: 1.4;
        }
    }

    .blue_block {
        background: #006bac;
        padding: 60px 0;
        @media (max-width: 992px) {
            padding: 40px 0;
        }

        .blue_title {
            color: #fefefe;
            font-size: 32px;
            font-weight: 600;
            @media (max-width: 992px) {
                padding-top: 30px;
                text-align: center;
                line-height: 1.4;
            }
        }
        span {
            color: #bed9e9;
            font-size: 16px;
            display: block;
            padding: 30px 0;
            @media (max-width: 992px) { 
                text-align: center; 
                line-height: 1.2;
            }
        }
    }
}

.get_system {
    @media (max-width: 992px) { 
                text-align: center; 
        }
    a {
        display: inline-block;
        background: #bbd610;
        padding: 20px 25px;
        color: #414b04;
        font-size: 16px;
        font-weight: bold;
        border-radius: 3px; 
        position: relative; 
        -webkit-box-shadow: 0px 4px 0px #045b8f;
        -moz-box-shadow: 0px 4px 0px #045b8f;
        box-shadow: 0px 4px 0px #045b8f;
        text-shadow: 0 1px #dbee61;
        transition: .5s;
        span {
            display: inline;
            color: inherit !important;
            padding: 0 !important;
        }
        &:hover, &:active, &:focus {
            text-decoration: none;
            background: #ddff0d;
        }
    }
}

.white_block_text {
    padding: 50px 15px 50px 15px;
    @media (max-width: 992px) {
        padding: 30px 15px 40px 15px;

        .first_dot {
            display: none;
            
        }
    }
    .title {
        font-size: 25px;
        color: #2a2a2a;
        font-weight: bold;
        padding: 15px 0;
        @media (max-width: 992px) {
            line-height: 1.4;
        }
    }
    .text_wrap {

        p {
            padding-bottom: 15px;
            margin-bottom: 0;
        }
        &.wrap_1 {
            min-height: 105px;
            padding: 15px 0;
            padding-left: 30px;
            background: url(../img/dots-2.svg) no-repeat left center;
            margin-left: 2.5px;
            @media (max-width: 992px) {
                background: none;
                padding-left: 0;
                margin-left: 0;
                padding-bottom: 0;
            }
        }
        &.wrap_2 {
            min-height: 150px;
            padding: 15px 0;
            padding-left: 30px;
            background: url(../img/dots-3.svg) no-repeat left center;
            margin-left: 2.5px;
            @media (max-width: 992px) {
                background: none;
                padding-left: 0;
                margin-left: 0;
                padding-bottom: 0;

            }
        }
    }
    .get_system {
        @media (max-width: 992px) {
            text-align: center;

        }
    }
    .get_system a{
        position: relative;
        left: 50px;
        top: -30px;
        @media (max-width: 992px) {
            position: static;
        }
    }
}
.first_dot {
    height: 30px;
    background: url(../img/dots-1.svg) no-repeat left center;
    margin-left: 2.5px;
    @media (max-width: 992px) {
        background: none;

    }
}
.list_text {

    .title {
        color: #565758;
        font-size: 17px;
        font-weight: bold;
        span {
            padding-right: 20px;
            @media (max-width: 992px) {
                padding-right: 10px;
                color: #006bac;
            }
        }
    }
}

.dark_block {
    background: #303030;
    padding: 45px 0;
    @media (max-width: 992px) {
        padding: 30px 0 45px 0;
    }

    .text {
        color: #fff;
        font-size: 21px;
        line-height: 1.4;
        text-align: center;
        padding: 0 30px;
        @media (max-width: 992px) {
            padding: 0;
        }
    }
    span {
        color: #bbd610;
        font-size: 89px;
        line-height: 0.6;
    }
}

.price_text {
    color: #575757;
    font-size: 18px;
    text-align: center;
    padding: 30px 0;
    line-height: 1.4;
}

.image_bg {
    font-weight: bold;
    color: #151515;
    font-size: 20px;
    padding-bottom: 135px;
    padding-right: 400px;
    background: url(../img/price-bg.png) no-repeat right bottom;
    max-width: 840px;
    margin: 0 auto;
    padding-top: 50px;
    position: relative;
    left: 60px;

    @media (max-width: 992px) {
        padding-bottom: 0;
        padding-right: 0;
        background: none;
        left: 0;
        padding-top: 30px;

    }

    .inline_block {
        display: inline-block;
        text-align: center;
        line-height: 1.4;
    }
}

.about_cost {
    padding: 45px 0 55px 0;
    background: #f0f0f0;

    h3 {
        margin: 0;
        color: #2a2a2a;
        font-size: 25px;
        font-weight: bold;
        padding-bottom: 35px;
        text-transform: uppercase;

        @media (max-width: 992px) {
            font-size: 20px;
            padding-bottom: 20px;
        }

    }
    p {
        margin-bottom: 0;
        line-height: 1.4;
        font-size: 15px;
        color: #575757;
    }
}

.action {
    color: #2a2a2a;
    font-size: 18px;
    text-align: center;
    padding: 50px 15px;
    @media (max-width: 992px) {
        padding: 30px 15px 45px 15px;
        line-height: 1.2;
        p {padding-bottom: 10px;}
    }
    p {
        font-weight: bold;

    }
    .get_system {
        padding-top: 30px;
    }
}

.carousel_control {
    position: relative;
    top: -75px;
}
.gray_bg {
    .gray_bg {
        padding: 0;
    }
}

.form_block {
    padding-top: 65px;
    padding-bottom: 65px;

    -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
        flex-wrap: wrap;
    
    @media (max-width: 992px) {
        padding: 35px 0;
    }


    .title {
        color: #575757;
        font-size: 17px;
        text-align: center;
        line-height: 1.4;
        padding-bottom: 30px;
        padding-top: 20px;
    }

    .price_cer {
        padding-top: 30px;
        color: #151515;
        font-size: 17px;
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
        padding-bottom: 30px;
    }

    .end_action {
        text-align: center;
        color: #b9b9b9;
        font-size: 17px;
        padding: 30px 0 25px 0;
    }

    .form {
        position: static;
        transform: translateX(0); 

        &:after, &:before {
            display: none;

        }

        .form_title {
            line-height: 1.4;
        }
    }
}


#timer-text-d69584775a8b630413d6402962ef2c7a-days,
#timer-text-d69584775a8b630413d6402962ef2c7a-hours ,
#timer-text-d69584775a8b630413d6402962ef2c7a-minutes ,
#timer-text-d69584775a8b630413d6402962ef2c7a-secundes {padding-top: 5px !important;}


#timer-separator-d69584775a8b630413d6402962ef2c7a-hours,
#timer-separator-d69584775a8b630413d6402962ef2c7a-minutes ,
#timer-separator-d69584775a8b630413d6402962ef2c7a-secundes {color: rgba(102, 102, 102, 0.6) !important; font-size: 19px !important; padding: 0px 5px !important;}


@media (max-width: 992px) {
    .gray_bg {
        text-align: center;
        img {
            margin: 0 auto;
        }
    }
}

.owl-nav > div {
    display: block !important;
    position: absolute;
}
.owl-nav {
    position: absolute;
    top: 78px;
    width: 80%;
    left: 10%;


    div {
        opacity: 0.4;
        transition: 0.25s;
        &:hover {
            opacity: 1;
        }
    }

    @media (max-width: 992px) {
        display: none;

    }
}
.owl-next {
    right: 0;
}

#timer2d04e4142d05534dfbe927025c3dd360 {
    min-width: auto !important;
}

.owl-stage-outer {}

.owl-carousel .owl-item img {
    width: 110px;
    margin: 0 auto;
}

.owl-stage {
    .flex;
    .v-center;

    @media (max-width: 992px) {
        flex-wrap: wrap;

        .flex.v-center {
             flex-wrap: wrap;
             img {
                margin: 0 auto !important;
                text-align: center !important;
                
             }

             img[src="img/quote.svg"] {
                margin-top: 15px !important;
             }
        }
    }
}

.owl-dot {
    display: inline-block;
    @media (min-width: 992px) {
        display: none;

    }
    span {
        display: inline-block;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #dedede;
        margin: 5px;
    }

    &.active {
        span {
            background: #adadad;
        }
    }
}
.owl-dots {
    margin-top: 25px;
    margin-bottom: 10px;
}

.shdow_link {
    -webkit-box-shadow: 0px 4px 0px #60692d !important;
    -moz-box-shadow: 0px 4px 0px #60692d !important;
    box-shadow: 0px 4px 0px #60692d !important; 
    text-shadow: 0 1px #dbee61;
}
.pb40 {
    padding-bottom: 40px;
    @media (max-width: 992px) {
        padding-bottom: 30px;
    }
}

#review {

    .igor_img {
        margin-right: 35px;
    }
    .gray_bg {
        &>div {
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
        }
    }
}
@media (max-width: 992px) {
    .trip_wire { 
        .trip_wire .gray_text h3 {
            line-height: 1.4;
            padding-bottom: 20px;
        }
    }
}

img[src="img/price-label.svg"] {
    position: relative;
    top: -1px;
}

i {
    font-style: normal;
}

.red_dich {
    background: #cb1034;
    padding: 15px 0;
    padding-bottom: 20px;
    text-align: center;
    color: #f2d3d6;
    font-size: 14px;
    line-height: 1.5;
    position: fixed;
    width: 100%;
    z-index: 9;
    transition: 0.5s;
    top: -150px;
    @media (max-width: 992px) {
        position: static !important;
    }
    &.visib {
        top: 0;
    }

    .rose {
        color: #f391a2;
    }
    .ttu {
        text-transform: uppercase;
    }

    i {
        position: absolute;
        right: 25px;
        transform: translateY(-50%);
        top: 50%;
        line-height: 1;
        cursor: pointer;
        display: block;
        transition: 0.5s;



        img {
                vertical-align: top;
        transition: 0.3s;
        opacity: 0.4;

        &:hover {
            opacity: 1;
        }
        }
    }
}
@media (max-width: 992px) {
        br {
            display: none;
            
        }
    }
.trip_wire2 {
    .block2 .blue_title {
        font-weight: 300 !important;
        line-height: 1.3;
 
    }

    @media (max-width: 992px) {
        .blue_title + div {
            text-align: center;

            img {
                width: 100%;
                height: auto;
                
            }
            
        }
    }

    .block2 {
        .blue_title + div>img {
            padding: 40px 0;
        }
    }

    .block2 .get_system {
        span {
            color: #d6e1ec;
            font-size: 17px;
            padding: 0 !important;
        }
    }
}
.trip_wire2 .block2 span {
    color: #8bb0ca;
    padding: 0;
    padding-bottom: 20px;
}


.very_big_block {
    padding-top: 70px;

    .img-responsive {
        margin: 0 auto;
        padding: 50px 0;
    }

    .text_bottom {
        text-align: justify;
        color: #888;
        font-size: 15px;
              -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
        line-height: 1.2;

        div:nth-child(1),div:nth-child(3) {
            max-width: 435px;
        }

        @media (max-width: 767px) {
            flex-wrap: wrap;

            .padding_side {
                img {display: none;}
                padding: 17.5px 0; 
            }
        }
    }
    .padding_side {
        margin: 0 40px; 
    }


    .top_p {
        color: #575757;
        font-size: 19.7px;
        text-align: center;
        line-height: 1.3;
        
        span {
            display: block;
            font-weight: bold;
            color: #2a2a2a;
            font-size: 28px;
            padding-top: 30px;
        }
    }

    .border_block {

        font-size: 17px;
        text-align: center;
        line-height: 1.3;
        padding: 30px 35px;
        border: 5px solid #006bac;
        margin: 50px 0;

        span {
            text-transform: uppercase;
            font-weight: 600;
        }
    }

    .bottom_text {
        color: #575757;
        font-size: 17px;
        font-weight: 300;
        line-height: 1.4;
        p {
            margin: 0;
            padding-top: 50px;
            padding-bottom: 60px;
            img {
                cursor: pointer;
            }
        }
    }
}

@media (max-width: 767px) {
    .very_big_block .bottom_text p {
        padding: 30px 0 40px !important;
    }
}

.file_list_page {
    @media (max-width: 992px) {
        .get_system a {
            font-size: 14px;

            img {
                margin-top: 8px;
            }
        }
    }
    .transparent_link, .transparent_link:hover, .transparent_link:active, .transparent_link:focus {
        background-color: transparent;
        box-shadow: none;
        border: none;
        color: #fff;
        font-size: 16px;
        box-shadow: none !important;
        text-shadow: none !important;
        font-weight: 400 !important;
        img {
            position: relative;
        }
    }
    .transparent_link {
        opacity: 0.65;
        transition: opacity 0.3s;
    }
    .transparent_link:hover {
        opacity: 1;
    }
    .transparent_link:hover img{
        -webkit-animation: mymove 0.6s infinite; /* Chrome, Safari, Opera */ 
    animation: mymove 0.6s infinite;
    -webkit-animation-direction: alternate; /* Chrome, Safari, Opera */
    animation-direction: alternate;
    animation-timing-function: linear;
    }

    @-webkit-keyframes mymove {
        from {top: -3px;}
        to {top: 3px;}
    } 

    /* Standard syntax */ 
    @keyframes mymove {
        from {top: -3px;}
        to {top: 3px;}
    }

    .doc_title {
        color: #333;
        font-size: 25px;
        font-weight: bold;
        padding: 45px 0 0 0;
    }

    .doc_name {
        font-weight: bold;
        font-size: 17px;
        color: #333;
        @media (max-width: 992px) {
            padding-top: 25px;
        }
    }

    .doc_desc {
        color: #848484;
        font-size: 14px;
        line-height: 1.3;
        padding: 25px 0;
    }

    .link_download {
        @media (max-width: 992px) {
            text-align: center;

            a {
                margin: 0 !important;
            }
            
            a:nth-child(1) {
                 margin-bottom: 15px !important;
            }
        }
        a {
            color: #333;
            font-size: 14px;
            border: 1px solid #D6D6D6;
            padding: 23px 20px 23px 55px;
            border-radius: 3px;
            background-size: 25px !important;
            display: inline-block;
            overflow: hidden;
            transition-timing-function: linear;
            background-position: 17px center !important;
            transition: 0.3s;

            

            &:nth-child(2) {
                 margin-left: 25px;
            }

            &:hover {
                text-decoration: none;
                background-position: center center !important;
                &.word {
                    border: 1px solid #337ab7;
                }
                &.pdf {
                   border: 1px solid #F27265;
                }
                
                span {
                    right: -200px;
                    opacity: 0;
                }
            }

            span {
                right: 0;
                position: relative;
                transition: 0.3s;
                transition-timing-function: linear;
            }

            &.word {
                background: url(../img/3/doc.svg) no-repeat;
            }
            &.pdf {
                background: url(../img/3/pdf.svg) no-repeat;
               
            }
        }
    }

    .doc_list {
        padding: 50px 0;

        &:nth-child(even) {
            background: #f8f8f8;
        }
    }

    .dark_block {
        a {
            -webkit-box-shadow: 0px 4px 0px #151515;
            -moz-box-shadow: 0px 4px 0px #151515;
            box-shadow: 0px 4px 0px #151515; 
        }
    }
}