/* Basic classes for all the things that need to be displayed on a bigger devices and smaller devices */

.displaysmall {
    display: none;
}

.displaybig {}


/* Class for site name */

.titlewords {
    display: flex;
    align-items: center;
    color: #316aad;
    font-size: 4vw;
    padding-top: 20px;
    width: 70%;
}


/* Class for tab */

.WhatIsTab {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    height: fit-content;
}


/* Mail picture */

.mailpic {
    padding-bottom: 1px;
    width: auto;
    height: calc(4px + 0.8vw);
}


/* Form button */

.button {
    background-color: #316aad;
    border: none;
    color: white;
    padding: 1vw 2.5vw;
    text-align: center;
    font-size: calc(4px + 0.8vw);
    cursor: pointer;
    border-radius: 5px;
}

.button:hover {
    background-color: #25548a;
}


/* Floating card */

.floatingCard {
    margin: 30px;
    width: auto;
    box-shadow: 0px 0px 20px 0px #628ca598, 0px 0px 230px 0px #c9d0d4;
    margin-top: 50px;
    padding: 10px;
    padding-top: 3vw;
    padding-bottom: 3vw;
    background-color: rgb(248, 248, 248);
    border-radius: 10px;
    position: absolute;
    height: auto;
    left: 80vw;
}

.floatingPhoneCard {
    box-shadow: 0px 0px 20px 0px #628ca598, 0px 0px 230px 0px #c9d0d4;
    width: 92%;
    margin-top: 55px;
    padding: 10px;
    padding-top: 3vw;
    padding-bottom: 3vw;
    background-color: rgb(248, 248, 248);
    border-radius: 10px;
    display: none;
    margin-left: 10px;
    margin-right: 10px;
}


/* Input window */

.inputField {
    width: 100%;
    padding: 10px 20px;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    resize: none;
    margin-top: 5px;
}


/* Content */

.pageContent {
    width: 55%;
    margin-left: auto;
    margin-right: auto
}


/* For floating window to work I created this class */

.roworcolumn {
    display: flex;
    flex-direction: row;
}


/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */

.stickyContent {
    padding-top: 77px;
}

.stickyCardContent {
    margin-top: 127px;
}


/* Center */

.center {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}


/* Why-us */

.whyus {
    display: flex;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
}

.whyus-solo {
    margin-left: auto;
    margin-right: auto;
    width: 30vw;
    min-width: 300px;
}


/* Slideshow*/

.mySlidesPict {
    display: none
}

img {
    vertical-align: middle;
}


/* Support */

.support {
    display: flex;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
}

.support-content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}


/* Video */

.videobox {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin: 40px;
    padding: 10px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Cards */

.card {
    box-shadow: 0px 0px 20px 0px #628ca598, 0px 0px 230px 0px #c9d0d4;
    width: 100%;
    margin-top: 55px;
    padding: 10px;
    padding-top: 3vw;
    padding-bottom: 3vw;
    background-color: rgb(248, 248, 248);
    border-radius: 10px;
}


/* Slideshow container */

.slideshow-containerPict {
    position: relative;
    margin: auto;
}


/* Next & previous buttons */

.prevPict,
.nextPict {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: gray;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


/* Position the "next button" to the right */

.nextPict {
    right: 0;
    border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */

.prevPict:hover,
.nextPict:hover {
    background-color: rgba(0, 0, 0, 0.137);
}


/* Caption text */

.textPict {
    color: #111111;
    font-size: 15px;
    padding: 8px 0px 8px 0px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}


/* Number text (1/3 etc) */

.numbertextPict {
    color: #1a1a1a;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    font-family: Arial, Helvetica, sans-serif;
}


/* The dots/bullets/indicators */

.dotPict {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.activePict,
.dotPict:hover {
    background-color: #717171;
}


/* Fading animation */

.fadePict {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 0.3s;
    animation-name: fade;
    animation-duration: 0.3s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}


/* Slideshow container for testimonials */

.slideshow-container {
    position: relative;
    padding-top: 10px;
}


/* Slides */

.mySlides {
    display: none;
    padding: 10px;
    text-align: center;
    font-size: calc(4px + 0.8vw);
}


/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: #888;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


/* Position the "next button" to the right */

.next {
    position: absolute;
    right: 0;
    border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}


/* The dot/bullet/indicator container */

.dot-container {
    text-align: center;
    padding: 10px;
}


/* The dots/bullets/indicators */

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}


/* Add a background color to the active dot/circle */

.activeDot,
.dot:hover {
    background-color: #717171;
}


/* Add an italic font style to all quotes */

q {
    font-style: italic;
}


/* Add a blue color to the author */

.author {
    color: cornflowerblue;
}


/* Style the tab */

.tab {
    float: left;
    width: 42%;
    height: 100%;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}


/* Style the buttons inside the tab */

.tab button {
    display: block;
    color: #333;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: calc(4px + 1vw);
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    background-color: transparent;
}


/* Change background color of buttons on hover */

.tab button:hover {
    color: #e83f3f;
}


/* Create an active/current "tab button" class */

.tab button.active {
    color: #316aad;
}


/* Style the tab content */

.tabcontent {
    padding: 0px;
    width: 100%;
    border-left: none;
    height: 100%;
    text-align: justify;
    background-color: transparent;
    border-radius: 5px;
    font-family: Helvetica, Verdana, Arial;
    font-style: normal;
    font-size: calc(4px + 0.8vw);
    margin-right: 20px;
}

div.allblock {
    text-align: left;
    width: 1100;
}

div.lblock {
    float: left;
    text-align: left;
    width: 850;
}

div.rblock {
    float: right;
    width: 250;
}

div.text {
    color: black;
    text-align: left;
    font-size: 17px;
    font-family: Helvetica, Verdana, Arial;
    font-style: normal;
    margin: 0 0 0 0;
    padding: 0 0 10px;
    font-size: calc(4px + 0.8vw);
}

a.text:link {
    color: #316AAD;
    font-size: 17px;
    font-family: Helvetica, Verdana, Arial;
    font-weight: bold;
    text-decoration: none;
    text-align: left;
}

a.text:visited {
    color: #316AAD;
    font-size: 17px;
    font-family: Helvetica, Verdana, Arial;
    font-weight: bold;
    text-decoration: none;
}

a.text:hover {
    color: red;
    font-size: 17px;
    font-family: Helvetica, Verdana, Arial;
    font-weight: bold;
    text-decoration: none;
}

ul.text {
    width: 700;
    background-color: white;
    color: black;
    text-align: left;
    font-size: 17px;
    font-family: Helvetica, Verdana, Arial;
    font-style: normal;
    margin: 0 0 0 0;
    padding: 0 0 10px;
}

h2.text {
    width: auto;
    font-family: Helvetica, Verdana, Arial;
    margin: 0 0 0 0;
    padding: 0 0 20px;
    color: #717070;
    text-align: left;
    font-size: calc(4px + 1vw);
    font-weight: bold;
}

h2.news {
    font-family: Georgia, Times;
    color: #717070;
    text-align: left;
    font-size: 25px;
    font-weight: normal;
}

div.news-text {
    font-family: Helvetica, Verdana, Arial;
    font-size: 15px;
    font-weight: normal;
    color: black;
    text-decoration: none;
    padding: 10px;
    margin: 10px;
    border-style: dotted;
    border-width: 1px;
    text-align: left;
}

ul.news {
    color: #717070;
    text-align: left;
    font-size: calc(4px + 0.8vw);
    font-family: Helvetica, Verdana, Arial;
    font-style: normal;
    margin: 0 0 0 20px;
    padding: 0 0 20px;
}

div.news-title {
    color: #373737;
    font-family: Helvetica, Verdana, Arial;
    font-size: 15px;
    font-weight: normal;
    text-align: left;
}

table.industries {
	border: none;
	margin: 35px;
	a{color: black; text-decoration: none;}
	a.visited{color: black; text-decoration: none;}
	a.hover{color: red; text-decoration: none;}
    font-family: Arial, Helvetica, sans-serif;
    font-size: calc(6px + 0.6vw);
/*	font-weight: bold; */
}

a.news:link {
    font-family: Helvetica, Verdana, Arial;
    font-size: 15px;
    text-align: left;
}

a.news:visited {
    color: #373737;
    font-family: Helvetica, Verdana, Arial;
    font-size: 15px;
    text-decoration: none;
    text-align: left;
}

@media only screen and (max-width: 768px) {
    .menu a,
    .menu a:hover {
        font-size: 2vw;
        margin-left: 5px;
    }
    .pageContent {
        width: 100%;
    }
    .displaybig {
        display: block;
    }
    .displaysmall {
        display: none;
    }
    .menu {
        width: 70%;
    }
    .floatingCard {
        padding-left: 5px;
        padding-right: 5px;
        margin-left: 10px;
        margin-right: 10px;
        width: 22%;
        left: 73vw;
    }
    .card {
        width: 70%;
        padding-left: 5px;
        padding-right: 5px;
        margin-left: 10px;
        margin-right: auto;
    }
    .center {
        width: 95%;
    }
    .whyus {
        width: 95%;
        flex-direction: column;
        margin: 0px;
    }
    .whyus-solo {
        margin: 0px;
    }
    .videobox {
        width: 100%;
        margin: 40px;
        padding: 10px;
        padding-top: 3vw;
        padding-bottom: 3vw;
    }
    .support-content {
        flex-direction: column;
    }
    .content {
        width: 100%;
        margin: 0px;
    }
}

@media screen and (max-width: 414px) {
    .pageContent {
        width: 100%;
    }
    .numbertextPict {
        font-size: 10px;
    }
    .titlewords {
        font-size: 6vw;
    }
    .dotPict {
        height: 10px;
        width: 10px;
    }
    .dot {
        height: 10px;
        width: 10px;
    }
    .menu a,
    .menu a:hover {
        font-size: 15px;
        margin-left: 5px;
    }
    .stickyContent {
        padding-top: 0px;
    }
    ul.news {
        font-size: 15px;
    }
    .WhatIsTab {
        flex-direction: column;
    }
    .tab {
        flex-direction: row;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }
    .tabcontent {
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
        width: 90%
    }
    .tab button {
        font-size: 10px;
        padding: 0px;
        padding-right: 10px;
    }
    .button {
        font-size: 15px;
    }
    .mySlides {
        font-size: 15px;
    }
    .card {
        margin-left: auto;
    }
    .displaybig {
        display: none;
    }
    .displaysmall {
        display: block;
    }
    /* On smaller screens, decrease text size */
    .prevPict,
    .nextPict,
    .textPict {
        font-size: 11px
    }
    .floatingCard {
        display: none
    }
    .floatingPhoneCard {
        display: block;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .card {
        width: 95%;
        margin-top: 10px;
        padding-top: 20px;
        padding-bottom: 10px;
    }
    .roworcolumn {
        flex-direction: column;
    }
    @viewport {
        width: device-width;
    }
    div.allblock {
        width: 100%;
        word-wrap: break-word;
    }
    div.text {
        text-align: left;
        word-wrap: break-word;
        font-size: 15px;
    }
    div.lblock {
        width: 100%;
        word-wrap: break-word;
    }
    div.rblock {
        display: none;
    }
    div.yashare-auto-init {
        display: none;
    }
    /*p{	width:100%; 
	 word-wrap:break-word;}*/
    a.text:link {
        width: auto;
    }
    a.text:visited {
        width: auto;
    }
    a.text:hover {
        width: auto;
    }
    ul.text {
        width: auto;
    }
    h2.text {
        word-wrap: break-word;
        font-size: 20px;
    }
    h2.news {
        width: 95%;
        word-wrap: break-word;
    }
    div.news-text {
        width: 95%;
        word-wrap: break-word
    }
    ul.news {
        width: 95%;
        word-wrap: break-word
    }
    div.news-title {
        width: 95%;
        word-wrap: break-word
    }
    a.news:link {
        width: 95%;
        word-wrap: break-word
    }
    a.news:visited {
        width: 95%;
        word-wrap: break-word
    }
    .mailpic {
        height: 15px;
    }
}


/* Title */

div.title {
    background-color: white;
    color: #316AAD;
    text-align: left;
    font: normal 50px Helvetica, Verdana, Arial;
    margin-left: auto;
    margin-right: auto;
    width: 55%;
}


/* РјРµРЅСЋ */

.menuBar {
    background-color: white;
    text-align: center;
    color: rgb(206, 206, 206);
    border-bottom: 1px solid #333;
    width: 100%;
    transition: 0.2s;
}


/* The sticky class is added to the header with JS when it reaches its scroll position */

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    left: 0;
}

.content {
    margin: 0;
}

.menu {
    margin: 20px 0;
    width: 55%;
    display: none;
}

.menu ul {
    width: auto;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 5px 0px 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    *display: inline;
    /* ie7 */
}

.menu a {
    color: #316AAD;
    font: 1.5vw Helvetica, Verdana, Arial;
    padding: 0 0 10px;
    margin-right: auto;
    text-decoration: none;
}

.menu a:hover {
    color: red;
    font: 1.5vw Helvetica, Verdana, Arial;
    padding: 0 0 10px;
    text-decoration: none;
}

.menu .cur {
    display: none;
}

div.footer {
    width: 1200;
    font-family: Helvetica, Verdana, Arial;
    font-size: 13px;
    font-weight: normal;
    color: gray;
    text-decoration: none;
    padding: 10px;
    margin: 10px;
    text-align: left;
}

@media only screen and (max-width: 820px) {
    .menu a,
    .menu a:hover {
        font-size: 2vw;
        margin-left: 5px;
        width: 70%;
    }
    .menu {
        width: 70%;
    }
}

@media screen and (max-width: 414px) {
    @viewport {
        width: device-width;
    }
    .sticky {
        position: fixed;
        top: 0;
        width: 100%;
    }
    .menuBar {
        display: none;
    }
    div.title {
        width: 100%;
        background-color: white;
        left: 0;
        color: #316AAD;
        text-align: left;
        font: normal 1em Helvetica, Verdana, Arial;
        margin: 0 0 0 0px;
    }
    /* РјРµРЅСЋ */
    .menu {
        display: inline;
        position: relative;
        min-height: 40px;
    }
    .menu ul {
        width: 160px;
        padding: 2px 0;
        position: absolute;
        top: 0;
        left: 20px;
        border: solid 1px #aaa;
        background: #FAFAFA url(/icon-menu.png) no-repeat 10px 11px;
        border-radius: 5px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, .3);
    }
    .menu li {
        display: none;
        /*  СЃРєСЂС‹С‚СЊ РІСЃРµ <li> РїСѓРЅРєС‚С‹ */
    }
    .menu .cur {
        display: block;
        /* РїРѕРєР°Р·С‹РІР°С‚СЊ С‚РѕР»СЊРєРѕ С‚РµРєСѓС‰РёРµ Р°РєС‚РёРІРЅС‹Рµ <li> РїСѓРЅРєС‚С‹ */
        background-image: none;
        background: none;
        text-align: left;
    }
    .menu .cur a {
        font: normal 1em Helvetica, Verdana, Arial;
        text-align: left;
        background: none;
        padding: 5px 0px 0px 55px;
        text-decoration: none;
        font-size: 15px;
    }
    .menu a {
        font: normal 1em Helvetica, Verdana, Arial;
        display: block;
        text-decoration: none;
        text-align: left;
    }
    /* РїСЂРё РЅР°РІРµРґРµРЅРёРё РЅР° РїСѓРЅРєС‚С‹ РјРµРЅСЋ */
    .menu a:hover {
        font: normal 1em Helvetica, Verdana, Arial;
        text-decoration: none;
        text-align: left;
        color: red;
    }
    .cur a:hover {
        font: normal 1em Helvetica, Verdana, Arial;
        text-decoration: none;
        text-align: left;
        color: #316AAD;
        ;
    }
    .menu ul:hover li {
        font: normal 1em Helvetica, Verdana, Arial;
        display: block;
        text-decoration: none;
        text-align: left;
    }
    div.footer {
        width: 100%;
        font-family: Helvetica, Verdana, Arial;
        font-weight: normal;
        color: gray;
        text-decoration: none;
        padding: 10px;
        margin: 10px;
        text-align: left;
    }
}