@font-face {
    font-family: 'Barlow';
    src: local('Barlow Regular'), local('Barlow-Regular'),
        url('./../web-core-5.9/fonts/Barlow-Regular.woff2') format('woff2'),
        url('./../web-core-5.9/fonts/Barlow-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/* font-weight: 400; = font-weight: normal; */

@font-face {
    font-family: 'Barlow';
    src: local('Barlow Bold'), local('Barlow-Bold'),
        url('./../web-core-5.9/fonts/Barlow-Bold.woff2') format('woff2'),
        url('./../web-core-5.9/fonts/Barlow-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/* font-weight: 700; = font-weight: bold; */

body {
    background: #EFF6FF;
    margin: 80px 60px;
    color: #2A4A5C;
    font-size: 16px;
    font-family: 'Barlow', sans-serif;
}

/* h1, h2 {
    color: #7B8A92;
} */

.p {
    color: #96A5B1;
}

div.box-model {
    padding-top: 120px;
    padding-left: 80px;
}

.box-model {
    background-color: #fff;
    float: left;
    width: 50%;
    min-height: 1200px;
    max-height: 1200px;
    /* align-items: stretch; */
    /* border: 0 solid #fff; */
    box-sizing: border-box;
    margin-bottom: 80px;
}

.bg {
    max-width: 100%;
    height: 1200px;
    position: relative;
    margin-bottom: 80px solid #eff6ff;
    /* background-origin: padding-box; */
    /* position: fixed; */

}

.logo {
    width: 200px;
    height: auto;
    position: absolute;
    top: 80px;
    left: 80px;
}

.img-button {
    width: 20px;
    height: 20px;
    position: relative; 
    left: -55px;
    top: 5px;
}

.buttons {
    display: flex;
    /* gap: 20px; */
    margin-bottom: 60px;
}

.buttons > button {
   width: 50%;
   margin-right: 40px;
   height: 40px;
   color: #fff;
   border-width: 0;
   padding-bottom: 8px;
}

.buttons > button:last-child {
    margin-right: 80px;
}

.button-facebook {
    background-color: #255A9B;
}

.button-linkedin {
    background-color: #0076B6;
}

.line::before {
    content: "—————————";
    color: #AFAFAF;
    font-weight: 700;
    margin-left: -75px;
    margin-right: 10px;
}

.line::after {
    content: "—————————";
    color: #AFAFAF;
    font-weight: 700;
    margin-left: 10px;
        /* display: inline-block; */
    /* text-align: center;
    margin: 20px 0;
    color: #2A4A5C;
    font-size: 16px; */
}

.line {
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.form-group label {
    display: block;
    margin-left: 15px;
    margin-bottom: -25px;
    font-size: 16px;
    color: #AFAFAF;
}

.form-group input {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    padding: 25px 0 5px 15px;
    background: transparent;
    border: 1px solid #EEEEEE;
}

.form-group input:focus {
    outline: none;
    border-left: 2px solid #0076B6;
}

.row {
    display: flex;
    /* gap: 30px; */
    margin-bottom: 20px;
}

.row > .form-group {
    width: 50%;
    margin-right: 40px;
    /* flex: 1;
     */
}

.row > .form-group:last-child {
    margin-right: 80px;
}

h2 {
    margin-top: 60px;
}

.radios {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.radio input {
    display: none;
}

.radios label {
    display: flex;
    align-items: center;
    padding-right: 40px;
    gap: 10px;
    color: #000;
}

.radios .tooltip::after {
    content: "ⓘ";
    color: #AFAFAF;
    font-size: 15px;
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ffffff;
}

.radio .circle {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #EEEEEE;
    /* box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5); */
}

.radio input:checked + .circle {
    background-color: #3698FB;
    border-color: #3698FB;
}

.radio input:checked + .circle::before {
    content: "";
    position: absolute;
    top: 3.5px;
    left: 3.5px;
    width: 13px;
    height: 13px;
    background-color: #fff;
    border-radius: 50%;
}

/* [data-title] {
    position: relative;
    cursor: help;
    cursor: pointer; 
}

[data-title]::after {
    content: attr(data-title);
    position: absolute;
    width: 300px;
    margin-top: 10px;
    left: 0;
    top: 1em;
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
    background-color: #fff;
    color: #96A5B1;
    padding: 0.5em;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

[data-title]:hover::after {
    opacity: 1;
    top: 2em;
} */

.agree-checkbox {
    margin-top: 110px;
    margin-bottom: 80px;
    color: #AFAFAF;
}

.agree-checkbox a {
    color: #3698FB;
    /* text-decoration: none; */
}

.agree-checkbox-button button {
    background-color: #3698FB;
    color: #fff;
    font-size: 0.9em;
    font-weight: 700;
    padding: 1rem 6rem;
    border-width: 0;
    border-radius: 0.4em;
    margin-bottom: 25px;
}

@media (max-width: 1220px) {
    .buttons > button {
        width: 80%;
    }
    .buttons {
        display: block;
    }
    .img-button {
        left: -30px;
    }
    .radios {
        display: block;
    }
     .box-model {
        margin-bottom: 10px;
    }
    .agree-checkbox {
    margin-top: 10px;
    }
}

[data-tooltip] {
    position: relative;
    cursor: pointer;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    width: 300px;
    left: 0;
    top: 0;
    background-color: #fff;
    color: #96A5B1;
    padding: 0.5em;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    opacity: 0;
    transition: 1s;
} 

[data-tooltip]:hover::before {
    opacity: 1;
    top: 2em;
    /* visibility: visible; */
}
