*, *:before, *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
}
ul, li {
    list-style: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
/* ---------------------------------------------- /*
 * Mouse animate icon
/* ---------------------------------------------- */
.mouse-icon {
    border: 2px solid #000;
    border-radius: 16px;
    height: 40px;
    width: 24px;
    display: block;
    z-index: 10;
    opacity: 0.7;
    position: absolute;
    bottom: 10px;
    left: 50%;
  }
  .mouse-icon .wheel {
    -webkit-animation-name: drop;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    -webkit-animation-name: drop;
            animation-name: drop;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
            animation-play-state: running;
  }
  .mouse-icon .wheel {
    position: relative;
    border-radius: 10px;
    background: #000;
    width: 2px;
    height: 6px;
    top: 4px;
    margin-left: auto;
    margin-right: auto;
  }
  @-webkit-keyframes drop {
    0% {
      top: 5px;
      opacity: 0;
    }
    30% {
      top: 10px;
      opacity: 1;
    }
    100% {
      top: 25px;
      opacity: 0;
    }
  }
  @keyframes drop {
    0% {
      top: 5px;
      opacity: 0;
    }
    30% {
      top: 10px;
      opacity: 1;
    }
    100% {
      top: 25px;
      opacity: 0;
    }
  }


/* scrollbar  webkit */

*::-webkit-scrollbar { 
    width: 24px;
    height: 230px;
    border-radius: 13px;
}
*::-webkit-scrollbar-button {  
    background-color: transparent;
 } 
*::-webkit-scrollbar-track {
      /* background-color: #fff; */
      
}
*::-webkit-scrollbar-track-piece { 
    background-color: #c4c4c4;
    border-radius: 13px;
    width: 28px;
}
*::-webkit-scrollbar-thumb {
    height: 82px;
    background-color: #2B4F91;
    /*box-shadow: inset 0 0 0px 6px #c4c4c4;*/
    border-radius: 13px;
    border: none;
    outline: none;
}

/* .advantages__text::-webkit-scrollbar-corner { background-color: #999;}
.advantages__text::-webkit-resizer { background-color: #666;}  */

/* end webkit scrollbar */


/* FAQ BLOCK */
.faq {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.faq__list {
    width: 400px;
    padding: 56px 70px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    flex-grow: 1;
    padding-top: 0;
    padding-left: 0;
}
.faq__item {
    margin-bottom: 65px;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 42px;
    color: #2B4F91;
    cursor: pointer;
    position: relative;
}

.faq__item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-image: url(images/terminal-link-underline_blue.svg);
    background-repeat: repeat-x;
}
.faq__desc-wrap {
    width: 800px;
    height: 700px;
    overflow: hidden;
    margin-top: 0;
    /* margin-right: 100px; */
    flex-grow: 1;
}
.faq-desc {
	overflow-y: auto;
	height: 100%;
	/* padding-right: 25px; */
}
.faq-link {
    width: 100%;
    display: block;
    height: 122px;
    background-color: #F2F2F2;
    font-style: normal;
    font-weight: 300;
    font-size: 30px;
    line-height: 130%;
    color: #000000;
    text-decoration: none;;
    display: flex;
    align-items: center;
    padding-left: 62px;
    position: relative;
    margin-bottom: 9px;
    text-transform: uppercase;
    padding-right: 110px;
}
.faq-link:before {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(images/ArrowShadowCircle.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    right: 44px;
    transition: .5s;
}
.faqLinkRotate:before {
    transform-origin: center center;
    transform:translateY(-50%) rotate(90deg);
}

.order-desc__block-wrap,
.quality-desc__block-wrap,
.deadlines-desc__block-wrap,
.price-desc__block-wrap {
    /* width: 1200px; */
    height: 600px;
    overflow: hidden;
    margin: 40px auto;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    color: #000000;
    transition: .5s;
    /* display: none; */
}
.blockHeight {
    height: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.order-desc__block,
.quality-desc__block,
.deadlines-desc__block,
.price-desc__block {
    overflow-y: auto;
    padding-right: 70px;
    height: 100%;
}
@media (max-width: 1200px) {
    .faq__desc-wrap {
        margin-top: 0;
    }
    .faq__list {
            padding: 26px 20px;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
    }
    .faq__item {
        margin-bottom: 25px;
        font-size: 26px;
        line-height: 42px;
    }
}

@media (max-width: 576px) {
    .faq-link {
        width: 100%;
        display: block;
        height: unset;
        background-color: #F2F2F2;
        font-style: normal;
        font-weight: 300;
        font-size: 18px;
        line-height: 130%;
        color: #000000;
        text-decoration: none;;
        display: flex;
        align-items: center;
        padding-left: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        position: relative;
        margin-bottom: 9px;
        text-transform: uppercase;
        padding-right: 70px;
    }
}



/* END FAQ BLOCK */