/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}

img {
    max-width: 100%;
}
/* reset css end */

* {
    box-sizing: border-box;
} 


body {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-style: normal;
    background-color: #FFFFFF;
}


.container {
    padding-left: 100px;
    padding-right: 100px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;

    
}

@media only screen and (max-width: 1023px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
        margin-left: auto;
        margin-right: auto;
    }
}

header {
    position: relative;
    height: 409px;
}

header img {
    position: absolute;
}

header img.hero {
    width: 100vw;
    left: 0;
    top: 0;
    max-height: 409px;
    object-fit: cover;
}

header img.logo {
    margin-top: 100px;
    width: 172px;
    height: 131px;
}

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

    header {
        height: 226px;
    }

    header img.hero {
        height: 100%;
    }

    header img.logo {
        position: relative;
        margin-top: 0;
    }

    header .container {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.feature h1 {
    color: #1C1B45;
    font-size: 60px;
    font-family: Futura,Jost,Arial,sans-serif; 
    font-weight: 500;
    line-height: normal;
    margin-top: 59px;
    margin-bottom: 10px;
}

.feature p {
    color: #1C1B45;
    font-family: Inter;
    font-size: 26px;
    font-style: normal;
    font-weight: 300;
    line-height: 44px; /* 169.231% */
    max-width: 792px;
}

.feature p strong {
    font-weight: 700;
}

.feature-car-container {
    position: relative;
    height: 483px;
    margin-bottom: 55px;
    z-index: -1;
}

.feature-car {
    position: absolute;
    right: 0;
    height: 483px;
}

@media only screen and (max-width: 1023px) {
    .feature h1 {
        margin-top: 41px;
    }
    .feature-car-container {
        height: 275px;
        margin-top: 60px;
        overflow: hidden;
    }

    .feature-car {
        height: 275px;
        margin-left: -100px;
        min-width: 120%;
        overflow: hidden;
    }
}


.cards {
    display: flex;
    margin-bottom: 77px;
}

.card {
    width: calc((100% / 3) - 0.1px);
    margin-right: 38px;
}

.card img {
    width: 100%;
}

.card .title {
    margin-top: 45px;
    margin-bottom: 28px;
    text-align: center;
    color: #000;
    font-family: Futura,Jost,Arial,sans-serif; 
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.card p {
    color: #000;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
}

@media only screen and (max-width: 1023px) {
    .cards {
        max-width: 100%;
        width: 100%;
        flex-wrap: wrap;
    }

    .card {
        width: 100%;
        margin-bottom: 70px;
        margin-right: 0;
    }
    .card p {
        text-align: center;
    }
}


.cards-with-icon {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.card-with-icon {
    width: 48.5%;
}

.card-with-icon:nth-child(2n) {
    margin-right: 0;
}

.card-with-icon {
    border-radius: 30px;
    padding-left: 61px;
    padding-top: 31px;
    padding-right: 42px;
    padding-bottom: 31px;
    height: 534px;
    margin-bottom: 40px;
    margin-right: 31px;
}

.card-with-icon:nth-child(1) {
    background: #03B2A8;
}

.card-with-icon:nth-child(2) {
    background: #507007;
}

.card-with-icon:nth-child(3) {
    background: #073170;
}

.card-with-icon:nth-child(4) {
    background: #B2A103;
}

.card-with-icon img {
    margin-left: auto;
    display: block;
    height: 194px;
    width: 194px;
}

.card-with-icon .title {
    color: #FFF;
    text-align: left;
    font-family: Inter;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.card-with-icon p {
    color: #FFF;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media only screen and (max-width: 1243px) {
    .card-with-icon {
        width: 47%;
    }
}

@media only screen and (max-width: 1023px) {
    .cards-with-icon {
        width: 100%;
        flex: wrap;
        height: auto;
    }

    .card-with-icon {
        width: 100%;
        height: auto;
        padding-left: 50px;
        padding-right: 50px;
        margin-right: 0;
    }

    .card-with-icon p {
        text-align: center;
        font-size: 22px;
    }
    .card-with-icon .title {
        font-size: 50px;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .card-with-icon img {
        margin-right: auto;
    }
}




.footer-top {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-top .text {
    color: #1C1B45;
    text-align: center;
    font-family: Futura,Jost,Arial,sans-serif; 
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-top: 78px;
    margin-bottom: 50px;
}

.footer-top a {
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 40px;
    border: 1px solid #000;
    width: 190px;
    padding: 12px 20px;
}

.footer-top a div {
    margin-right: 12px;
    color: #07152D;
    /* L/Medium */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

footer {
    margin-top: 79px;
    height: 548px;
    background: #1C1B45;
}

footer .container {
    padding-top: 70px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
@media only screen and (max-width: 1023px) {
    footer .container {
        flex-wrap: wrap;
    }

    footer .container .left {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 80px;
    }

    footer .container .right {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .right .languages {
        width: 100%;
        text-align: center;
        margin-top: 80px;
    }
}

.right .languages {
    margin-top: 37px;   
    margin-left: auto;
}

.right a {
    text-decoration: none;
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    line-height: 30px; /* 166.667% */
}

.right .languages a {
    font-weight: 300;
    opacity: .5;
    margin-right: 12px;
}

.languages a.active {
    font-weight: 700;
    opacity: 1;
    cursor: default;
}

.languages a:hover {
    text-decoration: underline;
    font-weight: 700;
    opacity: 1;
}

.languages a.active:hover {
    text-decoration: none;
}