@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

body {
    background-color: #fff;
    color: #082f4a;
    font-family: 'Roboto', sans-serif;
    min-height: 100%;
    overflow-x: hidden;
    margin: 0;
    position: relative;
    line-height: 1.6;
    font-size: 15px;
}


h1, h2, h3{
    line-height: 1.2;
}

h1{
    margin: 0;
    padding: 0;
}


h3{
    margin: 15px 0;
}

h2{
}

html{
    scroll-behavior: smooth;
    width: 100%;
}

a, div, :hover, img{
    transition: all 0.3s ease-out;
}

:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}


* { box-sizing: border-box; }

button {
    outline: 0;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: #1d6eb9;
}

a:hover {
    text-decoration: none;
}

img, video{
    max-width: 100%;
}

.cform {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}
.cform__label {
    width: 100%;
    position: relative;
}
.cform__label label {
    position: absolute;
    top: -8px;
    left: 10px;
    transition: all 0.3s ease;
    padding: 0 8px;
    font-size: 12px;
    color: #808080;
    background: #fff;
    display: inline-block;
}
.cform__input {
    height: 50px;
    width: 100%;
    border: 2px solid #F7941F;
    box-sizing: border-box;
    border-radius: 6px;
    color: #082f4a;
    padding-left: 10px;
    font-size: 21px;
    font-weight: 500;
}
.cform__label--active:after {
    position: absolute;
    content: '';
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 26px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='76' height='57' viewBox='0 0 76 57' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 25L28 49L72 4' stroke='%23F7941F' stroke-width='11'/%3E%3C/svg%3E%0A");
}
.cform__input::placeholder {
    color: #808080;
    padding-left: 5px;
}

.cform__col{
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 20px;
}

main.container, header{
    max-width: 600px;
    margin: 10px auto 0 auto;
}

main.container{
    min-height: 100vh;
}

header{
    text-align: center;
}

header img{
    max-width: 180px;
}

.headline{
    text-align: center;
}

.headline__h1{
    margin-bottom: 0;
    font-size: 36px;
}

.headline__h2{
    margin: 0;
    font-size: 32px;
    text-decoration: underline;
    text-decoration-color: #2164F3;
}

.logos{
    max-width: 600px;
    margin: 30px auto 10px auto;
}

.logos__item{
    display: flex;
    align-items: center;
}

.logos__item img{
    width: 100%;
    height: 100%;
    min-width: 64px;
    max-height: 40px;
    object-fit: contain;
}

.cform__submit{
    width: 100%;
    outline: none;
    border: none;
    padding: 15px;
    text-transform: uppercase;
    font-size: 21px;
    font-weight: 500;
    background-color: #2164F3;
    color: #fff;
    position: relative;
}
.cform__submit-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 26px;
    height: 20px;
}

.cform__submit-info{
    font-size: 11px;
    color: #808080;
    text-align: center;
    margin-top: 10px;
}

.footer__intro p{
    font-size: 12px;
    line-height: 1.2;
    color: #7d8185;
}

.footer__intro{
    background-color: #cdd0d3;
    padding: 15px 0;
}

.footer-inner {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);
    margin: 2rem auto;
    max-width: 800px;
}

.footer__top {
    padding-bottom: 2rem;
    padding-top: 0.5rem;
}

.footer__top-list {
    display: flex;
    flex-direction: row;
    font-size: 14px;
    gap: 20px;
    justify-content: center;
    margin-bottom: 8px;
}

.footer__bottom {
    --tw-text-opacity: 1;
    align-items: center;
    border-color: rgba(17,24,39,.05);
    border-top-width: 1px;
    color: rgb(107 114 128/var(--tw-text-opacity));
    display: flex;
    flex-direction: column;
    font-size: .75rem;
    gap: 1rem;
    justify-content: space-between;
    line-height: 1.5rem;
    padding-bottom: 0.5rem;
    padding-top: 2rem;
}

.footer__bottom-logo {
    max-width: 100px;
    pointer-events: none;
}

.footer__intro-container{
    max-width: 800px;
}

@media (min-width: 768px){
.footer__bottom {
    flex-direction: row;
    padding-top: 1.5rem;
}
}

@media (max-width: 768px){
.footer__top-list {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    text-align: center;
}
.footer-inner {
    max-width: 90%;
}
}