@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    background: #e5e5e5;
    font-family: 'Open Sans', sans-serif;
}

html {
    height: 100%;
}

* {
    text-decoration: none !important;
    outline: none !important;
}

.row {
    margin-left: -10px;
    margin-right: -10px;
}

.row>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

/* Scrollbars START ------------------------------ */

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2);
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border: solid 1px rgba(0, 0, 0, 0.2);
}

*::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
}

*::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* Scrollbars END ------------------------------ */

/* SOCIAL COLORS START */

.so-icon {
    background-color: #7d7d7d;
}

.so-facebook {
    background-color: #3b5998;
}

.so-twitter {
    background-color: #55acee;
}

.so-instagram {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.so-pinterest {
    background-color: #cb2027;
}

.so-linkedin {
    background-color: #0077b5;
}

.so-facebook-messenger {
    background-color: #448aff;
}

.so-youtube {
    background-color: #cc181e;
}

.so-reddit {
    background-color: #ff4500;
}

.so-tumblr {
    background-color: #32506d;
}

.so-digg {
    background-color: #262626;
}

.so-google-plus {
    background-color: #de5446;
}

.so-whatsapp {
    background-color: #25d366;
}

.so-vk {
    background-color: #4c6c91;
}

.so-weibo {
    background-color: #ff9933;
}

.so-odnoklassniki {
    background-color: #d7772d;
}

.so-xing {
    background-color: #1a7576;
}

.so-blogger {
    background-color: #ff8000;
}

.so-flipboard {
    background-color: #ff8000;
}

.so-delicious {
    background-color: #205cc0;
}

.so-weixin {
    background-color: #4ec034;
}

/* SOCIAL COLORS END */

/* PANEL TEXT START */

.panel-text {
    font-size: 14px;
    line-height: 20px;
    color: #444;
    margin-bottom: -10px;
    font-weight: 400;
}

.panel-text img {
    max-width: 100%;
}

.panel-text h1 {
    display: block;
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: left;
    color: #000;
}

.panel-text h2 {
    display: block;
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: left;
    color: #000;
}

.panel-text h3 {
    display: block;
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: left;
    color: #000;
}

.panel-text h4 {
    display: block;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: left;
    color: #000;
}

.panel-text h5 {
    display: block;
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: left;
    color: #000;
}

.panel-text h6 {
    display: block;
    font-size: 1em;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: left;
    color: #000;
}

.panel-text p {
    display: block;
    margin-bottom: 10px;
}

.panel-text b {
    font-weight: 600;
}

.panel-text ul {
    padding: 0;
    list-style: none;
    display: block;
    margin-bottom: 10px;
    margin-left: 10px;
}

.panel-text ul li {
    display: block;
    margin-bottom: 5px;
    position: relative;
    padding-left: 12px;
}

.panel-text ul li:before {
    content: "\f45c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 5px;
    transform: rotate(45deg);
    color: #bbb;
}

/* PANEL TEXT END */

/* Burger Nav General START ------------------------------ */

.burger-nav {
    display: block;
    position: relative;
    padding: 15px 0;
    background: #fff;
}

.burger-nav.transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: none;
}

.burger-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 0;
    background: #fff;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    animation: bn-fixed-anim;
    animation-duration: 0.2s;
}

@keyframes bn-fixed-anim {
    0% {
        margin-top: -100%;
    }

    100% {
        margin-top: 0;
    }
}

/* Burger Nav General END ------------------------------ */

/* Burger Nav Flex START ------------------------------ */

.burger-nav .bn-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.burger-nav .bn-flex>.left,
.burger-nav .bn-flex>.right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Burger Nav Flex END ------------------------------ */

/* Burger Nav Logo START ------------------------------ */

.burger-nav .bn-logo {
    display: block;
    margin-right: 20px;
}

.burger-nav .bn-logo>img {
    width: 200px;
}

.burger-nav.transparent .bn-logo>img {
    filter: contrast(0) brightness(2);
}

.burger-nav.fixed .bn-logo>img {
    filter: none;
}

/* Burger Nav Logo END ------------------------------ */

/* Burger Nav Elements START ------------------------------ */

.burger-nav .bn-open,
.burger-nav .bn-close {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    line-height: 30px;
    min-width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: #222 !important;
}

.burger-nav.transparent .bn-open {
    color: #fff !important;
}

.burger-nav.fixed .bn-open {
    color: #222 !important;
}

.burger-nav .bn-links-desktop {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.burger-nav .bn-links-desktop>a {
    display: block;
    position: relative;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #888 !important;
    padding: 5px 0;
    margin-right: 20px;
    transition: 0.2s ease 0s;
}

.burger-nav .bn-links-desktop>a:last-child {
    margin-right: 0;
}

.burger-nav.transparent .bn-links-desktop>a {
    color: #fff !important;
}

.burger-nav.fixed .bn-links-desktop>a {
    color: #888 !important;
}

.burger-nav .bn-links-desktop>a:hover {
    color: #222 !important;
}

.burger-nav.transparent .bn-links-desktop>a:hover {
    color: #bbb !important;
}

.burger-nav.fixed .bn-links-desktop>a:hover {
    color: #222 !important;
}

/* Burger Nav Elements END ------------------------------ */

/* Burger Nav Mobile Menu START ------------------------------ */

.bn-menu-container {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
}

.bn-menu-container.active {
    opacity: 1;
    pointer-events: all;
}

.bn-menu-box {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(100%, 0);
    width: 400px;
    max-width: 100vw;
    height: 100%;
    overflow: hidden;
    z-index: 10;
}

.bn-menu-box.left {
    right: unset;
    left: 0;
    transform: translate(-100%, 0);
}

.bn-menu-container.active .bn-menu-box {
    transform: translate(0, 0);
}

.bn-menu {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    padding: 20px;
    overflow-y: auto;
}

.bn-menu .bn-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.bn-menu .bn-menu-links>a {
    display: block;
    position: relative;
    padding: 10px 0;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff !important;
    padding-right: 30px;
    transition: 0.2s ease 0s;
}

.bn-menu .bn-menu-links>a:not(:last-child):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.bn-menu .bn-menu-links>a:after {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    position: absolute;
    top: 50%;
    right: 0;
    width: 25px;
    text-align: center;
    transform: translate(0, -50%);
}

.bn-menu .bn-menu-links>a.active:after {
    content: "\f107";
}

.bn-menu .bn-menu-links>a:last-child {
    margin-bottom: 0;
}

.bn-menu .bn-menu-link-dropdown {
    display: none;
    padding: 15px 10px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.bn-menu .bn-menu-link-dropdown>a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 5px 10px;
    margin-bottom: 10px;
    color: #fff !important;
    transition: 0.2s ease 0s;
}

.bn-menu .bn-menu-link-dropdown>a:last-child {
    margin-bottom: 0;
}

.bn-menu .bn-menu-link-dropdown>a:hover {
    color: #222 !important;
}

/* Burger Nav Mobile Menu END ------------------------------ */

/* Main Button START ------------------------------ */

.main-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 11px 15px;
    border-radius: 0;
    overflow: hidden;
    background: #01628B;
    border: none;
}

.main-btn>span {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    white-space: nowrap;
    color: #fff !important;
    text-transform: uppercase;
}

.main-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #017DB1;
    opacity: 0;
    z-index: 1;
    transition: 0.2s ease 0s;
}

.main-btn:hover:after {
    opacity: 1;
}

.main-btn.full {
    display: flex;
    width: 100%;
}

.main-btn.small {
    font-size: 12px;
    line-height: 18px;
    padding: 5px 10px;
}

/* Main Button END ------------------------------ */

/* Spaces START ------------------------------ */

.smt {
    margin-top: 40px;
}

.smb {
    margin-bottom: 40px;
}

.smth {
    margin-top: 20px;
}

.smbh {
    margin-bottom: 20px;
}

.dmt {
    margin-top: 20px;
}

.dmb {
    margin-bottom: 20px;
}

.dml {
    margin-left: 20px;
}

.dmr {
    margin-right: 20px;
}

.dmth {
    margin-top: 10px;
}

.dmbh {
    margin-bottom: 10px;
}

.dmlh {
    margin-left: 10px;
}

.dmrh {
    margin-right: 10px;
}

.section-colored {
    background: #005072;
    padding: 40px 0;
}

/* Spaces END ------------------------------ */

/* Contact Nav START ------------------------------ */

.contact-nav {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    border-top: solid 1px #ddd;
}

.contact-nav a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    background: #fff;
    border-right: solid 1px #ddd;
}

.contact-nav a:last-child {
    border: none;
}

.contact-nav a i {
    font-size: 20px;
    line-height: 26px;
    display: block;
    color: #01628B !important;
}

.contact-nav a span {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #222 !important;
}

/* Contact Nav END ------------------------------ */

/* Pagination START ------------------------------ */

.pagination {
    display: block;
    width: 100%;
    padding: 0;
    margin: 10px 0;
}

.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination ul li {
    margin: 5px;
    display: block;
}

.pagination ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px 15px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    border-radius: 0;
    background: #fff;
    border: solid 1px #ddd;
    color: #222 !important;
}

.pagination ul li a:hover {
    background: #eee;
}

.pagination ul li.active a {
    background: #eee;
}

/* Pagination END ------------------------------ */

/* Main Dropdown START ------------------------------ */

.main-dropdown {
    display: block;
    position: relative;
}

.main-dropdown>.dropdown-toggle {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #222 !important;
    white-space: nowrap;
}

.main-dropdown>.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: none !important;
    margin: 0;
    background: #fff;
    border: solid 1px #ddd;
    padding: 5px 0;
    min-width: unset;
    width: auto;
    border-radius: 0;
}

.main-dropdown>.dropdown-menu>a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 10px;
    color: #222 !important;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
}

.main-dropdown>.dropdown-menu>a:hover {
    background: #eee;
}

/* Main Dropdown END ------------------------------ */

/* Form Group START ------------------------------ */

.form-group {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.form-group>input,
.form-group>textarea,
.form-group>.select2-container .select2-selection--single {
    display: block;
    width: 100%;
    border: solid 1px #bbb;
    border-radius: 0;
    padding: 10px 15px;
    resize: none;
    font-size: 14px;
    line-height: 20px;
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0;
    color: #000;
}

.form-group>input:focus,
.form-group>textarea:focus {
    border-color: #01628B;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    opacity: 1;
    color: #888;
}

.form-label {
    display: block;
    font-size: 10px;
    line-height: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
}

.form-group input.error-label,
.form-group textarea.error-label {
    border-color: firebrick;
}

.form-group span.error-label {
    font-size: 12px;
    line-height: 18px;
    color: firebrick;
}

.form-rating ~ .error-label {
    display: block;
    margin-top: -10px;
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 18px;
    color: firebrick;
}

.ctxt {
    display: block;
    width: 100%;
    text-align: right;
    font-size: 12px;
    line-height: 18px;
    color: #888;
}

/* Form Group END ------------------------------ */

/* Modal Share START ------------------------------ */

.modal-share {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.modal-share a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #222 !important;
    width: 100%;
    padding-right: 30px;
    position: relative;
    border-bottom: solid 1px #eee;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.modal-share a:after {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    transition: 0.2s ease 0s;
}

.modal-share a:hover:after {
    right: 10px;
}

.modal-share a i {
    min-width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 16px;
    line-height: 22px;
}

#copy_box {
    background: #fff;
    border: solid 1px #eee;
    padding: 10px 15px;
    position: relative;
    cursor: pointer;
}

#copy_box:hover {
    background: #eee;
}

#copy_box small {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #888;
    margin-bottom: 5px;
    pointer-events: none;
}

#copy_box input {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    pointer-events: none;
    position: absolute;
    opacity: 0;
}

#copy_box span {
    font-size: 14px;
    line-height: 20px;
    color: #222;
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Modal Share END ------------------------------ */

/* Modal START ------------------------------ */

.modal {
    z-index: 99999 !important;
}

.modal-content {
    padding: 0;
    border-radius: 0;
    background: #fff;
    border: none;
    z-index: 99999;
}

.modal-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: solid 1px #ddd;
}

.modal-top h2 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.modal-top a {
    font-size: 16px;
    line-height: 22px;
    color: #888 !important;
}

.modal-top a:hover {
    color: #222 !important;
}

.modal-inner {
    padding: 15px;
}

/* Modal END ------------------------------ */

/* Message Box START ------------------------------ */

.msg-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 10px;
    background: #fff;
    border: solid 1px #ddd;
}

.msg-box i {
    min-width: 30px;
    height: 30px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 14px;
    line-height: 20px;
    background: lightgreen;
}

.msg-box span {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #222;
}

/* Message Box END ------------------------------ */

/* Checkbox Group START ------------------------------ */

.cbox-group {
    display: block;
    position: relative;
}

.cbox-group input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.cbox-group label {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

.cbox-group label>span:first-child {
    min-width: 16px;
    height: 16px;
    border: solid 1px #ccc;
    background: #fff;
    margin-right: 10px;
    position: relative;
}

.cbox-group label>span:first-child:after {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    line-height: 20px;
    opacity: 0;
}

.cbox-group input:checked~label>span:first-child:after {
    opacity: 1;
}

.cbox-group input:checked~label>span:first-child {
    border-color: #222;
    background: #222;
}

.cbox-group label>span:last-child {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #222;
}

/* Checkbox Group END ------------------------------ */

/* Main Slider START ------------------------------ */

.main-slider-container {
    width: 100%;
    position: relative;
    box-shadow: 0 10px 10px -10px #000000;
}

.main-banner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(520/1280*100%);
}

.main-banner>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-slider-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    pointer-events: none;
    opacity: 1;
    transition: 0.2s ease 0s;
}

.main-slider-container:hover .main-slider-buttons {
    opacity: 1;
}

.main-slider-buttons>div {
    width: 30px;
    height: 60px;
    /* background: rgba(0, 0, 0, 0.5); */
    cursor: pointer;
    position: relative;
    pointer-events: all;
    margin: 0 5px;
}

.main-slider-buttons>div:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 42px;
    line-height: 58px;
    color: #fff;
    text-shadow: 0px 1px 3px rgba(0,0,0,0.5);
}

.main-slider-buttons>div.prev:before {
    content: "\f104";
}

.main-slider-buttons>div.next:before {
    content: "\f105";
}

/* Main Slider END ------------------------------ */

.page-nav-top {
    background: #002C40;
}

.pnt-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    padding-left: calc(60px + 20px);
    padding-right: calc(60px + 20px + 20px);
    background: #005072;
    position: relative;
}

.pnt-flex:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(60px - 25px);
    height: 100%;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    background: #002C40;
}

.pnt-flex:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(60px - 25px);
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 100% 50%);
    background: #002C40;
}

.pnt-flex>.left-arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    background: #EC0228;
    clip-path: polygon(0 0, 25px 0, 100% 50%, 25px 100%, 0 100%, calc(100% - 25px) 50%);
}

.pnt-flex>.right-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: #EC0228;
    clip-path: polygon(0 0, 25px 0, 100% 50%, 25px 100%, 0 100%, calc(100% - 25px) 50%);
}

.pnt-flex>.right-arrow-second {
    position: absolute;
    top: 0;
    right: 24px;
    width: 60px;
    height: 100%;
    background: #01628B;
    clip-path: polygon(0 0, 25px 0, 100% 50%, 25px 100%, 0 100%, calc(100% - 25px) 50%);
}

.pnt-flex>.left,
.pnt-flex>.right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.pnt-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.pnt-social>a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #005072 !important;
    background: rgba(255, 255, 255, 0.6);
    min-width: 24px;
    height: 24px;
    border-radius: 2px;
    transition: 0.2s ease 0s;
}

.pnt-social>a:hover {
    background: #fff;
}

.pnt-social>a:not(:last-child) {
    margin-right: 5px;
}

.pnt-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.pnt-contact>i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 2px;
    font-size: 10px;
    line-height: 16px;
    margin-right: 6px;
    color: #005072;
}

.pnt-contact>a {
    display: block;
    font-size: 15px;
    line-height: 21px;
    color: #fff !important;
}

.pnt-contact>a:hover {
    text-decoration: underline !important;
}

.page-main-nav {
    padding: 20px 0;
    background: #e5e5e5;
    z-index: 99;
    position: relative;
}

.pmn-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pmn-flex>.left,
.pmn-flex>.right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.page-logo {
    display: block;
}

.page-logo img {
    width: 260px;
}

.page-links {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    background: #01628B;
}

.page-links>.item {
    display: block;
    position: relative;
}

.page-links>.item>a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    padding: 10px 20px;
    transition: 0.2s ease 0s;
}

.page-links>.item.alternate>a {
    background: #EC0228;
}

.page-links>.item>.menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #01628B;
    margin-top: 10px;
    transition: 0.2s ease 0s;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.page-links>.item:hover>.menu {
    margin: 0;
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.page-links>.item>.menu>a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff !important;
    padding: 10px 15px;
    white-space: nowrap;
    transition: 0.2s ease 0s;
}

.page-links>.item>.menu>a:hover {
    background: #017DB1;
}

.page-links>.item>.menu a:not(:last-child) {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}

.page-links>.item>.menu>a {
    border-top: solid 1px rgba(255, 255, 255, 0.2);
}

.page-links>.item:hover>a,
.page-links>.item>a.active {
    background: #017DB1;
}

.page-links>.item.alternate:hover>a {
    background: #222;
}

.page-links>.item:not(:last-child)>a {
    border-right: solid 1px rgba(0, 0, 0, 0.2);
}

.page-links>.item:not(:first-child)>a {
    border-left: solid 1px rgba(255, 255, 255, 0.2);
}

.service-item {
    display: block;
    margin-bottom: 20px;
    box-shadow: 0 10px 10px -10px #000000;
}

.service-item>.img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(720/1280*100%);
}

.service-item>.img>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s ease 0s;
    transform: scale(1.01);
}

.service-item>.img:hover>img {
    transform: scale(1.1);
}

.service-item>.title {
    display: block;
    padding: 10px 15px;
    background: #01628B;
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.service-item>.title>a {
    color: #fff !important;
}

.service-item>.title>a:hover {
    text-decoration: underline !important;
}

.service-item>.content {
    display: block;
    background: linear-gradient(#fff, #eee);
    border: solid 2px #fff;
    border-bottom: solid 4px #005072;
    padding: 15px;
}

.service-item>.content>.desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 20px;
    color: #666;
}

.main-title {
    display: block;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 20px;
    position: relative;
}

.main-title.colored {
    color: #017DB1;
}

.main-title.white {
    color: #fff;
}

.main-title.lined {
    margin-bottom: 25px;
}

.main-title.lined:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: #222;
}

.main-title.lined.white:before {
    background: #fff;
}

.main-title.lined.colored:before {
    background: #002C40;
}

.side-blog-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}

.page-blog-list .side-blog-item {
    padding: 20px;
    border: solid 1px #ddd;
    margin-bottom: 20px;
}

.side-blog-list .side-blog-item:not(:last-child) {
    margin-bottom: 40px;
}

.side-blog-list .side-blog-item:not(:last-child):after {
    content: "";
    position: absolute;
    bottom: -20px;
    width: 100%;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.side-blog-item>.img {
    display: block;
    min-width: 120px;
    width: 120px;
    position: relative;
    overflow: hidden;
    padding-top: calc(120px);
    margin-right: 15px;
    box-shadow: 0 10px 10px -10px #000000;
    border: solid 2px #fff;
}

.page-blog-list .side-blog-item>.img {
    min-width: 140px;
    width: 140px;
    padding-top: calc(140px);
}

.side-blog-item>.img>img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: 0.2s ease 0s;
}

.side-blog-item>.img:hover>img {
    transform: scale(1.1);
}

.side-blog-item>.content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.side-blog-item>.content>.title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.page-blog-list .side-blog-item>.content>.title {
    color: #002C40;
}

.side-blog-item>.content>.title>a {
    color: #fff !important;
}

.page-blog-list .side-blog-item>.content>.title>a {
    color: #002C40 !important;
}

.side-blog-item>.content>.title>a:hover {
    text-decoration: underline !important;
}

.side-blog-item>.content>.date {
    display: block;
    padding: 5px 10px;
    background: #017DB1;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.side-blog-item>.content>.link {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff !important;
}

.page-blog-list .side-blog-item>.content>.link {
    color: #01628B !important;
    font-weight: 600;
}

.side-blog-item>.content>.link:hover {
    text-decoration: underline !important;
}

.gal-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
    margin-bottom: 20px;
    box-shadow: 0 10px 10px -10px #000000;
    border: solid 2px #fff;
}

.gal-item.video {
    padding-top: calc(9/16*100%);
}

.gal-item>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: 0.2s ease 0s;
}

.gal-item:hover>img {
    transform: scale(1.1);
}

.gal-item:before {
    content: "\f00e";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    top: 50%;
    left: 50%;
    font-size: 14px;
    line-height: 20px;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    transition: 0.2s ease 0s;
}

.gal-item.video:before {
    content: "\f04b";
}

.gal-item:hover:before {
    background: #000;
}

footer {
    padding: 40px 0;
    background: #002C40;
}

.ftr-contact {
    display: block;
}

.ftr-seperator {
    display: block;
    width: 100%;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

.ftr-contact>.item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ftr-contact>.item:not(:last-child) {
    margin-bottom: 10px;
}

.ftr-contact>.item>.info {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff !important;
    margin-left: 20px;
    position: relative;
}

.ftr-contact>.item>.info:before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    height: 100%;
    border-left: solid 1px rgba(255, 255, 255, 0.2);
}

.ftr-contact>.item>.info:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: -16px;
    width: 6px;
    height: 12px;
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
    background: rgba(255, 255, 255, 0.2);
}

.ftr-contact>.item>.info[href]:hover {
    text-decoration: underline !important;
}

.ftr-contact>.item>i {
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    min-width: 22px;
}

.ftr-links {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.ftr-links>a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff !important;
    padding-left: 15px;
    position: relative;
}

.ftr-links>a:before {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.ftr-links>a:not(:last-child) {
    margin-bottom: 10px;
}

.ftr-links>a:hover {
    text-decoration: underline !important;
}

.ftr-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: -5px;
}

.ftr-bottom>.ftr-copy {
    display: block;
    font-size: 10px;
    line-height: 18px;
    color: #fff;
    margin-bottom: 5px;
}

.ftr-bottom>.ftr-otalya {
    margin-bottom: 5px;
}

.ftr-bottom>.ftr-otalya>a>img {
    width: 70px;
    filter: grayscale(1);
}

.ftr-bottom>.ftr-otalya>a:hover>img {
    filter: none;
}

.bn-open,
.bn-close {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    background: #01628B;
    border: none;
    color: #fff;
    font-size: 20px;
}

.bn-close {
    background: none;
    font-size: 30px;
}

.slide-desc {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 60px - 25px);
    z-index: 10;
}

.slide-desc>.title {
    display: block;
    position: relative;
}

.slide-desc>.title:after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    right: -60px;
    height: 100%;
    background: #01628B;
    opacity: 0.8;
    clip-path: polygon(0 100%, 100% 50%, 0 0);
}

.slide-desc>.title>.text:before {
    content: "";
    position: absolute;
    top: 0;
    right: -60px;
    width: 60px;
    height: 100%;
    background: #002C40;
    clip-path: polygon(0 0, 25px 0, 100% 50%, 25px 100%, 0 100%, calc(100% - 25px) 50%);
}

.slide-desc>.title>.text:after {
    content: "";
    position: absolute;
    top: 0;
    right: calc(-60px - 20px);
    width: 60px;
    height: 100%;
    background: #EC0228;
    clip-path: polygon(0 0, 25px 0, 100% 50%, 25px 100%, 0 100%, calc(100% - 25px) 50%);
}

.slide-desc>.title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #01628B;
    opacity: 0.8;
    z-index: 1;
}

.slide-desc>.title>.text {
    display: block;
    position: relative;
    z-index: 2;
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    padding: 20px 25px;
}

.slide-desc>.desc {
    display: block;
    position: relative;
}

.slide-desc>.desc:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #EC0228;
    opacity: 0.8;
    z-index: 1;
}

.slide-desc>.desc>.text {
    display: block;
    position: relative;
    z-index: 2;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding: 20px 25px;
}

.slide-desc>.desc:after {
    content: "";
    position: absolute;
    top: 0;
    width: 30px;
    right: -30px;
    height: 100%;
    background: #EC0228;
    opacity: 0.8;
    clip-path: polygon(0 100%, 100% 50%, 0 0);
}

.page-box {
    display: block;
    background: #fff;
}

.page-box-inner {
    display: block;
    padding: 20px;
}

.page-banner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(520/1280*100%);
    box-shadow: 0 10px 10px -10px #000000;
}

.page-banner>img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-main-title-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    border-bottom: solid 8px #EC0228;
}

.page-main-title {
    display: block;
    position: relative;
    max-width: calc(100% - 60px);
}

.page-main-title:after {
    content: "";
    position: absolute;
    top: 0;
    width: 40px;
    right: -40px;
    height: 100%;
    background: #01628B;
    opacity: 1;
    clip-path: polygon(0 100%, 100% 50%, 0 0);
}

.page-main-title>.text:before {
    content: "";
    position: absolute;
    top: 0;
    right: -40px;
    width: 40px;
    height: 100%;
    background: #002C40;
    clip-path: polygon(0 0, 20px 0, 100% 50%, 20px 100%, 0 100%, calc(100% - 20px) 50%);
}

.page-main-title>.text:after {
    content: "";
    position: absolute;
    top: 0;
    right: calc(-40px - 20px);
    width: 40px;
    height: 100%;
    background: #EC0228;
    clip-path: polygon(0 0, 20px 0, 100% 50%, 20px 100%, 0 100%, calc(100% - 20px) 50%);
}

.page-main-title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 1px);
    height: 100%;
    background: #01628B;
    opacity: 1;
    z-index: 1;
}

.page-main-title>.text {
    display: block;
    position: relative;
    z-index: 2;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    padding: 15px 20px;
}

.bcrumb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.bcrumb>a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #444;
    position: relative;
}

.bcrumb>a:hover {
    text-decoration: underline !important;
}

.bcrumb>a:not(:last-child):after {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: -20px;
    width: 20px;
    text-align: center;
    pointer-events: none;
    font-size: 12px;
    line-height: 18px;
}

.bcrumb>a:not(:last-child) {
    margin-right: 20px;
}

.bcrumb>a:last-child {
    font-weight: 700;
}

.side-box {
    display: block;
    box-shadow: 0 10px 10px -10px #000000;
}

.side-box>.title {
    display: block;
    font-size: 20px;
    line-height: 26px;
    color: #fff;
    padding: 10px 15px;
    font-weight: 600;
    background: #017DB1;
    margin: 0;
}

.side-box>.links {
    display: block;
    border: solid 1px #ddd;
    background: #f5f5f5;
}

.side-box>.title~.links {
    border-top: none;
}

.side-box>.links>a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #017DB1 !important;
    font-weight: 600;
    padding: 10px 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-box>.links>a:hover {
    background: #fff;
}

.side-box>.links>a:not(:last-child) {
    border-bottom: solid 1px #ddd;
}

.side-box>.list {
    display: block;
    border: solid 1px #ddd;
    background: #f5f5f5;
}

.side-box>.title~.list {
    border-top: none;
}

.side-box>.list>div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    padding: 10px 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-box>.list>div>span:last-child {
    font-weight: 600;
}

.side-box>.list>div:not(:last-child) {
    border-bottom: solid 1px #ddd;
}

.acord-item {
    display: block;
}

.acord-item:not(:last-child) {
    margin-bottom: 10px;
}

.acord-item>.title {
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #000;
    padding: 15px;
    padding-right: calc(40px + 15px);
    background: #f5f5f5;
    border: solid 1px #eee;
    position: relative;
}

.acord-item>.title.active:after {
    content: "\f107";
}

.acord-item>.title:hover {
    cursor: pointer;
    background: #eee;
}

.acord-item>.title:after {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: #01628B;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.acord-item>.content {
    display: none;
    border: solid 1px #eee;
    border-top: none;
    background: #fbfbfb;
}

.acord-item>.content>.inner {
    display: block;
    padding: 15px;
}

.page-contacts {
    display: block;
}

.page-contacts>div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.page-contacts>div:not(:last-child) {
    margin-bottom: 10px;
}

.page-contacts>div>i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 18px;
    height: 18px;
    background: #002C40;
    border-radius: 2px;
    font-size: 10px;
    line-height: 16px;
    margin-top: 2px;
    margin-right: 6px;
    color: #fff;
}

.page-contacts>div>a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #444 !important;
}

.page-contacts>div>a[href]:hover {
    text-decoration: underline !important;
}

.contact-map {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(720/1280*100%);
    border: solid 1px #eee;
}

.contact-map>* {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.furn-item {
    display: block;
    box-shadow: 0 10px 10px -10px #000000;
    margin-bottom: 20px;
    background: #fff;
}

.furn-item>.img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
    background: #fff;
    border: solid 1px #eee;
}

.furn-item>.img>img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.furn-item>.content {
    background: linear-gradient(#fff, #eee);
    border: solid 2px #fff;
    border-bottom: solid 4px #005072;
}

.furn-item>.title {
    display: block;
    padding: 5px 10px;
    background: #01628B;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.furn-item>.content>.spinner {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    padding: 20px;
}

.furn-item>.content>.spinner>span {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    background: #ddd;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    transition: 0.2s ease 0s;
}

.furn-item>.content>.spinner>span:hover {
    background: #bbb;
}

.furn-item>.content>.spinner>input {
    display: block;
    width: 100%;
    border: solid 1px #ddd;
    height: 40px;
    padding: 0;
    background: #fff;
    font-size: 14px;
    line-height: 40px;
    color: #000;
    text-align: center;
}

.fix-total-cap-box {
    position: fixed;
    bottom: 40px;
    right: 0;
    z-index: 99;
}

.fix-total-cap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 25px;
    white-space: nowrap;
    background: linear-gradient(#fff, #eee);
    border: solid 2px #fff;
}

.fix-total-cap>span {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #666;
}

.fix-total-cap>span:last-child {
    margin-left: 4px;
    font-weight: 700;
    color: #000;
}

.article-content-list {
    list-style: none;
    padding: 20px;
    background: #eee;
}

.article-content-list > li {
    display: block;
    margin-bottom: 5px;
}

.article-content-list > li:last-child {
    margin-bottom: 0;
}

.article-content-list > li > a {
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    color: #222 !important;
    cursor: pointer;
    /*text-decoration: underline !important;*/
}

.article-content-list > li > a:hover {
    text-decoration: none !important;
}

.comment-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.comment-item > i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #002C40;
    color: #fff;
    font-size: 44px;
    line-height: 50px;
    margin-right: 10px;
}

.comment-item > i:before {
    top: 5px;
    position: relative;
}

.comment-item > .content {
    display: block;
    width: 100%;
    position: relative;
    background: #fbfbfb;
    border: solid 1px #eee;
    box-shadow: 0 10px 10px -10px #000000;
    padding: 20px;
}

.comment-item > .content > .head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: solid 1px #ddd;
}

.comment-item > .content > .head > .name {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
    margin: 0;
    margin-bottom: 5px;
}

.comment-item > .content > .head > .stars {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
}

.comment-item > .content > .head > .stars > i {
    color: #bbb;
    display: block;
    font-size: 12px;
    line-height: 18px;
}

.comment-item > .content > .head > .stars > i:not(:last-child) {
    margin-right: 4px;
}

.comment-item > .content > .head > .stars > i.active {
    color: orange;
}

.comment-item > .content > .desc {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #444;
    margin: 0;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px #ddd;
}

.comment-item > .content > .date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    line-height: 18px;
    color: #888;
}

.comment-item > .content > .date > i {
    display: block;
    margin-right: 4px;
}

.form-rating {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    flex-direction: row-reverse;
    margin-bottom: 15px;
}

.form-rating > input {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    position: absolute;
}

.form-rating > label {
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #bbb;
    margin: 0;
    cursor: pointer;
}

.form-rating > label:not(:first-child) {
    padding-right: 5px;
}

.form-rating > label:hover,
.form-rating > label:hover ~ label,
.form-rating > input:checked ~ label {
    color: orange;
}

.pnt-lang {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 20px;
}

.pnt-lang > a {
    display: block;
    font-size: 18px;
    line-height: 18px;
}

.pnt-lang > a:not(:last-child) {
    margin-right: 5px;
}

.main-video-box {
    display: block;
    padding: 8px;
    background: #002c40;
}

.main-video-box > div {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(720/1280*100%);
}

.main-video-box > div > iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



