/*@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/container-Overview.css');
@import url('../../css/components/container-Links.css');
@import url('../../css/components/caption.css');
@import url('../../css/components/h1.css');
@import url('../../css/components/h2.css');
@import url('../../css/components/paragraphs.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-Align{
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;        
}

.container-Row{
    width: 100%;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    border: 1px solid #EEE;
}

.container-Row:last-child{
    width: 50%;    
}

.container-Col{
    display: flex;
    flex: 1;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.container-SubRow{
    width: 100%;
    display: flex;    
    flex-direction: row;
}

.container-SubCol{
    display: flex;
    flex-direction: column;
    flex: 1;
}

.container-BlueCup, .container-Mats{    
    border-right: 1px solid #EEE;
}

.container-Img{
    flex: 3;
}

.container-Img img{
    width: 95%;
    margin: 2.5% auto;
}

.container-Text{
    flex: 2;
    margin: auto;
}

.container-SubCol ul{
    margin: 20px;
    margin-left: 40px;
}

.container-SubCol p{
    color: #666;
    font-size: 18px;
}

.container-Products-Element-Text-Link{
    padding: 10px 40px;
    margin: 40px auto;
    background: rgba(58,95,205,0);
    border: 1px solid #DDD;
    border-radius: 4px;
    text-align: center;
    color: #3a5fcd;
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    font-size: 20px;
    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;
}

@media (max-width: 800px){
    .container-Set{
        flex-direction: column;
    }
}

@media (max-width: 380px){
    .container-Row{
        border-radius: 0;
        border: none;
        border-top: 1px solid #EEE;
        border-bottom: 1px solid #EEE;
    }

    .container-Row:last-child{
        margin: auto;
        border: 1px solid #EEE;
    }

    .container-SubCol{
        width: 50%;
        overflow: auto;
    }

    .container-Row:nth-Child(1) .container-SubRow:nth-Child(2) .container-SubCol{
        width: 100%;
    }

    .container-SubCol p{
        margin: 10px;
        padding: 0;
    }

    .container-Products-Element-Text-Link{
        padding: 5px;
    }

    .read-more-show{
        display: block;
    }

    .hide {
        display: none;      
    }
}