*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: "Sofia-Pro";
    src: url(assets/SofiaPro-Regular.otf) format(opentype);
    font-weight: 400;
}

@font-face {
    font-family: "Sofia-Pro";
    src: url(assets/SofiaPro-Medium.otf) format(opentype);
    font-weight: 500;
}

body{
    background: #F3F3F3;
    color: #202B50;
    font-family: 'Sofia-Pro', sans-serif;
}

.hero{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem !important;
}
.hero img{
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
}

.container{
    width: 100%;
    max-width: 1280px;
    
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    
    padding: 1rem;
    padding-top: 0px !important;
    margin: auto;

    transition: 1s;
}

section{
    padding: 4rem 1rem !important;
}
section h1{
    font-family: 'Sofia-Pro', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    text-align: center;
    color: #202B50;
    /* filter: url(#outlineColored); */
    margin: 40px 0;
    width: 100%;
    font-weight: normal;
}


  
  svg {
    font-size: 40px;
    font-weight: bold;
    width: 600px;
    height: 70px;
    fill: white;
  }
  
  .svgStroke {
    fill: white;
    stroke: #0186EF;
    stroke-width: 12px;
    stroke-linejoin: round;
  }

.title-container{
    display: flex;
    flex-direction: column;
    max-width: 980px;
    padding-bottom: 2rem;
}

.title-container img{
    width: 100%;
}

.retailers{
    justify-content: space-evenly;
}

.retailer-btn{
    width: 100%;
    max-width: 250px;
    height: 230px;
    cursor: pointer;
    margin: .5rem;

    overflow: hidden;
    transition: 0.4s;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.retailer-btn:nth-child(1){
    background-image: url(images/icono_1.png);
}
.retailer-btn:nth-child(2){
    background-image: url(images/icono_2.png);
}
.retailer-btn:nth-child(3){
    background-image: url(images/icono_3.png);
}
.retailer-btn:nth-child(4){
    background-image: url(images/icono_4.png);
}


.retailer-btn:hover{
    transform: scale(1.1);
}

button{
    text-align: center;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    transition: 0.4s;
}

button:hover{
    transform: scale(1.1);
}

footer{
    background: #202B50;
    color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 1rem;
    font-family: 'Helvetica', sans-serif;
    font-weight: normal;
}

footer .container{
    padding: 1rem !important;
}
footer a{
    color: #fff;
    text-decoration: underline;
    margin-left: 30px;
    font-family: 'Helvetica', sans-serif;
    font-weight: normal;
}


@media only screen and (max-width: 1024px) and (min-width: 768px){

    .retailers a{
        width: 50%;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 767px){
    section h1{
        font-size: 2rem;
    }
    .retailers a{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .retailer-btn{
        max-width: 640px;
        max-height: 70px;
        padding: 10px;
        margin-bottom: 20px;
    }

    .retailer-btn:nth-child(1){
        background-image: url(images/btn-1.png);
    }
    .retailer-btn:nth-child(2){
        background-image: url(images/btn-2.png);
    }
    .retailer-btn:nth-child(3){
        background-image: url(images/btn-3.png);
    }
    .retailer-btn:nth-child(4){
        background-image: url(images/btn-4.png);
    }

    .title-container{
        padding-bottom: 0px;
    }
}


@media (max-width: 540px) {
    svg {
        font-size: 40px;
        font-weight: bold;
        width: 360px;
        height: 70px;
        fill: white;
      }

      .mt-n20{
        margin-top: -20px;
      }

      section{
        padding: 3rem 0rem !important;
    }
}

@media (max-width: 370px) {
    svg {
        font-size: 40px;
        font-weight: bold;
        width: 300px;
        height: 70px;
        fill: white;
      }

      .mt-n20{
        margin-top: -30px;
      }
}

@media (max-width: 768px){
    .hero img {
        content: url("images/img_mobile.png");
    }
}