/*
    Theme Name: AlgoRec 
    Theme URI: 
    Description: AlgoRec Theme
    Author: asdoroshenko
    Author URI: https://www.linkedin.com/in/asdoroshenko/
    Version: 1.0.0
    Text Domain: starter
*/

/****************************************
    FONTS
****************************************/

/* Syne */
/* 
font-family: "Syne", sans-serif; 
*/
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');


/* Montserrat */
/* 
font-family: "Montserrat", sans-serif;
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Syne:wght@400..800&display=swap');


body {
    overflow-x: hidden;
}
body * {
    font-family: "Montserrat";
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body h1 *,
body h2 *,
body h3 *,
body h4 *,
body h5 *,
body h6 * {
    font-family: "Syne";
    margin-top: 0;
}

a {
    text-decoration: none;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
}

body input,
body textarea {
    outline: none;
}

/****************************************
    GRID
****************************************/
@media (min-width: 1280px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1250px;
    }
}

/****************************************
    Buttons
****************************************/
@property --myColor1 {
    syntax: '<color>';
    initial-value: #236CFF;
    inherits: false;
}

@property --myColor2 {
    syntax: '<color>';
    initial-value: #8904FB;
    inherits: false;
}


.btn {
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    border-radius: 10px;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1) !important;
    transition: all .25s cubic-bezier(.4, 0, .2, 1) !important;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    min-width:168px;
}



.btn.btn-gradient {
    color: #FAFAFA;
    padding: 13px 8px;
    background: linear-gradient(90deg, var(--myColor1), var(--myColor2)) !important;
    transition: --myColor1 .25s, --myColor2 .25s !important;
    transition-timing-function:cubic-bezier(.4, 0, .2, 1) !important;
    box-shadow: 0px 3px 3px 0px rgba(83, 143, 255, 0.25);
}
.btn.btn-gradient:hover {
    --myColor1: #8904FB;
    --myColor2: #236CFF;
}

.btn.btn-white {
    color: #29272C;
    border: 1.5px solid #206EFF;
    background: #FDFEFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;

    padding: 13px 8px;
    box-shadow: 0px 3px 3px 0px rgba(83, 143, 255, 0.25);
    cursor: pointer;
    display: inline-flex;
}
.btn.btn-white:hover {
    background: #206EFF;
    color: #FAFAFA;
}

.btn.btn-blue {
    color: #FAFAFA;
    background: #206EFF;
    padding: 13px 8px;
    box-shadow: 0px 3px 3px 0px rgba(83, 143, 255, 0.25);
    cursor: pointer;
    display: inline-flex;
}
.btn.btn-blue:hover {
    background: #538FFF;
}


.btn.btn-arrow {
    color: #29272C;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 21.7px; /* 108.5% */
    text-decoration-line: underline;
}
.btn.btn-arrow:after {
    content:'';
    display: block;
    width: 24px;
    height: 24px;
    margin-left: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(images/icons/ico-arrow-right.svg);
    transition: all .3s ease;
}
.btn.btn-arrow:hover:after {
    transform: translateX(5px);
}




/****************************************
    HEADER
****************************************/
header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 40px 0;
    border-bottom: 3px solid #DDE7F7;
    -webkit-transition: padding-top 0.25s cubic-bezier(0.2, 0, 0.2, 1), background 0.25s cubic-bezier(0.2, 0, 0.2, 1) !important;
    transition: padding-top 0.25s cubic-bezier(0.2, 0, 0.2, 1), background 0.25s cubic-bezier(0.2, 0, 0.2, 1) !important;
    z-index: 1001;
    background: rgba(255, 255, 255, 1);
}
body.admin-bar header.header {
    top: 32px;
}
header.header .header-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* header left */
header.header .header-left {
    padding-top: 5px;
}
header.header .header-left .header__logo .header__logo--logo {
    position: relative;
    display: block;
    height: 36px;
}
header.header .header-left .header__logo .header__logo--logo img {
    max-height: 100%;
}

/* right */
header.header .header-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
header.header .header-right .header__menu ul {
    margin: 0;
    padding: 0;
}
header.header .header-right .header__menu ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* primary-menu */
header.header .header-right .header__menu #primary-menu {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    -webkit-transition: opacity 0.15s cubic-bezier(0.2, 0, 0.2, 1) !important;
    transition: opacity 0.15s cubic-bezier(0.2, 0, 0.2, 1) !important;
}
header.header .header-right .header__menu #primary-menu .menu-item {
    margin: 0 4px;
    width: 103px;
    display: flex;
    align-items: center;
}
header.header .header-right .header__menu #primary-menu .menu-item a {
    color: #29272C;
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    -webkit-transition: color 0.15s cubic-bezier(0.2, 0, 0.2, 1) !important;
    transition: color 0.15s cubic-bezier(0.2, 0, 0.2, 1) !important;
}
header.header .header-right .header__menu #primary-menu .menu-item a:hover {
    color: #206EFF;
}
header.header .header-right .header__menu #primary-menu .menu-item + .menu-item {
    margin-left: 22px;
}

/* btns-menu */
header.header .header-right .header__btns {
    margin-left: 65px;
}
header.header .header-right .header__btns ul {
    margin: 0;
    padding: 0;
}
header.header .header-right .header__btns ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}
header.header .header-right .header__btns #btns-menu {
    display: flex;
    flex-wrap: wrap;
}
header.header .header-right .header__btns #btns-menu .menu-item a {
    color: #FAFAFA;
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    padding: 13px 8px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--myColor1), var(--myColor2));
    transition: --myColor1 .25s, --myColor2 .25s;
    box-shadow: 0px 3px 3px 0px rgba(83, 143, 255, 0.25);
    cursor: pointer;
    display: inline-flex;
}
header.header .header-right .header__btns #btns-menu .menu-item a:hover {
    --myColor1: #8904FB;
    --myColor2: #236CFF;
}

/* Menu toggle */
header.header .header-right .menutoggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 40px;
    margin-right: -10px;
    cursor: pointer;
    margin-left: 20px;
    border-radius: 50%;
    -webkit-transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1) !important;
    transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1) !important;
    display: none;
}
header.header .header-right .menutoggle .menutoggle-wrap {
    position: relative;
    height: 16px;
    width: 30px;
}
header.header .header-right .menutoggle .menutoggle-wrap span {
    display: block;
    height: 2px;
    width: 30px;
    position: absolute;
    -webkit-transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1) !important;
    transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1) !important;
}
header.header .header-right .menutoggle .menutoggle-wrap span:first-child {
    top: 0;
    left: 0;
    right: 0;
}
header.header .header-right .menutoggle .menutoggle-wrap span:nth-child(2) {
    top: 7px;
    left: 0;
    right: 0;
}
header.header .header-right .menutoggle .menutoggle-wrap span:last-child {
    bottom: 0;
    left: 0;
    right: 0;
}
header.header .header-right .menutoggle .menutoggle-wrap span {
    background-color: #29272C;
    border-radius: 5px;
}

/* Menu toggle active */
header.header .header-right .menutoggle.active .menutoggle-wrap span:first-child {
    transform: rotate(45deg);
    top: 8px;
}
header.header .header-right .menutoggle.active .menutoggle-wrap span:nth-child(2) {
    opacity: 0;
}
header.header .header-right .menutoggle.active .menutoggle-wrap span:last-child {
    transform: rotate(-45deg);
    bottom: 6px;
}















body.admin-bar div#sideMenu  {
    top: 32px;
}
div#sideMenu {
    width: 300px;
    padding: 100px 24px 100px;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #DDE7F7;
    position: fixed;
    display: block;
    z-index: -1;
    -webkit-transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1) !important;
    transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1) !important;
    transform: translateX(100%);
}
div#sideMenu .menu {
    -webkit-transition: opacity 0.5s cubic-bezier(0.2, 0, 0.2, 1) !important;
    transition: opacity 0.5s cubic-bezier(0.2, 0, 0.2, 1) !important;
    opacity: 0;
}
div#sideMenu.active {
    z-index: 1000;
    transform: translateX(0%);
}
div#sideMenu.active .menu {
    opacity: 1;
}
div#sideMenu .header__menu .menu {
    margin: 0;
    padding: 0;
}
div#sideMenu .header__menu .menu li.menu-item {
    list-style: none;
    padding: 8px 0;
}
div#sideMenu .header__menu .menu li.menu-item+li.menu-item {
    margin-top: 10px;
}
div#sideMenu .header__menu .menu li.menu-item a {
    color: #29272C;
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    -webkit-transition: color 0.15s cubic-bezier(0.2, 0, 0.2, 1) !important;
    transition: color 0.15s cubic-bezier(0.2, 0, 0.2, 1) !important;
}
div#sideMenu .slidemenu__btns .menu {
    margin: 0;
    padding: 0;
}
div#sideMenu .slidemenu__btns .menu li.menu-item {
    list-style: none;
}
div#sideMenu .slidemenu__btns {
    position: absolute;
    left:24px;
    right: 24px;
    bottom: 24px;
}
div#sideMenu .slidemenu__btns .menu .menu-item a {
    color: #FAFAFA;
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    padding: 13px 8px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--myColor1), var(--myColor2));
    transition: --myColor1 .25s, --myColor2 .25s;
    box-shadow: 0px 3px 3px 0px rgba(83, 143, 255, 0.25);
    cursor: pointer;
    display: inline-flex;
    
}
div#sideMenu .slidemenu__btns .menu .menu-item a:hover {
    --myColor1: #8904FB;
    --myColor2: #236CFF;
}




/****************************************
    FOOTER
****************************************/
footer.footer {
    background-color: #F1F5FE;
    color: #2C272B;
    padding: 12px 0;
    position: relative;
}
footer.footer .footer--wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* footer right */ 
footer.footer .footer-right .footer__logo .logo {
    max-width: 100%;
    max-height: 120px;
}

/* footer left */
footer.footer .footer-left {
    max-width: calc(100% - 200px);
}
footer.footer .footer-left .footer-left-row + .footer-left-row{
    margin-top: 24px;
}
footer.footer .footer-left .footer-left-row .footer-left-row-label {
    color: #29272C;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    letter-spacing: 0.16px;
    margin-bottom: 12px;
}

/* Social Medias */
footer.footer .footer-left .social__medias {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
footer.footer .footer-left .social__medias .social__medias--item {
    list-style: none;
    -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 10px;
}
footer.footer .footer-left .social__medias .social__medias--item a .social__medias--item-ico {
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity:1;
}
footer.footer .footer-left .social__medias .social__medias--item a:hover .social__medias--item-ico {
    opacity: .7;
}

/* Contact Information */
footer.footer .footer-left .contact__info {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
footer.footer .footer-left .contact__info .contact__info--item {
    list-style: none;
    -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding-right: 14px;
    min-width: 240px;
}
footer.footer .footer-left .contact__info .contact__info--item .contact__info--item-link {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    color: #2C272B;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    opacity:1;
    -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
footer.footer .footer-left .contact__info .contact__info--item .contact__info--item-link .contact__info--item-ico {
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    margin-right: 16px;
}
footer.footer .footer-left .contact__info .contact__info--item a:hover {
    opacity: .7;
}















/****************************************
    BANNERS
****************************************/

.banner {
    margin-top: 125px;
}
.banner .banner__content .banner__content-btns {
    margin-top: 70px;
}
.banner .banner__content .banner__content-btns .btn + .btn {
    margin-left: 20px;
}


/* banner  */
.banner.banner--text-dark .banner__content .banner__content-title {
    color: #29272C;
}
.banner.banner--text-dark .banner__content .banner__content-description {
    color: #000;
}

.banner.banner--text-light .banner__content .banner__content-title {
    color: #FAFAFA;
}
.banner.banner--text-light .banner__content .banner__content-description {
    color: #FAFAFA;
}


.banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}




/* Home Banner */
.banner.banner-home {
    min-height: 890px;
}
.banner.banner-home .banner__content {
    padding-top: 180px;
    padding-bottom: 180px;
}
.banner.banner-home .banner__content .banner__content-title {
    color: #29272C;
    font-family: Syne;
    font-size: 54px;
    font-style: normal;
    font-weight: 600;
    line-height: 67.2px;
    margin: 0 0 35px 0;
}
.banner.banner-home .banner__content .banner__content-description {
    color: #29272C;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36.6px;
    padding-right: 100px;
    margin-bottom: 0;
}

/* banner big */
.banner.banner-big {
    min-height: 680px;
}
.banner.banner-big .banner__content {
    padding-top: 130px;
    padding-bottom: 130px;
}
.banner.banner-big .banner__content .banner__content-title {
    color: #FAFAFA;
    font-family: Syne;
    font-size: 54px;
    font-style: normal;
    font-weight: 600;
    line-height: 67.2px;
    margin: 0 0 24px 0;
}
.banner.banner-big .banner__content .banner__content-description {
    color: #FAFAFA;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36.6px;
    margin-bottom: 0;
}

/*  banner small */
.banner.banner-small {
    min-height: 450px;
}
.banner.banner-small .banner__content {
    padding-top: 80px;
    padding-bottom: 80px;
}
.banner.banner-small .banner__content .banner__content-title {
    font-family: Syne;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 63.8px;
    letter-spacing: 0.336px;
    margin: 0 0 24px 0;
}
.banner.banner-small .banner__content .banner__content-description {
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36.6px;
    margin-bottom: 0;
    padding-right: 85px;
}
.banner.banner-small .banner__content .banner__content-btns {
    margin-top: 50px;
}



/* banner single */
.banner.banner-single {
    min-height: 450px;
    position: relative;
}
.banner.banner-single:before {
    content: '';
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.banner.banner-single .banner__content {
    padding-top: 80px;
    padding-bottom: 80px;
}
.banner.banner-single .banner__content .banner__content-title {
    font-family: Syne;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 63.8px;
    letter-spacing: 0.336px;
    margin: 0 0 24px 0;
    color:#fff;
}

/* banner contact */

section.banner.banner--contact {}
section.banner.banner--contact .banner__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
section.banner.banner--contact .banner__content .banner__content-texts {
    width: calc(100% - 700px);
}
section.banner.banner--contact .banner__content .banner__content-texts h1.banner__content-title {
    color: #29272C;
    font-family: Syne;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 63.8px; /* 132.917% */
    letter-spacing: 0.336px;
    margin-bottom: 14px;
    margin-right: -60px;
}
section.banner.banner--contact .banner__content .banner__content-texts h2.banner__content-description {
    color: #000;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36.6px;
    margin-right: -60px;
    margin-bottom: 0;
}
section.banner.banner--contact .banner__content .banner__content-texts .banner__content-btns {
    margin-top: 40px;
}
section.banner.banner--contact .banner__content .banner__content-image {
    width: 700px;
    transform: translateX(60px);
}
section.banner.banner--contact .banner__content .banner__content-image .banner__content-image-img {
    width: 100%;
    transform: translateX(60px);
}


/****************************************
    Sections Default
****************************************/
section.section {
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}
section.section .section__head {
    margin-bottom: 40px;
}
section.section .section__head .section__head-title {
    color: #29272C;
    font-family: Syne;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 63.8px; /* 132.917% */
    letter-spacing: 0.336px;
    margin-bottom: 20px;
}
section.section .section__head .section__head-subtitle {
    color: #2C272B;
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    margin-top: 18px;
}
section.section .section__head .section__head-title.title--small {
    color: #2C272B;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 41.6px; /* 130% */
    letter-spacing: 0.32px;
}

section.section .section__head.text-left .section__head-title,
section.section .section__head.text-left .section__head-subtitle {
    text-align: left;
}
section.section .section__head.text-center .section__head-title,
section.section .section__head.text-center .section__head-subtitle {
    text-align: center;
}
section.section .section__head.text-right .section__head-title,
section.section .section__head.text-right .section__head-subtitle {
    text-align: right;
}
section.section .section__bottom {
    margin-top: 20px;
}
section.section .section__bottom.text-left {
    text-align: left;
}
section.section .section__bottom.text-center {
    text-align: center;
}
section.section .section__bottom.text-right {
    text-align: right;
}



/* section features */


.feature__cards {
    display: flex;
    flex-wrap: wrap;
    margin: -20px;
}
.feature__cards .feature__card {
    padding: 20px;
    width: 50%;
}
.feature__cards .feature__card-wrap {
    padding: 24px 26px 24px 28px;
    border-radius: 10px;
    background: #F8FAFE;
    box-shadow: 0px 3px 3px 0px rgba(221, 231, 247, 0.25);
}
.feature__cards .feature__card .feature__card-icon {
    width: 44px;
    height: 44px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 24px;
}
.feature__cards .feature__card .feature__card-content {}
.feature__cards .feature__card .feature__card-content h3 {
    color: #29272C;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36.6px; 
    margin-bottom: 8px;
}
.feature__cards .feature__card .feature__card-content p {
    color: #29272C;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin: 0;
}

/* Testimonials */

.testimonial {
    display: flex;
    padding: 34px 100px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1.5px solid #DDE7F7;
    background: #FDFEFF;
    position: relative;
}
.testimonial:before {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(images/icons/ico-quote.svg);
    position: absolute;
    left: 12px;
    top: -60px;
}
.testimonial .testimonial-content {
    color: #29272C;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 24px;
}
.testimonial .testimonial-username {
    color: #29272C;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}
.testimonial .testimonial-avatar {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    border-radius: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: 0px 2px 3px 0px #DDE7F7;
}


.testimonials__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}
.testimonials__carousel .owl-nav button > span {
    display: none;
}
.testimonials__carousel .owl-nav button {
    display: block;
    width: 50px;
    height: 50px;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
}
.testimonials__carousel .owl-nav button.owl-prev {
    background-image: url(images/icons/arrow-left.svg);
    left: 0;
    translate: calc(-100% - 10px) -50%;
}
.testimonials__carousel .owl-nav button.owl-next {
    background-image: url(images/icons/arrow-right.svg);
    right: 0;
    translate: calc(100% + 10px) -50%;
}

@media screen and (max-width: 991px) {
    .testimonials__carousel .owl-nav button.owl-next {
        translate: 50% -50%;
    }
    .testimonials__carousel .owl-nav button.owl-prev {
        translate: -50% -50%;
    }
}
@media screen and (max-width: 767px) {
    .testimonials__carousel {
        width: 95%;
    }
    .testimonials__carousel .owl-nav {
        display: none;
    }
}


/* Case studies */
section.section--case_studies {
    padding-top: 55px;
    padding-bottom: 55px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.case_studies__cards {
    width: 560px;
    margin-left: auto;
    margin-right: 0;
}
.case_study__card {
    border-radius: 20px;
    background: #F8FAFE;
    box-shadow: 0px 3px 6px 0px rgba(221, 231, 247, 0.25);
    padding: 12px 32px;
}
.case_study__card+.case_study__card {
    margin-top: 24px;
}
.case_study__card .case_study__card-logo {
    display: flex;
}
.case_study__card .case_study__card-logo img {
    max-height: 45px;
}
.case_study__card .case_study__card-body {
    margin-top: 12px;
    margin-bottom: 12px;
}
.case_study__card .case_study__card-body p {
    color: #29272C;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
    margin: 0;
}
.case_study__card .case_study__card-bottom {}
.case_study__card .case_study__card-bottom .case_study__card-bottom-username {
    color: #29272C;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px; /* 150% */
}
.case_study__card .case_study__card-bottom .case_study__card-bottom-jobtitle {
    color: #29272C;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
}

/* Partners */
section.section--partners {
    padding-top: 80px;
    padding-bottom: 80px;
}
section.section--partners .partners {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 64px 256px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
section.section--partners .partners .partner img {
    max-height: 45px;
}

/* subscription */
section.section--subscription {
    padding-top: 80px;
    padding-bottom: 80px;
}
section.section--subscription .subscription_form {
    display: flex;
    align-items: center;
    justify-content: center;
}
section.section--subscription .section__head {
    margin-bottom: 35px;
}

form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 530px;

}
form .form-body {

}
form .form-body .input-wrap {
    width: 408px;
}
form .form-body .input-wrap input[type='email'] {
    display: flex;
    padding: 14px 24px;
    justify-content: center;
    align-items: center;
    color: #29272C;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 0.16px;
    height: 52px;
    width: 100%;
    border-radius: 10px;
    border: 1.5px solid #54A3FD;
    background: #FFF;
}
form .form-body .input-wrap input[type='email']::-webkit-input-placeholder {
    color: #C5C5C5;
}
form .form-body .input-wrap input[type='email']::-moz-placeholder {
    color: #C5C5C5;
}
form .form-body .input-wrap input[type='email']:-ms-input-placeholder {
    color: #C5C5C5;
}
form .form-body .input-wrap input[type='email']:-moz-placeholder {
    color: #C5C5C5;
}

form .form-bottom {
    margin-left: -16px;
}
form .form-bottom input[type='submit'] {
    color: #29272C;
    border: 1.5px solid #54A3FD;
    background: #FDFEFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;

    padding: 10px ;
    box-shadow: -3px 3px 3px 0px rgba(83, 143, 255, 0.25);
    cursor: pointer;
    display: inline-flex;

    border-radius: 10px;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1) !important;
    transition: all .25s cubic-bezier(.4, 0, .2, 1) !important;
    justify-content: center;
    height: 52px;
    width: 142px;
}
form .form-bottom input[type='submit']:hover {
    background: #206EFF;
    color: #FAFAFA;
}















section.section--subscription form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 530px;
}
section.section--subscription form .gform_body {

}
section.section--subscription form .gform_body .gfield {
    width: 408px;
}
section.section--subscription form .gform_body .gfield input[type='email'] {
    display: flex;
    padding: 14px 24px;
    justify-content: center;
    align-items: center;
    color: #29272C;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 0.16px;
    height: 52px;
    width: 100%;
    border-radius: 10px;
    border: 1.5px solid #54A3FD;
    background: #FFF;
}
section.section--subscription form .gform_body .gfield input[type='email']::-webkit-input-placeholder {
    color: #C5C5C5;
}
section.section--subscription form .gform_body .gfield input[type='email']::-moz-placeholder {
    color: #C5C5C5;
}
section.section--subscription form .gform_body .gfield input[type='email']:-ms-input-placeholder {
    color: #C5C5C5;
}
section.section--subscription form .gform_body .gfield input[type='email']:-moz-placeholder {
    color: #C5C5C5;
}

section.section--subscription form .gform_footer {
    margin: 0 !important;
    margin-left: -16px !important;
    padding: 0 !important;
}
section.section--subscription form .gform_footer input[type='submit'] {
    color: #29272C;
    border: 1.5px solid #54A3FD;
    background: #FDFEFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;

    padding: 10px ;
    box-shadow: -3px 3px 3px 0px rgba(83, 143, 255, 0.25);
    cursor: pointer;
    display: inline-flex;

    border-radius: 10px;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1) !important;
    transition: all .25s cubic-bezier(.4, 0, .2, 1) !important;
    justify-content: center;
    height: 52px;
    width: 142px;
    margin: 0 !important;
}
section.section--subscription form .gform_footer input[type='submit']:hover {
    background: #206EFF;
    color: #FAFAFA;
}






















/* section tabs */
section.section.section--features {
    padding-bottom: 64px;
}
section.section.section--features .section__head {
    margin-bottom: 70px;
}
section.section.section--features .section__head .section__head-title {
    color: #29272C;
    font-family: Syne;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 41.6px; /* 130% */
    letter-spacing: 0.224px;
}
section.section.section--features .section__head .section__head-subtitle {
    max-width: 870px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 12px;
    color: #000;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36.6px;
}


.content__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.content__tabs .content__tab-head {
    width: 540px;
}
.content__tabs .content__tab-head .content__tab-head-tab {
    border-radius: 10px;
    background: #F8FAFE;
    padding: 24px 68px 24px 24px;

    color: #000;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 41.6px; /* 130% */
    letter-spacing: 0.32px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
}
.content__tabs .content__tab-head .content__tab-head-tab+.content__tab-head-tab {
    margin-top: 24px;
}
.content__tabs .content__tab-head .content__tab-head-tab:after {
    content:'';
    display: block;
    width: 44px;
    height: 44px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(images/icons/arrow-down-contained.svg);
    position: absolute;
    top: 24px;
    right: 24px;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
}
.content__tabs .content__tab-head .content__tab-head-tab:hover,
.content__tabs .content__tab-head .content__tab-head-tab.active {
    background: #DDE7F7;
}
.content__tabs .content__tab-head .content__tab-head-tab.active:after {
    transform: rotate(-180deg);
}
.content__tabs .content__tab-body {
    width: 555px;
}
.content__tabs .content__tab-body .content__tab-body-tab {
    opacity: 0;
    max-height: 0;
}
.content__tabs .content__tab-body .content__tab-body-tab img {
    margin-bottom: 12px;
    max-width: 100%;
}
.content__tabs .content__tab-body .content__tab-body-tab p {
    color: #29272C;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-top: 0;
}
.content__tabs .content__tab-body .content__tab-body-tab strong {
    font-weight: 500;
}
.content__tabs .content__tab-body .content__tab-body-tab.active {
    opacity:1;
    max-height: none;
}


/* Plans */
section.section.section--plans {
    padding-top: 60px;
    padding-bottom: 120px;
}
section.section.section--plans .section__head {
    margin-bottom: 75px;
}


.plan__cards {
    display: flex;
    margin-left: -27px;
    margin-right: -27px;
}
.plan__cards .plan__card {
    padding: 0 27px;
    width: 33.335%;
} 
.plan__cards .plan__card .plan__card-content {
    border-radius: 10px;
    background: #F8FAFE;
    box-shadow: 0px 4px 3px 0px rgba(83, 143, 255, 0.08);
    padding: 28px 34px;
}
.plan__cards .plan__card .plan__card-content .plan__card-title {
    color: #29272C;
    font-family: Syne;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.192px;
    border-bottom: 2px solid transparent;
    display: inline-flex;
    margin: 0;
}
.plan__cards .plan__card .plan__card-content .plan__card-price {
    color: #29272C;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-top: 24px;
    margin-bottom: 24px;
}
.plan__cards .plan__card .plan__card-content .plan__card-price b {
    font-weight: 600;
}
.plan__cards .plan__card .plan__card-content .plan__card-description {
    color: #29272C;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /
}
.plan__cards .plan__card .plan__card-content .plan__card-btn {
    margin-top: 34px;
}
.plan__cards-information {
    margin-top: 54px;
    padding-top: 54px;
    border-top: 2px solid #D9D9D9;
    text-align: center;
}
.plan__cards-information .plan__cards-information-text {
    max-width: 700px;
    margin: 0 auto ;
    color: #29272C;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36.6px;
}
.plan__cards-information .btn {
    margin-top: 34px;
}

.service_cards__grid {
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}
.service_cards__grid .service_card {
    padding: 17px;
    width: 100%;
}
.service_cards__grid .service_card .service_card-wrap {
    border-radius: 10px;
    background: #F8FAFE;
    box-shadow: 0px 3px 3px 0px rgba(83, 143, 255, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
.service_cards__grid .service_card .service_card-thumbnail {
    display: block;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 330px;
}
.service_cards__grid .service_card .service_card-content {
    padding: 24px 40px 40px;
    max-width: 840px;
}
.service_cards__grid .service_card .service_card-content .service_card-title {
    color: #000;
    font-family: Syne;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 41.6px;
    margin-bottom: 8px;
    display: inline-block;
}
.service_cards__grid .service_card .service_card-content .service_card-description {
    color: #7C7C7C;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
}
.service_cards__grid .service_card:nth-child(5n+2) {
    width: 55%;
}
.service_cards__grid .service_card:nth-child(5n+3) {
    width: 45%;
}
.service_cards__grid .service_card:nth-child(5n+4) {
    width: 45%;
}
.service_cards__grid .service_card:nth-child(5n+5) {
    width: 55%;
}
.service_cards__grid .service_card:nth-child(5n+2) .service_card-thumbnail {
    min-height: 575px;
}
.service_cards__grid .service_card:nth-child(5n+3) .service_card-thumbnail {
    min-height: 515px;
}
.service_cards__grid .service_card:nth-child(5n+4) .service_card-thumbnail {
    min-height: 515px;
}
.service_cards__grid .service_card:nth-child(5n+5) .service_card-thumbnail {
    min-height: 575px;
}



.service_cards-staked .service_card {
    width: 760px;
    padding: 60px 40px 40px 40px;
    border-radius: 50px;
    border: 1px solid #54A3FD;
    background: #F8FAFE;
    box-shadow: 0px 4px 4px 0px rgba(221, 231, 247, 0.25);
    position: relative;
    transition: all .5s ease;
}
.service_cards-staked .service_card .service_card-wrap {}
.service_cards-staked .service_card .service_card-thumbnail {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 445px;
    margin-bottom: 24px;
}
.service_cards-staked .service_card .service_card-content {
    padding: 0 25px;
}
.service_cards-staked .service_card .service_card-content .service_card-title {
    color: #29272C;
    font-family: Syne;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 41.6px;
    margin-bottom: 8px;
}
.service_cards-staked .service_card .service_card-content .service_card-description {
    color: #7C7C7C;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
}

@media screen and (min-width:992px) {
    .service_cards-staked {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
    }
    .service_cards-staked .service_card:not(:first-child) {
        margin-right: -608px;
    }
    .service_cards-staked .service_card:not(:last-child):hover~.service_card,
    .service_cards-staked .service_card:not(:last-child):focus-within~.service_card {
        transform: translateX(-608px);
    }
}

/* News */
section.section.section--news {}
section.section.section--news .news-container {
    margin-left: -17px;
    margin-right: -17px;
    display: flex;
    flex-wrap: wrap;
}
section.section.section--news .news-container .news_item {
    width: 33.3335%;
    padding: 17px;
}
section.section.section--news .news-container .news_item .news_item-thumbnail {
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 325px;
    display: block;
}
section.section.section--news .news-container .news_item .news_item-thumbnail .news_item-thumbnail-img {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}
section.section.section--news .news-container .news_item .news_item-content {
    padding: 12px;
    background: #F8FAFE;
}
section.section.section--news .news-container .news_item .news_item-content .news_item-content-title {
    margin: 0;
}
section.section.section--news .news-container .news_item .news_item-content .news_item-content-title a {
    color: #29272C;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36.6px;
}
section.section.section--news .news-container .news_item .news_item-content .news_item-content-title a:hover {
    color: #538FFF;
}

/* SINGLE */
body.single section.section.section-content h1 {
    color: #29272C;
    font-family: Syne;
    font-size: 54px;
    font-style: normal;
    font-weight: 600;
    line-height: 68px; /* 132.917% */
    letter-spacing: 0.336px;
}
body.single section.section.section-content h2 {
    color: #29272C;
    font-family: Syne;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 63.8px; /* 132.917% */
    letter-spacing: 0.336px;
}
body.single section.section.section-content h3 {
    color: #29272C;
    font-family: Syne;
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 54px; /* 132.917% */
    letter-spacing: 0.336px;
}
body.single section.section.section-content h4 {
    color: #29272C;
    font-family: Syne;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px; /* 132.917% */
    letter-spacing: 0.336px;
}
body.single section.section.section-content h5 {}
body.single section.section.section-content h6 {}
body.single section.section.section-content p {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

section.section.section-latest-news { 
    padding-bottom: 200px;
}
section.section.section-latest-news .news__carousel .news_item {
    width: 406px;
}
section.section.section-latest-news .news__carousel .news_item .news_item-thumbnail {
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 325px;
    display: block;
}
section.section.section-latest-news .news__carousel .news_item .news_item-thumbnail .news_item-thumbnail-img {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}
section.section.section-latest-news .news__carousel .news_item .news_item-content {
    padding: 12px;
    background: #F8FAFE;
}
section.section.section-latest-news .news__carousel .news_item .news_item-content .news_item-content-title {
    margin: 0;
}
section.section.section-latest-news .news__carousel .news_item .news_item-content .news_item-content-title a {
    color: #29272C;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36.6px;
}
section.section.section-latest-news .news__carousel .news_item .news_item-content .news_item-content-title a:hover {
    color: #538FFF;
}
section.section.section-latest-news .news__carousel .owl-nav button > span {
    display: none;
}
section.section.section-latest-news .news__carousel .owl-nav button {
    display: block;
    width: 50px;
    height: 50px;
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: -70px;
}
section.section.section-latest-news .news__carousel .owl-nav button.owl-prev {
    background-image: url(images/icons/arrow-left.svg);
    left: 0;
    transform: translateX(-50%);
}
section.section.section-latest-news .news__carousel .owl-nav button.owl-next {
    background-image: url(images/icons/arrow-right.svg);
    right: 0;
    transform: translateX(50%);
}

/* blocks */
section.section.section-blocks {
    padding-top: 0;
    padding-bottom: 0;
}
section.section.section-blocks .section__block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
section.section.section-blocks .section__block+ .section__block {
    margin-top: 78px;
}
section.section.section-blocks .section__block .section__block-image {
    width: 470px;
}
section.section.section-blocks .section__block .section__block-image .section__block-image-img {
    width: 100%;
}
section.section.section-blocks .section__block .section__block-content {
    width: calc(100% - 470px);
    /* position: absolute; */
}
section.section.section-blocks .section__block .section__block-content .section__block-content-title {
    color: #29272C;
    font-family: Syne;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 63.8px;
    letter-spacing: 0.336px;
    margin-bottom: 15px;
}
section.section.section-blocks .section__block .section__block-content .section__block-content-description {
    color: #29272C;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36.6px;
    margin: 0;
}
 
section.section.section-blocks .section__block:nth-child(odd) .section__block-image {
    order:2;
    transform: translateX(60px);
}
section.section.section-blocks .section__block:nth-child(odd) .section__block-image .section__block-image-img {
    transform: translateX(60px);
}
section.section.section-blocks .section__block:nth-child(odd) .section__block-content {
    order:1;
}
section.section.section-blocks .section__block:nth-child(odd) .section__block-content .section__block-content-title,
section.section.section-blocks .section__block:nth-child(odd) .section__block-content .section__block-content-description {
    margin-right: -60px;
}
section.section.section-blocks .section__block:nth-child(even) .section__block-image {
    order:1;
    transform: translateX(-60px);
}
section.section.section-blocks .section__block:nth-child(even) .section__block-image .section__block-image-img {
    transform: translateX(-60px);
}
section.section.section-blocks .section__block:nth-child(even) .section__block-content {
    order:2;
}
section.section.section-blocks .section__block:nth-child(even) .section__block-content .section__block-content-title,
section.section.section-blocks .section__block:nth-child(even) .section__block-content .section__block-content-description {
    margin-left: -60px;
}

/* values */
section.section.section--values {
    padding-top: 75px;
    padding-bottom: 0;
}
section.section.section--values .values {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}
section.section.section--values .values .value {
    padding: 0 12px 12px 12px;
    width: 25%;
}
section.section.section--values .values .value .value-wrap {
    border-radius: 10px;
    background: #F8FAFE;
    box-shadow: 0px 3px 3px 0px rgba(83, 143, 255, 0.25);
    padding: 24px 12px 25px 14px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
section.section.section--values .values .value .value-title {
    color: #29272C;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36.6px; /* 152.5% */
    margin-bottom: 8px;
}
section.section.section--values .values .value .value-content {
    color: #29272C;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
}

/* Milestones */
section.section.section--milestones {
    padding-bottom: 75px;
}
section.section.section--milestones .milestones {
    background-position: left center;
    background-repeat: no-repeat;
}
section.section.section--milestones .milestones .milestone {
    /* min-width: 450px; */
    /* max-width: 570px; */
    position: relative;
}
section.section.section--milestones .milestones .milestone {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
section.section.section--milestones .milestones .milestone+.milestone {
    margin-top: 8px;
}
section.section.section--milestones .milestones .milestone .milestone-icon {
    width: 44px;
    height: 44px;
    margin-right: 24px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}
section.section.section--milestones .milestones .milestone .milestone-icon:before {
    content: '';
    display: block;
    width: 255px;
    height: 44px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(images/icons/line.svg);
    position: absolute;
    left: 0;
    transform: translateX(calc(-100% - 12px));
}
section.section.section--milestones .milestones .milestone .milestone-content .milestone-title {
    color: #29272C;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36.6px; /* 152.5% */
    margin: 0;
}
section.section.section--milestones .milestones .milestone .milestone-content .milestone-description {
    color: #29272C;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
}
section.section.section--milestones .milestones .milestone:nth-child(1),
section.section.section--milestones .milestones .milestone:nth-child(5) {
    padding-right: 230px;
}
section.section.section--milestones .milestones .milestone:nth-child(2),
section.section.section--milestones .milestones .milestone:nth-child(4) {
    padding-right: 55px;
}
section.section.section--milestones .milestones .milestone:nth-child(3) {
    padding-right: 0;
}

section.section.section--milestones .milestones .milestone:nth-child(1) .milestone-content,
section.section.section--milestones .milestones .milestone:nth-child(5) .milestone-content {
    width: 500px;
}
section.section.section--milestones .milestones .milestone:nth-child(2) .milestone-content,
section.section.section--milestones .milestones .milestone:nth-child(4) .milestone-content {
    width: 430px;
}

/* culture */
section.section.section--culture {
    padding-top: 80px;
    padding-bottom: 70px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
section.section.section--culture .culture__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
section.section.section--culture .culture__content .culture__content-texts {
    width: 800px;
}
section.section.section--culture .culture__content .culture__content-texts .culture__content-title {
    color: #29272C;
    font-family: Syne;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 63.8px; /* 132.917% */
    letter-spacing: 0.336px;
    margin-bottom: 15px;
}
section.section.section--culture .culture__content .culture__content-texts .culture__content-description {
    color: #000;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36.6px; /* 152.5% */
}
section.section.section--culture .culture__content .culture__content-texts .culture__content-description p {
    margin: 0;
}
section.section.section--culture .culture__content .culture__content-texts .culture__content-description p+p {
    margin-top: 20px;
}
section.section.section--culture .culture__content .culture__content-btns {
    width: auto;
    margin-bottom: 15px;
}

/* careers */
section.section.section--careers {
    padding-top: 44px;
    padding-bottom: 15px;
}
section.section.section--careers .careers__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
section.section.section--careers .careers__content .careers__content-texts {
    width: 800px;
}
section.section.section--careers .careers__content .careers__content-texts .careers__content-title {
    color: #29272C;
    font-family: Syne;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 63.8px; /* 132.917% */
    letter-spacing: 0.336px;
    margin-bottom: 15px;
}
section.section.section--careers .careers__content .careers__content-texts .careers__content-description {
    color: #000;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36.6px; /* 152.5% */
}
section.section.section--careers .careers__content .careers__content-texts .careers__content-description p {
    margin: 0;
}
section.section.section--careers .careers__content .careers__content-texts .careers__content-description p+p {
    margin-top: 20px;
}
section.section.section--careers .careers__content .careers__content-btn {
    width: auto;
    margin-bottom: 15px;
}

/* How to */
section.section.section--howto_card_cards {

}
section.section.section--howto_card_cards .howtos__grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}
section.section.section--howto_card_cards .howtos__grid .howto_card {
    padding: 20px;
    width: 50%;
}
section.section.section--howto_card_cards .howtos__grid .howto_card .howto_card-wrap {
    position: relative;
    padding: 24px 28px;
    border-radius: 10px;
    background: #F8FAFE;
    height: 100%;
}
section.section.section--howto_card_cards .howtos__grid .howto_card .howto_card-title {
    color: #29272C;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36.6px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom:1.5px solid #DDE7F7;
}
section.section.section--howto_card_cards .howtos__grid .howto_card .howto_card-description {
    color: #29272C;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}
section.section.section--howto_card_cards .howtos__grid .howto_card .howto_card-link {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}

/* offices */
section.section.section--offices {

}
section.section.section--offices .offices {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
section.section.section--offices .offices.main_office {
    justify-content: center;
    margin-bottom: 20px;
}
section.section.section--offices .offices.main_office .office {
    margin-top: 0;
}
section.section.section--offices .offices .office {
    max-width:510px;
    margin-top: 75px;
    margin-bottom: 55px;
}
section.section.section--offices .offices .office .office-address {
    color: #000;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36.6px; 
    margin-bottom: 24px;
}
section.section.section--offices .offices .office .office-phone *,
section.section.section--offices .offices .office .office-email * {
    color: #000;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    line-height: 36.6px;
}
section.section.section--offices .offices .office .office-phone span,
section.section.section--offices .offices .office .office-email span {
    font-weight: 600;
}
section.section.section--offices .offices .office .office-phone a,
section.section.section--offices .offices .office .office-email a {
    font-weight: 400;
}
section.section.section--offices .offices .office .office-link-wrap {
    margin-top: 20px;
}
section.section.section--offices .offices .office .office-link {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 100% */
    text-decoration-line: underline;
}
section.section.section--offices .offices .office .office-phone a:hover,
section.section.section--offices .offices .office .office-email a:hover,
section.section.section--offices .offices .office .office-link:hover {
    color:#206EFF;
}
section.section.section--offices .office_location-image {
    pointer-events: none;
    padding-top: 60px;
}
section.section.section--offices .office_location-image img {
    width: 100%;
}

/* assistance */
section.section.section--assistance {
    padding-bottom: 75px;
}
section.section.section--assistance .section__head {
    margin-bottom: 0;
}
section.section.section--assistance .section__head h2.section__head-title {
    color: #000;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36.6px; /* 152.5% */
    margin-bottom: 0;
}
section.section.section--assistance .section__head .section__head-description {
    color: #000;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 150% */
    margin-top: 20px;
}

section.section.section--assistance .assistance__grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
    margin-top: 15px;
}
section.section.section--assistance .assistance__grid .assistance_tiles {
    padding: 12px;
    width: 33.3335%;
}
section.section.section--assistance .assistance__grid .assistance_tiles .assistance_tile-wrap {
    position: relative;
    padding: 24px 28px;
    border-radius: 10px;
    background: #F8FAFE;
    height: 100%;
}
section.section.section--assistance .assistance__grid .assistance_tiles h3.assistance_tile-title {
    color: #29272C;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36.6px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom:1.5px solid #DDE7F7;
}
section.section.section--assistance .assistance__grid .assistance_tiles .assistance_tile-description,
section.section.section--assistance .assistance__grid .assistance_tiles .assistance_tile-description a  {
    color: #29272C;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}
section.section.section--assistance .assistance__grid .assistance_tiles .assistance_tile-description a:hover {
    color:#206EFF;
}

/* homepage */
body.home .main section.section.section--features {
    padding-top: 45px;
    padding-bottom: 35px;
}
body.home .main section.section.section--success {
    padding-top: 0;
    padding-bottom: 85px;
}


/* solutions */
body.page-template.page-template-template-solutions main.main {
    padding-bottom: 120px;
}
body.page-template.page-template-template-solutions main.main section.section--partners {
    padding-bottom: 60px;
    padding-top: 60px;
}

/* company */
body.page-template.page-template-template-company main.main {
    margin-top: 120px;
}












/****************************************
    RESPONSIVE
****************************************/


@media screen and (max-width: 1279px) {

    .btn {
        font-size: 16px;
        line-height: 16px;
        min-width: 160px;
    }

    header.header {
        padding: 35px 0;
        border-bottom: 3px solid #DDE7F7;
    }
    header.header .header-right .header__menu #primary-menu .menu-item {
        margin: 0 4px;
        width: 100px;
    }
    header.header .header-right .header__menu #primary-menu .menu-item + .menu-item {
        margin-left: 16px;
    }
    header.header .header-right .header__menu #primary-menu .menu-item a {
        font-size: 16px;
        line-height: 16px;
    }
    header.header .header-right .header__btns {
        margin-left: 50px;
    }
    header.header .header-right .header__btns #btns-menu .menu-item a {
        font-size: 16px;
        line-height: 16px;
        padding: 13px 8px;
        border-radius: 10px;
    }

    footer.footer .footer-right .footer__logo .logo {
        max-height: 110px;
    }
    footer.footer .footer-left .footer-left-row .footer-left-row-label {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 12px;
    }
    footer.footer .footer-left .contact__info .contact__info--item {
        min-width: 220px;
    }
    footer.footer .footer-left .contact__info .contact__info--item .contact__info--item-link {
        font-size: 15px;
        line-height: 15px;
    }
    footer.footer .footer-left .contact__info .contact__info--item .contact__info--item-link .contact__info--item-ico {
        width: 24px;
        height: 24px;
        margin-right: 12px;
    }

    .banner {
        margin-top: 115px;
    }
    .banner.banner-home .banner__content .banner__content-title {
        font-size: 48px;
        line-height: 64px;
        margin: 0 0 30px 0px;
    }
    .banner.banner-home .banner__content .banner__content-description {
        font-size: 22px;
        line-height: 32px;
        padding-right: 100px;
    }
    .banner .banner__content .banner__content-btns {
        margin-top: 60px;
    }

    .banner.banner-home {
        min-height: 800px;
    }

    .banner.banner-big {
        min-height: 600px;
    }
    .banner.banner-big .banner__content {
        padding-top: 110px;
        padding-bottom: 110px;
    }
    .banner.banner-big .banner__content .banner__content-title {
        font-size: 48px;
        line-height: 64px;
        margin: 0 0 24px 0;
    }
    .banner.banner-big .banner__content .banner__content-description {
        font-size: 22px;
        line-height: 32px;
    }

    .banner.banner-small .banner__content .banner__content-title {
        font-size: 46px;
        line-height: 60px;
        margin: 0 0 24px 0;
    }
    .banner.banner-small .banner__content .banner__content-description {
        font-size: 22px;
        line-height: 32px;
        padding-right: 75px;
    }

    section.banner.banner--contact .banner__content .banner__content-texts h1.banner__content-title {
        font-size: 44px;
        line-height: 58px;
        margin-bottom: 14px;
        margin-right: -50px;
    }
    section.banner.banner--contact .banner__content .banner__content-texts h2.banner__content-description {
        font-size: 22px;
        line-height: 32px;
        margin-right: -50px;
    }
    section.banner.banner--contact .banner__content .banner__content-texts .banner__content-btns {
        margin-top: 30px;
    }
    section.banner.banner--contact .banner__content .banner__content-texts {
        width: calc(100% - 630px);
    }
    section.banner.banner--contact .banner__content .banner__content-image {
        width: 630px;
        transform: translateX(50px);
    }

    section.section.section-blocks .section__block:nth-child(odd) .section__block-content .section__block-content-title, 
    section.section.section-blocks .section__block:nth-child(odd) .section__block-content .section__block-content-description {
        margin-right: -40px;
    }
    section.section.section-blocks .section__block:nth-child(even) .section__block-content .section__block-content-title, 
    section.section.section-blocks .section__block:nth-child(even) .section__block-content .section__block-content-description {
        margin-left: -40px;
    }
    section.section.section-blocks .section__block .section__block-content .section__block-content-title {
        font-size: 44px;
        line-height: 58px;
    }
    section.section.section-blocks .section__block .section__block-content .section__block-content-description {
        font-size: 22px;
        line-height: 32px;
    }
    section.section.section-blocks .section__block .section__block-content {
        width: calc(100% - 480px);
    }
    section.section.section-blocks .section__block .section__block-image {
        width: 440px;
    }
    section.section.section-blocks .section__block:nth-child(odd) .section__block-content {
        padding-right: 30px;
    }
    section.section.section-blocks .section__block:nth-child(even) .section__block-content {
        padding-left: 30px;
    }
    section.section.section-blocks .section__block:nth-child(odd) .section__block-image {
        order: 2;
        transform: translateX(40px);
    }
    section.section.section-blocks .section__block:nth-child(odd) .section__block-image .section__block-image-img {
        transform: translateX(40px);
    }
    section.section.section-blocks .section__block:nth-child(even) .section__block-image {
        transform: translateX(-40px);
    }
    section.section.section-blocks .section__block:nth-child(even) .section__block-image .section__block-image-img {
        transform: translateX(-40px);
    }

    section.section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    section.section .section__head {
        margin-bottom: 35px;
    }
    section.section .section__head .section__head-title {
        font-size: 44px;
        line-height: 58px;
        margin-bottom: 20px;
    }
    section.section .section__head .section__head-subtitle {
        font-size: 18px;
        line-height: 26px;
        margin-top: 16px;
    }
    section.section .section__head .section__head-title.title--small {
        font-size: 30px;
        line-height: 40px;
    }

    section.section.section--features .section__head {
        margin-bottom: 60px;
    }

    .feature__cards .feature__card {
        padding: 15px;
    }
    .feature__cards .feature__card .feature__card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 20px;
    }
    .feature__cards .feature__card .feature__card-content h3 {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 6px;
    }
    .feature__cards .feature__card .feature__card-content p {
        font-size: 16px;
        line-height: 24px;
    }




    body.home .main section.section.section--success {
        padding-top: 0;
        padding-bottom: 80px;
    }
    

    .testimonial {
        padding: 30px 90px;
        border-radius: 30px;
        border: 1.5px solid #DDE7F7;
    }
    .testimonial:before {
        width: 90px;
        height: 90px;
        left: 12px;
        top: -55px;
    }
    .testimonial .testimonial-content {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    .testimonial .testimonial-username {
        font-size: 16px;
        line-height: 24px;
    }
    .testimonial .testimonial-avatar {
        width: 50px;
        height: 50px;
        bottom: -25px;
    }


    section.section--case_studies {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .case_studies__cards {
        width: 500px;
    }
    .case_study__card {
        border-radius: 20px;
        padding: 12px 25px;
    }
    .case_study__card+.case_study__card {
        margin-top: 20px;
    }
    .case_study__card .case_study__card-logo img {
        max-height: 42px;
    }
    .case_study__card .case_study__card-body {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .case_study__card .case_study__card-body p {
        font-size: 16px;
        line-height: 24px;
    }
    .case_study__card .case_study__card-bottom .case_study__card-bottom-username {
        font-size: 16px;
        line-height: 24px;
    }

    section.section--partners .partners {
        gap: 60px 200px;
    }


    section.section--subscription form {
        width: 500px;
    }
    section.section--subscription form .gform_body .gfield {
        width: 390px;
    }
    section.section--subscription form .gform_body .gfield input[type='email'] {
        padding: 12px 20px;
        font-size: 16px;
        line-height: 24px;
        height: 50px;
    }

    section.section--subscription form .gform_footer input[type='submit'] {
        font-size: 16px;
        padding: 10px;
        height: 50px;
        width: 130px;
    }

    .service_cards__grid .service_card .service_card-content {
        padding: 20px 35px 35px;
    }
    .service_cards__grid .service_card .service_card-content .service_card-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 8px;
    }
    .service_cards__grid .service_card .service_card-content .service_card-description {
        font-size: 18px;
        line-height: 26px;
    }
    .service_cards__grid .service_card .service_card-thumbnail {
        min-height: 300px;
    }
    .service_cards__grid .service_card:nth-child(5n+2) .service_card-thumbnail {
        min-height: 500px;
    }
    .service_cards__grid .service_card:nth-child(5n+3) .service_card-thumbnail {
        min-height: 450px;
    }
    .service_cards__grid .service_card:nth-child(5n+4) .service_card-thumbnail {
        min-height: 450px;
    }
    .service_cards__grid .service_card:nth-child(5n+5) .service_card-thumbnail {
        min-height: 500px;
    }

    .service_cards-staked .service_card .service_card-thumbnail {
        height: 400px;
        margin-bottom: 24px;
    }
    .service_cards-staked .service_card .service_card-content {
        padding: 0 20px;
    }
    .service_cards-staked .service_card .service_card-content .service_card-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 8px;
    }
    .service_cards-staked .service_card .service_card-content .service_card-description {
        font-size: 18px;
        line-height: 26px;
    }

    .service_cards-staked .service_card {
        width: 740px;
        padding: 45px 30px 30px 30px;
        border-radius: 50px;
    }

    section.section.section--plans {
        padding-top: 40px;
        padding-bottom: 80px;
    }
    section.section.section--plans .section__head {
        margin-bottom: 60px;
    }

    .plan__cards .plan__card .plan__card-content {
        padding: 24px 30px;
    }
    .plan__cards .plan__card .plan__card-content .plan__card-title {
        font-size: 22px;
        line-height: 26px;
    }
    .plan__cards .plan__card .plan__card-content .plan__card-price {
        font-size: 16px;
        line-height: 18px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .plan__cards .plan__card .plan__card-content .plan__card-description {
        font-size: 16px;
        line-height: 18px;
    }
    .plan__cards-information {
        margin-top: 45px;
        padding-top: 45px;
    }
    .plan__cards-information .plan__cards-information-text {
        max-width: 650px;
        font-size: 22px;
        line-height: 32px;
    }
    .plan__cards-information .btn {
        margin-top: 25px;
    }

    section.section.section--features .section__head .section__head-title {
        font-size: 28px;
        line-height: 36px;
    }
    .content__tabs .content__tab-head .content__tab-head-tab {
        padding: 24px 68px 24px 24px;
        font-size: 28px;
        line-height: 36px;
        letter-spacing: 0.32px;
    }
    .content__tabs .content__tab-head .content__tab-head-tab:after {
        width: 44px;
        height: 44px;
        top: 22px;
        right: 22px;
    }
    .content__tabs .content__tab-body .content__tab-body-tab p {
        font-size: 18px;
        line-height: 26px;
    }

    section.section.section--features .section__head .section__head-subtitle {
        max-width: 800px;
        margin-top: 12px;
        font-size: 22px;
        line-height: 32px;
    }

    section.section.section--news .news-container .news_item .news_item-thumbnail {
        height: 300px;
    }
    section.section.section--news .news-container .news_item .news_item-content .news_item-content-title a {
        font-size: 22px;
        line-height: 32px;
    }

    section.section.section--howto_card_cards .howtos__grid .howto_card .howto_card-wrap {
        padding: 20px 24px;
    }
    section.section.section--howto_card_cards .howtos__grid .howto_card .howto_card-title {
        font-size: 22px;
        line-height: 32px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    section.section.section--howto_card_cards .howtos__grid .howto_card .howto_card-description {
        font-size: 16px;
        line-height: 22px;
    }

    section.section.section--offices .offices .office {
        margin-top: 60px;
        margin-bottom: 45px;
    }
    section.section.section--offices .offices .office .office-address {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 20px;
    }
    section.section.section--offices .offices .office .office-phone *, section.section.section--offices .offices .office .office-email * {
        font-size: 22px;
        line-height: 32px;
    }
    section.section.section--offices .offices .office .office-link {
        font-size: 14px;
        line-height: 14px;
    }

    section.section.section--offices .office_location-image {
        pointer-events: none;
        padding-top: 40px;
    }

    section.section.section--assistance .section__head h2.section__head-title {
        font-size: 22px;
        line-height: 32px;
    }
    section.section.section--assistance .section__head .section__head-description {
        font-size: 18px;
        line-height: 28px;
        margin-top: 15px;
    }

    section.section.section--assistance {
        padding-bottom: 60px;
    }
    section.section.section--assistance .assistance__grid .assistance_tiles .assistance_tile-wrap {
        padding: 20px 24px;
    }
    section.section.section--assistance .assistance__grid .assistance_tiles h3.assistance_tile-title {
        font-size: 22px;
        line-height: 32px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    section.section.section--assistance .assistance__grid .assistance_tiles .assistance_tile-description, section.section.section--assistance .assistance__grid .assistance_tiles .assistance_tile-description a {
        font-size: 16px;
        line-height: 22px;
    }

    section.section.section--values {
        padding-top: 60px;
    }
    section.section.section--values .values .value .value-wrap {
        padding: 20px 10px 22px 12px;
    }
    section.section.section--values .values .value .value-title {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 8px;
    }
    section.section.section--values .values .value .value-content {
        font-size: 16px;
        line-height: 24px;
    }

    section.section.section--milestones .milestones .milestone .milestone-content .milestone-title {
        font-size: 22px;
        line-height: 32px;
    }
    section.section.section--milestones .milestones .milestone .milestone-content .milestone-description {
        font-size: 16px;
        line-height: 24px;
    }

    section.section.section--milestones .milestones .milestone:nth-child(1) .milestone-content, 
    section.section.section--milestones .milestones .milestone:nth-child(5) .milestone-content {
        width: 450px;
    }
    section.section.section--milestones .milestones .milestone:nth-child(2) .milestone-content, 
    section.section.section--milestones .milestones .milestone:nth-child(4) .milestone-content {
        width: 410px;
    }
    section.section.section--milestones .milestones .milestone:nth-child(3) .milestone-content {
        width: 330px;
    }



    section.section.section--culture {
        padding-top: 70px;
        padding-bottom: 60px;
    }
    section.section.section--culture .culture__content .culture__content-texts .culture__content-title {
        font-size: 44px;
        line-height: 58px;
        margin-bottom: 15px;
    }
    section.section.section--culture .culture__content .culture__content-texts .culture__content-description {
        font-size: 22px;
        line-height: 32px;
    }
    .btn.btn-arrow {
        font-size: 18px;
        line-height: 20px;
    }
    .btn.btn-arrow:after {
        width: 20px;
        height: 20px;
        margin-left: 12px;
    }

    section.section.section-latest-news {
        padding-bottom: 150px;
    }
    section.section.section-latest-news .news__carousel .news_item {
        width: 380px;
    }
    section.section.section--careers .careers__content .careers__content-texts .careers__content-title {
        font-size: 44px;
        line-height: 58px;
        margin-bottom: 15px;
    }
    section.section.section--careers .careers__content .careers__content-texts .careers__content-description {
        font-size: 22px;
        line-height: 32px;
    }
    .btn.btn-white {
        font-size: 16px;
        padding: 13px 8px;
    }
    section.section.section-latest-news .news__carousel .news_item .news_item-thumbnail {
        width: 100%;
        height: 300px;
    }
    section.section.section-latest-news .news__carousel .news_item .news_item-content .news_item-content-title a {
        font-size: 22px;
        line-height: 32px;
    }
    body.page-template.page-template-template-solutions main.main {
        padding-bottom: 80px;
    }
    body.homepage main.main,
    body.page-template.page-template-template-prodserv main.main,
    body.page-template.page-template-template-company main.main {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 1199px) {

    header.header {
        padding: 28px 0;
        border-bottom: 3px solid #DDE7F7;
    }
    header.header .header-left .header__logo .header__logo--logo {
        height: 32px;
    }
    header.header .header-right .header__menu #primary-menu .menu-item {
        margin: 0 4px;
        width: 90px;
    }
    header.header .header-right .header__menu #primary-menu .menu-item a {
        font-size: 15px;
        line-height: 15px;
    }
    header.header .header-right .header__btns #btns-menu .menu-item a {
        font-size: 15px;
        line-height: 15px;
        padding: 13px 8px;
        border-radius: 10px;
    }
    header.header .header-right .header__btns {
        margin-left: 20px;
    }

    footer.footer .footer-left .social__medias .social__medias--item a .social__medias--item-ico {
        width: 22px;
        height: 22px;
    }

    footer.footer .footer-left .footer-left-row + .footer-left-row {
        margin-top: 20px;
    }
    footer.footer .footer-left .footer-left-row .footer-left-row-label {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    footer.footer .footer-left .contact__info .contact__info--item {
        min-width: 200px;
    }
    footer.footer .footer-left .contact__info .contact__info--item .contact__info--item-link {
        font-size: 14px;
        line-height: 14px;
    }
    footer.footer .footer-left .contact__info .contact__info--item .contact__info--item-link .contact__info--item-ico {
        width: 22px;
        height: 22px;
        margin-right: 10px;
    }

    footer.footer .footer-right .footer__logo .logo {
        max-height: 100px;
    }









    .banner {
        margin-top: 100px;
    }
    .banner.banner-home {
        min-height: 500px;
    }
    .banner.banner-home .banner__content {
        padding-top: 140px;
        padding-bottom: 140px;
    }

    .banner.banner-home .banner__content .banner__content-title {
        font-size: 44px;
        line-height: 52px;
        margin: 0 0 25px 0px;
    }
    .banner.banner-home .banner__content .banner__content-description {
        font-size: 20px;
        line-height: 28px;
        padding-right: 100px;
    }
    .banner .banner__content .banner__content-btns {
        margin-top: 50px;
    }
    .btn.btn-white {
        font-size: 15px;
        padding: 13px 8px;
        min-width: 150px;
    }
    .banner .banner__content .banner__content-btns .btn + .btn {
        margin-left: 10px;
    }


    .banner.banner-big {
        min-height: 500px;
    }
    .banner.banner-big .banner__content {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .banner.banner-big .banner__content .banner__content-title {
        font-size: 44px;
        line-height: 52px;
        margin: 0 0 20px 0;
    }
    .banner.banner-big .banner__content .banner__content-description {
        font-size: 20px;
        line-height: 28px;
    }

    .banner.banner-small .banner__content {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .banner.banner-small .banner__content .banner__content-title {
        font-size: 42px;
        line-height: 52px;
        margin: 0 0 20px 0;
    }
    .banner.banner-small .banner__content .banner__content-description {
        font-size: 20px;
        line-height: 28px;
        padding-right: 75px;
    }


    .banner.banner-small {
        min-height: 400px;
    }
    .banner.banner-small .banner__content {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .banner.banner-small .banner__content .banner__content-title {
        font-size: 36px;
        line-height: 48px;
        margin: 0 0 20px 0;
    }
    .banner.banner-small .banner__content .banner__content-description {
        font-size: 18px;
        line-height: 26px;
        padding-right: 50px;
    }
    section.section.section-blocks .section__block + .section__block {
        margin-top: 60px;
    }
    section.section.section-blocks .section__block .section__block-content .section__block-content-title {
        font-size: 40px;
        line-height: 52px;
    }
    section.section.section-blocks .section__block .section__block-content .section__block-content-description {
        font-size: 18px;
        line-height: 26px;
    }
    section.section.section-blocks .section__block:nth-child(odd) .section__block-content .section__block-content-title, 
    section.section.section-blocks .section__block:nth-child(odd) .section__block-content .section__block-content-description {
        margin-right: -30px;
    }
    section.section.section-blocks .section__block:nth-child(even) .section__block-content .section__block-content-title, 
    section.section.section-blocks .section__block:nth-child(even) .section__block-content .section__block-content-description {
        margin-left: -30px;
    }
    section.section.section-blocks .section__block:nth-child(odd) .section__block-image {
        transform: translateX(30px);
    }
    section.section.section-blocks .section__block:nth-child(even) .section__block-image {
        transform: translateX(-30px);
    }

    section.section.section-blocks .section__block:nth-child(even) .section__block-content {
        padding-left: 0;
    }
    section.section.section-blocks .section__block:nth-child(odd) .section__block-content {
        padding-right: 0;
    }
    section.banner.banner--contact .banner__content .banner__content-texts h1.banner__content-title {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 14px;
        margin-right: -30px;
    }
    .btn {
        font-size: 14px;
        line-height: 14px;
        min-width: 140px;
    }
    section.banner.banner--contact .banner__content .banner__content-texts {
        width: calc(100% - 500px);
    }
    section.banner.banner--contact .banner__content .banner__content-image {
        width: 500px;
        transform: translateX(30px);
    }
    section.section.section--news .news-container {
        margin-left: -12px;
        margin-right: -12px;
    }
    section.section.section--news .news-container .news_item {
        padding: 12px;
    }
    section.section.section--news .news-container .news_item .news_item-thumbnail {
        height: 250px;
    }
    section.section.section--news .news-container .news_item .news_item-content {
        padding: 10px;
    }
    section.section.section--news .news-container .news_item .news_item-content .news_item-content-title a {
        font-size: 18px;
        line-height: 26px;
    }
    section.section.section--howto_card_cards .howtos__grid .howto_card {
        padding: 10px;
        width: 50%;
    }
    section.section.section--howto_card_cards .howtos__grid .howto_card .howto_card-wrap {
        padding: 15px 20px;
    }
    section.section.section--howto_card_cards .howtos__grid .howto_card .howto_card-title {
        font-size: 20px;
        line-height: 28px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    section.section.section--howto_card_cards .howtos__grid .howto_card .howto_card-description {
        font-size: 15px;
        line-height: 20px;
    }
    section.section .section__head {
        margin-bottom: 25px;
    }
    section.section .section__head .section__head-title {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 20px;
    }
    section.section.section--offices .offices .office .office-address {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 15px;
    }
    section.section.section--offices .offices .office .office-phone *, section.section.section--offices .offices .office .office-email * {
        font-size: 18px;
        line-height: 26px;
    }
    section.section.section--offices .offices .office {
        margin-top: 40px;
        margin-bottom: 25px;
    }
    section.section.section--assistance .section__head h2.section__head-title {
        font-size: 20px;
        line-height: 28px;
    }
    section.section.section--assistance .section__head .section__head-description {
        font-size: 16px;
        line-height: 24px;
        margin-top: 15px;
    }
    section.section.section--assistance .assistance__grid .assistance_tiles {
        padding: 10px;
    }
    section.section.section--assistance .assistance__grid {
        margin-left: -10px;
        margin-right: -10px;
        margin-top: 15px;
    }
    section.section.section--assistance .assistance__grid .assistance_tiles {
        padding: 10px;
        width: 40%;
    }
    section.section.section--assistance .assistance__grid .assistance_tiles .assistance_tile-wrap {
        padding: 15px 20px;
    }
    section.section.section--assistance .assistance__grid .assistance_tiles h3.assistance_tile-title {
        font-size: 20px;
        line-height: 28px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    section.section.section--assistance .assistance__grid .assistance_tiles .assistance_tile-description, section.section.section--assistance .assistance__grid .assistance_tiles .assistance_tile-description a {
        font-size: 15px;
        line-height: 20px;
    }
    section.section.section--values .values {
        margin-left: -10px;
        margin-right: -10px;
    }
    section.section.section--values .values .value {
        padding: 0 10px 10px 10px;
        width: 25%;
    }
    section.section.section--values .values .value .value-title {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 8px;
    }
    section.section.section--values .values .value .value-content {
        font-size: 14px;
        line-height: 22px;
    }
    section.section.section--milestones .milestones .milestone .milestone-content .milestone-title {
        font-size: 18px;
        line-height: 26px;
    }
    section.section.section--milestones .milestones .milestone .milestone-content .milestone-description {
        font-size: 14px;
        line-height: 22px;
    }
    section.section.section--milestones .milestones .milestone .milestone-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    section.section.section--milestones .milestones .milestone .milestone-icon:before {
        width: 200px;
        height: 40px;
        transform: translateX(calc(-100% - 8px));
    }
    section.section.section--milestones .milestones .milestone:nth-child(1) .milestone-content, 
    section.section.section--milestones .milestones .milestone:nth-child(5) .milestone-content {
        width: 380px;
    }
    section.section.section--milestones .milestones .milestone:nth-child(2) .milestone-content, 
    section.section.section--milestones .milestones .milestone:nth-child(4) .milestone-content {
        width: 340px;
    }
    section.section.section--milestones .milestones .milestone:nth-child(3) .milestone-content {
        width: 290px;
    }
    section.section.section--milestones .milestones .milestone:nth-child(1), 
    section.section.section--milestones .milestones .milestone:nth-child(5) {
        padding-right: 100px;
    }
    section.section.section--milestones .milestones .milestone:nth-child(2), 
    section.section.section--milestones .milestones .milestone:nth-child(4) {
        padding-right: 15px;
    }
    section.section.section--milestones .milestones {
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 300px;
    }
    section.section.section--culture {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    section.section.section--culture .culture__content .culture__content-texts {
        width: 650px;
    }
    section.section.section--culture .culture__content .culture__content-texts .culture__content-title {
        font-size: 34px;
        line-height: 48px;
        margin-bottom: 15px;
    }
    section.section.section--culture .culture__content .culture__content-texts .culture__content-description {
        font-size: 18px;
        line-height: 24px;
    }
    .btn.btn-arrow {
        font-size: 16px;
        line-height: 20px;
    }
    section.section.section--careers .careers__content .careers__content-texts .careers__content-title {
        font-size: 40px;
        line-height: 52px;
        margin-bottom: 15px;
    }
    section.section.section--careers .careers__content .careers__content-texts .careers__content-description {
        font-size: 18px;
        line-height: 24px;
    }
    section.section.section--careers .careers__content .careers__content-texts {
        width: 650px;
    }
    section.section.section-latest-news .news__carousel .news_item .news_item-thumbnail {
        width: 100%;
        height: 250px;
    }
    section.section.section-latest-news .news__carousel .news_item .news_item-content {
        padding: 10px;
    }
    section.section.section-latest-news .news__carousel .news_item .news_item-content .news_item-content-title a {
        font-size: 18px;
        line-height: 26px;
    }
    section.section.section-latest-news .news__carousel .news_item {
        width: 330px;
    }
    section.section.section-latest-news {
        padding-bottom: 100px;
    }
    section.section .section__head .section__head-title.title--small {
        font-size: 28px;
        line-height: 36px;
    }
    section.section .section__head .section__head-subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-top: 15px;
    }
    section.section.section--features .section__head {
        margin-bottom: 40px;
    }
    section.banner.banner--contact .banner__content .banner__content-texts h2.banner__content-description {
        font-size: 20px;
        line-height: 28px;
        margin-right: -30px;
    }
    section.banner.banner--contact .banner__content .banner__content-texts .banner__content-btns {
        margin-top: 25px;
    }
    .content__tabs .content__tab-head {
        width: 50%;
        padding-right: 10px;
    }
    .content__tabs .content__tab-body {
        width: 50%;
        padding-left: 10px;
    }
    .content__tabs .content__tab-head .content__tab-head-tab {
        padding: 20px 60px 20px 20px;
        font-size: 24px;
        line-height: 30px;
        letter-spacing: 0.32px;
    }
    .content__tabs .content__tab-head .content__tab-head-tab:after {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 20px;
    }
    .content__tabs .content__tab-head .content__tab-head-tab+.content__tab-head-tab {
        margin-top: 20px;
    }
    .content__tabs .content__tab-body .content__tab-body-tab p {
        font-size: 16px;
        line-height: 24px;
    }
    section.section--partners .partners {
        gap: 50px 150px;
    }
    section.section.section--features .section__head .section__head-title {
        font-size: 26px;
        line-height: 32px;
    }
    section.section.section--features .section__head .section__head-subtitle {
        max-width: 100%;
        margin-top: 10px;
        font-size: 16px;
        line-height: 28px;
    }
    .service_cards__grid .service_card .service_card-thumbnail {
        min-height: 250px;
    }
    .service_cards__grid .service_card .service_card-content {
        padding: 15px 25px 25px;
    }
    .service_cards__grid .service_card .service_card-content .service_card-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 8px;
    }
    .service_cards__grid .service_card .service_card-content .service_card-description {
        font-size: 16px;
        line-height: 22px;
    }
    .service_cards__grid .service_card {
        padding: 10px;
    }
    .service_card-thumbnail {
        min-height: 350px;
        margin-bottom: 20px;
    }
    .service_cards__grid .service_card:nth-child(5n+2) .service_card-thumbnail,
    .service_cards__grid .service_card:nth-child(5n+5) .service_card-thumbnail {
        min-height: 450px;
    }
    .service_cards__grid .service_card:nth-child(5n+3) .service_card-thumbnail,
    .service_cards__grid .service_card:nth-child(5n+3) .service_card-thumbnail {
        min-height: 400px;
    }
    .service_cards-staked .service_card {
        width: 700px;
        padding: 30px 20px 20px 20px;
        border-radius: 30px;
    }
    
    .service_cards-staked .service_card .service_card-content {
        padding: 0 15px;
    }
    .service_cards-staked .service_card .service_card-content .service_card-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 8px;
    }
    .service_cards-staked .service_card .service_card-content .service_card-description {
        font-size: 16px;
        line-height: 22px;
    }
    section.section .section__head .section__head-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 15px;
    }
    section.section.section--plans .section__head {
        margin-bottom: 40px;
    }
    .plan__cards .plan__card {
        padding: 0 10px;
        width: 33.335%;
    }
    .plan__cards .plan__card .plan__card-content {
        padding: 20px 20px;
    }
    .plan__cards .plan__card .plan__card-content .plan__card-title {
        font-size: 20px;
        line-height: 24px;
    }
    .plan__cards .plan__card .plan__card-content .plan__card-description {
        font-size: 15px;
        line-height: 18px;
    }
    .plan__cards .plan__card .plan__card-content .plan__card-btn {
        margin-top: 25px;
    }
    .plan__cards-information .plan__cards-information-text {
        max-width: 600px;
        font-size: 18px;
        line-height: 28px;
    }
    .banner .banner__content .banner__content-btns {
        margin-top: 30px;
    }
    .feature__cards {
        margin: -10px;
    }
    .feature__cards .feature__card {
        padding: 10px;
    }
    .feature__cards .feature__card-wrap {
        padding: 20px 22px 20px 24px;
    }
    .feature__cards .feature__card .feature__card-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 15px;
    }
    .feature__cards .feature__card .feature__card-content h3 {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 6px;
    }
    .feature__cards .feature__card .feature__card-content p {
        font-size: 14px;
        line-height: 22px;
    }
    .testimonial {
        padding: 25px 70px;
        border-radius: 25px;
        border: 1.5px solid #DDE7F7;
        text-align: center;
    }
    .testimonial:before {
        width: 90px;
        height: 90px;
        left: 12px;
        top: -45px;
    }
    .case_study__card+.case_study__card {
        margin-top: 10px;
    }
    .case_study__card {
        border-radius: 20px;
        padding: 10px 20px;
    }
    .case_study__card .case_study__card-body {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .case_study__card .case_study__card-body p {
        font-size: 14px;
        line-height: 22px;
    }
    .case_study__card .case_study__card-bottom,
    .case_study__card .case_study__card-bottom .case_study__card-bottom-username {
        font-size: 14px;
        line-height: 22px;
    }
    .case_studies__cards {
        width: 400px;
    }

    body.page-template.page-template-template-company main.main {
        margin-top: 100px;
    }
}

@media screen and (max-width:991px) {
    header.header {
        padding: 20px 0;
        border-bottom: 3px solid #DDE7F7;
    }
    header.header .header-right .header__menu ,
    header.header .header-right .header__btns {
        display: none;
    }
    header.header .header-right .menutoggle {
        display: flex;
    }


    footer.footer .footer-left .contact__info .contact__info--item {
        min-width: 200px;
        width: 100%;
    }
    footer.footer .footer-left .contact__info .contact__info--item+.contact__info--item {
        margin-top: 10px;
    }

    .banner {
        margin-top: 80px;
    }
    .banner.banner-home,
    .banner.banner-big,
    .banner.banner-small {
        min-height: auto;
    }
    .banner.banner-home .banner__content {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .banner.banner-home .banner__content .banner__content-title {
        font-size: 38px;
        line-height: 40px;
        margin: 0 0 20px 0px;
    }
    .banner.banner-home .banner__content .banner__content-description {
        font-size: 18px;
        line-height: 26px;
        padding-right: 50px;
    }

    .banner.banner-big .banner__content .banner__content-title {
        font-size: 38px;
        line-height: 40px;
        margin: 0 0 20px 0;
    }
    .banner.banner-big .banner__content .banner__content-description {
        font-size: 18px;
        line-height: 26px;
    }

    .banner.banner-small .banner__content .banner__content-title {
        font-size: 32px;
        line-height: 38px;
        margin: 0 0 20px 0;
    }

    .service_cards__grid .service_card .service_card-thumbnail {
        min-height: 250px;
        margin-bottom: 0;
    }
    .service_cards__grid .service_card:nth-child(5n+2) .service_card-thumbnail,
    .service_cards__grid .service_card:nth-child(5n+5) .service_card-thumbnail {
        min-height: 300px;
    }
    .service_cards__grid .service_card:nth-child(5n+3) .service_card-thumbnail,
    .service_cards__grid .service_card:nth-child(5n+4) .service_card-thumbnail {
        min-height: 250px;
    }

    .service_cards-staked .service_card .service_card-thumbnail {
        height: 300px;
        margin-bottom: 15px;
    }
    .service_cards-staked.owl-carousel .owl-stage-outer {
        overflow: visible;
    }
    .service_cards-staked .service_card {
        width: 100%;
        padding: 30px 20px 20px 20px;
        border-radius: 30px;
    }

    .content__tabs .content__tab-head {
        width: 100%;
        padding-right: 0px;
    }
    .content__tabs .content__tab-head .content__tab-head-tab {
        padding: 20px 60px 20px 20px;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: 0.32px;
    }
    .content__tabs .content__tab-body {
        width: 100%;
        padding-left: 0px;
        padding-top: 40px;
    }
    .content__tabs .content__tab-body .content__tab-body-tab img {
        margin-bottom: 12px;
        max-width: 100%;
        width: 100%;
    }
    section.section.section--features {
        padding-bottom: 40px;
    }

    section.section--partners .partners {
        gap: 30px 60px;
    }

    section.section.section-blocks .section__block .section__block-image {
        width: 100%;
        transform: translateX(0px) !important;
        order:1 !important;
        height: 350px;
        overflow: hidden;
        position: relative;    
        margin-bottom: 20px;
    }
    section.section.section-blocks .section__block .section__block-image .section__block-image-img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
    }
    section.section.section-blocks .section__block .section__block-content {
        width: 100%;
        order:2 !important;
    }
    section.section.section-blocks .section__block:nth-child(odd) .section__block-content .section__block-content-title, section.section.section-blocks .section__block:nth-child(odd) .section__block-content .section__block-content-description {
        margin-right: 0;
    }
    section.section.section-blocks .section__block:nth-child(even) .section__block-content .section__block-content-title, section.section.section-blocks .section__block:nth-child(even) .section__block-content .section__block-content-description {
        margin-left: 0;
    }
    section.section.section-blocks .section__block .section__block-content .section__block-content-title {
        font-size: 36px;
        line-height: 48px;
    }
    section.section.section--values .values .value {
        padding: 10px;
        width: 50%;
    }

    section.section.section--milestones .milestones {
        background: none !important;
    }

    section.section.section--milestones .milestones .milestone {
        padding-right: 0 !important;
    }
    section.section.section--milestones .milestones .milestone {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
    }
    section.section.section--milestones .milestones .milestone+.milestone {
        margin-top: 20px;
    }
    section.section.section--milestones .milestones .milestone .milestone-icon:before {
        display: none;
    }
    section.section.section--milestones .milestones .milestone .milestone-content {
        width: 100% !important;
    }
    section.section.section--milestones .milestones .milestone .milestone-content .milestone-title {
        font-size: 20px;
        line-height: 28px;
    }
    section.section.section--milestones .milestones .milestone .milestone-content .milestone-description {
        font-size: 16px;
        line-height: 24px;
    }
    section.section.section--milestones {
        padding-bottom: 60px;
    }

    section.section.section--culture .culture__content {
        display: block;
    }
    section.section.section--culture .culture__content .culture__content-texts {
        width: 100%;
    }
    section.section.section--culture .culture__content .culture__content-btns {
        width: auto;
        margin-top: 20px;
    }
    section.section.section--careers .careers__content {
        display: block;
    }
    section.section.section--careers .careers__content .careers__content-texts {
        width: 100%;
    }
    section.section.section--careers .careers__content-btns {
        margin-top: 20px;
    }

    section.section.section--milestones .milestones .milestone {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
    }

    .news__carousel.owl-carousel .owl-stage-outer {
        overflow: visible;
    }
    section.section.section-latest-news .news__carousel .owl-nav button.owl-next {
        transform: translateX(0%);
    }
    section.section.section-latest-news .news__carousel .owl-nav button.owl-prev {
        transform: translateX(0%);
    }

    section.banner.banner--contact .banner__content .banner__content-image {
        width: 100%;
        transform: translateX(0px) !important;
        order:1 !important;
        height: 350px;
        overflow: hidden;
        position: relative;    
        margin-bottom: 20px;
    }
    section.banner.banner--contact .banner__content .banner__content-image .banner__content-image-img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
    }
    
    section.banner.banner--contact .banner__content .banner__content-texts {
        width: 100%;
        order:2 !important;
    }
    section.banner.banner--contact .banner__content .banner__content-texts h1.banner__content-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 14px;
        margin-right: 0;
    }
    section.banner.banner--contact .banner__content .banner__content-texts h1.banner__content-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 14px;
        margin-right: 0;
    }

    section.section.section--howto_card_cards {
        padding-top: 80px;
    }
    section.section.section--offices .offices.main_office {
        justify-content: flex-start;
        margin-bottom: 0;
    }
    section.section.section--offices .offices {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        position: relative;
    }
    section.section.section--offices .offices .office {
        margin-top: 40px;
        margin-bottom: 0;
    }
    section.section.section--assistance .assistance__grid .assistance_tiles {
        padding: 10px;
        width: 50%;
    }

    section.section.section--news .news-container .news_item {
        width: 50%;
    }

    body.page-template.page-template-template-solutions main.main {
        padding-bottom: 40px;
    }
    body.page-template.page-template-template-solutions main.main section.section--partners {
        padding-bottom: 40px;
        padding-top: 40px;
    }
}

@media screen and (max-width:767px) {

    footer.footer .footer--wrap {

    }
    footer.footer .footer--wrap .footer-right {
        order:1;
        width: 100%;
        margin: 20px 0;
        text-align: center;
    }
    footer.footer .footer--wrap .footer-left {
        order:2;
        width: 100%;
        max-width: 100%;
    }

    .banner.banner-home .banner__content {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .banner.banner-home .banner__content .banner__content-title {
        font-size: 32px;
        line-height: 36px;
        margin: 0 0 20px 0px;
    }

    .feature__cards .feature__card {
        width: 100%;
    }
    .feature__cards .feature__card .feature__card-content h3 {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 8px;
    }
    .feature__cards .feature__card .feature__card-content p {
        font-size: 16px;
        line-height: 26px;
    }

    .testimonial {
        padding: 50px 20px 30px;
        border-radius: 25px;
        border: 1.5px solid #DDE7F7;
        text-align: center;
    }
    .testimonial .testimonial-content {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    }
    .testimonial .testimonial-username {
        font-size: 18px;
        line-height: 28px;
    }


    .case_studies__cards {
        width: 100%;
    }
    .case_study__card {
        border-radius: 20px;
        padding: 20px;
    }
    .case_study__card .case_study__card-body {
        margin-top: 8px;
        margin-bottom: 8px;
    }
    .case_study__card .case_study__card-body p {
        font-size: 16px;
        line-height: 26px;
    }
    .case_study__card .case_study__card-bottom, .case_study__card .case_study__card-bottom .case_study__card-bottom-username {
        font-size: 16px;
        line-height: 26px;
    }

    section.section--partners .partners {
        gap: 40px 60px;
    }

    section.section--subscription form {
        width: 100%;
    }
    /* section.section--subscription form .gform_body .gfield {
        width: calc(100% - 100px);
    } */
    section.section--subscription form .gform_body .gfield {
        width: 100%;
    }
    section.section--subscription form .gform_footer input[type='submit'] {
        font-size: 16px;
        padding: 0px;
        height: 50px;
        width: 100px;
    }


    .banner.banner-big .banner__content {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .banner.banner-big .banner__content .banner__content-title {
        font-size: 32px;
        line-height: 36px;
        margin: 0 0 20px 0;
    }

    .service_cards__grid .service_card {
        width: 100% !important;
    }
    .service_cards__grid .service_card .service_card-content {
        padding: 15px 20px 20px;
    }
    .service_cards__grid .service_card .service_card-thumbnail {
        min-height: 250px !important;
        margin-bottom: 0;
    }

    .service_cards-staked .service_card .service_card-content {
        padding: 0;
    }
    .service_cards-staked .service_card .service_card-thumbnail {
        height: 250px !important;
        min-height: 250px;
        margin-bottom: 15px;
    }
    .service_cards-staked .service_card {
        width: 100%;
        padding: 25px 20px;
        border-radius: 30px;
    }



    .plan__cards {
        display: flex;
        flex-wrap: wrap;
        margin-left: -10px;
        margin-right: -10px;
    }
    .plan__cards .plan__card {
        padding: 0 10px;
        width: 100%;
    }
    .plan__cards .plan__card+.plan__card {
        margin-top: 20px;
    }
    .plan__cards .plan__card .plan__card-content .plan__card-title {
        font-size: 22px;
        line-height: 28px;
    }
    .plan__cards .plan__card .plan__card-content .plan__card-price {
        font-size: 18px;
        line-height: 22px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .plan__cards .plan__card .plan__card-content .plan__card-description {
        font-size: 16px;
        line-height: 22px;
    }

    .banner.banner-small .banner__content .banner__content-description {
        font-size: 18px;
        line-height: 26px;
        padding-right: 0;
    }
    section.section.section--features .section__head .section__head-title br {
        display: none;
    }
    section.section.section--features .section__head .section__head-subtitle {
        max-width: 100%;
        margin-top: 10px;
        font-size: 18px;
        line-height: 28px;
    }
    .content__tabs .content__tab-head .content__tab-head-tab {
        padding: 20px 60px 20px 20px;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.32px;
    }
    .content__tabs .content__tab-body .content__tab-body-tab p {
        font-size: 18px;
        line-height: 28px;
    }
    section.section.section--news .news-container .news_item {
        width: 100%;
    }

    section.section.section-blocks .section__block .section__block-content .section__block-content-title {
        font-size: 32px;
        line-height: 42px;
    }

    section.section.section--values .values .value {
        padding: 10px;
        width: 100%;
    }
    section.section.section--values .values .value .value-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 8px;
    }
    section.section.section--values .values .value .value-content {
        font-size: 16px;
        line-height: 26px;
    }

    section.section.section--culture .culture__content .culture__content-texts .culture__content-title {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 15px;
    }
    section.section.section--culture .culture__content .culture__content-texts .culture__content-description {
        font-size: 18px;
        line-height: 28px;
    }
    section.section.section--careers .careers__content .careers__content-texts .careers__content-description {
        font-size: 18px;
        line-height: 28px;
    }


    section.section.section-latest-news .news__carousel .news_item {
        width: 100%;
    }

    section.banner.banner--contact .banner__content .banner__content-image .banner__content-image-img {
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0%, 0%) !important;
    }
    section.banner.banner--contact .banner__content .banner__content-image {
        width: 100%;
        transform: translateX(0px) !important;
        order: 1 !important;
        height: auto;
        overflow: hidden;
        position: relative;
        margin-bottom: 20px;
    }

    section.banner.banner--contact .banner__content .banner__content-texts h1.banner__content-title {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 14px;
        margin-right: 0;
    }
    section.banner.banner--contact .banner__content .banner__content-texts h2.banner__content-description {
        font-size: 18px;
        line-height: 28px;
        margin-right: 0;
    }
    section.section.section--howto_card_cards .howtos__grid .howto_card {
        padding: 10px;
        width: 100%;
    }
    section.section.section--howto_card_cards .howtos__grid .howto_card .howto_card-title {
        font-size: 22px;
        line-height: 28px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    section.section.section--howto_card_cards .howtos__grid .howto_card .howto_card-description {
        font-size: 16px;
        line-height: 26px;
    }
    section.section.section--howto_card_cards .howtos__grid {
        display: flex;
        flex-wrap: wrap;
        margin-left: -10px;
        margin-right: -10px;
    }
    section.section.section--assistance .assistance__grid .assistance_tiles {
        padding: 10px;
        width: 100%;
    }
    section.section.section--assistance .assistance__grid .assistance_tiles h3.assistance_tile-title {
        font-size: 22px;
        line-height: 28px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    section.section.section--assistance .assistance__grid .assistance_tiles .assistance_tile-description, section.section.section--assistance .assistance__grid .assistance_tiles .assistance_tile-description a {
        font-size: 16px;
        line-height: 26px;
    }




    body.page-template.page-template-template-contact section.banner.banner--contact {
        margin-top: 100px;
    }
}











@media screen and (max-width: 1199px) {
    .banner.banner-single {
        min-height: 400px;
    }
    .banner.banner-single .banner__content {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .banner.banner-single .banner__content .banner__content-title {
        font-size: 44px;
        line-height: 52px;
        margin: 0 0 0 0;
    }

    body.single section.section.section-content h1 {
        font-size: 44px;
        line-height: 52px; /* 132.917% */
    }
    body.single section.section.section-content h2 {
        font-size: 36px;
        line-height: 44px; /* 132.917% */
    }
    body.single section.section.section-content h3 {
        font-size: 32px;
        line-height: 40px; /* 132.917% */
    }
    body.single section.section.section-content h4 {
        font-size: 28px;
        line-height: 36px; /* 132.917% */
    }

}
@media screen and (max-width: 991px) {
    .banner.banner-single {
        margin-top: 80px;
    }
    .banner.banner-single {
        min-height: auto;
    }
    .banner.banner-single .banner__content .banner__content-title {
        font-size: 38px;
        line-height: 40px;
        margin: 0 0 0 0;
    }

    body.single section.section.section-content h1 {
        font-size: 38px;
        line-height: 40px; /* 132.917% */
    }
    body.single section.section.section-content h2 {
        font-size: 32px;
        line-height: 40px; /* 132.917% */
    }
    body.single section.section.section-content h3 {
        font-size: 28px;
        line-height: 36px; /* 132.917% */
    }
    body.single section.section.section-content h4 {
        font-size: 24px;
        line-height: 32px; /* 132.917% */
    }
}
@media screen and (max-width: 767px) {
    .banner.banner-single .banner__content {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .banner.banner-single .banner__content .banner__content-title {
        font-size: 32px;
        line-height: 36px;
        margin: 0 0 0 0;
    }

    body.single section.section.section-content h1 {
        font-size: 32px;
        line-height: 36px; /* 132.917% */
    }
    body.single section.section.section-content h2 {
        font-size: 28px;
        line-height: 36px; /* 132.917% */
    }
    body.single section.section.section-content h3 {
        font-size: 24px;
        line-height: 32px; /* 132.917% */
    }
    body.single section.section.section-content h4 {
        font-size: 22px;
        line-height: 28px; /* 132.917% */
    }
}