@media (max-width: 768px) {
    .social-icons { margin: 20px 0px; }
    #selectLang { margin: 20px 0px; }
    .verticalWhiteRightLine { border-right: 0px; }

    .column-wrap { overflow: visible; }
    .column-col { padding-bottom: 0px; margin-bottom: 30px; }
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid rgba(35, 31, 32, .5);
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid rgba(35, 31, 32, .5);
}

.arrow-right {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid rgba(35, 31, 32, .5);
}

.arrow-left {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid rgba(35, 31, 32, .5);
}

.triangle li.active::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 15px;
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: #337ab7 transparent;
    display: block;
    width: 0;
}

.wrapper { display: grid; grid-template-columns: 100px 100px 100px; grid-gap: 10px; background-color: #fff; color: #444; }
.box { background-color: #444; color: #fff; border-radius: 5px; padding: 20px; font-size: 150%; }


.flex-video {
    position: relative;
    padding-top: 25px;
    padding-bottom: 67.5%;
    height: 0;
    margin-bottom: 16px;
    overflow: hidden;
}

.flex-video.widescreen { padding-bottom: 57.25%; }
.flex-video.vimeo { padding-top: 0; }

.flex-video iframe,
.flex-video object,
.flex-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
    .flex-video {
        padding-top: 0;
    }
}

.thumbnail250{
    width: 100%;
    height: 180px;
    overflow: auto;
    background-color: #fff;
}

/* Image Effect */

.hovereffect {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
}
.hovereffect .overlay {
    width: 100%;
    position: absolute;
    overflow: hidden;
    left: 0;
    top: auto;
    bottom: 0;
    padding: 1em;
    height: 60px;
    background: #949699;
    color: #3c4a50;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}

.hovereffect img {
    display: block;
    position: relative;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

.hovereffect:hover img {
    -webkit-transform: translate3d(0,-10%,0);
    transform: translate3d(0,-10%,0);
}

.hovereffect:hover .overlay{
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}