/*@import url('https://fonts.googleapis.com/css?family=Raleway|Roboto');*/
@import url('../../css/resetBrowser.css');
@import url('../../css/components/navigationBar.css');
@import url('../../css/components/container-Content.css');
@import url('../../css/components/h1.css');
@import url('../../css/components/h2.css');
@import url('../../css/components/h4.css');
@import url('../../css/components/button.css');
@import url('../../css/components/footer.css');
@import url('../../css/utils/imagePopUp.css');

/* raleway-regular - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/raleway-v28-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../../fonts/raleway-v28-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../fonts/raleway-v28-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../fonts/raleway-v28-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../../fonts/raleway-v28-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../fonts/raleway-v28-latin-regular.svg#Raleway') format('svg'); /* Legacy iOS */
}

.container-SetProducts{
    width: 80%;
    display: flex;
    flex-direction: column;
}

.container-Row{
    display: flex;
    justify-content: space-around;
    border: 1px solid #EEE;
    border-radius: 4px;
    margin: 40px auto;    
}

.container-Row:first-child{
    margin-top: 0;
}   

.Products:last-child{
    border: none;
}

.Products:last-child .container-Col{
    border: none;
}

.container-Col{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;   
}

.container-Col img{
    display: block;
    width: 40%;
}

.BlueCup .container-Col img{
    display: block;
    width: 100%;
}

.container-Col a{
    color: #3a5fcd;
}

.container-Col a:hover{
    text-decoration: none;
    color: #3a5fcd;
}

.container-Products-Element-Text-Link{
    margin: 40px auto;
    padding: 10px 40px;
    background: rgba(58,95,205,0.0);
    border: 1px solid #DDD;
    border-radius: 4px;
    text-align: center;
    transition: all 0.5s ease;
}

.container-Products-Element-Text-Link:hover{
    background: rgba(58,95,205,0.75);
    border: 1px solid #999;
    box-shadow: 0px 0px 2px #999;
}

.container-Products-Element-Text-Link:hover a{
    color: #FFF;
}

.container-Products-Element-Text-Link a{
    color: #3a5fcd;
    font-size: 20px;
}

@media(max-width: 380px){
    .container-SetProducts{
        width: 100%;
        overflow: auto;
    }

    .container-Row{
        flex-direction: column;
    }

    .container-Row{
        border: none;
        border-radius: 0;
        overflow: hidden;
        border-top: 1px solid #EEE;
        border-bottom: 1px solid #EEE;        
    }

    .container-Col{        
        margin: 10px auto;
    } 
}