@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@font-face {
    font-family: 'Sophia';
    src: url('../fonts/SofiaProBold.ttf'); /* IE9 Compat Modes */
}
@font-face {
    font-family: 'SophiaRegular';
    src: url('../fonts/SofiaRegular.ttf'); /* IE9 Compat Modes */
}
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    width: 100%;
    height: auto;
    /* overflow-x: hidden; */
}

.container {
    width: 100%;
    height: auto;
    max-width: 1520px;
    margin: 0px auto;
}

.container-xs {
    width: 100%;
    height: auto;
    margin: 0px auto;
    max-width: 825px;
}

a {
    text-decoration: none;
}

.header {
    width: 100%;
    height: auto;
    background-color: #fff;
    position:sticky;
    top:0px;
    left:0px;
    z-index: 999999;
}
.header .header__block {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header .header__block .header__logo img {
    height: 80px;
    object-fit: contain;
}
.header .header__block .header__hamburger {
    display: none;
}
.header .header__block .header__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header .header__block .header__menu nav {
    padding-right: 90px;
}
.header .header__block .header__menu nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header .header__block .header__menu nav ul li {
    list-style: none;
    padding: 0px 25px;
}
/* .header .header__block .header__menu nav ul li:last-child{display:none;} */
.header .header__block .header__menu nav ul li a {
    font-size: 14px;
    font-weight: 500;
    color: #514b57;
}
.header .header__block .header__menu nav ul li .languages {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    min-height: 130px;
    padding: 10px 30px;
    padding-top: 35px;
    position: absolute;
    top: 0px;
    right: 270px;
    z-index: 9;
}
.header .header__block .header__menu nav ul li .languages a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
    display: none;
}
.header .header__block .header__menu nav ul li .languages a:first-child {
    display: inline-flex;
}
.header
    .header__block
    .header__menu
    nav
    ul
    li
    .languages
    a:first-child
    img.img-lang {
    /* margin-left: 20px;
    transform: rotate(90deg); */
}
.header .header__block .header__menu nav ul li .languages:hover {
    background-color: #f4fbf8;
}
.header .header__block .header__menu nav ul li .languages:hover a {
    display: flex;
}
.header .header__block .header__menu .button {
    width: 247px;
    height: 60px;
    border-radius: 3px;
    background-color: #f1f6fa;
    display: inline-flex;
    align-items: center;
    padding: 0px 25px;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: #514b57;
}
.header .header__block .header__menu .button:hover {
    background-color: #dae9f2;
}

.slider {
    width: 100%;
    height: auto;
    min-height: auto;
    max-height: calc(100vh - 50px);
    position: relative;
}
.slider .slider__image {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 130px);
    position: relative;
    z-index: 1;
}
.slider .slider__image::after{
    content:'';
    top:0px;
    left:0px;
    position:absolute;
    width: 100%;
    height:100%;
    background-color: rgba(0,0,0,.4);
    z-index:2;
}
.slider .slider__image img {
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 130px);
    height: 100%;
    object-fit: cover;
    object-position: 0px -80px;
}
.slider .slider__image svg g rect:hover {
    transform: scale(1.1);
}
/* .slider .slider__image img {
    display: none;
} */
.slider .slider__main {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom:20px;
}
.slider .slider__main .slider__block .slider__left {
    width: 100%;
    /* max-width: 630px; */
}
.slider .slider__main .slider__block .slider__left h3 {
    font-size: 66px;
    font-weight: 300;
    color: #ffffff;
}
.slider .slider__main .slider__block .slider__left p {
    padding-top: 0px;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    /* max-width: 650px; */
}
.slider .slider__main .slider__block .slider__left p em b{
    font-size:42px;
    font-family: "Sophia", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.slider .slider__main .slider__block .slider__left a {
    margin-top: 20px;
    width: 247px;
    height: 60px;
    border-radius: 3px;
    background-color: #dae9f2;
    display: inline-flex;
    align-items: center;
    padding: 0px 25px;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: #514b57;
}
.slider .slider__main .slider__block .slider__left a:hover {
    background-color: #f1f6fa;
}

.featured {
    width: 100%;
    height: auto;
    padding: 210px 0px;
    position: relative;
}
.featured.with-bg {
    background-color: #f5f8fb;
}
.featured.with-bg::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 284px;
    background: rgb(203 228 238);
    background: -moz-linear-gradient(
        90deg,
        rgb(203 228 238) 0%,
        rgb(255, 255, 255) 100%
    );
    background: -webkit-linear-gradient(
        90deg,
        rgb(203 228 238) 0%,
        rgb(255, 255, 255) 100%
    );
    background: linear-gradient(
        90deg,
        rgb(203 228 238) 0%,
        rgb(255, 255, 255) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cbeede",endColorstr="#ffffff",GradientType=1);
    z-index: 1;
}
.featured .featured__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}
.featured .featured__block .featured__image {
    width: 50%;
    position: relative;
}
.featured .featured__block .featured__image::after{
    content:'';
    width:100%;
    height:100%;
    position: absolute;
    top:0px;
    left:0px;
    background-color: rgba(0,0,0,.3);
    opacity: .7;
    
}
.featured .featured__block .featured__image::before{
    content:'';
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width: 0; 
  height: 0; 
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  
  border-left: 80px solid #fff;
  cursor: pointer;
  opacity: .7;
}

.featured .featured__block .featured__image:hover::after,
.featured .featured__block .featured__image:hover::before{
    opacity: 1;
}
.featured .featured__block .featured__image img {
    width: 100%;
    object-fit: contain;
    object-position: top;
    transition: 0.4s transform ease-in-out;
    box-shadow: 0px 30px 80px rgba(61, 76, 67, 0.1);
}
.featured .featured__block .featured__image img:hover {
    transform: translateY(-20px);
}
.featured .featured__block .featured__content {
    width: 50%;
    padding-left: 136px;
}
.featured .featured__block .featured__content h4 {
    font-size: 47px;
    font-weight: 700;
    color: #514b57;
}
.featured .featured__block .featured__content p {
    padding-top: 63px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 28px;
}
.featured .featured__block .featured__content ul {
    padding-top: 70px;
}
.featured .featured__block .featured__content ul li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    padding-bottom: 53px;
}
.featured .featured__block .featured__content ul li img {
    margin-top: 5px;
}
.featured .featured__block .featured__content ul li p {
    padding: 0px;
    padding-left: 28px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}
.featured .featured__block .featured__content a {
    margin-top: 84px;
    width: 247px;
    height: 60px;
    border-radius: 3px;
    background-color: #dae9f2;
    display: inline-flex;
    align-items: center;
    padding: 0px 25px;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: #514b57;
}
.featured .featured__block .featured__content a:hover {
    background-color: #f1f6fa;
}

.partners{
    width:100%;
    height:auto;
    padding:100px 0px;
}

.partners .partners__block{
    width: 100%;
    height:auto;
}

.partners .partners__block .partners__title{
    width: 100%;
    height: auto;
    padding-bottom: 50px;
    text-align: center;
}
.partners .partners__block .partners__title h4{
    font-size: 52px;
    font-weight: 700;
    color:#514b57;
}
.partners .partners__block .partners__list{
    width: 100%;
    height:auto;
    /* display:flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; */
}
.partners .partners__block .partners__list .partners__item{
    padding:10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height:100px;
    
}
.partners .partners__block .partners__list .partners__item img{
    width: 100%;
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
}

.full__featured {
    width: 100%;
    height: auto;
    position: relative;
    min-height: 826px;
    display: flex;
    align-items: center;
    background-color: #f5f8fb;
}
.full__featured .ff__block {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
}
.full__featured .ff__block .ff__content {
    width: 50%;
    height: 100%;
    padding-right: 130px;
}
.full__featured .ff__block .ff__content h4 {
    font-size: 30px;
    font-weight: 700;
    color: #514b57;
    line-height: 50px;
}
.full__featured .ff__block .ff__content p {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    padding-top: 158px;
}
.full__featured .ff__block .ff__content p img {
    padding-right: 23px;
}
.full__featured .ff__image {
    width: 50%;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 826px;
}

.accordions {
    width: 100%;
    height: auto;
    padding: 210px 0px;
    position: relative;
}
.accordions.with-bg {
    background-color: #f5f8fb;
}
.accordions.with-bg::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 320px;
    background: rgb(203 228 238);
    background: -moz-linear-gradient(
        90deg,
        rgb(203 228 238) 0%,
        rgb(255, 255, 255) 100%
    );
    background: -webkit-linear-gradient(
        90deg,
        rgb(203 228 238) 0%,
        rgb(255, 255, 255) 100%
    );
    background: linear-gradient(
        90deg,
        rgb(203 228 238) 0%,
        rgb(255, 255, 255) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cbeede",endColorstr="#ffffff",GradientType=1);
    z-index: 1;
}
.accordions .accordions__top {
    width: 100%;
    height: auto;
}
.accordions .accordions__top h4 {
    font-size: 47px;
    font-weight: 700;
    color: #514b57;
    line-height: 57px;
}
.accordions .accordions__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    padding-top: 81px;
    position: relative;
    z-index: 2;
}
.accordions .accordions__block .accordions__left {
    width: 50%;
    padding-right: 120px;
    display: flex;
    flex-direction: column;
}
.accordions .accordions__block .accordions__left .accordion {
    width: 100%;
    height: auto;
    max-height: 64px;
    overflow: hidden;
    margin-bottom: 17px;
    transition: max-height 0.3s ease-in-out;
}
.accordions .accordions__block .accordions__left .accordion.active {
    max-height: unset;
}
.accordions .accordions__block .accordions__left .accordion .accordion__top {
    width: 100%;
    height: 64px;
    border-radius: 3px;
    background-color: #fff;
    padding: 0px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor:pointer;
}
.accordions .accordions__block .accordions__left .accordion .accordion__top:hover{
    background-color: #dae9f2;
}
.accordions .accordions__block .accordions__left .accordion .accordion__top h5 {
    font-size: 18px;
    font-weight: 400;
    color: #000;
}
.accordions
    .accordions__block
    .accordions__left
    .accordion
    .accordion__content {
    width: 100%;
    height: auto;
    padding: 27px;
}
.accordions .accordions__block .accordions__right {
    width: 50%;
}
.accordions .accordions__block .accordions__right img {
    width: 100%;
    object-fit: contain;
    transition: 0.4s transform ease-in-out;
    box-shadow: 0px 30px 80px rgba(61, 76, 67, 0.1);
}
.accordions .accordions__block .accordions__right img:hover {
    transform: translateY(-20px);
}

.news {
    width: 100%;
    height: auto;
    padding:50px 0px;
}
.news.news--featured.nfirst{
    padding-top:120px;
}
.news.np {
    padding: 80px 0px;
}
.news .news__top {
    width: 100%;
    height: auto;
}
.news .news__top.nt {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news .news__top.nt select {
    width: 250px;
    height: 60px;
    border-radius: 2px;
    border: 1px solid #514b57;
    padding-left: 15px;
    font-weight: 500;
}
.news .news__top h3 {
    font-size: 47px;
    font-weight: 700;
    color: #514b57;
}
.news .news__block {
    width: 100%;
    height: auto;
    padding-top: 70px;
}
.news .news__block .news__list {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.news .news__block .news__list .career__item {
    width: calc(33.33% - 25px);
    height: auto;
    border-radius: 3px;
    background-color: #f5f8fb;
    margin-right: 37px;
    margin-bottom: 35px;
    transition: 0.3s transform ease-in-out;
}
.news .news__block .news__list .news__item {
    width: calc(33.33% - 25px);
    height: auto;
    border-radius: 3px;
    background-color: #f5f8fb;
    margin-right: 37px;
    margin-bottom: 35px;
    transition: 0.3s transform ease-in-out;
}
.news .news__block .news__list .news__item:hover {
    transform: translateY(-20px);
}
.news .news__block .news__list .news__item:last-child {
    margin-right: 0px;
}
.news .news__block .news__list .news__item:nth-child(3n) {
    margin-right: 0px;
}
.news .news__block .news__list .news__item img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}
.news .news__block .news__list .news__item .ni__content {
    padding: 45px 40px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    /* align-items: flex-end; */
}
.news .news__block .news__list .news__item .ni__content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 33px;
    height:100px;
    max-height:100px;
    overflow-y: hidden;
}
.news.news--featured .news__block .news__list .news__item .ni__content h4 {
    max-height: 70px;
    font-size:
}
.news .news__block .news__list .news__item .ni__content p {
    padding-top: 22px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    height:155px;
    max-height:155px;
    overflow-y: hidden;
}

.news.news--featured .news__block .news__list .news__item img{
    height:240px;
}
.news.news--featured .news__block .news__list .news__item .ni__content{
    padding:20px;
}
.news.news--featured .news__block .news__list .news__item .ni__content a{
    margin-top:20px;
}
.news .news__block .news__list .news__item .ni__content a {
    margin-top: 81px;
    width: 247px;
    height: 60px;
    border-radius: 3px;
    background-color: #dae9f2;
    display: inline-flex;
    align-items: center;
    padding: 0px 25px;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: #514b57;
}
.news .news__block .news__list .news__item .ni__content a img {
    width: 15px;
    height: 15px;
}
.news .news__block .news__list .news__item .ni__content a:hover {
    background-color: #fff;
}
.news .news__block .news__button {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    padding-top: 60px;
}
.news .news__block .news__button a {
    font-size: 16px;
    font-weight: 600;
    color: #514b57;
}
.news .news__block .news__button a img {
    padding-left: 30px;
}

.about {
    width: 100%;
    height: auto;
    padding: 210px 0px;
    background-color: #f5f8fb;
    position: relative;
    padding-bottom: 140px;
}
.about.with-bg {
    background-color: #f5f8fb;
}
.about.with-bg::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 320px;
    background: rgb(203 228 238);
    background: -moz-linear-gradient(
        270deg,
        rgb(203 228 238) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    background: -webkit-linear-gradient(
        270deg,
        rgb(203 228 238) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    background: linear-gradient(
        270deg,
        rgb(203 228 238) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cbeede",endColorstr="#000000",GradientType=1);
    z-index: 1;
}
.about .container {
    z-index: 2;
    position: relative;
}
.about .about__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
}
.about .about__block .about__left {
    width: 50%;
    height: auto;
}
.about .about__block .about__left h3 {
    font-size: 47px;
    line-height: 57px;
    font-weight: 700;
    color: #514b57;
    height: 150px;
}
.about .about__block .about__left p {
    max-width: 530px;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.about .about__block .about__right {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.about .about__block .about__right p {
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
    color: #514b57;
    height: 150px;
}
.about .about__block .about__right ul {
    display: flex;
    align-items: center;
}
.about .about__block .about__right ul li {
    list-style: none;
}
.about .about__block .about__right ul li a img {
    height: 71px;
    object-fit: contain;
}
.about .about__top {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.about .about__bottom {
    width: 100%;
    height: auto;
    padding-top: 97px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.contact {
    width: 100%;
    height: auto;
    padding: 210px 0px;
}
.contact .contact__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
}
.contact .contact__block .contact__left {
    width: 50%;
    height: auto;
}
.contact .contact__block .contact__left h3 {
    font-size: 47px;
    font-weight: 700;
    line-height: 57px;
    color: #514b57;
}
.contact .contact__block .contact__left ul li {
    list-style: none;
    padding: 29px 0px;
    display: flex;
    align-items: center;
}
.contact .contact__block .contact__left ul li img {
    margin-right: 23px;
}
.contact .contact__block .contact__left ul li span {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}
.contact .contact__block .contact__left .socials {
    display: flex;
    align-items: center;
    padding-top: 20px;
}
.contact .contact__block .contact__left .socials a {
    padding: 0px 15px;
    display: inline-flex;
}
.contact .contact__block .contact__left .socials a:first-child {
    padding-left: 0px;
}
.contact .contact__block .contact__right {
    width: 50%;
    height: auto;
}
.contact .contact__block .contact__right form {
    width: 100%;
    height: auto;
}
.contact .contact__block .contact__right form input,
.contact .contact__block .contact__right form textarea {
    width: 100%;
    height: 63px;
    border-radius: 3px;
    background-color: #f5f8fb;
    padding: 34px;
    font-size: 16px;
    font-weight: 400;
    border: 0px;
    margin-bottom: 41px;
}
.contact .contact__block .contact__right form textarea {
    height: 115px;
}
.contact .contact__block .contact__right form button {
    width: 247px;
    height: 60px;
    border-radius: 3px;
    background-color: #dae9f2;
    display: inline-flex;
    align-items: center;
    padding: 0px 25px;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: #514b57;
    border: 0px;
    cursor: pointer;
}
.contact .contact__block .contact__right form button:hover {
    background-color: #f1f6fa;
}

.footer {
    width: 100%;
    height: auto;
    background-color: #f5f8fb;
}
.footer .footer__block {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .footer__block p {
    font-size: 14px;
    font-weight: 400;
}
.footer .footer__block a{
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    color:#514b57;
}
.footer .footer__block img {
    max-height: 60px;
    object-fit: contain;
}

.calc__tabs{
    width:100%;
    height:auto;
    display:flex;
    align-items: center;
    justify-content: center;
}
.calc__tabs ul{
    display:flex;
    align-items: baseline;
}
.calc__tabs ul li{
    list-style: none;
    width:170px;
    height:50px;
    border-bottom: 5px solid #d7d7d7;
    display:flex;
    align-items: center;
    justify-content: center;
    margin:0px 5px;
    font-size:16px;
    font-weight: 500;
    cursor: pointer;
}
.calc__tabs ul li.active{
    color:#7695CD;
    border-bottom: 5px solid #7695CD;
}
.calculator {
    width: 100%;
    height: auto;
    display: flex;
    max-width: 1280px;
    margin: 0px auto;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
    display:none;
}
.calculator.active{
    display:flex;
}

.calculator .calculator__enter {
    width: 25%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.calculator .calculator__enter label {
    font-size: 24px;
    font-weight: 600;
}

.calculator .calculator__enter input {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #d7d7d7;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}
.calculator .calculator__enter p {
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}

.calculator .calculator__enter button {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    background-color: #f1f6fa;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    border: 0px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}
.calculator .calculator__enter button:hover {
    background-color: #dae9f2;
}
.calculator .calculator__list {
    width: calc(75%-50px);
    padding-left: 50px;
}
.calculator .calculator__list ul li {
    width: 100%;
    height: auto;
    display: flex;
    list-style: none;
    align-items: center;
    margin: 10px 0px;
}
.calculator .calculator__list ul li.new-title {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 10px;
    margin: 20px 0px;
    display: inline-block;
    border-bottom: 1px solid #d7d7d7;
}
.calculator .calculator__list ul li b {
    font-size: 18px;
    font-weight: 500;
    min-width: 250px;
    max-width: 250px;
    word-wrap: break-word;
}
.calculator .calculator__list ul li span {
    font-size: 20px;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 5px;
    background-color: #eeeeee;
    margin: 0px 5px;
}
.calculator .calculator__list ul li.neto span {
    background-color: red;
    color: #fff;
}
.calculator .calculator__list ul li em {
    font-style: normal;
    font-size: 16px;
    font-weight: 700;
}
.post__top {
    width: 100%;
    height: auto;
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.post__top img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.post__top-title {
    width: 100%;
    height: auto;
    padding-top: 20px;
}
.post__top-title h4 {
    font-size: 44px;
    font-weight: bold;
    color:#7594CD;
}
.post__content {
    width: 100%;
    height: auto;
    padding-top: 20px;
}
.post__content img{
    padding:20px 0px;
}
.post__content p,
.post__content p span,
.post__content ul li,
.post__content ul li span {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #000000 !important;
    line-height: 28px !important;;
    font-family: "Montserrat", sans-serif !important;
    
}

.post__content h5{
    font-size:24px;
    font-weight: 600;
    color:#7594CD;
    padding:15px 0px;
}
.post__content h3 strong,
.post__content p strong,
.post__content span strong,
.post__content p span strong{
    color:#7594cd !important;
}
.post__content ul li,
.es__content ul li{list-style: none;padding:3px 0px;padding-left:20px;
    font-size: 18px;
    font-weight: 400;
    color: #514b57;}

    .es__content p b{
        color:#7594CD;
    }
    .post__content ul li::before,
.es__content ul li::before{
    content:'';
    background-image: url('../img/blue-arrow.svg');
    display:inline-block;
    background-position-y: 2px;
    margin-top:5px;
    margin-right: 5px;
    width:15px !important;
    height:15px !important;
    object-fit: contain;
    filter: invert(69%) sepia(4%) saturate(5655%) hue-rotate(187deg) brightness(84%) contrast(88%);
}
.post__content img{
    width:100%;
    height:350px;
    object-fit: contain;
    object-position: center;

}
.references {
    width: 100%;
    height: auto;
    padding: 80px 0px;
}
.references .references__block {
    width: 100%;
    height: auto;
}
.references .references__block .rb__top {
    width: 100%;
    height: auto;
    padding-bottom: 35px;
}
.references .references__block .rb__top h4 {
    font-size: 47px;
    font-weight: 700;
    color: #514b57;
}
.references .references__block .rb__list {
    width: 100%;
    height: auto;
    padding: 16px 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.references.refpage .references__block .rb__list{
    max-width:720px;
    margin:0px auto;
}
.references .references__block .rb__list .rb__item {
    width: calc(20% - 30px);
    margin: 15px;
    height: 275px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f8fb;
}
.references.refpage .references__block .rb__list .partners__item{
    width: calc(25% - 30px);
    margin: 15px;
    height: 120px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:5px;
    background-color: #fff;}
.references.refpage .references__block .rb__list .partners__item img{
    max-width: 100%;
    object-fit: contain;
    height:100px;
}

.teams {
    width: 100%;
    height: auto;
    padding: 100px 0px;
    padding-top:150px;
}

.teams .teams__block {
    width: 100%;
    height: auto;
}
.teams .teams__block .teams__title {
    width: 100%;
    height: auto;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.teams .teams__block .teams__title h3 {
    font-size: 52px;
    font-weight: 700;
    color:#514b57;
}
.teams .teams__block .teams__list {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.teams .teams__block .teams__list .team__item {
    width: calc(20% - 20px);
    height: auto;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.teams .teams__block .teams__list .team__item img {
    width: 100%;
    height: 350px;
    margin-bottom: 10px;
    border-radius: 3px;
    object-fit: cover;
    border-radius: 10px;
    object-position: top;
}
.teams .teams__block .teams__list .team__item h4 {
    font-size: 22px;
    font-weight: 500;
    height:30px;
}
.teams .teams__block .teams__list .team__item h5 {
    font-size: 14px;
    font-weight: 400;
    height:20px;
}

.testi{
    width:100%;
    height:auto;
    padding:50px 0px;
}
.testi .testi__block{
    width: 100%;
    height:auto;
}
.testi .testi__block .testi__title{
    width: 100%;
    height:auto;
    display:flex;
    align-items: center;
    justify-content: center;
}
.testi .testi__block .testi__title h4{
    font-size: 52px;
    font-weight: 700;
    color:#514b57;
}
.testi .testi__block .testi__list{
    width:100%;
    height:auto;
    padding-top:50px;
}
.testi.testipage .testi__block .testi__list{display:flex;flex-wrap: wrap;}
.testi.testipage .testi__block .testi__list .testi__item{width:calc(33.33% - 20px);margin:10px;}
.testi .testi__block .testi__list .testi__item{
    width:calc(33.33%-20px);
    height:auto;
    height:300px;
    margin-left:10px;
    margin-right: 10px;
    padding:20px;
    background-color: #f1f6fa;
    border-radius: 10px;
}
.testi .testi__block .testi__list .testi__item h5{
    font-size:16px;
    font-weight: 600;
    color:#514b57;
    display:inline-flex;
}

.testi .testi__block .testi__list .testi__item p{
    padding:10px 0px;
    font-size:15px;
    font-weight: 300;
}
.testi .testi__block .testi__list .testi__item .testi__top{
    width: 100%;
    height:auto;
    display:flex;
    align-items: center;
    /* font-size:12px; */
}
.testi .testi__block .testi__list .testi__item .testi__top img{
    max-width:50px;
        width:50px;
    height:50px;
    background-color: #c6d3eb;
    font-size:26px;
    font-weight: 700;
    color:#fff;
    display:flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: contain;
}
.testi .testi__block .testi__list .testi__item .testi__top h6{
    font-size:12px;
    font-weight: 400;
}

.popup{
    width:100%;
    height:100vh;
    position:fixed;
    top:0px;
    left:0px;
    background-color: rgba(0,0,0,.6);
    display:flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999999;
    display:none;
}
.popup.active{display:flex;}

.popup .popup__box{
    width:100%;
    max-width: 820px;
    height:auto;
    border-radius: 10px;
    padding:20px;
    background-color: #fff;
    max-height: 720px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.popup .popup__box .popup__title{
    width:100%;
    height:auto;
    display:flex;
    justify-content: center;
}

.popup .popup__box .popup__title h4{
    font-size:28px;
    font-weight: 400;
    color:#000;
}

.popup .popup__box .popup__content{
    width: 100%;
    height:auto;
    padding-top:20px;
}

.popup .popup__box .popup__content p{
    font-size:14px;
    font-weight: 400;
    color:#514b57;
    padding:10px 0px;
}
.popup .popup__box .popup__content h5{
    font-size:18px;
    font-weight: 600;
}
.popup .popup__box .popup__content ul{
    padding-left:15px;
}
.popup .popup__box .popup__content ul li{
    font-size:14px;
    font-weight: 400;
    color:#514b57;
}

.sections{
    width: 100%;
    height:auto;
    padding:100px 0px;
    background-color: #dae9f2;
}
.sections#modules{
    padding:200px 0px;
}
.sections .sections__block{
    width: 100%;
    height: auto;
}
.sections .sections__block .sections__title{
    width: 100%;
    height: auto;
    padding-bottom: 50px;
    text-align: center;
}
.sections .sections__block .sections__title h3{
    font-size: 52px;
    font-weight: 700;
    color:#514b57;
}
.sections .sections__block .sections__items{
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.sections .sections__block .sections__items .sections__item{
    width: calc(33.33% - 30px);
    margin:15px;
    background-color: #fff;
    border-radius: 8px;
    padding:10px;
}
.sections .sections__block .sections__items .sections__item img{
    width: 70px;
    height:35px;
    object-fit: contain;
    object-position: left;
}
.sections .sections__block .sections__items .sections__item .si__title{
    width:100%;
    height:auto;
    display:flex;
    align-items: center;
    margin-bottom: 20px;
}

.sections .sections__block .sections__items .sections__item h4{
    width: 100%;
    /* height: 55px; */
    font-size:20px;
    font-weight: 600;
    color:#514b57;
    padding:10px 0px;
}

.sections .sections__block .sections__items .sections__item p,
.sections .sections__block .sections__items .sections__item span,
.sections .sections__block .sections__items .sections__item em{
    font-size:18px !important;
    font-weight: 400;
    color:#514b57;
    height: 55px;
    overflow-y: hidden;
}
.sections .sections__block .sections__items .sections__item p{
    height:80px;
}
.sections .sections__block .sections__items .sections__item a{
    /* padding:15px 25px; */
    font-size: 16px;
    font-weight: 600;
    color: #514b57;
    display:flex;
    align-items: center;
    justify-content: flex-end;
}
.sections .sections__block .sections__items .sections__item a img{
    width:30px;
    padding-left:15px;
    height:15px;
    object-fit: contain;
}
.sections .sections__block .sections__items .sections__item a:hover{
    text-decoration: underline;
}

.extraservices{
    width:100%;
    height:auto;
}
.extraservices .es__title{
    width:100%;
    height:auto;
    padding:60px 0px;
    background-color: #7594CD;
    display:flex;
    align-items: center;
    justify-content: center;
}

.extraservices .es__title h4{
    font-size:42px;
    font-weight: 700;
    color:#fff;
}
.extraservices .es__block{
    width:100%;
    height:auto;
    padding:80px 0px;
}
.extraservices .es__block .es__item{
    width:100%;
    height:auto;
    display:flex;
    align-items: center;
    padding:30px 0px;
}
.extraservices .es__block .es__item.es__item--noimg .es__content{
    width: 100%;
    padding-left:0px;padding-right:0px;
}
.extraservices .es__block .es__item.second .es__image{order:2;}
.extraservices .es__block .es__item.second .es__image{
    padding-left:0px;padding-right:0px;
    padding-left:25px;
}
.extraservices .es__block .es__item.second .es__content{
    padding-left:0px;padding-right:0px;
    padding-right:25px;
}
.extraservices .es__block .es__item .es__image{
    width:50%;
    height:auto;
    padding-right: 25px;
}
.extraservices .es__block .es__item .es__image img{
    width:100%;
    height:auto;
    border-radius: 8px;
    border:2px solid #7594CD;
}
.extraservices .es__block .es__item .es__content{
    width:50%;
    height:auto;
    padding-left:25px;

}

.extraservices .es__block .es__item .es__content h4{
    font-size:30px;
    font-weight: 600;
    color:#7594CD;
}

.extraservices .es__block .es__item .es__content p{
    font-size:18px;
    font-weight: 400;
    color:#514b57;
    padding:10px 0px;
}

@media screen and (max-width: 1520px) {
    .container {
        padding: 0px 20px;
    }
}
@media screen and (max-width:1366px){
    .sections .sections__block .sections__items .sections__item p{
        height:90px;
    }
    .sections .sections__block .sections__items .sections__item h4{
        font-size:16px;
    }
    .slider .slider__image img{
        object-position: 0px;
    }
}
@media screen and (max-width: 1280px) {
    .header {
        position: relative;
        top: 0px;
        left: 0px;
        z-index: 999999;
    }
    .header .header__block {
        height: 73px;
    }
    .header .header__block .header__logo img {
        height: 55px;
    }
    .header .header__block .header__hamburger {
        display: block;
    }
    .header .header__block .header__menu {
        position: fixed;
        top: 33px;
        left: 0px;
        width: 100%;
        height: calc(100vh - 73px);
        background-color: #fff;
        z-index: 999;
        flex-wrap: wrap;
        padding: 0px 20px;
        margin-top: 40px;
        justify-content: flex-start;
        box-shadow: 0px -10px 18px rgba(0, 0, 0, 0.04);
        display: none;
    }
    .header .header__block .header__menu.active {
        display: block;
    }
    .header .header__block .header__menu nav {
        width: 100%;
        height: auto;
    }
    .header .header__block .header__menu nav ul {
        flex-wrap: wrap;
        padding-top: 80px;
    }
    .header .header__block .header__menu nav ul li {
        width: 100%;
        height: auto;
        padding: 28px 0px;
    }
    .header .header__block .header__menu nav ul li .languages {
        width: 150px;
        margin: 20px 0px;
        left: 0px;
        top: -40px;
    }
    .header .header__block .header__menu nav ul li .languages .language {
        justify-content: flex-start;
    }
    .header .header__block .header__menu a {
        width: 100%;
        height: auto;
    }
}
@media screen and (max-width: 1180px) {
    .full__featured {
        flex-wrap: wrap;
        padding-top: 60px;
    }
    .full__featured .ff__block {
        flex-wrap: wrap;
    }
    .full__featured .ff__block .ff__content {
        width: 100%;
        height: auto;
        order: 1;
        padding-right: 0px;
    }
    .full__featured .ff__block .ff__content p {
        padding-top: 50px;
    }
    .full__featured .ff__image {
        position: relative;
        left: 0px;
        bottom: 0px;
        height: 520px;
        width: 100%;
        margin-top: 50px;
    }
    .full__featured .ff__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .teams .teams__block .teams__list .team__item{
        width: calc(33.33% - 20px);
    }
    .sections .sections__block .sections__items .sections__item{
        width:calc(50% - 30px);
    }
}
@media screen and (max-width: 960px) {
    .featured .featured__block {
        flex-wrap: wrap;
    }
    .featured .featured__block .featured__image {
        width: 100%;
        order: 2;
    }
    .featured .featured__block .featured__content {
        width: 100%;
        order: 1;
        padding: 0px;
        padding-bottom: 50px;
    }

    .accordions .accordions__block {
        flex-wrap: wrap;
    }
    .accordions .accordions__block .accordions__left {
        width: 100%;
        padding-right: 0px;
        padding-bottom: 40px;
    }
    .accordions .accordions__block .accordions__right {
        width: 100%;
        height: auto;
    }

    .news.npage .news__block .news__list .news__item {
        display: block;
    }
    .news .news__block .news__list {
        flex-wrap: wrap;
    }
    .news .news__block .news__list .news__item {
        width: 100%;
        margin: 20px 0px;
        /* display: none; */
    }
    .news .news__block .news__list .news__item:first-child {
        /* display: block; */
    }
    .news .news__block .news__list .news__item .ni__content p{
        max-height: 151px;
    }
    .news .news__block .news__list .news__item img {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        object-fit: cover;
    }
    .news .news__block .news__list .news__item .ni__content {
        align-items: flex-start;
    }

    .references .references__block .rb__list .rb__item {
        width: calc(25% - 30px);
    }
    .extraservices .es__block .es__item{
        flex-wrap: wrap;
    }
    .extraservices .es__block .es__item .es__image{
        width:100%;
        order:1;
        padding-left:0px !important;
        padding-right: 0px;
    }
    .extraservices .es__block .es__item .es__content{
        width: 100%;
        order:2;
        margin-top:20px;
        padding-left:0px;
        padding-right: 0px;
    }
}
@media screen and (max-width: 920px) {
    .slider {
        max-height: unset;
        height: 100%;
        /* min-height: calc(100vh - 150px) !important;
        height:calc(100vh - 150px) !important; */
    }
    .slider .slider__image svg {
        width: unset;
        max-width: unset;
        max-height: unset;
        height: unset;
        object-fit: cover;
        object-position: right;
        margin-left: -1000px;
        max-height: calc(100vh - 73px);
    }
    .slider .slider__image svg g {
        display: none;
    }
    .slider .slider__main .slider__block .slider__left p em b{
        font-size:32px;
    }
    .about .about__block {
        flex-wrap: wrap;
    }
    .about .about__block .about__left {
        width: 100%;
    }
    .about .about__block .about__right {
        width: 100%;
        padding: 0px;
        align-items: flex-start;
    }
    .about .about__block .about__right p {
        padding-top: 120px;
    }
    .about .about__block .about__right ul {
        padding-top: 70px;
    }

    .contact .contact__block {
        flex-wrap: wrap;
    }
    .contact .contact__block .contact__left {
        width: 100%;
    }
    .contact .contact__block .contact__left .socials {
        padding-top: 20px;
    }
    .contact .contact__block .contact__right {
        width: 100%;
        padding-top: 60px;
    }

    .post__content {
        padding: 0px 20px;
    }
    .about .about__block iframe{
        height:520px !important;
    }
}
@media screen and (max-width: 880px) {
    .references .references__block .rb__list .rb__item {
        width: calc(33.33% - 30px);
        height: 180px;
    }
}
@media screen and (max-width: 720px) {
    .slider {
        position: relative;
    }
    .slider .slider__main {
        justify-content: flex-start;
        padding-top: 40px;
    }
    .slider .slider__main .slider__block .slider__left h3 {
        font-size: 30px;
        font-weight: 700;
        color: #fff;
    }
    .slider .slider__main .slider__block .slider__left p {
        padding-top: 15px;
    }
    .slider .slider__main .slider__block .slider__left a {
        position: absolute;
        bottom: 20px;
        left: 20px;
    }
    .calculator {
        flex-wrap: wrap;
    }

    .calculator .calculator__enter {
        width: 100%;
    }
    .calculator .calculator__list {
        width: 100%;
        padding-left: 0px;
    }
    .teams .teams__block .teams__list .team__item{
        width: calc(50% - 20px);
    }
    .teams .teams__block .teams__list .team__item img{
        height:270px;
        object-position: top;
    }
    .teams .teams__block .teams__list .team__item h4{
        font-size:14px;
    }
    .teams .teams__block .teams__list .team__item h5{
        font-size:12px;
    }
    .sections .sections__block .sections__items .sections__item{
        width:100%;
        margin:15px 0px;
    }
    .sections .sections__block .sections__items .sections__item p{
        height:auto;
        margin-bottom: 15px;
    }
    .testi .testi__block .testi__list .testi__item{
        height:auto;
    }
    .references.refpage .references__block .rb__list .partners__item{
        width:calc(50% - 30px);
    }
}
@media screen and (max-width: 660px) {
    .full__featured .ff__image {
        height: 320px;
    }
    .full__featured .ff__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .accordions .accordions__top h4 {
        font-size: 30px;
        line-height: 37px;
    }
    .accordions
        .accordions__block
        .accordions__left
        .accordion
        .accordion__content
        p {
        font-size: 12px;
        line-height: 18px;
        color: #000;
    }

    .references .references__block .rb__list .rb__item {
        width: calc(50% - 10px);
        margin: 5px;
        height: 140px;
        padding: 0px 10px;
    }
    .references .references__block .rb__list .rb__item img {
        max-width: 100%;
    }
}
@media screen and (max-width: 560px) {
    .footer .footer__block img {
        display: none;
    }
    .about .about__block iframe{
        height:420px !important;
    }

    .slider {
        /* max-height: calc(100vh - 83px); */
        margin-bottom: -10px;
    }
    .slider .slider__image {
        /* max-height: calc(100vh - 73px); */
    }
    .slider .slider__image svg {
        display: none;
    }
    .slider .slider__image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .slider .slider__main {
        height: 100%;
    }
    .slider .slider__main .slider__block .slider__left a {
        bottom: 50px;
    }

    .slider .slider__main .slider__block .slider__left h3{
        font-size:18px;
    }
    .slider .slider__main .slider__block .slider__left p{
        font-size:16px;
    }
    .slider .slider__main .slider__block .slider__left p em b{
        font-size:16px;
    }
    .slider .slider__main .slider__block .slider__left a{
        bottom:20px;
        height:40px;
        font-size:14px;
    }
    .sections#modules{
        padding:100px 0px;
    }
    .featured {
        padding: 70px 0px;
    }
    .featured .featured__block .featured__content h4 {
        font-size: 30px;
    }
    .featured .featured__block .featured__content p {
        font-size: 12px;
        line-height: 18px;
        padding-top: 25px;
    }
    .featured .featured__block .featured__content ul li {
        padding-bottom: 25px;
    }
    .featured .featured__block .featured__content ul li img {
        width: 26px;
        height: 26px;
        object-fit: contain;
    }
    .featured .featured__block .featured__content ul li p {
        font-size: 12px;
        line-height: 18px;
        padding-left: 15px;
    }

    .full__featured {
        min-height: 630px;
        padding: 0px;
    }
    .full__featured .ff__block .ff__content h4 {
        font-size: 20px;
        line-height: 30px;
    }
    .full__featured .ff__block .ff__content p {
        font-size: 12px;
        line-height: 18px;
    }
    .full__featured .ff__block .ff__content p img {
        min-width: 36px;
        height: 36px;
        object-fit: contain;
        padding: 0px;
        margin-right: 15px;
    }
    .full__featured .ff__image {
        margin-top: 45px;
    }

    .accordions {
        padding: 70px 0px;
    }
    .accordions .accordions__top h4 {
        font-size: 30px;
        line-height: 37px;
    }
    .accordions .accordions__block {
        padding-top: 20px;
    }
    .accordions
        .accordions__block
        .accordions__left
        .accordion
        .accordion__top
        h5 {
        font-size: 16px;
    }

    .news {
        padding: 70px 0px;
    }
    .news .npage .news__top h3 {
        font-size: 30px;
        line-height: 37px;
    }
    .news .npage .news__top select {
        width: 150px;
        height: 40px;
    }
    .news .news__top h3 {
        font-size: 30px;
        line-height: 37px;
    }
    .news .news__block {
        padding-top: 40px;
    }
    .news .news__block .news__list .news__item {
        height: 520px;
    }
    .news .news__block .news__list .news__item img {
        height: 215px;
    }
    .news .news__block .news__list .news__item .ni__content {
        padding: 28px 22px;
    }
    .news .news__block .news__list .news__item .ni__content h4 {
        font-size: 16px;
        line-height: 25px;
    }
    .news .news__block .news__list .news__item .ni__content p {
        font-size: 12px;
        line-height: 18px;
    }
    .news .news__block .news__button {
        padding-top: 30px;
    }
    .news .news__block .news__list .news__item .ni__content a{
        margin-top:100px;
    }
    .about {
        padding: 70px 0px;
    }
    .about .about__block .about__left {
        padding-bottom: 80px;
    }
    .about .about__block .about__left h3 {
        font-size: 30px;
        line-height: 37px;
        height: 80px;
    }
    .about .about__block .about__left p {
        font-size: 12px;
        line-height: 18px;
    }
    .about .about__block .about__right p {
        font-size: 18px;
        line-height: 25px;
        padding-top: 60px;
        height: 70px;
    }
    .about .about__block .about__right ul {
        padding-top: 50px;
    }
    .about .about__block .about__right ul li img {
        max-width: 145px;
    }

    .contact {
        padding: 70px 0px;
    }
    .contact .contact__block .contact__left h3 {
        font-size: 30px;
        line-height: 37px;
    }
    .contact .contact__block .contact__left ul li {
        padding: 12px 0px;
    }
    .contact .contact__block .contact__left ul li span {
        font-size: 12px;
        line-height: 18px;
    }
    .contact .contact__block .contact__right form input,
    .contact .contact__block .contact__right form textarea {
        font-size: 12px;
    }

    .footer .footer__block {
        height: 80px;
    }

    .references .references__block .rb__top h4 {
        font-size: 30px;
        line-height: 37px;
    }
}

/*# sourceMappingURL=style.css.map */
