* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a  {
  text-decoration: none;
  color: black;
}

img {
  max-width: 100%;
}

button {
    cursor: pointer;
}

.brDesktop{
    display: block;
}

.desktop{
    display: block;
}

.mobile{
    display: none;
}

.bttnPrincipal {
    padding: 15px 50px;
    background-color: #FC7E00;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.bttnPrincipal:hover {
    background: #E26B04
}

.heroContainer {
    background: #002649;
    padding-top: 80px;
}

.hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    padding: 90px 90px 0;
    position: relative;
}

.heroText {
    width: 100%;
    height: 100%;
}

.littleTitle {
    color: #FC7E00;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 97.9%; /* 24.475px */
}

.mainTitle {
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 43px;
    font-weight: 700;
    line-height: 111.9%; /* 50.355px */
    max-width: 480px;
    margin: 25px 0;
}

.heroImg-v2  {
    height: 100%;
    width: 100%;
    display: flex;
}

/*******************************/
.remarketingContainer {
    background: #004BC2;
    position: relative;
}

.remarketingContainer h2{
    text-align: center;
    color: #FFF;
    font-family: Montserrat;
    font-size: 33px;
    font-weight: 500;
    padding: 110px 0 30px;
}

.visualEmblueImg {
    position: absolute;
    bottom: -74px;
    width: 150px;
}

.remarketing {
    padding: 40px 90px 150px;
    display: flex;
    gap: 35px;
    align-items: center;
}

.remarketingItems {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.remarketingItems article {
    position: relative;
    border-radius: 10px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 27px;
    color: #002649;
    font-family: 'Roboto', sans-serif;
    line-height: 22px;
}

.remarketingItems article h3{
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #FF7600;
    padding-bottom: 10px;
}

.remarketingItems article p{
    font-size: 16px;
    font-weight: 400;
}

.remarketingItems article img{
    margin-top: -35%;
}

/*******************************/

.howItWorksContainer {
    background: #EDECE8;
}

.howItWorks {
    padding: 90px;
}

.howItWorks h2 {
    color: #004BC2;
    text-align: center;
    font-family: Montserrat;
    font-size: 33px;
    font-weight: 700;
    line-height: normal;
}

.howItWorks .howItWorksDescription {
    color: #002649;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px; /* 138.889% */
    margin: 10px auto 60px;
    text-align: center;
    max-width: 1050px;
}

.howItWorksArticleContainer {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: flex-start;
    justify-items: center;
}


.howItWorksArticleContainer article {
    max-width: 400px;
    padding: 20px;
}

.howItWorksArticleContainer article h3 {
    color: #FF7600;
    font-family: Montserrat;
    font-size: 25px;
    font-weight: 600;
    line-height: 22px;
    margin: 10px 0 15px;
}

.howItWorksArticleContainer article p {
    color: #002649;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

/***************/
.cta{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-self: center;
    align-items: center;
    padding: 120px 0;
    background-image: url(../img/remarketing/bg-img.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
}

.cta h2 {
    color: #002649;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    max-width: 830px;
}

/******************************/

@media (max-width: 1200px) {
    .heroImg-v2 img {
        width: 90%;
    }
}

@media (max-width: 1132px) {
    
    .hero {
        gap: 10px;
    }

    .mainTitle {
        font-size: 30px;
    }

    .heroImg-v2 img {
        width: 90%;
    }

    /*****/

    .remarketing {
        flex-direction: column;
        gap: 80px
    }

    .remarketingContainer h2 {
        padding: 110px 30px 30px;
    }

    .cta h2 {
        font-size: 25px;
    }
}

@media (max-width: 976px) {

    .heroContainer {
        padding-top: 50px;
    }

    .heroImg-v2 img {
        width: 90%;
    }

    .mainTitle {
        font-size: 25px;
    }

    .littleTitle {
        font-size: 18px;
    }

    .bttnPrincipal {
        padding: 15px;
    }

    /*****/

    .desktop{
        display: none;
    }

    .mobile{
        display: block;
    }

    .remarketingItems {
        grid-template-columns: 100%;
        gap: 60px;
    }
    
    .remarketingItems article img{
        margin-top: -10%;
    }

}

@media (min-width: 700px) and (max-width: 876px) {

    .hero{
        grid-template-columns: 100%;
        gap: 45px;
    }

    .heroText {
        width: fit-content;
        margin: 0 auto;
        text-align: center;
    }

    .heroImg-v2 img {
        right: 0px;
        left: 0px;
        margin: 0 auto;
        width: 70%;
    }

    .hero.containerLayout{
        padding-left: 30px;
        padding-right: 30px;
    }

    .cta {
        background-size: 150px;
        padding: 100px 50px;
    }
}

@media (min-width: 600px) and (max-width: 700px) {
    .heroImg-v2 img {
        width: 65%;
    }

    .cta {
        align-items: center;
    }

}

@media (min-width: 500px) and (max-width:600px) {
    .heroImg-v2 img {
        width: 60%;
    }

    .remarketingItems article img{
        margin-top: -15%;
    }
}

@media (min-width: 516px) and (max-width:717px) {
    .heroImg-v2 img {
        width: 60%;
    }
}

@media (min-width: 300px) and (max-width:500px) {

    .remarketingItems article img{
        margin-top: -20%;
    }
}



@media (max-width: 700px)  {

    .brDesktop{
        display: inline;
    }
    
    .heroContainer {
        padding-top: 40px;
    }

    .hero {
        padding: 30px 30px 0;
        grid-template-columns: 100%;
    }

    .littleTitle {
        font-size: 16px;
    }

    .mainTitle {
        font-size: 33px;
        font-weight: 600;
        line-height: 42px;
    }

    .heroImg-v2 img {
        width: 50%;
    }

    .heroImg-v2 img {
        bottom: -40px;
        right: 0px;
        left: 0px;
        width: 100%;
        margin: 0 auto;
    }

    .bttnPrincipal {
        padding: 15px;
    }

    /***********/

    .remarketing{
        padding: 40px 30px 60px;
    }

    .remarketingContainer h2 {
        padding: 60px 30px 30px;
        text-align: left;
    }

    .remarketingItems article h3{
        align-self: flex-start;
    }

    /***********/

    .howItWorks {
        padding: 90px 30px 60px;
    }

    .howItWorks h2 {
        text-align: left;
    }

    .howItWorks .howItWorksDescription {
        text-align: left;
        max-width: 100%;
        margin: 10px auto 30px;
    }

    .howItWorksArticleContainer {
        grid-template-columns: 100%;
    }

    .howItWorksArticleContainer article {
        max-width: 100%;
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .howItWorksArticleContainer article h3{
        order: 1;
    }

    /**************/
    .cta {
        padding: 70px 30px 90px;
        align-items: start;
        background-image: url(../img/remarketing/bg-img-mobile.svg);
        background-position: bottom right;
        background-size: 100px;
    }
    
    .cta h2 {
        font-size: 20px;
        text-align: start;
    }
}

@media (min-width: 465px) and (max-width:700px) {
    .heroImg-v2 img {
        width: 400px;
    }
}

@media (min-width: 768px) and (max-width: 1800px) {

    nav, div.footer {
        zoom: .85;
    }
}

@media (min-width: 1209px) {

    .containerLayout {
        margin: 0 auto;
        max-width: 1366px;
    }

}