.VSM-main-div {
    display: inline-block;
    float: left;
    width: 100%;
    overflow: auto;
    height: 100%;
    font-family: 'PT Russia', sans-serif;
}

.VSM-h1 {
    display: inline-block;
    float: left;
    width: 100%;
    text-align: center;
    color: #fff;
}

.VSM-main-header-div {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 50px;
    background: url('/VSM.Web.Plugins.ProHtmlEditor/ProHtmlEditorHome/DownloadResourceImg?Guid=a6b1bf15-d022-44d4-8fe1-630a840cbb6e') no-repeat 50% 50%
}

.VSM-main-header-logo-img {
    display: inline-block;
    float: left;
    width: 240px;
}

.VSM-h1-container-div {
    display: flex;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	width: calc(100% - 240px);
	max-width: 100%;
	min-height: 295px;
}

.VSM-main-content-div {
     display: flex;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
    float: left;
    width: 100%;
    background-color: #f4f7f9;
    padding: 50px 20px;
    flex-direction: column;
}

.VSM-tiles-list-div {
    display: inline-block;
    float: left;
    width: 1000px;
    max-width: 100%;
}

.VSM-tile-div {
    display: inline-block;
    float: left;
    width: 450px;
    height: 200px;
    background-color: #fff;
    padding: 25px;
    cursor: pointer;
    box-shadow: 0px 0px 0px rgba(0,0,0,0.25), 4px 6px 6px rgba(0,0,0,0.22);
    margin: 0px 25px 25px 0px; 
}

.VSM-tile-icon-div {
     display: flex;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
    float: left; 
    width: 100px;
    height: 100%;
    fill: #4caf50;
}

.VSM-tile-text-container-div {
    display: flex;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
    float: left; 
    width: calc(100% - 100px);
    height: 100%;
    flex-direction: column;
}

.VSM-tile-name-span {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 0px 0px 10px 20px;
    font-size: 2.6rem;
    font-weight: bold;
    color: #333;
}

.VSM-tile-description-span {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 0px 20px;
    font-size: 1.7rem;
    color: #4f4f4f;
}

.VSM-tile-inverted {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #fff), color-stop(50%, #4caf50));
    background-image: -webkit-linear-gradient(bottom, #fff 50%, #4caf50 50%);
    background-image: -o-linear-gradient(bottom, #fff 50%, #4caf50 50%);
    background-image: linear-gradient(to top, #fff 50%, #4caf50 50%);
    background-position: 50% 99%;
    -webkit-background-size: 200% 205%;
    background-size: 200% 205%;
    webkit-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    text-decoration: none;
    border-bottom: 0;
}

.VSM-tile-inverted:hover {
    background-position: 50% 0;
}

.VSM-tile-inverted:hover .VSM-tile-icon-div {
    fill: #fff;
}

.VSM-tile-inverted:hover .VSM-tile-text-container-div,
.VSM-tile-inverted:hover .VSM-tile-description-span,
.VSM-tile-inverted:hover .VSM-tile-name-span{
    color: #fff;
}

.VSM-secondary-header-div {
    display: flex;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
    float: left;
    width: 100%;
    min-height: 300px;
    position: relative;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, .1);
}

.VSM-secondary-header-div:before {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    opacity: .15;
    background: url(/VSM.Web.Plugins.ProHtmlEditor/ProHtmlEditorHome/DownloadResourceImg?Guid=50cb6d74-e6a6-47a1-a648-fcc59fa8f6d9) no-repeat 100% 100%;
    -webkit-background-size: contain;
    background-size: contain;
}

.VSM-secondary-header-div .VSM-h1-container-div {
    max-width: 100%;
    width: 1440px;
    z-index: 1;
    position: relative;
    padding: 30px;
    flex-direction: column;
}

.VSM-secondary-header-div .VSM-h1 {
    text-align: left;
    color: #333;
    font-size: 7rem;
    font-weight: bold;
    width: 100%;
    margin: 0px 0px 25px 0px;
}

.VSM-secondary-page-description-span {
    display: inline-block;
    float: left;
    width: 100%;
    color: #4f4f4f;
    font-size: 2.3rem;
}

.VSM-main-small-header-div {
    display: flex;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: start;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
    float: left;
    width: 100%;
    padding: 20px 30px;
    background: #4caf50;
}

.VSM-main-small-header-div .VSM-main-header-logo-img {
    width: 50px;
}

.VSM-small-header-text-div {
    display: inline-block;
    float: left;
    min-height: 60px;
    padding: 0px 10px;
    width: 270px;
}

.VSM-small-header-text-span {
    text-align: left;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    width: 100%;
}

.VSM-header-nav-bar-div {
    display: inline-block;
    float: left;
    width: calc(100% - 320px);
}

.VSM-header-nav-bar-item-div {
    display: inline-block;
    margin: 0;
    padding: 0 10px;
}

.VSM-header-nav-bar-item-a {
    font-size: 2rem;
    font-weight: 500;
    line-height: 16px;
    line-height: 1rem;
    display: inline-block;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    white-space: nowrap;
    color: #fff;
    border-bottom: 1px solid transparent;
}

.VSM-header-nav-bar-item-a:hover {
    color: #fff;
}

.VSM-main-header-logo-div {
    display: inline-block;
    float: left;
}

.VSM-main-header-logo-a {
    display: inline-block;
    float: left;
    color: #ddd;
    text-decoration: none;
    cursor: pointer;
}

.VSM-tile-a {
    text-decoration: none;
    display: inline-block;
    float: left;
}

.VSM-bread-crumbs-list-div {
    display: inline-block;
    float: left;
    width: 1000px;
    max-width: 100%;
    margin: 20px 0px;
}

.VSM-bread-crumb-item-div {
    display: inline-block;
    float: left;
}

.VSM-bread-crumb-item-a,
.VSM-bread-crumb-item-span {
    display: inline-block;
    float: left;
    color: #4caf50;
    text-decoration: none;
    font-size: 1.8rem;
}

.VSM-bread-crumb-item-a:hover {
    color: #4caf50;
}

.VSM-bread-crumb-item-separator-span {
    display: inline-block;
    float: left;
    padding: 0px 5px;
    color: #4caf50;
    font-size: 1.8rem;
}

.VSM-bread-crumbs-list-label-span {
    display: inline-block;
    float: left;
    font-size: 1.8rem;
    padding: 0px 10px 0px 0px;
}

.VSM-main-footer {
    display: flex;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
    float: left;
    width: 100%;
    padding: 96px 0 88px 0;
    background-color: #f2f2f2;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, .1);
}

.VSM-main-footer-title-div {
    display: inline-block;
    float: left;
}

.VSM-main-footer-title-wrapper-div,
.VSM-main-footer-title-wrapper-without-logo-div {
    position: relative;
    margin-bottom: 24px;
    padding-left: 88px;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    float: left;
    width: 100%;
    flex-direction: column;
}

.VSM-main-footer-title-wrapper-div:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 65px;
    height: 80px;
    content: '';
    background: url(/VSM.Web.Plugins.ProHtmlEditor/ProHtmlEditorHome/DownloadResourceImg?Guid=861089f3-c24c-4192-804d-5906e80de7ae) no-repeat 50% 50%;
    -webkit-background-size: contain;
    background-size: contain;
}

.VSM-main-footer-title-span {
    display: inline-block;
    float: left;
    width: 250px;
    font-size: 1.5rem;
    margin: 0px 0px 15px 0px;
    font-weight: bold;
}

.VSM-main-footer-title-gray-span {
    display: inline-block;
    float: left;
    width: 250px;
    color: #828282;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2.3rem;
}

.VSM-main-footer-content-div {
    display: inline-block;
    float: left;
    width: 1000px;
    max-width: 100%;
}

.VSM-main-footer-social-buttons-list-div {
    display: inline-block;
    float: left;
    width: 250px;
}

.VSM-main-footer-social-button-a {
    display: inline-block;
    float: left;
    width: 46px;
    height: 46px;
    background-color: #4f4f4f;
    border-radius: 50%;
    fill: #fff;
    padding: 10px;
    margin: 0px 15px 15px 0px;
    
}

.VSM-main-footer-social-button-a:hover {
    background-color: #4caf50;
}

.VSM-main-footer-social-button-a:active {
    margin-top: 2px;
}

.VSM-main-footer-title-a,
.VSM-main-footer-title-a:hover {
    color: #4caf50;
}

