
/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    font-family: 'Helvetica', sans-serif;
    line-height: 1.5;
    color: #333E48;
    background: #fff;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.layouts-title {
	font-size: 26px;
	margin:15px 0px;
}
.layouts ul li {
	margin-bottom:5px;
}
.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}
.layouts ul li a:hover {
	background:#000;
	color:#fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}
/* -- main styles -- */

.nopad {
	padding:0px;
}
.nopadleft {
	padding-left:0px;
}
.nopadright {
	padding-right:0px;
}
strong, b {
	font-weight: bold;
}
i {
	font-style: italic;
}
em {
	font-style: italic;
}
.clear {
	clear:both;
}
.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
	max-width: 100%;
    margin-bottom: 15px;
}
.invi {
	visibility: hidden;
	opacity: 0;
}
.object-fit {
	position: relative;
}
.object-fit > img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-o-object-fit: cover;
    object-fit: cover;
}
.object-fit.object-contain > img {
    -o-object-fit: contain;
    object-fit: contain;
}
.object-fit > video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: none;
}

.submitting button,
.submitting input[type="button"] {
    pointer-events: none;
}
/* .submitting {
    position: relative;
}
.submitting::before {
    content: '';
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0; left: 0;
    z-index: 11;
}
.submitting::after {
    content: '';
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border-top: 2px solid #000;
    border-right: 2px solid transparent;
    -webkit-animation: formSpinner .6s linear infinite;
    animation: formSpinner .6s linear infinite;
    z-index: 12;
}
@-webkit-keyframes formSpinner {
    to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}
@keyframes formSpinner {
    to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
} */

/* preloader */
.preloader {
    display: inline-block;
	width: 25px;
	height: 25px;
	border: 3px solid hsla(0,0%,100%,.3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ccc !important;
	-webkit-animation: a 1s ease-in-out infinite;
	animation: a 1s ease-in-out infinite;
	z-index: 50;
}
@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*   hamburger   */
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;

	display: none;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 20px;
    float: right;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 28px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #746f6c;
}
.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}
.hamburger-inner:before {
    top: -7px;
}
.hamburger-inner:after {
    bottom: -7px;
}
.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}
.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}
.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}
.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}
.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}

.dflex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.dflex-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dflex-between {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.dflex-cbetween {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.grid-container {
	width: 100%;
    max-width: 1452px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    z-index: 10;
}

.title-52 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
}
.title-52:not(:last-child) {
    margin-bottom: 10px;
}
.title-40 {
    font-size: 40px;
    line-height: 1.125;
}
.title-35 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.25;
}
.title-30 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
}
.title-28 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.36;
}

.about-section {
    padding: 75px 0;
    min-height: 712px;
    color: #fff;
}

.about-section-content {
    max-width: 640px;
}

.text-16 {
    font-size: 16px;
    line-height: 1.1;
}
.text-18 {
    font-size: 18px;
    line-height: 1.5;
}

.text-19 {
    font-size: 19px;
    line-height: 1.125;
}
.text-28 {
    font-size: 28px;
    line-height: 1.35;
}
.text-24 {
    font-size: 24px;
    line-height: 1.125;
}

.page-template-tp-homepage-v2 .text-24 {
    line-height: 1.333;
}
.page-template-tp-homepage-v2 .text-24 ul li:before {
    top: 0px;
}

.text-24 ul li {
    position: relative;
    padding-left: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}
.text-24 ul.no-bold li {
    font-weight: 400;
}
.text-24 ul li:last-child {
    margin-bottom: 0px;
}
.text-24 ul li:before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 32px;
    height: 32px;
    background: url(../img/icon-list.svg) no-repeat center center / 100% 100%;
}
.text-24 ul.simple li {
    margin-bottom: 0;
    padding-left: 32px;
}
.text-24 p + ul.simple {
    margin-top: -32px;
}
.text-24 ul.simple li:before {
    content: '';
    position: absolute;
    top: 13px !important;
    left: 10px!important;
    width: 7px;
    height: 7px;
    background: #333E48!important;
    border-radius: 50%;
}
.text-24 p:not(:last-child) {
    margin-bottom: 32px;
}
.text-24 ul:not(:last-child) {
    margin-bottom: 32px;
}

.text-30 {
    font-size: 30px;
    line-height: 1.35;
}

.text-30 ul li {
    position: relative;
    padding-left: 70px;
    margin-bottom: 12px;
}
.text-30 ul li:last-child {
    margin-bottom: 0px;
}
.text-30 ul li:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 32px;
    height: 32px;
    background: url(../img/icon-list.svg) no-repeat center center / 100% 100%;
}
.text-30 p:not(:last-child) {
    margin-bottom: 32px;
}

.about-section .text-24 {
    margin-top: 53px;
}

.info-section {
    padding: 87px 0 56px;
}

.info-item:not(:last-child) {
    margin-bottom: 105px;
}

.info-item-left {
    width: 50%;
    padding-right: 6.897%;
}
.info-item-right {
    width: 50%;
    padding-left: 24px;
}

.info-item .text-24 {
    margin-top: 30px;
}
.info-item:nth-child(2) .text-24 p {
    max-width: 552px;
}

.info-item-image-caption {
    font-size: 14px;
    line-height: 1.2;
    font-style: italic;
    margin-top: 21px;
}

.info-item-image + .text-22 {
    margin-top: 77px;
    max-width: 552px;
}

.text-22 {
    font-size: 22px;
    line-height: 1.125;
}

.info-item-logo-1 {
    margin-top: 30px;
    margin-bottom: 22px;
}
.info-item-logo-1 img {
    max-width: 321px;
}
.info-item-logo-2 img {
    max-width: 500px;
}

.tech-left {
    width: 50%;
    padding-right: 7%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.tech-right {
    width: 50%;
    padding-left: 24px;
    padding-top: 80px;
    padding-bottom: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tech-right-content {
    width: 100%;
}

.tech-right .title-40 {
    margin-bottom: 58px;
}
.tech-right .text-24 {
    max-width: 650px;
}

.tech-section {
    background: #EEEEEE;
}

.tech-button {
    margin-top: 36px;
}

.btn-purple,
.btn-purple:focus,
.btn-purple:active {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #8C1C40;
    color: #fff;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
    padding: 9px 24px;
    min-height: 60px;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
}
.btn-purple:hover {
    background: #EF5091;
    color: #fff;
}

.btn-pink,
.btn-pink:focus,
.btn-pink:active {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #EF5091;
    color: #fff;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
    padding: 9px 24px;
    text-align: center;
    min-height: 60px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}
.btn-pink:hover {
    background: #8C1C40;
    color: #fff;
}

.tech-img-width {
    margin-left: -41.172%;
    width: 141.172%;
}


sup {
    font-size: 60%;
    top: -.6em;
}

.cta-section {
    padding: 72px 0  57px;
}

.cta-hold {
    background: #EEEEEE;
}

.cta-left {
    width: 50%;
    padding-right: 26px;
}

.cta-image {
    min-height: 100%;
}

.cta-right {
    width: 50%;
    padding: 74px 80px 56px 24px;
}


.cta-right .text-30 p:first-child {
    margin-bottom: 62px;
}
.cta-right .text-30:not(:last-child) {
    margin-bottom: 70px;
}

.cta-label {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
}
.cta-label-text {
    font-size: 31px;
    line-height: 1.43;
}

.cta-links {
    margin-top: 22px;
}
.cta-links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin-bottom: -24px;
}
.cta-links ul li {
    max-width: 240px;
    width: 100%;
    margin-right: 20px;
    margin-bottom: 24px;
}

.cta-links ul li a {
    width: 100%;
}

.cta-logos {
    margin-top: 50px;
    padding-left: calc(50% + 54px);
}
.cta-logos ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap; */
}
.cta-logos ul li {
    margin-right: 30px;
}
.cta-logos ul li:last-child {
    margin-right: 0px;
}
.cta-logos ul li img {
    max-width: 208px;
    max-height: 104px;
}

footer {
    background: #333D47;
    padding: 50px 0 70px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-hold {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.footer-col-1 {
    width: 14%;
    padding-bottom: 8px;
}

.footer-middle {
    width: 65%;
}
.footer-col-2 {
    width: 55%;
    padding-right: 24px;
}
.footer-col-3 {
    width: 45%;
}
.footer-col-4 {
    width: 21%;
}


.footer-text {
    font-size: 16px;
    line-height: 1.4;
}
.footer-text a {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    transition: 0.2s;
}
.footer-text a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-qr {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.footer-qr-text {
    font-size: 12px;
    line-height: 15px;
    width: calc(100% - 80px);
    max-width: 115px;
    padding-right: 17px;
    text-align: right;

}

.footer-qr-image {
    width: 80px;
}

.hero-section {
    padding: 124px 0 0;
    color: #fff;
}

.hero-left {
    width: 50%;
}
.hero-right {
    width: 50%;
    padding-left: 24px;
    padding-bottom: 72px;
}

.logo-hero {
    padding-left: 48px;
    margin-bottom: 46px;
}
.logo-hero img {
    max-height: 80px;
}

.hero-section.v2 .logo-hero {
    margin-bottom: 24px;
}
.hero-section.v2 .hero-right .text-24 {
    margin-top: 88px;

} 
@media (min-width: 1601px) {
    .hero-section.v2 .logo-hero img {
        max-height: 88px;
    }
}

.hero-right .title-40 {
    padding-left: 48px;
    margin-bottom: 37px;
    max-width: 475px;
}
.hero-right .text-24 p {
    padding-left: 48px;
    max-width: 550px;
}

.hero-image-size {
    margin-left: -30px;
    margin-bottom: -63px;
    width: calc(100% + 30px + 15px);
}
.hero-image {
    margin-top: -120px;
}

.awards-section {
    padding: 80px 0 48px;
}

.awards-left {
    width: 50%;
}
.awards-right {
    width: 50%;
    padding-left: 24px;
}

.text-23 {
    font-size: 23px;
    letter-spacing: 0.31px;
    letter-spacing: 0.0135em;
    line-height: 1.2;
}
.awards-right .text-23 {
    max-width: 524px;
}
.awards-right .text-19 {
    max-width: 500px;
    padding-left: 48px;
}
.awards-right .text-16 {
    max-width: 500px;
    padding-left: 48px;
    text-align: justify;
}

.awars-logos img {
    max-height: 136px;
}

.hero-sperm-image {
    position: absolute;
    right: -150px;
    width: 100%;
    max-width: 602px;
    bottom: -262px;
}

main {
    position: relative;
    overflow: hidden;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 500;
}

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.header-right {
    padding-top: 32px;
}

.langs-hold a {
    font-size: 23px;
    letter-spacing: 0.0135em;
    color: #fff;
    text-transform: uppercase;
}

.logo img {
    max-height: 144px;
}

.footer-logo img {
    max-height: 113px;
}
.footer-logo-mob {
    display: none;
}

.about-mob-content {
    padding: 40px 0 48px;
    background: #EEEEEE;
}
.about-mob-content .text-24 {
    margin-top: 32px;
}
.about-mob-content .text-24 br {
    display: none;
}

.text-20 {
    font-size: 20px;
    line-height: 1.4;
}

.hero-right .text-20 {
    padding-left: 48px;
    margin-top: -20px;
    margin-bottom: 16px;
}


.animation-element.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.33, 1, 0.68, 1), transform 0.9s cubic-bezier(0.33, 1, 0.68, 1);
}
.animation-element.fade-up.fade-up-02 {
    transition: opacity 0.9s 0.2s cubic-bezier(0.33, 1, 0.68, 1), transform 0.9s 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.animation-element.fade-up.fade-up-04 {
    transition: opacity 0.9s 0.4s cubic-bezier(0.33, 1, 0.68, 1), transform 0.9s 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.animation-element.fade-up.fade-up-06 {
    transition: opacity 0.9s 0.6s cubic-bezier(0.33, 1, 0.68, 1), transform 0.9s 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.animation-element.fade-up.in-view {
    opacity: 1;
    transform: translateY(0px);
}

.animation-element.fade-up-later {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s 0.3s cubic-bezier(0.33, 1, 0.68, 1), transform 0.9s 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.animation-element.fade-up-later.in-view {
    opacity: 1;
    transform: translateY(0px);
}
.animation-element.fade-up-late {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s 0.6s cubic-bezier(0.33, 1, 0.68, 1), transform 0.9s 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.animation-element.fade-up-late.in-view {
    opacity: 1;
    transform: translateY(0px);
}

.animation-element.fade-in {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.33, 1, 0.68, 1);
}

.animation-element.fade-in.in-view {
    opacity: 1;
}
.animation-element.fade-in-later {
    opacity: 0;
    transition: opacity 0.9s 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.animation-element.fade-in-later.in-view {
    opacity: 1;
}

.awards-section.v2 {
    padding-bottom: 82px;
}

.bg-blue {
    background:  rgba(165,202,228,0.5);
    background: #d2e4f2;
}
.bg-blue-2 {
    background: #bbd7ec;
}
.bg-pink {
    background:  #ffeaf3;
}
.content-floating-image-section {
    padding: 110px 0;
}

.cfi-left {
    width: 60%;
    padding-top: 35px;
    padding-right: 3%;
}
.cfi-right {
    width: 40%;
    padding-left: 5px;
}

.content-floating-image-section .section-top {
    margin-bottom: 28px;
}
.content-floating-image-section .section-top .title-40 {
    margin-bottom: 24px;
}

.cfi-left .title-30 {
    margin-bottom: 30px;
}

.cfi-image-image-hold {
    position: relative;
    min-height: 1px;
}

.cfi-image {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    padding-bottom: 100%;
}
.cfi-image img {
    border-radius: 30px;
}

.cfi-left .title-28 {
    margin-top: 45px;
    max-width: 700px;
}

.title-text-section {
    padding: 86px 0 80px;
}

.title-text-section .title-40 {
    margin-bottom: 20px;
}
.title-text-section .title-35 {
    margin-bottom: 30px;
}

.title-text-cols-section {
    padding: 90px 0 100px;
}
.title-text-cols-section .title-35 {
    margin-bottom: 40px;
}

.ttc-left {
    width: 50%;
    padding-right: 35px;
}
.ttc-right {
    width: 45%;
    padding-left: 7%;
}

.tech-section.v2 {
    padding: 70px 0 76px;
    background: transparent;
}
.tech-section.v2 .tech-right {
    padding-top: 0;
    padding-bottom: 0;
}
.tech-section.v2 .tech-right .text-24 {
    max-width: 100%;
}
.tech-section.v2 .tech-right .title-40 {
    max-width: 600px;
    margin-bottom: 22px;
}
.tech-section.v2 .tech-right .title-40:not(:first-child) {
    margin-top: 48px;
}
.tech-section.v2 .tech-img-width {
    margin-left: -44%;
    width: 160%;
    min-width: 160%;
}

.about-section.v2 {
    padding: 130px 0;
}

.about-section.v2 .title-35 {
    margin-bottom: 16px;
}
.about-section.v2 .text-24 {
    margin-top: 70px;
    max-width: 500px;
}

.content-floating-image-section.v2 .section-top {
    margin-bottom: 40px;
}

.cfi-image-image-2-hold {
    max-width: 406px;
    margin: 0 auto;
}

.text-24.blue-bullets ul li:before {
    background: url(../img/icon-list-blue.svg) no-repeat center center / 100% 100%;
}

.image-content-section {
    padding: 98px 0 108px;
}

.ic-left {
    width: 43%;
    padding-right: 8.8%;
}
.ic-right {
    width: 57%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ic-content {
    width: 100%;
}

.ic-image {
    padding-bottom: 98.64%;
}
.ic-image img {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.ic-image-size {
    margin-left: calc((100vw - 1392px) / -2);
    width: calc(100% + (100vw - 1392px) / 2);
}

.ic-right .title-40 {
    margin-bottom: 35px;
}

.conclusion-section {
    padding: 140px 0 42px;
    
}

.conclusion-left {
    width: calc(50% + 24px);
    padding-right: 6%;
}
.conclusion-right {
    width: calc(50% - 24px);
    color: #fff;
}

.conclusion-right .title-40 {
    margin-bottom: 32px;
}

.conclusion-right .text-24 + .text-24 {
    margin-top: 64px;
}

.conclusion-bottom {
    margin-top: 60px;
}

.conclusion-right .text-24 ul.simple li:before {
    background: #fff !important;
}

.conclusion-left-top-col-1 {
    padding-top: 36px;
    width: 38%;
    max-width: 221px;
}
.conclusion-left-top-col-2 {
    width: 47%;
    max-width: 290px;
}

.conclusion-left-top {
    gap: 46px;
    margin-bottom: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.conclusion-main-image {
    max-width: 621px;
}

.conclusion-buy-label {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.conclusion-buy-logos ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    gap: 36px;
}
.conclusion-buy-logos ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.conclusion-buy-logos ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.conclusion-buy-logos ul li a img {
    max-height: 41px;
}

a.no-link {
    pointer-events: none;
}

.conclusion-buy-block {
    padding-left: 9%;
}

/* Medias */


@media only screen and (max-width: 1760px) {
    .hero-sperm-image {
        right: -175px;
        max-width: 500px;
        bottom: -180px;
    }
    .tech-img-width {
        margin-left: -25%;
        width: 125%;
    }
} 
@media only screen and (max-width: 1600px) {
    .hero-sperm-image {
        right: -150px;
        max-width: 420px;
        bottom: -120px;
    }
    .tech-img-width {
        margin-left: -10%;
        width: 110%;
    }
} 

@media only screen and (max-width: 1500px) {
    .cfi-right {
        padding-left: 3%;
    }
    .title-28 {
        font-size: 24px;
    }
    .title-30 {
        font-size: 28px;
    }
    .tech-section.v2 .tech-img-width {
        margin-left: -34%;
        width: 140%;
        min-width: 140%;
    }
    .ic-left {
        padding-right: 7%;
    }
    .ic-image-size {
        margin-left: -40px;
        width: calc(100% + 40px);
    }
    .text-24 ul.simple li:before {
        top: 10px !important;
    }
    .hero-right .text-24 p {
        max-width: 430px;
    }
    .hero-right .title-40 {
        max-width: 450px;
    }
    .tech-left {
        padding-right: 4%;
    }
    .cta-label-text {
        font-size: 26px;
    }
    .cta-label {
        font-size: 22px;
    }
    .cta-right .text-30 p:first-child {
        margin-bottom: 50px;
    }
    .text-30 ul li {
        padding-left: 50px;
    }
    .text-30 {
        font-size: 26px;
    }
    .text-22 {
        font-size: 19px;
    }
    .info-item-image + .text-22 {
        margin-top: 50px;
    }
    .text-24 ul li:before {
        top: -5px;
    }
    .page-template-tp-homepage-v2 .text-24 ul li:before {
        top: -2px;
    }
    .title-52 {
        font-size: 48px;
    }
    .title-40 {
        font-size: 36px;
    }
    .text-24 {
        font-size: 20px;
        line-height: 1.125;
    }
    .text-23 {
        font-size: 20px;
    }
    .hero-right .text-24 {
        max-width: 500px;
    }
    .about-section {
        min-height: 640px;
    }
    .langs-hold a {
        font-size: 20px;
    }
} 



@media only screen and (max-width: 1366px) {
    .hero-right .text-24 p {
        max-width: 550px;
    }
    .page-template-tp-homepage-v2 .text-24 ul li:before {
        top: 0px;
    }
    .hero-right .text-20 {
        padding-left: 0px;
    }
    .logo img {
        max-height: 120px;
    }
    .langs-hold a {
        font-size: 18px;
    }
    .hero-sperm-image {
        right: -190px;
        bottom: -140px;
    }
    .awars-logos img {
        max-height: 100px;
    }
    .hero-right .title-40 {
        padding-left: 0;
        margin-bottom: 36px;
        max-width: 350px;
    }
    .logo-hero {
        padding-left: 0;
        margin-bottom: 40px;
    }
    .logo-hero img {
        max-height: 60px;
    }
    .awards-right .text-23 {
        max-width: 435px;
    }
    .text-23 {
        font-size: 18px;
    }
    .about-section {
        min-height: 600px;
    }
    .title-52 {
        font-size: 44px;
    }
    .info-item-logo-2 img {
        max-width: 420px;
    }
    .info-item-logo-1 img {
        max-width: 260px;
    }
    .cta-logos {
        padding-left: calc(50% + 24px);
    }
    .cta-label-text {
        font-size: 22px;
    }
    .cta-label {
        font-size: 19px;
    }
    .btn-purple, .btn-purple:focus, .btn-purple:active {
        font-size: 18px;
    }
    .tech-right .title-40 {
        margin-bottom: 40px;
    }
    .text-22 {
        font-size: 17px;
    }
    .info-item-left {
        padding-right: 4%;
    }
    .title-40 {
        font-size: 32px;
    }
    .text-24 ul li:before {
        top: -3px;
        width: 24px;
        height: 24px;
    }
    .text-24 {
        font-size: 18px;
    }
    .cta-links ul li {
        max-width: 200px;
        max-width: 190px;
    }
    .btn-pink, .btn-pink:focus, .btn-pink:active {
        font-size: 18px;
    }
    .cta-right .text-30:not(:last-child) {
        margin-bottom: 56px;
    }
    .cta-right {
        padding: 64px 48px 56px 24px;
    }
    .cta-right .text-30 p:first-child {
        margin-bottom: 36px;
    }
    .text-30 ul li:before {
        top: 3px;
        width: 24px;
        height: 24px;
    }
    .text-30 {
        font-size: 22px;
    }
    .footer-logo-mob {
        display: block;
    }
    .footer-logo-desk {
        display: none;
    }
    .footer-text {
        font-size: 15px;
    }
    .footer-col-1 {
        width: 100%;
        padding-bottom: 0;
        margin-bottom: 33px;
    }
    .footer-col-4 {
        width: 25%;
    }
    .footer-middle {
        width: 75%;
    }
    .footer-logo img {
        max-height: 98px;
    }
    .text-24 ul li {
        padding-left: 40px;
    }
    .info-item:not(:last-child) {
        margin-bottom: 80px;
    }
    .text-30 ul li {
        padding-left: 40px;
    }
    .text-28 {
        font-size: 24px;
    }
} 

@media only screen and (max-width: 1199px) {
    .conclusion-right .text-24 + .text-24 {
        margin-top: 48px;
    }
    .conclusion-buy-logos ul li a img {
        max-height: 36px;
    }
    .conclusion-buy-logos ul {
        gap: 30px;
    }
    .text-18 {
        font-size: 16px;
    }
    .conclusion-buy-label {
        font-size: 18px;
    }
    .conclusion-buy-block {
        padding-left: 0;
    }
    .conclusion-left {
        padding-right: 4%;
    }
    .ic-left {
        padding-right: 5%;
    }
    .ic-image-size {
        margin-left: -30px;
        width: calc(100% + 30px);
    }
    .cfi-image-image-2-hold {
        max-width: 350px;
    }
    .about-section.v2 .text-24 {
        max-width: 390px;
    }
    .tech-section.v2 .tech-img-width {
        width: 130%;
        min-width: 130%;
    }
    .ttc-left {
        padding-right: 20px;
    }
    .cfi-right {
        padding-left: 0;
    }
    .hero-section.v2 .hero-right .text-24 {
        margin-top: 50px;
    }
    .text-20 {
        font-size: 18px;
    }
    .hero-image {
        margin-top: -80px;
    }
    .hero-image-size {
        margin-left: -50px;
        margin-bottom: -60px;
        width: calc(100% + 80px);
    }
    .hero-right .text-24 {
        max-width: 400px;
    }
    .logo-hero img {
        max-height: 48px;
    }
    .hero-sperm-image {
        right: -160px;
        bottom: auto;
        top: 0px;
        max-width: 360px;
    }
    .footer-col-2 {
        padding-right: 16px;
    }
    .footer-middle {
        width: 78%;
    }
    .footer-col-4 {
        width: 22%;
    }
    .footer-text {
        font-size: 14px;
    }
    .cta-logos {
        padding-left: calc(50% + 12px);
    }
    .cta-right {
        padding: 48px 32px 48px 12px;
    }
    .text-30 {
        font-size: 20px;
    }
    .tech-left {
        padding-right: 0%;
    }
    .title-52 {
        font-size: 40px;
    }
    .about-section-content {
        max-width: 550px;
    }
    .title-40 {
        font-size: 30px;
    }
    .about-section {
        min-height: 560px;
    }
    .about-section .text-24 {
        max-width: 280px;
        margin-top: 40px;
    }
    .about-section .text-24 br {
        display: none;
    }
} 

@media only screen and (max-width: 1023px) {
    .conclusion-right {
        width: 100%;
    }
    .conclusion-main-image {
        margin: 0 auto;
    }
    .conclusion-left {
        padding-right: 0;
        width: 100%;
        margin-bottom: 60px;
    }
    .ic-image{
        margin-bottom: 42px;
    }
    .ic-image img {
        border-radius: 30px;
    }
    .ic-right {
        width: 100%;
    }
    .content-floating-image-section.v2 {
        padding: 110px 0;
    }
    .cfi-hold.v2 .cfi-left {
        order: 2;
        margin-bottom: 0;
        margin-top: 50px;
    }
    .about-section.v2 {
        padding: 130px 0 96%;
        color: black;
    }
    .tech-section.v2 .tech-hold {
        margin-top: 80px;
    }
    .tech-section.v2 .tech-img-width {
        margin-left: -10%;
        width: 105%;
        min-width: 105%;
    }
    .ttc-right {
        width: 100%;
        padding-left: 0;
    }
    .ttc-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 36px;
    }
    .title-text-section.v2 {
        padding: 86px 0 80px;
    }
    .title-text-section {
        padding: 53% 0 80px;
    }
    .content-floating-image-section {
        padding: 110px 0 50%;
    }
    .cfi-right {
        width: 100%;
    }
    .cfi-left {
        width: 100%;
        padding-top: 0;
        padding-right: 0;
        margin-bottom: 50px;
    }
    .awards-right .text-16 {
        max-width: 100%;
        padding-left: 0;
    }
    .awards-right .text-19 {
        max-width: 100%;
        padding-left: 0;
    }
    .hero-content-mob .text-20 {
        margin-bottom: 20px;
        margin-top: -6px;
    }
    .about-section {
        min-height: 1px;
        padding: 0;
        padding-bottom: 104%;
    }
    .header-right {
        padding-top: 15px;
    }
    .hero-sperm-image {
        right: -105px;
        bottom: auto;
        top: -86px;
        max-width: 336px;
    }
    .awards-section {
        padding: 40px 0 80px;
    }
    .hero-content-mob .title-40 {
        margin-bottom: 24px;
    }
    .logo-hero {
        margin-bottom: 24px;
    }
    .hero-content-mob {
        padding-top: 120px;
    }
    .hero-image {
        margin-top: -140px;
    }
    .hero-image-size {
        margin-left: 0;
        margin-bottom: -140px;
        width: 100%;
    }
    .hero-left {
        width: 100%;
    }
    .awards-right .text-23 {
        max-width: 100%;
    }
    .awards-right {
        width: 100%;
        padding-left: 0;
        margin-bottom: 48px;
    }
    .awards-left {
        width: 100%;
        order: 2;
    }
    .tech-right .text-24 {
        max-width: 100%;
    }
    .info-item:nth-child(2) .text-24 p {
        max-width: 100%;
    }
    .info-item:nth-child(2) .text-24 p br {
        display: none;
    }
    .info-item-right .text-22 br {
        display: none;
    }
    .info-section {
        padding: 80px 0 64px;
    }
    .info-item-right .text-22 {
        margin-top: 32px;
    }
    .info-item-right {
        width: 100%;
        padding-left: 0;
    }
    .info-item-left {
        padding-right: 0;
        width: 100%;
        margin-bottom: 40px;
    }
    .tech-image {
        margin-top: -80px;
    }
    .tech-img-width {
        width: 105%;
    }
    .tech-section .grid-container {
        padding-left: 0;
        padding-right: 0;
    }
    .tech-section {
        background: #fff;
    }
    .tech-right {
        width: 100%;
        padding: 40px 30px 0px;
    }
    .tech-left {
        width: 100%;
        background: #EEEEEE;
    }
    .cta-right {
        width: 100%;
        padding: 30px 30px 48px;
    }
    .cta-left {
        width: 100%;
        padding-right: 0;
    }
    .cta-image {
        padding-bottom: 100%;
    }
    .footer-col-2 {
        padding-right: 0;
        width: 100%;
        margin-bottom: 16px;
    }
    .footer-col-3 {
        width: 100%;
    }
    .footer-middle {
        width: 68%;
    }
    .footer-col-4 {
        width: 32%;
    }
    .cta-logos {
        padding-left: 0;
    }
    .cta-logos ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .cta-logos ul li img {
        max-width: 160px;
        max-height: 80px;
    }
} 

@media screen and (max-width:639px) {
    .conclusion-bottom {
        margin-top: 40px;
    }
    .conclusion-buy-logos ul {
        gap: 20px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .conclusion-bottom .text-18 {
        font-size: 13px;
    }
    .conclusion-buy-label {
        font-size: 20px;
    }
    .buy-mob-content {
        padding: 43px 0 40px;
    }
    .conclusion-right .text-24 + .text-24 {
        margin-top: 24px;
    }
    .conclusion-left {
        margin-bottom: 18px;
    }
    .conclusion-main-image {
        margin: 0;
        margin-left: -15px;
        width: calc(100% + 30px);
    }
    .conclusion-left-top {
        gap: 25px;
        margin-bottom: 6px;
    }
    .conclusion-section {
        padding: 63px 0 80px;
    }
    .image-content-section {
        padding: 77px 0 70px;
    }
    .text-24 ul.simple li:before {
        top: 10px !important;
        width: 5px;
        height: 5px;
    }
    .text-24 p + ul.simple {
        margin-top: -24px;
    }
    .text-24 p:not(:last-child) {
        margin-bottom: 24px;
    }
    .title-text-section.v2 {
        padding: 75px 0 80px;
    }
    .content-floating-image-section.v2 {
        padding: 60px 0;
    }
    .about-section.v2 {
        padding: 56px 0 120%;
        color: black;
    }
    .about-section.v2 .text-24 {
        margin-top: 20px;
        max-width: 500px;
    }
    .text-28 {
        font-size: 18px;
    }
    .tech-right-content .show-for-large + .title-40 {
        max-width: 280px !important;
    }
    .title-text-cols-section .title-35 {
        margin-bottom: 24px;
    }
    .page-template-tp-homepage-v2 .text-24 ul li:before {
        top: 4px;
    }
    .title-35 {
        font-size: 26px;
    }
    .title-text-cols-section {
        padding: 56px 0 50px;
    }
    .title-text-section {
        padding: 65% 0 60px;
    }
    .title-28 {
        font-size: 20px;
    }
    .title-30 {
        font-size: 20px;
    }
    .title-40 {
        font-size: 26px;
    }
    .content-floating-image-section {
        padding: 50px 0 33%;
    }
    .awards-section.v2 {
        padding-bottom: 55px;
    }
    .hero-section.v2 + .logo-hero {
        margin-bottom: 16px;
    }
    .hero-section.v2 + .hero-content-mob .text-24 {
        font-size: 18px;
    }
    .text-20 {
        font-size: 16px;
    }
    .tech-right .title-40 {
        margin-bottom: 24px;
    }
    .info-section {
        padding: 56px 0 64px;
    }
    .header-right {
        padding-top: 0;
    }
    .header {
        padding-top: 16px;
    }
    .hero-image-size {
        margin-left: -12%;
        margin-bottom: -110px;
        width: 124%;
    }
    .hero-image {
        margin-top: -40px;
    }
    .text-23 {
        font-size: 15px;
    }
    .hero-content-mob .text-24 {
        font-size: 16px;
    }
    .hero-content-mob .title-40 {
        font-size: 28px;
    }
    .title-52:not(:last-child) {
        margin-bottom: 22px;
    }
    .text-24 ul li {
        margin-bottom: 8px;
    }
    .about-mob-content .text-24 {
        font-size: 16px;
    }
    .title-52 {
        font-size: 28px;
    }
    .text-24 {
        line-height: 1.3;
    }
    .info-item-image-caption {
        font-size: 9px;
        margin-top: 8px;
    }
    .info-item:first-child .info-item-left {
        margin-left: 0px;
        width: 100%;
        min-width: 100%;
    }
    .title-40.mob-25 {
        font-size: 25px;
    }
    .text-24 ul li {
        padding-left: 24px;
    }
    .text-24 ul li:before {
        top: 0px;
        width: 16px;
        height: 16px;
    }
    .info-item:not(:last-child) {
        margin-bottom: 56px;
    }
    .info-item-left {
        margin-left: -30px;
        width: calc(100% + 60px);
        min-width: calc(100% + 60px);
    }
    .info-item .text-24 {
        margin-top: 24px;
        font-size: 16px;
    }
    .info-item-logo-2 {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .info-item-logo-2 img {
        max-width: 100%;
    }
    .info-item-logo-1 {
        text-align: center;
    }
    .tech-image {
        margin-top: -50px;
    }
    .btn-small-full,
    .btn-small-full:focus,
    .btn-small-full:active {
        width: 100%;
    }
    .btn-purple, .btn-purple:focus, .btn-purple:active {
        font-size: 15px;
        min-height: 48px;
    }
    .cta-right .text-30:not(:last-child) {
        margin-bottom: 50px;
    }
    .cta-section {
        padding: 64px 0 50px;
    }
    .cta-logos ul li img {
        max-width: 130px;
        max-height: 80px;
    }
    .cta-logos ul li {
        margin-right: 10px;
    }
    .cta-links {
        margin-top: 20px;
    }
    .cta-links ul {
        width: 100%;
    }
    .cta-links ul li {
        max-width: 100%;
        margin-right: 0;
    }
    .cta-links ul li a br {
        display: none;
    }
    .btn-pink, .btn-pink:focus, .btn-pink:active {
        font-size: 15px;
        min-height: 48px;
    }
    .cta-label-text {
        font-size: 18px;
    }
    .cta-label {
        font-size: 18px;
    }
    .cta-right .text-30 p:first-child {
        margin-bottom: 16px;
    }
    .text-30 ul li {
        padding-left: 24px;
    }
    .text-30 ul li:before {
        top: 4px;
        width: 16px;
        height: 16px;
    }
    .text-30 {
        font-size: 18px;
    }
    .cta-section .grid-container {
        padding-left: 0;
        padding-right: 0;
    }
    .footer-text {
        font-size: 13px;
    }
    .footer-qr-text {
        font-size: 10px;
        max-width: 100%;
        padding-right: 0;
        padding-left: 12px;
        text-align: left;
        order: 2;
    }
    .footer-qr {
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
    .footer-col-4 {
        width: 100%;
    }
    .footer-middle {
        width: 100%;
        margin-bottom: 50px;
    }
	.entry iframe {
		max-width: 100%;
	}

} 