@font-face {
    font-family: 'OpenSans';
    font-style: normal;
    src: url('../fonts/opensans-regular.woff');
}

@font-face {
    font-family: 'OpenSans';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/opensans-light.woff');
}

@font-face {
    font-family: 'OpenSans';
    font-style: normal;
    font-weight: bold;
    src: url('../fonts/opensans-bold.woff');
}

@font-face {
    font-family: 'OpenSans';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/opensans-semibold.woff');
}

body {
    font-family: "OpenSans", sans-serif;
    font-size: 16px;
}

a:link, a:visited {
    color: #3d3d3d;
    text-decoration: none;
}

a:hover {
    color: #007eea;
    text-decoration: none;
}

a {
    color: #3d3d3d;
    text-decoration: none;
    transition: all 0.2s ease;
    outline: none !important;
}

img {
    max-width: 100%;
    border: 0;
}

.header {
    display: flex;
    width: 100%;
    padding: 30px 0;
    align-items: center;
}

.header .logoBox {
    /*flex: 1;*/
}

.logo {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 900;
}

.logo img {
    margin-right: 20px;
}

.headerTools {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.languageBox {
    display: flex;
    justify-content: flex-end;
}

.languageSelector {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin-right: 20px;
}

.languageSelector > li a {
    padding: 5px 8px;
    display: block;
    text-transform: uppercase;
    font-weight: 100;
}

.languageSelector > li.active a {
    font-weight: bold;
}

.specialView .eyeIcon {
    font-size: 25px;
    cursor: pointer;
}

.searchBox {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.searchBox .searchInput {
    border: 1px solid #868683;
    padding: 5px 35px 5px 8px;
    border-radius: 3px;
}

.searchBox .searchBtn {
    border: none;
    background: none;
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.relative {
    position: relative !important;
}

.mainMenu {
    position: relative;
    z-index: 1;
    padding: 0;
    font-size: 14px;
    margin: 0;
}

.mainMenu ul {
    padding: 0;
}

.mainMenu li {
    list-style: none;
    /*display: inline-block;*/
    float: left;
}

.mainMenu li a {
    color: #0072d3;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 15px 25px;
    text-transform: uppercase;
}

.mainMenu > li > a:hover, .mainMenu > li.active > a, .mainMenu > li:hover > a {
    background: #0072d3;
    color: #fff;
}

.mainMenu .subMenu {
    display: none;
    position: absolute;
    background: #0072d3;
    color: #fff;
    width: 250px;
}

.mainMenu .subMenu li {
    display: block;
    width: 100%;
    position: relative;
}

.mainMenu .subMenu li a {
    color: #fff;
}

.mainMenu .subMenu li a:hover, .mainMenu .subMenu li:hover, .mainMenu .subMenu li.active a {
    background: #1158a9;
    color: #fff;
}

.mainMenu li:hover > ul.subMenu {
    display: block;
}

.mainMenu .subMenu li .subMenu {
    margin-left: 250px;
    top: 0;
}

.mainMenu .subMenu .hasChild > a:after {
    content: "\f054";
    color: #fff;
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -7px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.marger {
    margin-bottom: 20px;
}

.footerMenu {
    padding: 0;
}

.footerMenu > li {
    list-style: none;
    float: left;
    padding: 0 10px;
    max-width: 200px;
}

.footerMenu > li > a {
    color: #3a3a3a;
    text-decoration: none;
    font-weight: bold;
    display: block;
    text-transform: uppercase;
    padding: 20px 0;
}

.footerMenu .subMenu {
    padding: 0;
}

.footerMenu .subMenu li {
    list-style: none;
}

.footerMenu .subMenu li a {
    padding: 8px 0;
    display: block;
    text-decoration: underline;
}

.banner {
    background: url("../img/banner.jpg") no-repeat;
    width: 100%;
    background-size: cover;
    color: #fff;
    padding: 10px 0 30px 0;
}

.banner .container {
    padding-left: 80px;
}

.helpBox {
    padding: 50px 0;
}

.helpBox h1 {
    font-size: 40px;
    text-shadow: 2px 2px 5px #000;
}

.helpBox p {
    font-size: 25px;
    padding: 10px 0;
    text-shadow: 2px 2px 5px #000;
}

.btn-blue, a.btn-blue {
    background: #007eea;
    text-transform: uppercase;
    color: #fff !important;
    border-radius: 0;
    padding: 10px 40px;
}

.btn-blue:hover {
    background: #00509a;
}

.smallInfo {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.smallInfo .shareList {
    flex: 1;
}

.upper {
    text-transform: uppercase !important;
}

.section {
    padding: 50px 0;
}

.section .container {
    position: relative;
}

.section .container::after {
    content: '';
    position: absolute;
    width: 100%;
    bottom: -50px;
    border-bottom: 1px solid #b6b6b6;
}

.section.last .container::after {
    display: none;
}

.grayBox {
    background: #f2f4f5;
}

.pseudoTitle {
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.card {
    background: #fff;
    display: block;
    margin: 20px 0;
    font-size: 14px;
    color: #000 !important;
    border-radius: 5px;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 0 20px #c3c3c3;
    transform: scale(1.03);
}

.card img {
    width: 100%;
}

.card .cardDetail {
    padding: 0 20px 20px 20px;
    height: 170px;
    position: relative;
}

.card .cardDetail h1 {
    font-size: 14px;
    font-weight: bold;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    max-height: 46px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card .cardDetail p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card .cardDetail .date {
    color: #a6adb4;
    font-style: italic;
    position: absolute;
    bottom: 15px;
}

.commissionDescription {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 15;
    -webkit-box-orient: vertical;
}

.recommendationDescription {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-align: center;
}

.linkBtn {
    padding-bottom: 5px;
    border-bottom: 2px solid #007eea;
}

.pull-center {
    display: table;
    margin: 0 auto;
}

.content {
    margin-top: 20px;
    min-height: 200px;
}

.footer {
    background: url("../img/footer_bg.png") center bottom #f2f4f5 no-repeat;
    margin-top: 30px;
}

.footer .container {
    padding: 50px 0;
}

.feedback-form {
    position: relative;
}

.form_loading {
    position: absolute;
    background: rgba(255, 255, 255, 0.70);
    z-index: 5;
    width: 100%;
    height: 100%;
    display: none;
}

.text-bold {
    font-weight: bold;
}

.form_loading h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.grayInputs input,
.grayInputs textarea {
    width: 100%;
    background: #eee;
    border: none;
    padding: 7px 15px;
}

.authorityScroll .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 270px;
    text-align: center;
}

.authorityScroll .swiper-slide img {
    margin-bottom: 20px;
	height: 70px;
}

.linksSlider .buttons {
    margin-top: 6px;
}

.linksSlider .swiper-button-next {
    right: -27px;
}

.linksSlider .swiper-button-prev {
    left: -27px;
}

.shareLinks .social-share {
    padding: 0;
}

.shareLinks .social-share li {
    list-style: none;
    float: left;
}

.shareLinks .social-share li a i {
    color: #fff;
    padding: 10px 20px;
}

.miniGallery {
    display: flex;
    flex-wrap: wrap;
}

.miniGallery a > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    padding: 8px;
}

.miniGallery a {
    position: relative;
}

.miniGallery a:hover:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #007eea;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.miniGallery a:hover:before {
    content: '\f002';
    font-family: "Font Awesome 5 Free";
    position: absolute;
    color: #fff;
    font-size: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.miniGallery .big {
    width: 60%;
}

.miniGallery .small {
    width: 40%;
}

.simple_grid td {
    border: none !important;
    padding: 0 !important;
}

.title {
    font-size: 24px;
    font-weight: bold;
}

.images_list {
    margin: 20px 0;
    text-align: center;
}

.images_list > a {
    display: inline-block;
    position: relative;
}

.images_list > a:hover {
    opacity: 0.8;
}

.images_list img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin: 1px;
}

.images_list a._video img {
    background: #0e79dc;
}

.images_list a._video::before {
    content: '\f144';
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    color: #fff;
    opacity: 0.6;
}

.placeholderText {
    text-align: center;
    color: #797979;
    font-size: 30px;
}

.placeholderText i {
    font-size: 150px;
    margin-bottom: 20px;
}

.devLogo {
    width: 100px;
    margin: 0 10px 0 30px;
}

.footerContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
}