/*Settings*/
*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    -webkit-text-size-adjust: 100%;
    line-height: 1.15;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    outline: none;
}
main{
    display: block;
}
hr{
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
a{
    background-color: transparent;
}
b, strong{
    font-weight: bolder;
}
img{
    border-style: none;
}
button, input, select, textarea{
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
button, input{
    overflow: visible;
}
button, select{
    text-transform: none;
}
button, [type="button"], [type="reset"], [type="submit"]{
    -webkit-appearance: button;
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner{
    border-style: none;
    padding: 0;
}
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring{
    outline: 1px dotted ButtonText;
}
textarea{
    overflow: auto;
}
[type="checkbox"], [type="radio"]{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button{
    height: auto;
}
::-webkit-file-upload-button{
    -webkit-appearance: button;
    font: inherit;
}
.wrapper{
    max-width: 1170px;
    padding: 0 10px;
    margin: 0 auto;
}

/*animations*/
.slideUp{
    animation-name: slideUp;
    -webkit-animation-name: slideUp;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important;
}
@keyframes slideUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        opacity: 1;
    }
}
@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0%);
        opacity: 1;
    }
}
@-webkit-keyframes opC {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*styles*/
/*home*/
header.home{
    /*background: -webkit-gradient(linear, left top, right top, from(#FF9966), to(#FF5E62));*/
    /*background: -o-linear-gradient(left, #FF9966 0%, #FF5E62 100%);*/
    /*background: linear-gradient(90deg, #FF9966 0%, #FF5E62 100%);*/
    background: #F4F5FD;
    height: 661px;
    padding-top: 94px;
    position: relative;
    background-image: url("/images/main-lines-min.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
}
header.home.services{
    box-sizing: border-box;
    background-image: url("/images/service-lines-min.png");
}
header.home.pol{
    height: 200px;
    background-image: url(/images/subtitle-lines-min.png);
    background-size: contain;
}
.home__banner-img1{
    position: absolute;
    left: 0;
    bottom: 0;
}
.home__banner-img2{
    position: absolute;
    right: 0;
    bottom: 0;
}
header.not_o .header{
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10000;
}
header.not_o.h-fixed .header{
    position: fixed;
}
header.not_o .header.h-anim{
    /*animation: 1s opC ease-in-out;*/
}
header.home.h-fixed .header{
    /*background: -webkit-gradient(linear, left top, right top, from(#FF9966), to(#FF5E62));*/
    /*background: -o-linear-gradient(left, #FF9966 0%, #FF5E62 100%);*/
    /*background: linear-gradient(90deg, #FF9966 0%, #FF5E62 100%);*/
    background: #F4F5FD;
}
header.h-fixed .header{
    /*background: -webkit-gradient(linear, left top, right top, from(#FF9966), to(#FF5E62));*/
    /*background: -o-linear-gradient(left, #FF9966 0%, #FF5E62 100%);*/
    /*background: linear-gradient(90deg, #FF9966 0%, #FF5E62 100%);*/
    animation: 1s opC ease-in-out;
    background: #F4F5FD;
}
header.order .header.wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /*padding-top: 46px;*/
    padding-top: 23px;
    padding-bottom: 23px;
}
header.h-fixed .header .header-wrapper{
    /*padding-top: 23px;*/
    /*padding-bottom: 23px;*/
    /*animation: 1s opC ease-in-out;*/
}
.header__logo a{
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}
.header__menu-nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
}
.header__menu-nav li{
    margin-right: 30px;
}
.header__menu-nav li:last-child{
    margin-right: 0;
}
.header__menu-nav li a{
    color: #2D3958;
    text-decoration: none;
    line-height: 19px;
    font-weight: 500;
}
.header__menu-nav li a:hover{
    text-decoration: underline;
}
.header__title{
    padding-top: 159px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 48px;
    line-height: 59px;
    color: #2D3958;
    text-align: center;
    text-transform: capitalize;
}
header.home.pol .header__title{
    padding-top: 60px;
}
@media (max-width: 767px){
    .header .header-wrapper{
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
.show-in-mob {
    display: none;
}

.home__services{
    margin-bottom: 120px;
    position: relative;
}
.home__services-block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: -172px;
}
.home__services-block-item{
    background: #fff;
    -webkit-box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    height: 245px;
    width: 370px;
    padding: 33px 0 22px;
    text-decoration: none;
    text-align: center;
}
.home__services-block-item .title{
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 9px;
}
.home__services-block-item.item-translation .title{
    color: #D02443;
}
.home__services-block-item.item-translation.inactive .title{
    color: #8A8A8A;
}
.home__services-block-item.item-transcription .title{
    color: #FFA826;
}
.home__services-block-item.item-subtitles .title{
    color: #FF6939;
}
.home__services-block-item.item-subtitles.inactive .title{
    color: #8A8A8A;
}
.home__services-block-item .price{
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #353535;
}
.home__services-block-item.inactive .price{
    color: #8A8A8A;
}
.home__services-block-item.item-translation .static-img{
    padding: 36px 0 42.5px;
    width: 280px;
    height: 52px;
    margin: 0 auto;
}
.home__services-block-item.item-translation .static-img .half-img{
    width: 280px;
    height: 52px;
    background: url("../images/equalizer.png") center center/contain no-repeat;
}
.home__services-block-item.item-translation.inactive .static-img .half-img{
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='0');
    opacity: 0.5;
}
.home__services-block-item.item-translation .eqanim-block{
    display: none;
    position: relative;
}
.home__services-block-item.item-translation .img-block{
    padding: 36px 0 42.5px;
    position: relative;
    /*width: 280px;*/
    height: 52px;
    /*margin: 0 auto;*/
    left: 0;
    margin: 0 0 0 45px;
    overflow: hidden;
    width: 0;
}
.home__services-block-item.item-translation .eqanim-block .eqanim-empty-block{
    padding: 36px 0 42.5px;
    position: absolute;
    width: 280px;
    height: 52px;
    margin: 0 auto;
    left: 0;
    margin: 0 0 0 45px;
}
.home__services-block-item.item-translation .eqanim-block .eqanim-empty-block .empty-img{
    width: 280px;
    height: 52px;
    background: url("../images/empty-equalizer.png") center center/contain no-repeat;
}
.home__services-block-item.item-translation .img-block .full-img{
    width: 280px;
    height: 52px;
    background: url("../images/full-equalizer.png") center center/contain no-repeat;
}
.static-img.equalize-img{
    display: none!important;
}
.eqanim-block.equalize-img{
    display: block!important;
}
.home__services-block-item.item-transcription .static-img{
    padding: 43px 0 57.5px;
    width: 298px;
    height: 30px;
    margin: 0 auto;
}
.home__services-block-item.item-transcription .static-img .half-img{
    width: 298px;
    height: 30px;
    /*background: url("../images/hme-transcription-track.png") center center/contain no-repeat;*/
    position: relative;
}
.home__services-block-item.item-transcription .static-img .animated-img{
    display: none;
}
.home__services-block-item.item-subtitles .static-img{
    padding: 43px 0 13.5px;
    width: 298px;
    height: 30px;
    margin: 0 auto;
}
.home__services-block-item.item-subtitles .static-img .half-img{
    width: 298px;
    height: 30px;
    /*background: url("../images/hme-subtitles-track.png") center center/contain no-repeat;*/
}
.home__services-block-item.item-subtitles.inactive .static-img .half-img{
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='0');
    opacity: 0.5;
}
.home__services-block-item .description-bg{
    margin-bottom: 15px;
    overflow: hidden;
}
.home__services-block-item .description{
    padding: 8px 22px 7px;
    background: #F8F8F8;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 15px;
    color: #888888;
    /*margin-bottom: 15px;*/
    display: inline-block;
}
.home__services-block-item .more{
    font-weight: 500;
    font-size: 18px;
    color: #8A8A8A;
    width: 198px;
    height: 56px;
    line-height: 56px;
    border: 2px solid #E7E7E7;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 100px;
    margin: 0 auto;

}
.item-transcription.home__services-block-item .more{
    background: #FFA826;
    color: #fff;
    transition: color 0.3s ease;
    transition: background 0.3s ease;
    border-color: #FFA826;
}
.item-transcription.home__services-block-item .more:hover{
    background: #fff;
    color: #FFA826;
}

.home__services-block-item:not(.inactive):hover .img-block{
    -webkit-animation: eqanimation 4s forwards;
    animation: eqanimation 4s forwards;
}
.home__services-block-item:not(.inactive):hover .half-img circle{
    -webkit-animation: circleMove 4s forwards;
    animation: circleMove 4s forwards;
}
.home__services-block-item:not(.inactive):hover .half-img rect#line{
    -webkit-animation: test-animation 4s forwards;
    animation: test-animation 4s forwards;
}
@-webkit-keyframes eqanimation {
    from {
        width:0px;
    }
    to {
        width:100%;
    }
}
@keyframes eqanimation {
    from {
        width:0px;
    }
    to {
        width:100%;
    }
}
@-webkit-keyframes circleMove {
    0% { -webkit-transform: translate(-110px,0); transform: translate(-110px,0)  }
    100%  { -webkit-transform: translate(135px,0); transform: translate(135px,0)}
}
@keyframes circleMove {
    0% { -webkit-transform: translate(-110px,0); transform: translate(-110px,0)  }
    100%  { -webkit-transform: translate(135px,0); transform: translate(135px,0)}
}
@-webkit-keyframes test-animation {
    from {
        width:0px;
    }
    to {
        width:calc( 100% - 39px );
    }
}
@keyframes test-animation {
    from {
        width:0px;
    }
    to {
        width:calc( 100% - 39px );
    }
}
.page-title{
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 40px;
    line-height: 49px;
    color: #2D3958;
    text-align: center;
    margin-bottom: 70px;
}
.page-title span{
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 40px;
    line-height: 49px;
    color: #FA7A51;
}
.for{
    margin-bottom: 86px;
}
.for__slider{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.for__slider-item{
    width: 40%;
    display: flex;
    justify-content: flex-start;
}
.for__slider-item:first-child, .for__slider-item:nth-child(2){
    margin-bottom: 60px;
}
.for__slider-item-ico{
    min-width: 57px;
    height: 57px;
    background-position: center center;
    background-repeat: no-repeat;
}
.igf-ico-1{
    background-image: url("/images/igf-ico-1.svg");
}
.igf-ico-2{
    background-image: url("/images/igf-ico-2.svg");
}
.igf-ico-3{
    background-image: url("/images/igf-ico-3.svg");
}
.igf-ico-4{
    background-image: url("/images/igf-ico-4.svg");
}
.for__slider-item-box{
    margin-left: 30px;
}
.for__slider-item-box-title{
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    color: #202532;
    margin-bottom: 11px;
}
.for__slider-item-box-text p{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #202532;
}
.for__slider-item-box-text ul{
    padding-top: 3px;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #202532;
    list-style-position: inside;
}
/*.for__slider .slick-list{*/
/*    padding-bottom: 50px;*/
/*}*/
/*.for__slider-item.slick-slide{*/
/*    outline: none;*/
/*}*/
/*.for__slider-item-width{*/
/*    width: 815px;*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-pack: justify;*/
/*    -ms-flex-pack: justify;*/
/*    justify-content: space-between;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    margin: 0 auto;*/
/*}*/
/*.for__slider-item .description{*/
/*    max-width: 508px;*/
/*}*/
/*.for__slider-item .img{*/
/*    width: 265px;*/
/*    height: 265px;*/
/*}*/
/*.for__slider-item .img.for-slide-1{*/
/*    background: url("../images/slide-1.png") center center/contain no-repeat;*/
/*}*/
/*.for__slider-item .img.for-slide-2{*/
/*    background: url("../images/slide-2.png") center center/contain no-repeat;*/
/*}*/
/*.for__slider-item .img.for-slide-3{*/
/*    background: url("../images/slide-3.png") center center/contain no-repeat;*/
/*}*/
/*.for__slider-item .img.for-slide-4{*/
/*    background: url("../images/slide-4.png") center center/contain no-repeat;*/
/*    !*margin-right: 137px;*!*/
/*}*/
/*.for__slider-item .description-title{*/
/*    font-family: 'Montserrat', sans-serif;*/
/*    !*font-weight: bold;*!*/
/*    font-size: 40px;*/
/*    line-height: 49px;*/
/*    color: #000000;*/
/*    margin-bottom: 60px;*/
/*}*/
/*.for__slider-item .description-list{*/
/*    list-style: none;*/
/*}*/
/*.for__slider-item .description-list li{*/
/*    font-size: 24px;*/
/*    line-height: 28px;*/
/*    color: rgba(29, 46, 38, 0.6);*/
/*    margin-bottom: 25px;*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*}*/
/*.for__slider-item .description-list li:before{*/
/*    content: '';*/
/*    display: inline-block;*/
/*    margin-right: 27px;*/
/*    width: 12px;*/
/*    height: 12px;*/
/*    background: #AFAFAF;*/
/*    border-radius: 50%;*/
/*    line-height: 1.15;*/
/*}*/
/*.for__slider-item .description-list li:last-child{*/
/*    margin-bottom: 0;*/
/*}*/
/*.for__slider-item .description-text{*/
/*    font-size: 24px;*/
/*    line-height: 28px;*/
/*    color: rgba(29, 46, 38, 0.6);*/
/*}*/
.services{
    background: #F4F4F4;
    padding: 76px 0 85px;
}
.services__block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}
.services__block-item{
    background: #FFFFFF;
    border-radius: 20px;
    width: 48%;
    padding: 34px 40px 40px;
    text-decoration: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.services__block-item.inactive{
    cursor: initial;
}
.services__block-item:first-child, .services__block-item:nth-child(2){
    margin-bottom: 30px;
}
.services__block-item-box{
    display: flex;
    justify-content: space-between;
    margin-bottom: 46px;
}
.services__block-item-box-inn{
    width: 50%;
}
.services__block-item-line{
    background: #E7E7E7;
    opacity: 0.5;
    width: 2px;
    height: 149px;
    margin-top: 20px;
}
.services__block-item .title{
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 34px;
    color: #2D3958;
    text-align: left;
    height: 68px;
    margin-bottom: 23px;
}
.services__block-item.inactive .title{
    color: #8A8A8A;
}
.services__block-item .price{
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #2D3958;
    margin-top: 53px;
    width: 35%;
}
.services__block-item.inactive .price{
    color: #8A8A8A;
}
.services__block-item .price span{
    font-style: normal;
    font-weight: bold;
    font-size: 54px;
    line-height: 65px;
    color: #2D3958;
    text-align: center;
}
.services__block-item.inactive .price span{
    color: #8A8A8A;
}
.services__block-item .text{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    text-align: left;
    color: #202532;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}
.services__block-item.inactive .text{
    color: #8A8A8A;
}
.start{
    text-transform: uppercase;
    width: 186px;
    height: 50px;
    margin: 0 auto;
    text-align: center;
    background: #FFFFFF;
    border: 2px solid #E7E7E7;
    border-radius: 50px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 50px;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    color: #8A8A8A;
}
.services__block-item.hovered:not(.inactive){
    background: linear-gradient(251.91deg, #F66663 0.73%, #F79166 132.98%);
}
.services__block-item.hovered:not(.inactive) .title, .services__block-item.hovered:not(.inactive) .price, .services__block-item.hovered:not(.inactive) .price span, .services__block-item.hovered:not(.inactive) .text{
    color: #fff;
}
.services__block-item.hovered:not(.inactive) .start{
    color: #F66939;
    border-color: #fff;
    background: #fff;
}
.why__us{
    padding: 120px 0 45px;
}
.why__us-block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.why__us-block-item{
    width: 30%;
    margin-bottom: 75px;
}
.why__us-block-item .icon{
    width: 50px;
    height: 50px;
    margin: 0 auto;
    margin-bottom: 47px;
}
.icon.pricing{
    background: url("../images/pricing-ico.png") center center no-repeat;
}
.icon.secure{
    background: url("../images/secure-ico.png") center center no-repeat;
}
.icon.delivery{
    background: url("../images/delivery-ico.png") center center no-repeat;
}
.icon.quality{
    background: url("../images/quality-ico.png") center center no-repeat;
}
.icon.technology{
    background: url("../images/technology-ico.png") center center no-repeat;
}
.icon.support{
    background: url("../images/support-ico.png") center center no-repeat;
}
.why__us-block-item .title{
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    color: #000000;
    margin-bottom: 12px;
    text-align: center;
}
.why__us-block-item .text{
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #8A8A8A;
}

/*section pricing*/
.sec-prc{
    background: #fff;
    padding: 75px 0 85px;
}
.sec-prc__block{
    display: flex;
}
.sec-prc__block-first{
    background: linear-gradient(251.91deg, #F66663 0.73%, #F79166 132.98%);
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 32px 0 46px;
    width: 270px;
}
.sec-prc-list{
    list-style: none;
}
.sec-prc-logo img{
    display: block;
    margin: 0 auto;
}
.sec-prc-logo{
    margin-bottom: 41px;
}
.sec-prc-list-price{
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 10px;
}
.sec-prc-list li:nth-child(2){
    margin-bottom: 25px;
}
.sec-prc-list-price.spec-price{
    font-size: 36px;
    line-height: 42px;
    margin-top: 37px;
    margin-bottom: 0;
}
.sec-prc__block-all{
    background: #FFFFFF;
    border-radius: 0px 20px 20px 0px;
    display: flex;
    margin: 30px 0;
    padding: 20px 0 19px;
}
.sec-prc__block-all-item{
    width: 160px;
}
.sec-prc__block-all-item ul{
    list-style: none;
}
.sec-prc-all-logo{
    height: 40px;
    margin-bottom: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec-prc-all-logo img{
    display: block;
    margin: 0 auto;
}
.sec-prc-list-all-price{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #202532;
    margin-bottom: 10px;
    text-align: center;
}
.sec-prc__block-all-item ul li:nth-child(2){
    padding-bottom: 13px;
    border-bottom: 1px solid rgb(205 205 205 / 0.5);
    margin-bottom: 13px;
}
.sec-prc__block-all-item ul li:last-child{
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    padding-top: 25px;
    margin-top: 21px;
    border-top: 1px solid rgb(205 205 205 / 0.5);
}
.sec-prc__block-titles{
    margin: 30px 0;
    padding: 20px 0 19px;
    width: 420px;
}
.sec-prc__block-titles ul{
    list-style: none;
}
.sec-prc__block-titles-logo{
    height: 40px;
    margin-bottom: 26px;
}
.sec-prc__block-titles-price{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #202532;
    margin-bottom: 10px;
}
.sec-prc__block-titles-price.wt{
    padding-left: 130px;
}
.sec-prc__block-titles-price span{
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    width: 70px;
    margin-right: 60px;
    display: inline-block;
}
.sec-prc__block-titles ul li:nth-child(2){
    padding-bottom: 13px;
    border-bottom: 1px solid rgb(205 205 205 / 0.5);
    margin-bottom: 13px;
}
.sec-prc__block-titles ul li:last-child{
    padding-top: 27px;
    margin-top: 21px;
    border-top: 1px solid rgb(205 205 205 / 0.5);
}
.sec-prc__block-m{
    display: none;
}
.desc {
    display: block;
}
.tablet {
    display: none;
}
@media(max-width: 1024px){
    .tablet {
        display: block;
    }
    .desc {
        display: none;
    }
    .tablet .footer__links-block {
        display: block;
        columns: 2;
    }
    .tablet .footer__links-block li{
        height: auto;
    }
    .sec-prc__block{
        overflow-x: scroll;
    }
    .sec-prc__block-titles-price span{
        margin-right: 20px;
    }
    .sec-prc__block-titles-price.wt{
        padding-left: 90px;
    }
    .sec-prc-logo {
        height: 44px;
        display: flex;
        align-items: center;
    }
    .sec-prc-logo img{
        height: 32px;
    }
}
@media(max-width: 1000px){
    .sec-prc__block-titles{
        min-width: 300px;
    }
    .sec-prc__block-first{
        min-width: 210px;
    }
}
@media(max-width: 767px){
    .sec-prc-wrapper.wrapper{
        padding-left: 10px;
        padding-right: 10px;
    }
    /*.sec-prc__block{*/
    /*    display: none;*/
    /*}*/
    .sec-prc__block-m{
        display: block;
    }
    .sec-prc__block-mtop{
        display: flex;
        justify-content: center;
    }
    .sec-prc__block-mtop .sec-prc__block-titles {
        min-width: 200px;
        width: initial;
        margin: 0;
        padding: 0;
        margin-top: 30px;
    }
    .sec-prc__block-mtop .sec-prc__block-titles-price span{
        display: block;
        font-style: normal;
        font-weight: bold;
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 5px;
        width: initial;
        margin-right: 0;
    }
    .sec-prc__block-mtop .sec-prc__block-titles-price{
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 21px;
    }
    .sec-prc__block-mtop .sec-prc__block-titles-price.wt{
        padding-left: 0;
    }
    .sec-prc__block-mtop .sec-prc__block-first {
        min-width: 145px;
        width: 145px;
        padding: 42px 15px 46px;
        box-sizing: border-box;
    }
    .sec-prc__block-mtop .sec-prc-logo{
        height: 25px;
        margin-bottom: 50px;
    }
    .sec-prc__block-mtop .sec-prc-logo img{
        height: 25px;
    }
    .sec-prc__block-mtop .sec-prc-list li:nth-child(2) {
        margin-bottom: 47px;
    }
    .sec-prc__block-mtop .sec-prc-list-price.spec-price{
        margin-top: 58px;
    }
    .sec-prc__block-mbot{
        max-width: 375px;
        margin: 0 auto;
        margin-top: 38px;
    }
    .sec-prc__block-mbot-title{
        display: block;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 24px;
        color: #202532;
        text-align: center;
    }
    .sec-prc__block-mbot-title span{
        font-weight: bold;
    }
    .sec-prc__block-mbot-box{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 17px;
    }
    .tablet .footer__links-block {
        columns: 1;
    }
}
/*section file types*/
.ftypes{
    padding: 77px 0 78px;
    background: #fff;
}
.ftypes-title{
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 33px;
    font-family: 'Montserrat', sans-serif;
    color: #2D3958;
    margin-bottom: 46px;
}
.ftypes__block{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ftypes__block-line-short{
    background: #CDCDCD;
    opacity: 0.5;
    width: 1px;
    height: 100px;
}
.ftypes__block-line-long{
    background: #CDCDCD;
    opacity: 0.5;
    width: 1px;
    height: 121px;
}
.ftypes__block-item ul{
    list-style: none;
}
.ftypes__block-item ul li{
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 27px;
    color: #202532;
    margin-bottom: 25px;
    text-align: center;
}
.ftypes__block-item ul li:last-child{
    margin-bottom: 0;
}
.ftypes__block-mobile{
    display: none;
}
/*footer*/
footer{
    padding: 56px 0 75px;
    background: #192137;
}
.footer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer__logo{

}
.footer__logo-item{
    margin-bottom: 20px;
}
.footer__logo-item a{
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 36px;
    line-height: 44px;
    color: #fff;
    text-decoration: none;
}
.footer__copyright{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 33px;
    font-family: 'Montserrat', sans-serif;
}
.footer__socials{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer__socials .icon{
    width: 40px;
    height: 40px;
    margin-right: 20px;
}
.icon.inst{
    background: url("../images/fa-brands_instagram.svg") center center no-repeat;
}
.icon.fb{
    background: url("../images/jam_facebook-circle.svg") center center no-repeat;
}
.icon.tw{
    background: url("../images/jam_twitter-circle.svg") center center no-repeat;
}
.footer .title{
    margin-bottom: 36px;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
}
.footer__links-block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer__links-block + .title{
    margin-top: 36px;
}
@media (max-width: 767px){
    .footer__links-block + .title{
        margin-top: 15px;
    }
}
.footer__links-list{
    list-style: none;
    margin-right: 20px;
}
.footer__links-list:last-child{
    margin-right: 0;
}
.footer__links-list li{
    margin-bottom: 19px;
    height: 25px;
}
.footer__links-list li:last-child{
    margin-bottom: 0;
}
.footer__links-list li a{
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
}
.footer__links-list li a:hover{
    text-decoration: underline;
}
.footer__phone{
    display: block;
    text-decoration: none;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}
.footer__mail{
    display: block;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
}
.footer__phone:hover, .footer__mail:hover{
    text-decoration: underline;
}
.term-by{
    margin-top: 50px;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
}
.term-by:after{
    content: 'Transcriberry.com is owned and operated by DDW Corp. Limited, Kastellorizou, 3A, Aglantzia, Nicosia, 2108, Cyprus';
}
/*service-page*/
.services__page{
    margin-bottom: 90px;
    position: relative;
}
.services__page-block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: -172px;
}
.services__page-block-item{
    background: #FFFFFF;
    -webkit-box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    height: auto;
    width: 520px;
    padding: 50px 0 22px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
    overflow: hidden;
}
.services__page-block-item .left{
    width: 50%;
}
.services__page-block-item .right{
    width: 45%;
}
.services__page-block-item .title{
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 13px;
}
.services__page-block-item.item-translation .title{
    color: #D02443;
}
.services__page-block-item.item-translation.inactive .title{
    color: #8A8A8A;
}
.services__page-block-item.item-transcription .title{
    color: #FFA826;
}
.services__page-block-item.item-subtitles .title{
    color: #FF6939;
}
.services__page-block-item.item-subtitles.inactive .title{
    color: #8A8A8A;
}
.services__page-block-item.item-automated .title{
    color: #6C6AE4;
}
.services__page-block-item .price{
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #353535;
    margin-bottom: 19px;
}
.services__page-block-item.inactive .price{
    color: #8A8A8A;
}
.services__page-block-item .text{
    font-size: 18px;
    line-height: 21px;
    color: #8A8A8A;
    width: 80%;
}
.services__page-block-item.inactive .text{
    color: #8A8A8A;
}
.services__page-block-item ul{
    list-style-position: inside;
}
.services__page-block-item ul li{
    font-size: 18px;
    line-height: 21px;
    color: #8A8A8A;
    width: 80%;
}
.services__page-block-item.inactive ul li{
    color: #8A8A8A;
}
.services__page-block-item.item-translation .static-img{
    padding: 20px 0 70px;
    width: 280px;
    height: 81px;
}
.services__page-block-item.item-translation .static-img .half-img{
    width: 280px;
    height: 81px;
    background: url(../images/serv-equalizer.png) center center/contain no-repeat;
}
.services__page-block-item.item-translation.inactive .static-img .half-img{
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='0');
    opacity: 0.5;
}
.services__page-block-item .try{
    display: block;
    border: 2px solid #E7E7E7;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 100px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 56px;
    color: #8A8A8A;
    width: 198px;
    height: 56px;
    outline: none;
}
.services__page-block-item:not(.inactive) .try:hover{
    background: #FA7A51;
    border-color: #FA7A51;
    color: #fff;
}
.services__page-block-item .speaker{
    width: 69px;
    height: 69px;
    background: url("../images/speaker.png") center center/contain no-repeat;
    margin: 0 auto;
    margin-bottom: 25px;
}
.services__page-block-item.item-transcription .static-img{
    width: 298px;
    height: 30px;
    margin-bottom: 47px;
}
.services__page-block-item.item-transcription .static-img .half-img{
    width: 298px;
    height: 30px;
    background: url(../images/hme-transcription-track.png) center center/contain no-repeat;
}
.services__page-block-item.item-subtitles .description{
    font-family: 'Montserrat', sans-serif;
    background: #F8F8F8;
    border-radius: 5px;
    padding: 13px 20px 9px;
    font-size: 16px;
    line-height: 20px;
    color: #888888;
    margin-bottom: 43px;
}
.services__page-block-item.item-subtitles .static-img{
    width: 298px;
    height: 30px;
    margin-bottom: 49px;
}
.services__page-block-item.item-subtitles .static-img .half-img{
    width: 298px;
    height: 30px;
    background: url("../images/hme-subtitles-track.png") center center/contain no-repeat;
}
.services__page-block-item .monitor{
    width: 81px;
    height: 57px;
    padding-top: 4px;
    background: url("../images/monitor.png") center center/contain no-repeat;
    margin: 0 auto;
    margin-bottom: 24px;
}
.services__page-block-item.item-automated .static-img{
    width: 298px;
    height: 30px;
    margin-bottom: 49px;
}
.services__page-block-item.item-automated .static-img .half-img{
    width: 298px;
    height: 30px;
    background: url(../images/automated-track.png) center center/contain no-repeat;
}

/*order-page*/
header.order{
    background: #fff;
    color: #202123;
    box-shadow: 0 4px 20px rgba(8, 6, 82, 0.1);
}
header.order .header{
    padding-top: 20px;
    padding-bottom: 20px;
}
header.order .header__logo a{
    color: #202123;
}
header.order .header__menu-nav{
    margin-bottom: 0;
}
header.order .header__menu-nav li a {
    color: #202123;
}

/*automated-page*/
header.automated{
    padding-top: 94px;
    padding-bottom: 50px;
    background: #F4F5FD;
    background-image: url(/images/automated-lines-min.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    box-sizing: border-box;
}
.header__service__title{
    padding-top: 62px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 48px;
    line-height: 59px;
    color: #2D3958;
    text-align: center;
    margin-bottom: 8px;
}
.header__service__second-title {
    font-size: 23px;
    line-height: 28px;
    text-align: center;
    color: #202532;
    margin-bottom: 39px;
}
.header__automated-images{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
    margin-bottom: 38px;
}
.automated .header__automated-images{
    width: 370px;
}
.header__automated-images-image{
    width: 85px;
    height: 85px;
    background-repeat: no-repeat;
    background-position: center center;
}
.auto-image1{
    background-image: url("/images/auto_banner-1.svg");
    position: relative;
}
.auto-image1:after{
    position: absolute;
    content: '';
    background-image: url("/images/auto_dashed-line.svg");
    width: 55px;
    height: 1px;
    right: -56px;
    top: 50%;
    transform: translateY(-50%);
}
.auto-image2{
    background-image: url("/images/auto_banner-2.svg");
    position: relative;
}
.auto-image2:after{
    position: absolute;
    content: '';
    background-image: url("/images/auto_dashed-line.svg");
    width: 55px;
    height: 1px;
    right: -56px;
    top: 50%;
    transform: translateY(-50%);
}
.auto-image3{
    background-image: url("/images/auto_banner-3.svg");
}
.automated-equalizer{
    background: url("../images/automated-equalizer.png") center center no-repeat;
    height: 74px;
    width: 86px;
    margin-right: 30px;
}
.automated-arrow{
    background: url("../images/automated-arrow.png") center center no-repeat;
    height: 74px;
    width: 12px;
}
.automated-arrow.first{
    margin-right: 24px;
}
.automated-arrow.second{
    margin-right: 34px;
}
.automated-pc{
    background: url("../images/automated-pc.png") center center no-repeat;
    height: 74px;
    width: 105px;
    margin-right: 24px;
}
.automated-paper{
    background: url("../images/automated-paper.png") center center no-repeat;
    height: 74px;
    width: 56px;
}
.header__standart-button{
    display: block;
    max-width: 395px;
    border: 2px solid #FA7A51;
    height: 80px;
    line-height: 80px;
    background: #FA7A51;
    border-radius: 100px;
    outline: none;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
    /* transition: 0.3s all; */
}
.header__standart-button.inactive{
    color: #8A8A8A;
    border: 2px solid #ccc;
    background: #ccc;
}
.header__standart-button:hover{
    border: 2px solid #e16036;
    background: #e16036;
    /*color: #000;*/
    line-height: 80px;
}.header__standart-button.inactive:hover{
     border: 2px solid #ccc;
     background: #ccc;
 }
.automated__quality{
    padding: 120px 10px;
}
.automated__quality .page-title{
    margin-bottom: 21px;
}
.automated__quality-small-title{
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #8A8A8A;
    margin-bottom: 50px;
}
.automated__quality-block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.automated__quality-block-item{
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    width: 570px;
    height: 340px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.automated__btn {
    display: block;
    margin: 0 auto;
    margin-top: 40px;
    width: 100%;
    max-width: 186px;
    height: 50px;
    background: #F66939;
    border-radius: 50px;
    box-sizing: border-box;
    border: 1px solid #F66939;
    color: #FFFFFF;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s all;
}
.automated__btn:hover {
    color: #F66939;
    background: transparent;
}
.like{
    min-width: 80px;
    height: 91px;
    background: url("../images/automated-like.png") center center no-repeat;
    margin-right: 80px;
}
.automated__quality-block-item .title{
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    color: #000000;
    margin-bottom: 12px;
}
.automated__quality-block-item .like-list{
    list-style: none;
    font-size: 16px;
    line-height: 28px;
    color: #8A8A8A;
    margin-bottom: 33px;
}
.automated__quality-block-item .like-list li{
    margin-bottom: 10px;
}
.automated__quality-block-item .like-result{
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    color: #8A8A8A;
}
.dislike{
    min-width: 80px;
    height: 80px;
    background: url("../images/automated-dislike.png") center center no-repeat;
    margin-right: 75px;
}
.automated__quality-block-item .dislike-result{
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    color: #FF6939;
}
.hiw{
    padding: 62px 0;
    background: #F4F4F4;
    /*margin-bottom: 120px;*/
}
.hiw.for-automated{
    /*margin-bottom: 120px;*/
}
.hiw__block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.hiw__block-item{
    width: 30%;
}
.hiw__block-item-first{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 72px;
    line-height: 88px;
    color: #F66939;
    margin-bottom: 14px;
}
.hiw__block-item-second{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 72px;
    line-height: 88px;
    color: #F66939;
    opacity: 0.75;
    margin-bottom: 14px;
}
.hiw__block-item-third{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 72px;
    line-height: 88px;
    color: #F66939;
    opacity: 0.5;
    margin-bottom: 14px;
}
.hiw__block-item-arrow{
    width: 2%;
    height: auto;
    background: url("../images/hiw-arrow.png") center center no-repeat;
}
.hiw__block-item .icon{
    width: 64px;
    height: 40px;
    margin: 0 auto;
    margin-bottom: 38px;
}
.icon.upload{
    background: url(../images/hiw-upload.png) center center no-repeat;
}
.icon.orange-pc{
    background: url(../images/hiw-orange-pc.png) center center no-repeat;
}
.icon.share{
    background: url(../images/hiw-share.png) center center no-repeat;
}
.icon.person{
    background: url(../images/person-ico.png) center center no-repeat;
}
.icon.accept{
    background: url(../images/accept-ico.png) center center no-repeat;
}
.hiw__block-item .title{
    margin-bottom: 18px;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: #202532;
    text-align: left;
}
.hiw__block-item .text{
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 28px;
    text-align: left;
    color: #202532;
    width: 80%;
}

/*translations page*/
header.translations{
    height: 580px;
    /*background: url("../images/translations-bg.jpg") center center/cover no-repeat;*/
    padding-top: 94px;
    background: #F4F5FD;
    box-sizing: border-box;
    background-image: url("/images/translations-lines-min.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
}
.translations .header__automated-images{
    display: block;
    margin-bottom: 44px;
}
.translations .header__automated-images .static-img{
    width: 366.82px;
    height: 66px;
    margin: 0 auto;
}
.translations .header__automated-images .static-img .half-img{
    width: 366.82px;
    height: 66px;
    background: url(../images/half-translations-equalizer.png) center center/contain no-repeat;
    /*background: url(../images/translations-equalizer.png);*/
}
.translations .header__automated-images .eqanim-block{
    display: none;
    position: relative;
    width: 366.82px;
    height: 66px;
    margin: 0 auto;
}
.translations .header__automated-images .eqanim-block .eqanim-empty-block{
    width: 366.82px;
    height: 66px;
    position: absolute;
    /*margin: 0 auto;*/
}
.translations .header__automated-images .eqanim-block .eqanim-empty-block .empty-img{
    width: 366.82px;
    height: 66px;
    background: url(../images/empty-translations-equalizer.png) center center/contain no-repeat;
}
.translations .header__automated-images .img-block {
    position: relative;
    height: 66px;
    left: 0;
    overflow: hidden;
    width: 0;
}
.translations .header__automated-images .img-block .full-img {
    width: 366.82px;
    height: 66px;
    background: url(../images/full-translations-equalizer.png) center center/contain no-repeat;
    /*background: url(../images/full-translations-equalizer.png);*/
}
.translations .for-animate:hover .img-block{
    -webkit-animation: eqanimation 4s forwards;
    animation: eqanimation 4s forwards;
}
@-webkit-keyframes eqanimation {
    from {
        width:0px;
    }
    to {
        width:100%;
    }
}
@keyframes eqanimation {
    from {
        width:0px;
    }
    to {
        width:100%;
    }
}
.seo-text{
    padding: 76px 0;
}
.seo-text + .cta{
    padding-top: 50px;
}
.text-content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
/*.text-content img{*/
/*    width: 250px;*/
/*    height: 250px;*/
/*}*/
.seo{
    width: 67%;
}
.full-seo{
    width: 100%;
    padding: 0 100px;
}
.seo .seo-title, .full-seo .seo-title{
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 36px;
    color: #2D3958;
    margin-bottom: 20px;
}
.seo p, .full-seo p{
    line-height: 27px;
    color: #202532;
    margin-bottom: 16px;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
}
.seo p:last-child, .full-seo p:last-child{
    margin-bottom: 0;
}
.full-seo strong{
    font-size: 18px;
}
.full-seo h2{
    line-height: 27px;
    color: #202532;
    margin-bottom: 16px;
    font-weight: bold;
    font-size: 28px;
}
.full-seo h3{
    line-height: 27px;
    color: #202532;
    margin-bottom: 16px;
    font-weight: bold;
    font-size: 24px;
}
.full-seo ol, .full-seo ul{
    list-style-position: inside;
}
.seo ul, .full-seo ul, .full-seo ol{
    margin-bottom: 16px;
}
.seo ul li, .full-seo ul li, .full-seo ol li, .faq-box ul li {
    line-height: 27px;
    color: #202532;
    margin-bottom: 16px;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    text-decoration: none;
}
.faq-box ul li a{
    color: #202532;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 1px solid #202532;
}
.faq-box .page-content dl > div > dt{
    cursor: pointer;
}
.seo ul li:last-child, .full-seo ul li:last-child, .full-seo ol li:last-child{
    margin-bottom: 0;
}
.seo ul.list-words, .full-seo ul.list-words{
    list-style: lower-latin;
    list-style-position: inside;
}
.seo ul.list-rome, .full-seo ul.list-rome{
    list-style: upper-roman;
    list-style-position: inside;
}
.seo ul.list-dots, .full-seo ul.list-dots{
    list-style: disc;
    list-style-position: inside;
}
.seo ul ul, .full-seo ul ul, .seo ul ul ul, .full-seo ul ul ul{
    padding-left: 20px;
    margin-top: 16px;
}
.languages{
    padding: 74px 55px;
}
.languages .page-title{
    margin-bottom: 20px;
}
.languages-subtitle{
    display: block;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #202532;
    text-align: center;
    margin-bottom: 73px;
}
.languages-block{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.languages-block-item{
    padding: 13px 19px 12px 19px;
    background: #F8F8F9;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 32%;
    box-sizing: border-box;
    margin-bottom: 30px;
}
.languages-block-item-country{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 49%;
}
.languages-block-item-line{
    width: 1px;
    background: #E7E7E7;
    height: 100%;
}
.languages-block-item-country .country-ico{
    min-width: 30px;
    height: 30px;
    margin-right: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.country-ico.arabic{
    background-image: url("/images/countrys/arabic.svg");
}
.country-ico.china{
    background-image: url("/images/countrys/china.svg");
}
.country-ico.czech{
    background-image: url("/images/countrys/czech.svg");
}
.country-ico.dutch{
    background-image: url("/images/countrys/dutch.svg");
}
.country-ico.france{
    background-image: url("/images/countrys/france.svg");
}
.country-ico.germany{
    background-image: url("/images/countrys/germany.svg");
}
.country-ico.hindi{
    background-image: url("/images/countrys/hindi.svg");
}
.country-ico.italy{
    background-image: url("/images/countrys/italy.svg");
}
.country-ico.japan{
    background-image: url("/images/countrys/japan.svg");
}
.country-ico.korea{
    background-image: url("/images/countrys/korea.svg");
}
.country-ico.poland{
    background-image: url("/images/countrys/poland.svg");
}
.country-ico.portugal{
    background-image: url("/images/countrys/portugal.svg");
}
.country-ico.russia{
    background-image: url("/images/countrys/russia.svg");
}
.country-ico.spain{
    background-image: url("/images/countrys/spain.svg");
}
.country-ico.turkish{
    background-image: url("/images/countrys/turkish.svg");
}
.languages-block-item-country .country-name{
    display: block;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    color: #202532;
}
.languages-block-item-country .country-hi{
    display: block;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    margin-top: 5px;
    color: #A1A1A1;
}
.languages-block-item-price{
    width: 49%;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    color: #202532;
    text-align: center;
}
.languages-block-item:hover{
    background: linear-gradient(251.91deg, #F66663 0.73%, #F79166 132.98%);
}
.languages-block-item:hover .languages-block-item-country .country-name{
    color: #fff;
}
.languages-block-item:hover .languages-block-item-country .country-hi{
    color: #fff;
}
.languages-block-item:hover .languages-block-item-price{
    color: #fff;
}
@media(max-width: 1024px){
    .languages-block{
        justify-content: space-around;
    }
    .languages-block-item{
        width: 48%;
    }
    .footer__links-list li a {
        font-size: 15px!important;
    }
}
@media(max-width: 767px){
    .languages-block-item{
        width: 100%;
    }
}
/*.lang-table{*/
/*    width: 100%;*/
/*    border-collapse:collapse;*/
/*    border-spacing:0;*/
/*}*/
/*.lang-table td{*/
/*    padding-bottom: 60px;*/
/*}*/
/*.lang-table tr:last-child td{*/
/*    padding-bottom: 0px;*/
/*}*/
/*.lang-table tr td:nth-child(odd){*/
/*    font-weight: 500;*/
/*    font-size: 18px;*/
/*    line-height: 21px;*/
/*    color: #000000;*/
/*    min-width: 150px;*/
/*    max-width: 150px;*/
/*}*/
/*.lang-table tr td:nth-child(odd) span{*/
/*    font-weight: normal;*/
/*    color: #8A8A8A;*/
/*    font-style: italic;*/
/*}*/
/*.lang-table tr td:nth-child(even){*/
/*    font-size: 18px;*/
/*    line-height: 21px;*/
/*    color: #8A8A8A;*/
/*    min-width: 220px;*/
/*    max-width: 220px;*/
/*}*/
/*.lang-table tr td:last-child{*/
/*    min-width: 100px;*/
/*    max-width: 100px;*/
/*}*/

/*subtitles page*/
header.subtitles{
    height: auto;
    padding-bottom: 30px;
    /*background: url("../images/subtitles-bg.jpg") center center/cover no-repeat;*/
    padding-top: 94px;
    background: #F4F5FD;
    box-sizing: border-box;
    background-image: url("/images/subtitle-lines-min.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
}
.subtitles .header__service__title{
    margin-bottom: 37px;
}
.subtitles .header__service__second-title{
    font-family: 'Montserrat', sans-serif;
    font-size: 23px;
    line-height: 29px;
    color: #202532;
    margin-bottom: 45px;
}
.subtitles .header__automated-images{
    display: block;
    margin-bottom: 38px;
}
.subtitles .header__automated-images .static-img{
    width: 479px;
    height: 48px;
    margin: 0 auto;
}
.subtitles .header__automated-images .static-img .half-img{
    width: 479px;
    height: 48px;
    /*background: url(../images/subtitles-equalizer.png) center center/contain no-repeat;*/
}
.subtitles .header__automated-images .img-block {
    display: none;
    position: relative;
    width: 479px;
    height: 48px;
    margin: 0 auto;
}
.subtitles .header__automated-images .img-block .full-img {
    width: 479px;
    height: 48px;
    background: url(../images/full-translations-equalizer.png) center center/contain no-repeat;
}
.subtitles .for-animate:hover .half-img ellipse{
    -webkit-animation: translationCircleMove 4s forwards;
    animation: translationCircleMove 4s forwards;
}
.subtitles .for-animate:hover .half-img rect#line{
    -webkit-animation: translation-test-animation 4s forwards;
    animation: translation-test-animation 4s forwards;
}
@-webkit-keyframes translationCircleMove {
    0% { -webkit-transform: translate(-175px,0); transform: translate(-175px,0)  }
    100%  { -webkit-transform: translate(217px,0); transform: translate(217px,0)}
}
@keyframes translationCircleMove {
    0% { -webkit-transform: translate(-175px,0); transform: translate(-175px,0)  }
    100%  { -webkit-transform: translate(217px,0); transform: translate(217px,0)}
}
@-webkit-keyframes translation-test-animation {
    from {
        width:0px;
    }
    to {
        width:calc( 100% - 58px );
    }
}
@keyframes translation-test-animation {
    from {
        width:0px;
    }
    to {
        width:calc( 100% - 58px );
    }
}

/*transcriptions page*/
header.transcriptions{
    height: 600px;
    /*background: url("../images/transcriptions-bg.jpg") center center/cover no-repeat;*/
    padding-top: 94px;
    background: #F4F5FD;
    background-image: url("/images/transcription-lines-min.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    box-sizing: border-box;
}
.transcriptions .header__service__title{
    margin-bottom: 0;
}
.header__changing-text{
    text-align: center;
    height: 60px;
    margin-bottom: 21px;
}
.header__changing-text span{
    white-space: pre;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 48px;
    color: #fa7a51;
}
.header__service__transcription-list{
    margin-bottom: 41px;
}
.header__service__transcription-list p{
    font-size: 23px;
    line-height: 33px;
    text-align: center;
    color: #202532;
    font-style: normal;
    font-weight: normal;
}
.transcriptions__upload-button{
    width: 396px;
    height: 80px;
    border: 2px solid #FA7A51;
    background: #FA7A51;
    border-radius: 100px;
    font-weight: 500;
    font-size: 24px;
    line-height: 80px;
    color: #FFFFFF;
    margin: 0 auto;
    margin-bottom: 23px;
    text-align: center;
    cursor: pointer;
    display: block;
    text-decoration: none;
    box-sizing: border-box;
}
.transcriptions__upload-button:hover{
    border: 2px solid #e16036;
    background: #e16036;
    /*color: #000;*/
    line-height: 80px;
}
.transcriptions__upload-button i{
    background: url("../images/transcription-upload-icon.png") center center no-repeat;
    width: 14px;
    height: 17px;
    display: inline-block;
    margin-right: 14px;
}
/*.transcriptions__upload-button:hover i{*/
/*    background: url("../images/transcription-upload-black-icon.png") center center no-repeat;*/
/*}*/
.transcriptions__upload-button-text{
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #202532;
}
.hiw.for-transcriptions{
    background: #fff;
    padding: 74px 0 76px;
}

.wmb{
    padding-top: 72px;
    background: #F4F4F4;
}
.wmb.wmb-home{
    background: #fff;
    padding-top: 85px;
    padding-bottom: 77px;
}
.wmb .wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.wmb .left{
    width: 35%;
}
.wmb .right{
    width: 65%;
}
.wmb .page-title{
    text-align: left;
    margin-bottom: 24px;
}
.wmb .description{
    width: 70%;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #202532;
}
.wmb__block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.wmb__block-item{
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 62px;
}
.wmb__block-item .icon{
    min-width: 40px;
    height: 40px;
    margin-right: 20px;
}
.icon.transcription-pricing{
    background: url("../images/wmb-ico-1.svg") center center no-repeat;
}
.icon.transcription-delivery{
    background: url("../images/wmb-ico-2.svg") center center no-repeat;
}
.icon.transcription-guarantee{
    background: url("../images/wmb-ico-3.svg") center center no-repeat;
}
.icon.transcription-secure{
    background: url("../images/wmb-ico-4.svg") center center no-repeat;
}
.icon.transcription-support{
    background: url("../images/wmb-ico-5.svg") center center no-repeat;
}
.icon.transcription-tech{
    background: url("../images/wmb-ico-6.svg") center center no-repeat;
}
.wmb__block-item .title{
    margin-bottom: 13px;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: #202532;
}
.wmb__block-item .text{
    width: 85%;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 27px;
    color: #202532;
    opacity: 0.9;
}
/*.text-content img.for-transcriptions{*/
/*    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);*/
/*    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);*/
/*}*/

/*pto-services*/
.pto-services{
    padding: 74px 0 85px;
    background: #F8F8F9;
}
.pto-services .page-title{
    margin-bottom: 24px;
}
.pto-services-subtitle{
    display: block;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #202532;
    text-align: center;
    margin-bottom: 73px;
}
.pto-services__block{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.pto-services__item{
    padding: 21px 21px 28px;
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 31%;
    box-sizing: border-box;
}
.pto-services__item:first-child, .pto-services__item:nth-child(2), .pto-services__item:nth-child(3){
    margin-bottom: 30px;
}
.pto-services__item-ico{
    min-width: 85px;
    width: 85px;
    height: 85px;
    background: rgb(250 122 81 / 0.1);
    border-radius: 50%;
    background-position: center center;
    background-repeat: no-repeat;
}
.pto-ico-1{
    background-image: url("/images/pto-ico-1-colored.svg");
}
.pto-ico-2{
    background-image: url("/images/pto-ico-2-colored.svg");
}
.pto-ico-3{
    background-image: url("/images/pto-ico-3-colored.svg");
}
.pto-ico-4{
    background-image: url("/images/pto-ico-4-colored.svg");
}
.pto-ico-5{
    background-image: url("/images/pto-ico-5-colored.svg");
}
.pto-ico-6{
    background-image: url("/images/pto-ico-6-colored.svg");
}
.pto-services__item-title{
    display: block;
    color: #2D3958;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 49px;
    margin-top: 9px;
}
.pto-services__item-subtitle{
    display: block;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 23px;
    color: #202532;
    margin-bottom: 15px;
}
.pto-services__item-list{
    list-style: none;
}
.pto-services__item-list li{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    color: #202532;
    margin-bottom: 10px;
    padding-left: 38px;
    position: relative;
}
.pto-services__item-list li:before{
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    background: #F66939;
    top: 7px;
    left: 15px;
    border-radius: 50%;
}
.pto-services__item-list li:last-child{
    margin-bottom: 0;
}
.pto-services__item-list li a{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    color: #F66939;
    margin-bottom: 10px;
    position: relative;
}
.pto-services__item-btns{
    margin-top: 31px;
}
.pto-services__item-btns-learn{
    display: inline-block;
    background: #FFFFFF;
    border: 1px solid #E7E7E7;
    box-sizing: border-box;
    border-radius: 50px;
    width: 157px;
    height: 50px;
    text-align: center;
    line-height: 48px;
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    color: #202532;
    text-transform: capitalize;
}
.pto-services__item-btns-get{
    display: inline-block;
    background: #F66939;
    border-radius: 50px;
    width: 157px;
    height: 50px;
    box-sizing: border-box;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}
.pto-services__item-btns a:hover{
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.pto-services__item-btns-text{
    display: block;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    margin-top: 15px;
    color: #A2A2A2;
    text-align: center;
}
.pto-services__item:hover{
    background: linear-gradient(251.91deg, #F66663 0.73%, #F79166 132.98%);
}
.pto-services__item:hover .pto-services__item-title{
    color: #fff;
}
.pto-services__item:hover .pto-services__item-subtitle{
    color: #fff;
}
.pto-services__item:hover .pto-services__item-list li,
.pto-services__item:hover .pto-services__item-list li a{
    color: #fff;
}
.pto-services__item:hover .pto-services__item-list li:before{
    background: #fff;
}
.pto-services__item:hover .pto-ico-1{
    background-image: url(/images/pto-ico-1-white.svg);
}
.pto-services__item:hover .pto-ico-2{
    background-image: url(/images/pto-ico-2-white.svg);
}
.pto-services__item:hover .pto-ico-3{
    background-image: url(/images/pto-ico-3-white.svg);
}
.pto-services__item:hover .pto-ico-4{
    background-image: url(/images/pto-ico-4-white.svg);
}
.pto-services__item:hover .pto-ico-5{
    background-image: url(/images/pto-ico-5-white.svg);
}
.pto-services__item:hover .pto-ico-6{
    background-image: url(/images/pto-ico-6-white.svg);
}
.pto-services__item:hover .pto-services__item-btns-learn{
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #fff;
}
.pto-services__item:hover .pto-services__item-btns-get{
    background: #FFFFFF;
    color: #F66939;
}
.pto-services__item:hover .pto-services__item-btns-text{
    color: #fff;
}
@media(max-width: 1199px){
    .pto-services__item:nth-child(4){
        margin-bottom: 30px;
    }
    .footer__links-list li a {
        font-size: 12px;
    }
}
@media(max-width: 899px){
    .pto-services__item{
        max-width: 300px;
        width: 45%;
    }
    .pto-services__item-btns-learn{
        width: 120px;
    }
    .pto-services__item-btns-get{
        width: 120px;
    }
}
@media(max-width: 767px){
    .pto-services__item-btns{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
    }
    .pto-services__item-btns-get{
        margin-left: 0;
        margin-top: 15px;
    }
    .pto-services__item{
        margin: 0 5px;
        width: 100%;
        max-width: 100%;
    }
    .pto-services__item-btns-learn{
        width: 140px;
    }
    .pto-services__item-btns-get{
        width: 140px;
    }
}
/*review-slider*/
.review{
    background: #fff;
    padding-top: 75px;
    padding-bottom: 100px;
}
.quote:before{
    content: '“';
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 96px;
    line-height: 117px;
    color: #FA7A51;
    margin-right: 24px;
    height: 117px;
    width: 48px;
}
.rev .text{
    font-size: 24px;
    line-height: 28px;
    color: #202532;
    margin-bottom: 30px;
    padding-top: 30px;
}
.rev .person{
    font-size: 18px;
    line-height: 21px;
    color: #A1A1A1;
    text-align: right;
}
.review__slider-item-block{
    width: 875px;
    margin: 0 auto;
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
}
.review .slick-prev, .review .slick-next{
    color: #F4F4F4;
    background: #fff;
    border: 1px solid #FA7A51;
}
.slick-next:before{
    background: url(../images/rev-arrow.svg) center center/contain no-repeat;
}
.slick-next:hover:before{
    background: url(../images/rev-arrow-hov.svg) center center/contain no-repeat;
}
.slick-prev:before{
    background: url(../images/rev-arrow.svg) center center/contain no-repeat;
    transform: rotate(180deg);
}
.slick-prev:hover:before{
    background: url(../images/rev-arrow-hov.svg) center center/contain no-repeat;
    transform: rotate(180deg);
}
.review .slick-prev:hover, .review .slick-next:hover{
    color: #F4F4F4;
    background: linear-gradient(251.91deg, #F66663 0.73%, #F79166 132.98%);
}

.tin{
    padding: 120px 0 70px;
}
.tin .page-title{
    margin-bottom: 47px;
}
.tin .transcriptions__upload-button{
    margin-bottom: 0;
}

@media (min-width: 1025px) {
    .wmb-no-margin{
        margin-bottom: 0;
    }
    .wmb-margin{
        padding-bottom: 60px;
    }
    .wmb .wrapper{
        padding-left: 80px;
    }
    /*.text-content img{*/
    /*    margin-left: 40px;*/
    /*}*/
    /*.text-content img.for-transcriptions{*/
    /*    margin-left: 50px;*/
    /*}*/
}
/*main next-services*/
.ns{
    padding-top: 78px;
    padding-bottom: 85px;
    background: #F8F8F9;
}
.ns-subtitle{
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: #202532;
    margin-bottom: 72px;
}
.ns-box{

}
.ns-item{
    padding: 63px 39px 64px 40px;
    background: #FFFFFF;
    border-radius: 20px;
    margin-bottom: 60px;
}
.ns-item:last-child{
    margin-bottom: 0;
}
.ns-item-top{
    display: flex;
    align-items: center;
    margin-bottom: 46px;
}
.ns-item-top img{
    min-width: 130px;
    max-width: 130px;
    margin-right: 30px;
}
.ns-item-top-title{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 34px;
    color: #2D3958;
    margin-bottom: 20px;
}
.ns-item-top-title span{
    display: inline-block;
    margin-left: 15px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #8D8D8D;
}
.ns-item-top-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ns-item-top-text p{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #202532;
    opacity: 0.9;
    width: 70%;
}
.ns-item-top-text .start{
    margin: 0;
    text-decoration: none;
    transition: 0.3s all;
}
.ns-item-top-text .start:hover{
    background: #FA7A51;
    color: #fff;
    border-color: #FA7A51;
}
.ns-item-line{
    background: #CDCDCD;
    opacity: 0.5;
    height: 1px;
    width: 100%;
    margin-bottom: 47px;
}
.ns-item-bottom{
    display: flex;
    justify-content: space-between;
}
.ns-item-bottom-item{
    width: 29%;
}
.ns-item-bottom-item-title{
    display: block;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 12px;
}
.ns-item-bottom-item-text{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #202532;
    opacity: 0.9;
}
@media(max-width: 1000px){
    .ns-item-top-text{
        flex-direction: column;
        align-items: flex-start;
    }
    .ns-item-top-text .start{
        margin-top: 20px;
    }
}
@media(max-width: 767px){
    .ns-item-top{
        flex-direction: column;
    }
    .ns-item-top img{
        margin-right: 0;
    }
    .ns-item-top-block{
        margin-top: 20px;
    }
    .ns-item-top-title{
        text-align: center;
    }
    .ns-item-top-title span{
        display: block;
        text-align: center;
        margin-left: 0;
    }
    .ns-item-top-text p{
        width: 100%;
    }
    .ns-item-top-text .start {
        margin: 0 auto;
        margin-top: 20px;
    }
    .ns-item-bottom{
        flex-direction: column;
    }
    .ns-item-bottom-item{
        width: 100%;
        margin-bottom: 20px;
    }
    .ns-item-bottom-item:last-child{
        margin-bottom: 0;
    }
}
/*transcription-tabs*/
.transcription-tabs{
    display:flex;
    flex-direction: column;
    align-items: center;
    margin-top: 68px;
}
.t-tabs{
    border: 1px solid #F66939;
    box-sizing: border-box;
    border-radius: 100px;
}
.t-tab{
    cursor: pointer;
    display: inline-block;
    height: 60px;
    margin: 0;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    color: #202532;
    text-align: center;
    width: 306px;
    line-height: 60px;
}
.panels{
    margin-top: 40px;
    min-height:400px;
    width:100%;
    overflow:hidden;
}
.panel{
    display:none;
    animation: fadein .8s;
}
.panel-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}
.panel-box-img{
    min-width: 300px;
    width: 300px;
    height: 300px;
    background: #FFFFFF;
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}
.panel-video{
    background-image: url("../images/tab-movie.svg");
}
.panel-audio{
    background-image: url("../images/tab-audio.svg");
}
.panel-box-text{
    margin-left: 99px;
}
.panel-title{
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 28px;
    color: #2D3958;
    line-height: 41px;
    margin-bottom: 20px;
}
.panel-box-text p{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    color: #202532;
    opacity: 0.9;
    line-height: 27px;
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
.panel-title{
    font-size:1.5em;
    font-weight:bold
}
.radio{
    display:none;
}
#one:checked ~ .panels #one-panel,
#two:checked ~ .panels #two-panel{
    display:block
}
#one:checked ~ .t-tabs #one-tab {
    background: #F66939;
    border-radius: 100px;
    color: #fff;
    margin-left: -1px;
}
#two:checked ~ .t-tabs #two-tab{
    background: #F66939;
    border-radius: 100px;
    color: #fff;
    margin-right: -1px;
}
@media(max-width: 1024px){
    .panel-box{
        flex-direction: column;
    }
    .panel-box-text{
        margin-left: 0;
        margin-top: 30px;
    }
}
@media(max-width: 767px){
    .t-tabs{
        border-radius: 30px;
        max-width: 300px;
    }
    #one:checked ~ .tabs #one-tab{
        max-width: 300px;
    }
    #two:checked ~ .tabs #two-tab{
        max-width: 300px;
        margin-right: 0;
        margin-bottom: -1px;
    }
    .panel-box-img{
        min-width: 200px;
        width: 200px;
        height: 200px;
    }
}
/*cta*/
.cta-block{
    /*background: linear-gradient(251.91deg, #F38381 0.73%, #F29B76 132.98%);*/
    border-radius: 20px;
    padding: 93px 0 94px;
    background-image: url("/images/cta-bg.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    position: relative;
    display: flex;
}
.cta-left{
    width: 59%;
}
.cta-block img{
    position: absolute;
    bottom: 0;
    right: 137px;
}
.cta-title{
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
    line-height: 49px;
    text-align: center;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
}
.cta-left .transcriptions__upload-button{
    background: #fff;
    margin-top: 48px;
    border: 1px solid #fff;
    color: #F66939;
    margin-bottom: 0;
    font-weight: bold;
}
.cta-left .transcriptions__upload-button i{
    background: url(../images/cta-ico.svg) center center no-repeat;
}

.cta-left .transcriptions__upload-button:hover{
    /*border-color: #F66939;*/
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
@media(max-width: 1199px){
    .cta-block{
        background-size: cover;
    }
    .cta-block img{
        right: 0;
    }
    .cta-left{
        width: 60%;
    }
}
@media(max-width: 767px){
    .cta-block{
        padding: 50px 0;
    }
    .cta-block img{
        display: none;
    }
    .cta-left{
        width: 100%;
    }
}
/*hiw-wmb*/
.hiw-wmb{
    padding-top: 82px;
    padding-bottom: 111px;
    background: #F8F8F9;
}
.hiw-wmb .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.hiw-wmb .left {
    width: 35%;
}
.hiw-wmb .right {
    width: 35%;
    margin-right: 120px;
}
.hiw-wmb .page-title {
    text-align: left;
    margin-bottom: 24px;
}
.hiw-wmb .description {
    width: 90%;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #202532;
}
.hiw-wmb__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}
.hiw-wmb__block-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    margin-bottom: 45px;
}
.hiw-wmb__block-item .title {
    margin-bottom: 11px;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: #202532;
}
.hiw-wmb__block-item .text {
    width: 85%;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 27px;
    color: #202532;
    opacity: 0.9;
}
.hiw-wmb__block-item-first {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 72px;
    line-height: 54px;
    color: #F66939;
    min-width: 45px;
}
.hiw-wmb__block-item-second {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 72px;
    line-height: 54px;
    color: #F66939;
    opacity: 0.75;
    min-width: 45px;
}
.hiw-wmb__block-item-third {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 72px;
    line-height: 54px;
    color: #F66939;
    opacity: 0.5;
    min-width: 45px;
}
.hiw-wmb__block-item-inn{
    margin-left: 33px;
}
@media (min-width: 1025px){
    .hiw-wmb-no-margin{
        margin-bottom: 0;
    }
}
@media(max-width: 1024px){
    .hiw-wmb .right{
        width: 55%;
        margin-right: 0;
    }
}
@media(max-width: 767px){
    .hiw-wmb .wrapper{
        flex-direction: column;
    }
    .hiw-wmb .left{
        width: 100%;
    }
    .hiw-wmb .page-title{
        text-align: center;
    }
    .hiw-wmb .description{
        text-align: center;
        width: 100%;
    }
    .hiw-wmb .right{
        margin-top: 30px;
        width: 100%;
    }
}
/*trusted page*/
header.trusted{
    height: 540px;
    padding-top: 94px;
    background: #F4F5FD;
    box-sizing: border-box;
    background-image: url("/images/trusted-lines-min.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
}
.trusted .header__service__title{
    padding-top: 125px;
}
.trust{
    padding-top: 74px;
    padding-bottom: 83px;
}
.trusted-block{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.trusted-block-item{
    min-height: 186px;
    width: 24%;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 20px;
}
.trusted-block-item:hover{
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.08);
}
.trusted-block-item-img{
    width: 155px;
    height: 200px;
    background-image: url(/images/cisco.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='0');
    opacity: 0.5;
}
.trusted-block-item-img1{
    background-image: url(/img/cnet.svg);
}
.trusted-block-item-img2{
    background-image: url(/img/sony.svg);
}
.trusted-block-item-img3{
    background-image: url(/img/new_york.svg);
}
.trusted-block-item-img4{
    background-image: url(/img/spacex.svg);
}
.trusted-block-item-img5{
    background-image: url(/img/harvard.svg);
}
.trusted-block-item-img6{
    background-image: url(/img/microsoft.svg);
}
.trusted-block-item-img7{
    background-image: url(/img/netflix.svg);
}
.trusted-block-item-img8{
    background-image: url(/img/hulu.svg);
}
.trusted-block-item:hover .trusted-block-item-img{
    -webkit-filter: grayscale(0%) blur(0px);
    opacity: 1;
}
.trusted-btn{
    background: #FFFFFF;
    border: 2px solid #FA7A51;
    box-sizing: border-box;
    border-radius: 50px;
    width: 186px;
    height: 50px;
    line-height: 50px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    color: #202532;
    display: block;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
}
@media(max-width: 1024px){
    .trusted-block{
        justify-content: space-around;
    }
    .trusted-block-item{
        width: 40%;
    }
}
@media(max-width: 767px){
    header.trusted{
        height: 440px;
    }
    .trusted .header__service__title {
        padding-top: 50px;
    }
    .trusted-block-item {
        width: 100%;
    }
}
/*faq*/
header.faq{
    height: 540px;
    padding-top: 94px;
    background: #F4F5FD;
    box-sizing: border-box;
    background-image: url("/images/translations-lines-min.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
}
.faq .header__service__title{
    padding-top: 157px;
}
.faq-page{
    padding-bottom: 70px;
}
.faq-page.main-faq-page{
    background: #F8F8F9;
    padding-top: 75px;
}
.faq-page .page-title{
    margin-top: 73px;
}
.faq-page.main-faq-page .main-faq-first-title{
    margin-top: 0;
}
.faq-box dl div {
    width: 100%;
    padding: 23px 30px;
    background: #FFFFFF;
    border: 1px solid #E7E7E7;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 15px
}
.faq-box dl div.checked{
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.08);
}
.faq-box dl dt {
    background-image: url(../images/close-faq.svg);
    background-repeat: no-repeat;
    background-position: 100% 7px;
}
.faq-box dl dt h3, .faq-box dl dt h4{
    line-height: 27px;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    color: #202532;
    padding-right: 30px;
}
.faq-box dl dt.checked {
    background-image: url(../images/open-faq.svg)
}
.faq-box dl dt.checked h3, .faq-box dl dt.checked h4{
    font-weight: bold;
}
.faq-box dl dd {
    display: none;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    color: #000000;
    line-height: 27px;
    margin: 0;
    padding-top: 15px
}
.faq-box dl dd ul{
    list-style-position: inside;
}
.faq-box dl dd ul li{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    color: #000000;
    line-height: 27px;
}
.faq-link{
    display: block;
    margin: 0 auto;
    margin-top: 40px;
    width: 186px;
    height: 50px;
    background: #F66939;
    border-radius: 50px;
    box-sizing: border-box;
    border: 1px solid #F66939;
    color: #FFFFFF;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s all;
}
.faq-link:hover{
    color: #F66939;
    background: transparent;
}
@media(min-width: 1025px){
    .faq-box{
        padding: 0 70px;
    }
}
@media(max-width: 767px){
    header.faq{
        height: 440px;
    }
    .faq .header__service__title {
        padding-top: 50px;
    }
    .faq-box dl div {
        padding:15px
    }
}
/*translation-solutions*/
.t-solutions{
    padding-top: 102px;
    padding-bottom: 78px;
}
.t-solutions-box{
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}
.t-solutions-text{
    width: 49%;
    margin-top: 84px;
}
.t-solutions-text-title{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 34px;
    color: #2D3958;
    margin-bottom: 20px;
}
.t-solutions-text-p{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #202532;
    opacity: 0.9;
}
.t-solutions-img{
    min-width: 370px;
    width: 370px;
    height: 370px;
    background-image: url("../images/t-solutions-img-min.png");
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.t-solutions-lang{
    position: absolute;
    left: -200px;
    top: 28px;
    background: #FFFFFF;
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 29px 34px 35px;
    width: 241px;
    box-sizing: border-box;
}
.t-solutions-lang-title{
    display: block;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #202532;
    margin-bottom: 14px;
    text-align: center;
}
.t-solutions-lang-prog{
    height: 3px;
    width: 100%;
    background: #FFDFD3;
    border-radius: 11px;
    margin-bottom: 28px;
    position: relative;
}
.t-solutions-lang-prog-line{
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    background: #F66939;
    border-radius: 11px;
    /*width: 25%;*/
    transition: 0.3s all;
}
.t-solutions-lang-country{
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    padding: 10.6px 20px 8.6px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    color: #202532;
    background: #F8F8F9;
    border-radius: 5px;
}
.t-solutions-lang-country:last-child{
    margin-bottom: 0;
}
.t-solutions-lang-country .cntry{
    display: inline-block;
    width: 21px;
    height: 21px;
    margin-right: 13px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
}
.cntry.france{
    background-image: url(/images/countrys/france.svg);
}
.cntry.germany{
    background-image: url(/images/countrys/germany.svg);
}
.cntry.china{
    background-image: url(/images/countrys/china.svg);
}
.cntry.italy{
    background-image: url(/images/countrys/italy.svg);
}
.cntry.spain{
    background-image: url(/images/countrys/spain.svg);
}
.cntry.russia{
    background-image: url(/images/countrys/russia.svg);
}
.cntry.portugal{
    background-image: url(/images/countrys/portugal.svg);
}
.cntry.poland{
    background-image: url(/images/countrys/poland.svg);
}
.t-solutions-block{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.t-solutions-block-item{
    width: 23%;
}
.t-solutions-block-item-img{
    min-width: 57px;
    width: 57px;
    height: 57px;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 27px;
}
.t-solutions-ico-1{
    background-image: url("../images/t-solutions-ico-1.svg");
}
.t-solutions-ico-2{
    background-image: url("../images/t-solutions-ico-2.svg");
}
.t-solutions-ico-3{
    background-image: url("../images/t-solutions-ico-3.svg");
}
.t-solutions-ico-4{
    background-image: url("../images/t-solutions-ico-4.svg");
}
.t-solutions-block-item-title{
    display: block;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 11px;
    color: #202532;
}
.t-solutions-block-item-text{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #202532;
    opacity: 0.9;
}
@media(max-width: 1024px){
    .t-solutions-box{
        flex-direction: column;
    }
    .t-solutions-text{
        width: 100%;
        margin-top: 0;
        margin-bottom: 30px;
    }
    .t-solutions-img{
        align-self: center;
    }
    .t-solutions-block-item{
        width: 48%;
    }
}
@media(max-width: 992px){
    .t-solutions-img{
        align-self: flex-end;
    }

}
@media(max-width: 767px){
    .t-solutions-box{
        margin-bottom: 40px;
    }
    .t-solutions-img{
        align-self: center;
        width: 100%;
        min-width: 100%;
        background-size: contain;
        margin-top: 180px;
    }
    .t-solutions-lang{
        left: 50%;
        transform: translateX(-50%);
        top: -180px;
    }
    .t-solutions-block-item{
        width: 100%;
    }
    .t-solutions-block-item-img{
        margin: 0 auto;
        margin-bottom: 27px;
    }
    .t-solutions-block .slick-list{
        margin-bottom: 20px;
    }
}
/*translations about*/
.t-about{
    padding-top: 77px;
    padding-bottom: 85px;
    background: #F8F8F9;
}
.t-about-title{
    display: block;
    margin-bottom: 20px;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 36px;
    color: #2D3958;
}
.t-about-wrapper p{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #202532;
    margin-bottom: 15px;
}
.t-about-wrapper p:last-child{
    margin-bottom: 0;
}
.t-about-wrapper ul{
    list-style: none;
}
.t-about-wrapper ul li{
    padding-left: 37px;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #202532;
    margin-bottom: 15px;
    position: relative;
}
.t-about-wrapper ul li:before{
    position: absolute;
    content: '';
    top: 2px;
    left: 0;
    width: 22px;
    height: 22px;
    background-image: url("../images/t-about-list-ico.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.t-about-wrapper .faq-link{
    margin-top: 47px;
}
/*popular automated*/
.popular{
    padding-bottom: 77px;
}
.popular .page-title{
    margin-bottom: 20px;
}
.popular-subtitle{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #202532;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 73px;
}
.popular-box{
    display: flex;
    /*justify-content: space-between;*/
    flex-wrap: wrap;
    margin: 0 -15px;
}
.popular-box-item{
    width: 31%;
    display: flex;
    justify-content: space-between;
    margin: 0 14px;
}
.popular-box-item:first-child, .popular-box-item:nth-child(2), .popular-box-item:nth-child(3){
    margin-bottom: 30px;
}
.popular-box-ico{
    width: 45px;
    min-width: 45px;
    height: 40px;
    margin-right: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.popular-ico-1{
    background-image: url("../images/popular-ico-1.svg");
}
.popular-ico-2{
    background-image: url("../images/popular-ico-2.svg");
}
.popular-ico-3{
    background-image: url("../images/popular-ico-3.svg");
}
.popular-ico-4{
    background-image: url("../images/popular-ico-4.svg");
}
.popular-ico-5{
    background-image: url("../images/popular-ico-5.svg");
}
.popular-ico-6{
    background-image: url("../images/popular-ico-6.svg");
}
.popular-box-title{
    display: block;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: #202532;
    margin-bottom: 13px;
}
.popular-box-text{
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 27px;
    color: #202532;
    opacity: 0.9;
}
@media(max-width: 1189px){
    .popular-box-item{
        width: 47%;
    }
    .popular-box-item:nth-child(4){
        margin-bottom: 30px;
    }
}
@media(max-width: 991px){
    .popular-box-item{
        width: 100%;
        justify-content: flex-start;
    }
}
@media(max-width: 767px){
    .popular-box-item{
        width: 100%;
        margin-bottom: 30px;
    }
    .popular-box-ico{
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .popular-box-title, .popular-box-text{
        text-align: center;
    }
    .popular-subtitle{
        width: 100%;
    }
}
/*subtitles special text*/
.subtitle-seo-text{
    padding-bottom: 0;
}
.show-seo-btn{
    display: block;
    line-height: 27px;
    color: #F66939;
    margin-bottom: 16px;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    text-transform: capitalize;
    cursor: pointer;
}
.subtitle-seo-text .full-seo{
    padding: 0;
}
/*seo-subtitle*/
.sub-seo-text{
    padding-bottom: 0;
}
.with-img{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 85px;
}
.with-img img.left{
    margin-left: 30px;
    margin-right: 100px;
}
.with-img img.right{
    margin-left: 100px;
    margin-right: 30px;
}
.with-img.only-text{
    align-items: flex-start;
}
.with-img.only-text h2{
    width: 35%;
}
.with-only-text{
    width: 60%;
}
@media(max-width: 767px){
    .with-img{
        flex-direction: column;
        margin-top: 30px;
    }
    .with-img img.left{
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .with-img.only-text h2{
        width: 100%;
    }
    .with-only-text{
        width: 100%;
    }
    .with-img img.right{
        margin: 0 auto;
        margin-top: 30px;
    }
}
/*tablet*/
@media(max-width: 1024px){
    .home__banner-img1{
        height: 400px;
    }
    .home__banner-img2{
        height: 370px;
    }
    .wrapper{
        padding-left: 30px;
        padding-right: 30px;
    }
    .hiw{
        padding: 50px 0;
    }
    .hiw.for-transcriptions{
        padding-bottom: 50px;
    }
    .wmb{
        padding-top: 50px;
    }
    .wmb .wrapper{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .wmb .left{
        width: 100%;
    }
    .wmb .page-title{
        text-align: center;
        margin-bottom: 15px;
    }
    .wmb .description{
        text-align: center;
        width: 100%;
        margin-bottom: 40px;
    }
    .wmb .right {
        width: 80%;
    }
    .seo-text{
        padding: 50px 0;
    }
    .full-seo{
        padding: 0;
    }
    .text-content{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    /*.text-content img{*/
    /*    margin-bottom: 30px;*/
    /*    width: 200px;*/
    /*    height: 200px;*/
    /*}*/
    .seo{
        width: 75%;
    }
    .review{
        padding-top: 50px;
    }
    .review__slider-item-block{
        width: 600px;
    }
    .tin{
        padding: 50px 0;
    }
    header.subtitles{
        /*height: 600px;*/
    }
    .languages{
        padding: 50px 30px;
    }
    .lang-table tr{
        /*text-align: center;*/
    }
    .lang-table tr td:nth-child(odd),.lang-table tr td:nth-child(even){
        font-size: 16px;
        line-height: 18px;
    }
    .lang-table tr td:nth-child(odd){
        min-width: 80px;
        max-width: 80px;
        width: 60px;
    }
    .lang-table tr td:first-child{
        min-width: 90px;
        max-width: 90px;
    }
    .lang-table tr td:nth-child(2){
        min-width: 70px;
        max-width: 70px;
        padding-right: 70px;
    }
    .lang-table tr td:nth-child(3){
        min-width: 90px;
        max-width: 90px;
    }
    .lang-table tr td:nth-child(4){
        min-width: 70px;
        max-width: 70px;
        padding-right: 70px;
    }
    .lang-table tr td:nth-child(5){
        min-width: 100px;
        max-width: 100px;
    }
    .lang-table tr td:last-child{
        min-width: 70px;
        max-width: 70px;
    }
    /*.lang-table tr td:nth-child(even){*/
    /*    max-width: 50px;*/
    /*    min-width: 50px;*/
    /*    padding-right: 50px;*/
    /*    width: 60px;*/
    /*}*/
    .lang-table tr td:nth-child(odd) span{
        font-size: 14px;
        line-height: 16px;
    }
    .automated__quality{
        padding: 50px 30px;
    }
    .automated__quality-block-item{
        width: 48%;
    }
    .automated__quality-block-item .text{
        width: 60%;
    }
    .like,.dislike{
        margin-right: 25px;
    }
    .hiw.for-automated{
        margin-bottom: 50px;
    }
    .services__page{
        margin-bottom: 50px;
    }
    .services__page-block-item{
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .why__us{
        padding: 50px 30px 0;
    }
    .services__block{
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .services__block-item{
        padding: 20px;
        width: 48%;
    }
    .services__block-item .title{
        margin-bottom: 20px;
    }
    .services__block-item .price{
        margin-bottom: 0;
    }
    .services__block-item .text{
        margin-bottom: 30px;
    }
    .home__services{
        margin-bottom: 50px;
    }
    .home__services-block{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .home__services-block-item{
        margin-bottom: 30px;
    }
    .for__slider-item-width{
        width: 500px;
    }
    .for__slider-item .description-title{
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 40px;
    }
    .for__slider-item .img{
        min-width: 200px;
        max-width: 200px;
        min-height: 200px;
        max-height: 200px;
    }
    .for__slider-item .description{
        max-width: 280px;
    }
    .nav-toggler {
        position: relative;
        cursor: pointer;
        width: 24px;
        height: 24px;
        overflow: hidden;
        top: 3px;
    }
    .show-in-mob {
        display: block;
    }
    .nav-lines {
        display: block;
        position: relative;
        top: 8px;
        width: 24px;
        height: 4px;
        background-color: #2D3958;
        -webkit-transition: -webkit-transform .2s;
        transition: -webkit-transform .2s;
        -o-transition: transform .2s;
        transition: transform .2s;
        transition: transform .2s, -webkit-transform .2s;
    }
    header.order .nav-lines {
        background-color: #202123;
    }
    .nav-toggler:before {
        content: '';
        position: absolute;
        top: 0px;
        left: 0;
        height: 4px;
        width: 24px;
        background-color: #2D3958;
        -webkit-transition: -webkit-transform .2s;
        transition: -webkit-transform .2s;
        -o-transition: transform .2s;
        transition: transform .2s;
        transition: transform .2s, -webkit-transform .2s;
    }
    header.order .nav-toggler:before {
        background-color: #202123;
    }
    .nav-toggler:after {
        content: '';
        position: absolute;
        top: 16px;
        left: 0;
        height: 4px;
        width: 24px;
        background-color: #2D3958;
        -webkit-transition: -webkit-transform .2s;
        transition: -webkit-transform .2s;
        -o-transition: transform .2s;
        transition: transform .2s;
        transition: transform .2s, -webkit-transform .2s;
    }
    header.order .nav-toggler:after {
        background-color: #202123;
    }
    .header__menu{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        -webkit-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        transform: translateX(-200%);
        -webkit-transition: 0.3s ease;
        -o-transition: 0.3s ease;
        transition: 0.3s ease;
        background-color: #F4F5FD;
    }
    .header__menu.main-nav--open {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        z-index: 1;
        overflow: scroll;
    }
    .main-nav__closer {
        position: absolute;
        top: 20px;
        right: 30px;
    }
    .main-nav__closer svg{
        width: 24px;
        height: 24px;
    }
    .header__menu-nav{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        margin-top: 100px;
    }
    .header__menu-nav li{
        margin: 0;
        margin-bottom: 40px;
    }
    .header__menu-nav li a{
        color: #000;
        font-size: 24px;
    }
    .no-overflow-nav{
        overflow: hidden;
        overflow-x: hidden;
        overflow-y: hidden;
    }
    .footer__logo{
        width: 32%;
    }

    /*.footer__contacts{*/
    /*    width: 32%;*/
    /*}*/
    .footer__links-list{
        margin-right: 10px;
    }
    /*.footer__links-block,  .footer__links-list.services-list {*/
    /*    flex-direction: column;*/
    /*}*/
    .links-block {
        flex: 0 0 70%;
    }
    .footer__links.services-list .footer__links-block{
        flex-direction: column;
    }
}
@media(max-width: 992px){
    .for__slider-item{
        width: 46%;
    }
}

@media(max-width: 767px){
    .first-block {
        flex-direction: column;
    }
    header.home{
        height: 500px;
    }
    .home__banner-img1{
        display: none;
    }
    .home__banner-img2{
        display: none;
    }
    /*.header{*/
    /*    padding-top: 20px;*/
    /*}*/
    .header__title{
        padding-top: 50px;
        font-size: 40px;
        line-height: 46px;
    }
    .home__services-block{
        margin-top: -150px;
    }
    .home__services-block.not-main{
        margin-top: 0;
    }
    .home__services-block-item{
        width: 310px;
    }
    .home__services{
        margin-bottom: 20px;
    }
    .page-title{
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 40px;
    }
    .page-title span{
        font-size: 30px;
        line-height: 36px;
    }
    .for__slider-item{
        width: 100%;
        padding: 0 10px;
    }
    .for__slider-item:first-child, .for__slider-item:nth-child(2){
        margin-bottom: 0;
    }
    .for__slider-item-ico{
        margin-bottom: 20px;
    }
    .for__slider-item-box{
        margin-left: 0;
    }
    /*.for__slider-item-width{*/
    /*    width: 200px;*/
    /*    -webkit-box-orient: vertical;*/
    /*    -webkit-box-direction: normal;*/
    /*    -ms-flex-direction: column;*/
    /*    flex-direction: column;*/
    /*}*/
    /*.for__slider-item .description.for-slide-1, .for__slider-item .description.for-slide-2, .for__slider-item .description.for-slide-3, .for__slider-item .description.for-slide-4{*/
    /*    margin: 0;*/
    /*    margin-bottom: 20px;*/
    /*}*/
    /*.for__slider-item .img{*/
    /*    min-width: 200px;*/
    /*    max-width: 200px;*/
    /*    min-height: 200px;*/
    /*    max-height: 200px;*/
    /*}*/
    /*.for__slider-item .description-title{*/
    /*    font-size: 26px;*/
    /*    line-height: 30px;*/
    /*    margin-bottom: 20px;*/
    /*    text-align: center;*/
    /*}*/
    /*.for__slider-item .description-list li{*/
    /*    font-size: 20px;*/
    /*    line-height: 20px;*/
    /*    margin-bottom: 15px;*/
    /*}*/
    .slick-next,.slick-prev{
        width: 30px;
        height: 30px;
        display: none!important;
    }
    .slick-next:before,.slick-prev:before{
        height: 12px;
    }
    .for__slider .slick-list{
        padding-bottom: 20px;
    }
    .for__slider-item .description-text{
        font-size: 20px;
        line-height: 20px;
    }
    .for{
        margin-bottom: 80px;
    }
    .services__block-item{
        width: 100%;
    }
    .services__block-item:nth-child(3){
        margin-bottom: 30px;
    }
    .services__block-item-box{
        flex-direction: column;
    }
    .services__block-item-box-inn{
        width: 100%;
        margin-bottom: 20px;
    }
    .services__block-item-line{
        display: none;
    }
    .services__block-item .title{
        margin-bottom: 10px;
    }
    .services__block-item .title, .services__block-item .price{
        font-size: 26px;
        line-height: 30px;
        text-align: center;
        height: initial;
    }
    .services__block-item .price{
        width: 100%;
        margin-top: 0;
    }
    .services__block-item .price span{
        font-size: 40px;
        line-height: 40px;
    }
    .services__block-item .text{
        text-align: center;
        margin-bottom: 0;
    }
    .why__us-block-item{
        width: 100%;
        margin-bottom: 0;
    }
    .why__us-block .slick-arrow{
        display: none!important;
    }
    .why__us{
        margin-bottom: 70px;
    }
    .services__page-block{
        margin-top: -250px;
    }
    .services__page-block-item{
        height: auto;
        padding: 20px 10px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .services__page-block-item .left{
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
    .services__page-block-item .title{
        font-size: 24px;
        line-height: 30px;
    }
    .services__page-block-item .price{
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    .services__page-block-item .text, .services__page-block-item .right, .services__page-block-item ul li{
        width: 100%;
    }
    .services__page-block-item .try{
        margin: 0 auto;
    }
    .services__page-block-item.item-translation .static-img{
        padding: 20px 0 40px;
        margin: 0 auto;
    }
    .services__page-block-item.item-subtitles .description{
        margin-bottom: 30px;
        text-align: center;
    }
    .services__page-block-item.item-transcription .static-img,.services__page-block-item.item-transcription .static-img .half-img, .services__page-block-item.item-subtitles .static-img,.services__page-block-item.item-subtitles .static-img .half-img,.services__page-block-item.item-automated .static-img,.services__page-block-item.item-automated .static-img .half-img{
        width: 280px;
    }
    .services__page-block-item.item-transcription .static-img,.services__page-block-item.item-subtitles .static-img,.services__page-block-item.item-automated .static-img{
        margin: 0 auto;
        margin-bottom: 30px;
    }
    header.automated{
        padding-bottom: 40px;
    }
    .header__service__title{
        padding-top: 50px;
        font-size: 40px;
        line-height: 46px;
        margin-bottom: 30px;
    }
    .header__automated-images{
        margin-bottom: 40px;
    }
    .automated .header__automated-images{
        width: 100%;
        max-width: 370px;
    }
    .automated-equalizer{
        height: 50px;
        width: 60px;
        margin-right: 10px;
        background-size: contain;
    }
    .automated-arrow{
        height: 50px;
    }
    .automated-arrow.first,.automated-arrow.second{
        margin-right: 10px;
    }
    .automated-pc{
        height: 50px;
        width: 80px;
        margin-right: 10px;
        background-size: contain;
    }
    .automated-paper{
        height: 50px;
        width: 40px;
        background-size: contain;
    }
    .automated__quality-block{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .automated__quality-block-item{
        width: 100%;
        margin-bottom: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
    .automated__quality-block-item:last-child{
        margin-bottom: 0;
    }
    .like, .dislike{
        margin: 0;
        margin-bottom: 20px;
    }
    .hiw__block-item-arrow{
        display: none;
    }
    .hiw__block{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .hiw__block-item{
        width: 100%;
        margin-bottom: 30px;
    }
    .hiw__block-item:last-child{
        margin-bottom: 0;
    }
    header.translations{
        height: 100%;
        padding-bottom: 30px;
    }
    .translations .header__automated-images .static-img,.translations .header__automated-images .static-img .half-img,.translations .header__automated-images .img-block .full-img{
        width: 280px;
    }
    .languages-block{
        overflow-x: scroll;
    }
    .lang-table tr td:nth-child(odd), .lang-table tr td:nth-child(even){
        min-width: 165px;
        max-width: 165px;
        font-size: 14px;
        line-height: 16px;
        text-align: left;
    }
    .lang-table td {
        padding-bottom: 10px;
    }
    .lang-table tr:last-child td {
        padding-bottom: 10px;
    }
    .subtitles .header__automated-images .static-img,.subtitles .header__automated-images .static-img .half-img,.subtitles .header__automated-images .img-block .full-img{
        width: 280px;
    }
    .subtitles .half-img svg{
        display: none;
    }
    .subtitles .header__automated-images .static-img .half-img{
        background: url(../images/subtitles-equalizer.png) center center/contain no-repeat;
    }
    header.transcriptions{
        background-size: contain;
    }
    .transcriptions__upload-button{
        width: 280px;
        font-size: 20px;
    }
    .wmb .right{
        width: 100%;
    }
    .wmb__block .slick-arrow{
        display: none!important;
    }
    .wmb__block-item{
        text-align: center;
        margin-bottom: 0;
    }
    .wmb__block-item .icon{
        margin: 0;
        margin-bottom: 20px;
    }
    .wmb__block-item .text{
        width: 100%;
    }
    .wmb{
        padding-bottom: 70px;
    }
    .review__slider-item-block{
        width: 200px;
        margin-bottom: 20px;
    }
    .quote:before{
        margin-right: 10px;
        font-size: 40px;
        line-height: 40px;
    }
    .rev .text, .rev .person{
        font-size: 14px;
        line-height: 18px;
        text-align: left;
    }
    .header__changing-text{
        height: 45px;
    }
    .header__changing-text span{
        font-size: 30px;
        line-height: 46px;
    }

    .footer{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer__logo {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    .footer__logo-item {
        text-align: center;
    }
    .footer__socials{
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer__socials .icon:last-child{
        margin-right: 0;
    }
    .footer__links{
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .footer .title{
        margin-bottom: 20px;
    }
    .footer__links-block{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer__links-list{
        margin: 0;
        margin-bottom: 15px;
    }
    .footer__contacts{
        text-align: center;
        width: 100%;
    }
    .seo {
        width: 100%;
    }
    .seo .seo-title, .full-seo .seo-title{
        text-align: center;
    }
    .automated__quality-small-title{
        text-align: left;
    }
    .ftypes__block{
        display: none!important;
    }
    .ftypes__block-mobile{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .ftypes-title{
        text-align: center;
    }
}

@media(max-width: 500px){
    .auto-image1:after, .auto-image2:after{
        display: none;
    }
}
@media(max-width: 370px){
    .services__page-block-item.item-translation .static-img{
        width: 200px;
        height: 70px;
    }
    .services__page-block-item.item-translation .static-img .half-img{
        width: 200px;
        height: 70px;
    }
    .services__page-block-item.item-transcription .static-img, .services__page-block-item.item-transcription .static-img .half-img, .services__page-block-item.item-subtitles .static-img, .services__page-block-item.item-subtitles .static-img .half-img, .services__page-block-item.item-automated .static-img, .services__page-block-item.item-automated .static-img .half-img{
        width: 200px;
    }
    .transcriptions__upload-button{
        width: 240px;
        font-size: 18px;
    }
}
@media(max-width: 331px){
    header.subtitles {
        /*height: 640px;*/
    }
}
@media(max-width: 600px){
    .main__error img {
        max-width: 300px;
    }
    .main__error .buttons {
        display: block!important;
    }
    .main__error .buttons a{
        margin-top: 20px!important;
    }
}
@media(max-width: 767px) and (min-width: 600px){
    .for__slider-item-width{
        width: 100%;
    }
    .for__slider-item .description.for-slide-1, .for__slider-item .description.for-slide-2, .for__slider-item .description.for-slide-3, .for__slider-item .description.for-slide-4{
        max-width: 100%;
    }
    .automated__quality-small-title{
        text-align: center;
    }
}
.header__error.not_o .header {
    position: static;
}
.main__error {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: url("/img/lines.svg") no-repeat;
    background-position-y: 0;
    background-size: cover;
    height: 500px;
    padding: 100px 0 150px 0;
}
.main__error .buttons {
    display: flex;
    margin-top: 30px;
}
.main__error .buttons a {
    margin: 0 15px;
}

.main__error .buttons .trusted-btn {
    border: 1px solid #FA7A51;
}

.main__error p.title {
    font-family: Montserrat;
    font-size: 28px;
    font-weight: 700;
    line-height: 49px;
    text-align: left;
    margin-bottom: 15px;
    margin-top: 30px;
}
.main__error p.text {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: center;
    max-width: 400px;
}

.term-page-addr:after{
    content: 'Transcriberry.co is owned and operated by DDW Corp Limited, Kastellorizou, 3A, Aglantzia, Nicosia, 2108, Cyprus';
}

.first-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.cta2#cta2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 188px;
    background-image: url(../images/cta2.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin: 30px 0;
    padding: 20px 62px;
    border-radius: 20px;
    box-sizing: border-box;
}

@media(max-width: 767px){
    .cta2#cta2 {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
}

.cta2#cta2 .cta2__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 36px;
    line-height: 42px;
    color: #FFFFFF;
    margin: 0;
}

@media(max-width: 767px){
    .cta2#cta2 .cta2__title {
        text-align: center;
        font-size: 24px;
        line-height: 28px;
    }
}

.cta2#cta2 .cta2__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 0;
}

@media(max-width: 767px){
    .cta2#cta2 .cta2__text {
        text-align: center;
        font-size: 14px;
        line-height: 18px;
    }
}

.cta2#cta2 .cta2__btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    color: #202532;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    background: #FFFFFF;
    max-width: 220px;
    border-radius: 50px;
    padding: 15px 40px;
    transition: .3s;
    flex-shrink: 0;
}

@media(max-width: 767px){
    .cta2#cta2 .cta2__btn {
        margin: 15px 0 0 0;
        font-size: 14px;
        line-height: 18px;
        padding: 10px;
    }
}

.cta2#cta2 .cta2__btn:hover {
    color: #FFFFFF;
    background: #F66939;
}