@import "fonts.css";
:root{
    --purple-color: #652D86;
    --magenta-color: #CE0058;
    --general-text: #292929;
    --green-color: #7AB800;
    --red-color: #EF0F0F;
}
html{
    scroll-behavior: smooth;
}

body{
    font-family: "Roboto";
    font-size: 18px;
    line-height: 30px;
    color: var(--general-text);
}

* {
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}
.wrapper{
    max-width: 1248px;
    margin: auto;
    padding: 0px 24px;
}
a{
    text-decoration: none;
    cursor: pointer;
}

h1, h2{
    font-size: 32px;
    line-height: 40px;
    font-family: "AmorSansPro";
    font-weight: bold;
    margin-bottom: 24px;
}
h3{
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 24px;
    font-weight: bold;
}
.bold{
    font-weight: bold;
}
.italic{
    font-style: italic;
}
.outline__cta{
    padding: 11px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--purple-color);
    color: var(--purple-color);
    min-height: 40px;
    max-width: 264px;
    line-height: 1;
    border-radius: 44px;
    margin: auto;
}
.outline__cta img{
    height: 20px !important;
    width: auto !important;
    margin-right: 8px;
    margin-bottom: 0 !important;
}
.outline__cta img.hover{
    display: none;
}
section{
    padding: 40px 0px;
}
.main__cta {
    border-radius: 80px;
    border: 2px solid #E3E3E3;
    background-size: cover;
    background-position: right;
    background-image: url('../img/btn-bg.png');
    padding: 10px 20px;
    max-width: 360px;
    color: #FFFFFF;
    display: block;
    text-align: center;
    margin: auto;
}
.main__cta:hover {
    background-position: left;
    background-image: url('../img/btn-bg-hover.png');
}
.join .main__cta {
    padding: 6px 20px;
}
.main__cta.disabled {
    background-color: #666666;
    background-image: none;
}

.green__cta{
    border-radius: 80px;
    background: var(--green-color);
    padding: 15px 20px;
    max-width: 360px;
    color: #FFFFFF;
    display: block;
    text-align: center;
    line-height: 1;
    margin: auto;
}

header{
    background-color: var(--purple-color);
    padding: 10px 0px 14px 0px;
}
.header__logos {
    display: flex;
    align-items: center;
    grid-gap: 6px;
}
.header__logos__line {
    height: 26px;
    width: 2px;
    background-color: #b5b3b3;
}
.ty__header, .header{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__logo img{
    width: 113px;
    height: 32px;
}
.header__logo{
    height: 32px;
}
.header__santander {
    width: 158px;
    margin-left: 10px;
}
.join {
    padding: 12px 24px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    z-index: 2;
    background-color: #FFFFFF;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
}

footer{
    background-color: var(--purple-color);
    padding: 32px 0px 116px 0px;
}
.footer{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer__item{
    margin-bottom: 32px;
}
.footer__item:last-child{
    margin-bottom: 0;
    padding-top: 16px;
    border-top: 1px solid #875F9E;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer__logo{
    width: 113px;
    height: 32px;
}
.rrss__link img{
    width: 20px;
    height: 20px;
}
.rrss__link:nth-child(2){
    margin: 0px 16px;
}
.footer__link{
    color: #FFFFFF;
    font-size: 14px;
}
.link__circle{
    width: 2px;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 2px;
    margin: 0px 8px;
}
.footer__item.legal{
    display: flex;
    align-items: center;
    justify-content: center;
}
.gentera__logo{
    width: 188px;
    height: 24px;
    margin-bottom: 24px;
}
.copyright{
    font-size: 12px;
    line-height: 12px;
    color: #FFFFFF;
}
.yastas {
    font-size: 20px;
    font-family: "AmorSansProBoldItalic";
    color: var(--purple-color);
}
.step__note {
    font-size: 12px;
}

@media screen and (min-width: 720px) {

    .join{
        position: relative;
        padding: 0;
        z-index: 0;
        width: auto;
        background-color: transparent;
        width: 250px;
        background-image: none;
    }
    .header{
        justify-content: space-between;
        align-items: center;
    }
    header{
        padding: 10px 0px;
        position: fixed;
        left: 0; right: 0; top: 0; bottom: 0;
        width: 100%;
        height: min-content;
        z-index: 2;
    }
    .ty__header{
        padding-bottom: 12px;
    }
    footer{
        padding: 64px 0px 40px 0px;
    }
    .footer__logo img{
        width: 141px;
        height: 40px;
    }
    .footer__item{
        margin-bottom: 40px;
    }

}

@media screen and (min-width: 1200px) {

    section{
        padding: 64px 0px;
    }
    h1, h2{
        font-size: 40px;
        margin-bottom: 32px;
    }
    h3{
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 24px;
        font-weight: bold;
    }
    .outline__cta {
        padding: 12px 20px;
    }
    .green__cta:hover{
        background-color: #E37222;
        transition: all ease-in 200ms;
    }
    .outline__cta:hover{
        background-color: var(--purple-color);
        color: #FFFFFF;
        transition: all ease-in 200ms;
    }
    .outline__cta:hover > img.solid{
        display: none;
        transition: all ease-in 200ms;
    }
    .outline__cta:hover > img.hover {
        display: block;
        transition: all ease-in 200ms;
    }

}
