﻿
:root {
    --mainBlue: #004896;
    --greenBlue: #00B9C5;
    --darkGray: #404040;
    --gray: #858585;
    --lightGray: #EBEBEB;
    --superLightGray: #F9F9F9;
    --superLightBlue: #E5F7F9;
    --white: #FFFFFF;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: relative;
}

::-webkit-scrollbar {
    width: 1rem;
}

::-webkit-scrollbar-track {
    background: var(--superLightGray);
}

::-webkit-scrollbar-thumb {
    background: var(--mainBlue);
    border-radius: 1rem;
}

html {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    font-size: 10px;
    
}

body {
    font-size: 1.6rem;
    font-weight: 400;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: var(--white);
    color: var(--darkGray);
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

h1 {
    font-size: 6rem;
    font-weight: 700;
}

@media only screen and (max-width: 1440px) {
    h1 {
        font-size: 56px;
    }
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 48px;
    }
}

@media only screen and (max-width: 576px) {
    h1 {
        font-size: 42px;
    }
}

h2 {
    font-size: 3.4rem;
    color: var(--mainBlue);
}

@media only screen and (max-width: 768px) {
    h2 {
        font-size: 2.4rem;
    }
}

.h2-semiB {
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

p {
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--darkGray);
}


.img__container {
    width: 100%;
    background-color: #F0FAFB;
    border-radius: 20px;
    overflow: hidden;
}

    .img__container img {
        width: 100%;
        height: auto;
    }

.icon__container {
    display: inline-flex;
    width: 24px;
    height: 24px;
}

.icon__container2 {
    display: flex;
}

.icon__container-lang {
    display: inline-flex;
    width: 16px;
    height: 16px;
}


a.btn {
    border-radius: 10rem;
    background-color: var(--greenBlue);
    text-align: center;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 600;
    padding: .8rem 4rem;
    border: .2rem solid var(--greenBlue);
    transition: all .3s ease-in-out;

}

    a.btn:hover {
        background-color: var(--white);
        color: var(--greenBlue);
    }

.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto 10rem auto;
}

    @media (max-width: 1024px) {
        .container {
            margin: 0 auto 5rem auto;
        }
    }

    @media (max-width: 576px) {
        .container {
            margin: 0 auto 3rem auto;
        }
    }

.container-wide {
    width: 100%;
    margin: 0 auto;
}

.inner-container {
    padding: 0 19.5rem;
    transition: all 0.4s ease;
}

@media only screen and (max-width: 1280px) {
    .inner-container {
        padding: 0 100px;
    }
}

@media only screen and (max-width: 1080px) {
    .inner-container {
        padding: 0 60px;
    }
}

@media only screen and (max-width: 768px) {
    .inner-container {
        padding: 0 25px;
    }
}

.split {
    display: flex;
    gap: 10px;
}

.half {
    width: 50%;
}

/*.half_img-l {
    padding-left: 60px;
}

.half_img-r {
    padding-right: 60px;
}*/

.decoration {
    background-color: var(--greenBlue);
    width: 40px;
    height: 6px;
    margin-bottom: 26px;
}


.std-layout__row {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    box-sizing: border-box;
}

    .std-layout__row.reverse {
        flex-direction: row-reverse;
    }

    @media (max-width: 1024px) {
        .std-layout__row.reverse, .std-layout__row {
            flex-direction: column;
        }
    }

.std-layout__img {
    flex: 0 0 42.48%;
    height: fit-content;
}

    .std-layout__img img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 2rem
    }

.std-layout__text {
    display: flex;
    flex-direction: column;
    gap: 2.6rem;
    flex: 0 0 49.02%;
}

    .std-layout__text span {
        border-bottom: .6rem solid var(--greenBlue);
        width: 4rem;
    }

    .std-layout__text a {
        color: var(--mainBlue);
        text-decoration: underline;
        font-weight: 600;
    }

    .std-layout__text a:hover {
        color: var(--greenBlue);
    }

.std-layout__button, a.std-layout__button {
    font-weight: 600;
    color: white;
    padding: 1rem 3.6rem;
    border: .1rem solid var(--greenBlue);
    border-radius: 10rem;
    background-color: var(--greenBlue);
    width: fit-content;
    margin-top: 1.4rem;
    transition: all .3s ease-in-out;
    text-decoration: none;
}

    .std-layout__button:hover, a.std-layout__button:hover {
        color: var(--greenBlue);
        background-color: white;
    }
/*Responsive breakpoints used:  
Small sm ≥576px
Medium md ≥768px
Large lg ≥992px
Extra large xl ≥1200px
Extra extra large xxl ≥1400px*/