body {
    font-family: 'Nunito', sans-serif;
    background: #f9faff;
}
.navbar {
    padding: 15px 0;
    background-image: linear-gradient(12deg, #0b1523 10%, #0b1523 71%);
}
.navbar .nav-item {
    padding: 0;
    margin: 0;
}
.navbar .nav-item .nav-link {
    padding: 0;
    margin: 0 0 0 45px;
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
    color: rgb(207, 205, 206);
}
.navbar .btn-1 {
    background: #ffffff;
    box-shadow: 1px 1px 30px 0 rgba(231,61,89,0.2);
    border: 1px solid rgba(0,0,0,0);
    text-decoration: none;
    color: #0E5381;
    border-radius: 65px;
    padding: 3px 5px;
    font-size: 15px;
    font-weight: 600;
    margin-left: 45px;
    transition: all 0.2s ease-in;
    display: inline-block;
}
.navbar .btn-1:hover {
    border: 1px solid #ffffff;
    box-shadow: 1px 1px 30px 0 rgba(0,0,0,0);
    color: #ffffff;

}
.slider {
    background: url('../img/bg/slider.png') center center no-repeat;
    background-size: cover;
    height: 100vh;
}
.slider .content {
    margin-top: 50px;
}
.slider .content .left h1 {
    font-size: 45px;
    font-weight: 400;
    color: #ffffff;
    line-height: 55px;
    margin: 0;
    padding: 0;
}
.slider .content .left p {
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    line-height: 26px;
    padding: 0;
    margin: 10px 0 30px;
}
.slider .content .left .btn-1 {
    background: #ffffff;
    box-shadow: 1px 1px 30px 0 rgba(0,0,0,0.2);
    text-decoration: none;
    color: #0E5381;
    border-radius: 65px;
	margin: 10px;
    padding: 10px 45px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
}
.slider .content .left .btn-2 {
    background: transparent;
    border: 1px solid #ffffff;
    text-decoration: none;
    color: #ffffff;
    border-radius: 65px;
    padding: 10px 45px;
    margin-left: 15px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
}
.features {
    background: url("../img/bg/feature-bg.png") top center no-repeat;
    background-size: cover;
    padding: 45px 0;
}
.features .heading {
    font-size: 30px;
    color: #0E5381;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 0;
}
.features .line {
    background-image: linear-gradient(127deg, #0E5381 0%, #0E5381 91%);
    height: 2px;
    width: 50px;
    margin-bottom: 50px;
    display: inline-block;
}
.features .box {
    background: #ffffff;
	min-height: 400px;
    box-shadow: 1px 1px 25px 0 rgba(0,0,0,0.05);
    border-radius: 15px;
    padding: 30px 30px;
    transition: all .4s ease-in-out;
}
.features .box:hover {
    transform: translateY(-15px);
    box-shadow: 1px 1px 25px 0 rgba(0,0,0,0.09);
}
.features .box h3 {
    font-size: 20px;
    color: #0E5381;
    font-weight: 600;
    margin: 25px 0 15px;
    padding: 0;
}
.features .box p {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    margin: 20px;
    padding: 0;
}
.some-facts {
    background: url("../img/bg/some-facts.png") center center no-repeat;
    background-size: cover;
    padding: 60px 0;
}
.some-facts .items h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    padding: 0;
    margin: 20px 0 2px;
}
.some-facts .items h4 {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    padding: 0;
    margin: 0;
}
.project {
    padding: 60px 0;
}
.project .right span {
    font-size: 16px;
    color: #0E5381;
    font-weight: 600;
}
.project .right h2 {
    font-size: 25px;
    color: #0E5381;
    font-weight: 600;
    line-height: 32px;
}
.project .right p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 40px;
}
.project .right .btn-1 {
    background-image: linear-gradient(127deg, #0E5381 0%, #0E5381 91%);
    text-decoration: none;
    color: #ffffff;
    border-radius: 65px;
    padding: 10px 45px;
    font-size: 15px;
    font-weight: 600;
}
.project .box {
    background: #ffffff;
    border-radius: 7px;
    box-shadow: 1px 1px 25px 0 rgba(0,0,0,0.05);
    padding: 10px 20px;
	margin: 20px 0;
    position: relative;
    transition: all .5s ease-in-out;
}
.video {
    background: url("../img/bg/video-bg.png") center center no-repeat;
    background-size: cover;
    padding: 25px 0;
}
.video-icon .icon {
    background: #ffffff;
    color: #0E5381;
    display: inline;
    font-size: 25px;
    padding: 50px 10px;
    border-radius: 800px;
    position: relative;
}
.pulse {
    animation: pulse 1s infinite;
    animation-duration: 2s;
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    70% {
        -moz-box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
.benefits {
    padding: 45px 0;
    background: #f1f7ff;
}
.benefits .heading {
    font-size: 30px;
    color: #0E5381;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 0;
}
.benefits .line {
    background-image: linear-gradient(127deg, #0E5381 0%, #0E5381 91%);
    height: 2px;
    width: 50px;
    margin-bottom: 30px;
    display: inline-block;
}
.benefits .box {
	background: #ffffff;
	min-height: 200px;
    border-radius: 8px;
    background: linear-gradient(to left, rgba(14, 83, 129) 0%, rgba(14, 83, 129) 12%, rgba(14, 83, 129) 47%, rgb(14, 83, 129) 100%) left bottom #fff no-repeat;
    background-size: 100% 5px;
    box-shadow: 1px 1px 25px 0 rgba(0,0,0,0.05);
    position: relative;
}
.benefits .box img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -47px;
}
.benefits .box h3 {
    font-size: 20px;
    color: #0E5381;
    font-weight: 600;
    margin: 20px 0 10px;
    padding: 0;
}
.benefits .box p {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
    padding: 0;
}
.benefits .mb-30 {
    margin-bottom: 40px;
}
.our-team {
    padding: 45px 0;
}
.our-team .heading {
    font-size: 30px;
    color: #0E5381;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 0;
}
.our-team .line {
    background-image: linear-gradient(127deg, #0E5381 0%, #0E5381 91%);
    height: 2px;
    width: 50px;
    margin-bottom: 30px;
    display: inline-block;
}
.our-team .box {
    box-shadow: 1px 1px 25px 0 rgba(0,0,0,0.05);
    background: #ffffff;
    border-radius: 5px;
	padding: 60px 30px;
}
.our-team .box .image {
    position: relative;
}
.our-team .box .image img {

}
.our-team .box .image .social-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-image: linear-gradient(127deg, #0E5381 0%, #0E5381 91%);
    box-shadow: 1px 1px 30px 0 rgba(0,0,0,0.2);
    padding: 13px 20px 10px;
    border-radius: 35px;
    margin-top: 100px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
.our-team .box .image .social-icon i {
    font-size: 20px;
    text-transform: none;
    color: #ffffff;
    padding: 0 10px;
}
.our-team .box:hover .social-icon {
    opacity: 1;
    margin-top: 0;
}
.our-team .info {
    padding: 30px 0;
}
.our-team .info h3 {
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #0E5381;
}
.our-team .info span {
    font-size: 14px;
    font-weight: 400;
    color: #8c9399;
}
.get-started {
    background: url("../img/bg/get-started.png") center center no-repeat;
    background-size: cover;
    padding: 60px 0;
    color: #ffffff;
}
.get-started span {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}
.get-started h3 {
    font-size: 25px;
    font-weight: 400;
    margin: 10px 0 0;
}
.get-started .btn-1 {
    background: #ffffff;
    box-shadow: 1px 1px 30px 0 rgba(0,0,0,0.1);
    text-decoration: none;
    color: #0E5381;
    border-radius: 65px;
    padding: 10px 45px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 25px;
    display: inline-block;
}
.testimonials {
    padding: 45px 0;
}
.testimonials .heading {
    font-size: 30px;
    color: #0E5381;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 0;
}
.testimonials .line {
    background-image: linear-gradient(127deg, rgb(14, 83, 129) 0%, rgb(14, 83, 129) 91%);
    height: 2px;
    width: 50px;
    margin-bottom: 30px;
    display: inline-block;
}
.testimonials .box {
    background: #ffffff;
	min-height: 200px;
    border-radius: 8px;
    background: linear-gradient(to left, rgba(14, 83, 129) 0%, rgba(14, 83, 129) 12%, rgba(14, 83, 129) 47%, rgb(14, 83, 129) 100%) left bottom #fff no-repeat;
    background-size: 100% 5px;
    box-shadow: 1px 1px 25px 0 rgba(0,0,0,0.05);
    position: relative;
    margin: 48px 15px 0;
    padding: 90px 30px 50px;
}
.testimonials .box img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -47px;
}
.testimonials .box h3 {
    font-size: 20px;
    color: #0E5381;
    font-weight: 600;
    margin: 0;
    padding: 0;
}
.testimonials .box span {
    font-size: 14px;
    color: #8c9399;
    font-weight: 400;
}
.testimonials .box p {
    font-size: 15px;
    font-weight: 400;
    color: #919aaf;
    line-height: 26px;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}
.slick-list {
    outline: none !important;
}
.slick-slide:focus {
    outline: none;
}
.slick-dots li button:before {
    font-family: 'slick';
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-image: linear-gradient(127deg, #0E5381 0%, #0E5381 91%);
    text-indent: -9999px;
    margin-top: 40px;
}
.project-2 {
    padding: 80px 0 120;
}
.project-2 .left span {
    font-size: 16px;
    color: #0E5381;
    font-weight: 600;
}
.project-2 .left h2 {
    font-size: 25px;
    color: #0E5381;
    font-weight: 600;
    line-height: 32px;
}
.project-2 .left p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 40px;
}
.project-2 .left .btn-1 {
    background-image: linear-gradient(127deg, #0E5381 0%, #0E5381 91%);
    text-decoration: none;
    color: #ffffff;
    border-radius: 65px;
    padding: 10px 45px;
    font-size: 15px;
    font-weight: 600;
}
.our-price {
    padding: 45px 0;
}
.our-price .heading {
    font-size: 30px;
    color: #0E5381;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 0;
}
.our-price .line {
    background-image: linear-gradient(127deg, #0E5381 0%, #0E5381 91%);
    height: 2px;
    width: 50px;
    margin-bottom: 30px;
    display: inline-block;
}
.our-price .box {
    background: #ffffff;
    border-radius: 7px;
    box-shadow: 1px 1px 25px 0 rgba(0,0,0,0.05);
    padding: 50px 0;
    position: relative;
    transition: all .5s ease-in-out;
}
.our-price .box:hover {
    transform: translateY(-15px);
    box-shadow: 1px 1px 25px 0 rgba(0,0,0,0.09);
}
.our-price .box-center {
    box-shadow: 2px 2px 35px 0 rgba(0,0,0,0.1);
}
.our-price .box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0E5381;
    text-transform: uppercase;
}
.our-price .box h4 {
    font-size: 16px;
    font-weight: 500;
    color: #a8acaf;
    margin-bottom: 20px;
    margin-top: 20px;
}
.our-price .box h4 span {
    font-size: 50px;
    font-weight: 700;
    color: #0E5381;
}
.our-price .box span.blue {
    color: #0E5381;
}
.our-price .box ul {
    margin: 0;
    padding: 0;
}
.our-price .box ul li {
    list-style: none;
    font-size: 15px;
    font-weight: 600;
    color: #5b7388;
    border-bottom: 1px solid #f6f6f7;
    padding: 20px 0;
}
.our-price .box .btn-2 {
    background: transparent;
    border: 1px solid #0E5381;
    text-decoration: none;
    color: #0E5381;
    border-radius: 65px;
    padding: 10px 45px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 40px;
    display: inline-block;
}
.our-price .box .top-btn {
    background-image: linear-gradient(127deg, #0E5381 0%, #0E5381 91%);
    box-shadow: 1px 1px 30px 0 rgba(0,0,0,0.2);
    text-decoration: none;
    color: #ffffff;
    border-radius: 65px;
    padding: 10px 0;
    width: 60%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -17px;
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
}
.our-price .box .btn-1 {
    background-image: linear-gradient(127deg, #0E5381 0%, #0E5381 91%);
    box-shadow: 1px 1px 30px 0 rgba(0,0,0,0.2);
    text-decoration: none;
    color: #ffffff;
    border-radius: 65px;
    padding: 10px 45px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    margin-top: 42px;
}
.clients {
    padding: 60px 0;
    background: url("../img/bg/clients.png") center center no-repeat;
    background-size: cover;
}
.clients .item {
    margin: 0 20px;
}
.contact {
    padding: 45px 0;
}
.contact .heading h2 {
    font-size: 30px;
    color: #0E5381;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 0;
}
.contact .line {
    background-image: linear-gradient(127deg, #0E5381 0%, #0E5381 91%);
    height: 2px;
    width: 50px;
    margin-bottom: 30px;
    display: inline-block;
}
.contact .form-control {
    font-size: 13px;
    margin-bottom: 10px;
	margin-top: 15px;
}
.contact button.btn {
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    background-image: linear-gradient(127deg, #0E5381 0%, #0E5381 91%);
    color: #ffffff;
}
.contact .title h3 {
    font-size: 18px;
    font-weight: 600;
}
.contact .title p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 40px;
}
.contact .content .info {
    margin-top: 30px;
}
.contact .content .info i {
    font-size: 30px;
    padding: 0;
    margin: 0;
    color: #02434b;
    margin-right: 20px;
}
.contact .content .info h4 {
    font-size: 13px;
    line-height: 1.4;
}
.contact .content .info h4 span {
    font-size: 13px;
    font-weight: 300;
}
.footer {
    padding: 60px 0;
    background-image: linear-gradient(127deg, #0b1523 10%, #0b1523 71%);
}
.footer p {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin: 20px 0 0;
}
.no-js #loader {
    display: none;
}
.js #loader {
    display: block;
    position: absolute;
    left: 100px;
    top: 0;
}
.se-pre-con {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url("../img/loader/Preloader_2.gif") center no-repeat #fff;
}
@media (max-width: 383.98px) {
    .slider .content .left .btn-1 {
        margin-bottom: 20px;
    }
    .slider .content .left .btn-2 {
        margin-left: 0;
    }
}
@media (max-width: 575.98px) {
    .navbar {
        padding: 15px 20px;
    }
    .navbar .nav-item .nav-link {
        margin: 20px 0 10px;
    }
    .navbar .btn-1 {
        margin: 20px 0;
        display: inline-block;
    }
    .slider {
        height: auto;
        padding: 120px 0;
    }
    .slider .content {
        text-align: center;
    }
    .slider .content .left {
        margin-bottom: 40px;
    }
    .features {
        padding: 120px 0 90px;
    }
    .features .box {
        margin-bottom: 30px;
    }
    .some-facts {
        padding: 80px 0 30px;
    }
    .some-facts .items {
        margin-bottom: 50px;
    }
    .project .right {
        margin-top: 40px;
    }
    .benefits {
        padding: 120px 0 80px;
    }
    .benefits .box {
        margin-bottom: 40px;
    }
    .our-team {
        padding: 120px 0 90px;
    }
    .our-team .box {
        margin-bottom: 30px;
    }
    .project-2 .left {
        margin-bottom: 40px;
    }
    .our-price {
        padding: 120px 0 90px;
    }
    .our-price .box {
        margin-bottom: 30px;
    }
    .contact .content {
        margin-bottom: 40px;
    }
}
@media (max-width: 767.98px) {
    .navbar {
        padding: 15px 20px;
    }
    .navbar .nav-item .nav-link {
        margin: 20px 0 10px;
    }
    .navbar .btn-1 {
        margin: 20px 0;
        display: inline-block;
    }
    .slider {
        height: auto;
        padding: 120px 0;
    }
    .slider .content {
        text-align: center;
    }
    .slider .content .left {
        margin-bottom: 40px;
    }
    .features {
        padding: 60px 0 90px;
    }
    .features .box {
        margin-bottom: 30px;
    }
    .some-facts {
        padding: 80px 0 30px;
    }
    .some-facts .items {
        margin-bottom: 50px;
    }
    .project .right {
        margin-top: 40px;
    }
    .benefits {
        padding: 60px 0 80px;
    }
    .benefits .box {
        margin-bottom: 40px;
    }
    .our-team {
        padding: 60px 0 90px;
    }
    .our-team .box {
        margin-bottom: 30px;
    }
    .our-team .box .image .social-icon {
        width: 40%;
    }
    .project-2 .left {
        margin-bottom: 40px;
    }
    .our-price {
        padding: 60px 0 90px;
    }
    .our-price .box {
        margin-bottom: 30px;
    }
    .contact .content {
        margin-bottom: 40px;
    }

}
@media (max-width: 991.98px) {
    .navbar {
        padding: 15px 20px;
    }
    .navbar .nav-item .nav-link {
        margin: 20px 0 10px;
    }
    .navbar .btn-1 {
        margin: 20px 0;
        display: inline-block;
    }
    .slider {
        height: auto;
        padding: 120px 0;
    }
    .slider .content .left h1 {
        font-size: 35px;
    }
    .slider .content .left p {
        font-size: 15px;
    }
    .some-facts {
        padding: 80px 0 30px;
    }
    .some-facts .items {
        margin-bottom: 50px;
    }
    .our-team .box .image .social-icon {
        width: 70%;
    }
}
@media (max-width: 1199.98px) {
}
.table-bordered {border: 1px solid #f1f3f1;}
.table-striped tbody tr:nth-of-type(odd) { background-color: #f2f6f9 !important; }
.table > thead > tr > th {color: #fff;font-weight: 600;}
.table > tbody > tr > td .usr-img-frame {
    background-color: #fff;
    padding: 2px;
}
.table > tbody > tr > td .usr-img-frame img { width: 35px; margin: 0; }
.table > tbody > tr > td .progress { width: 135px; height: 6px; }
.table > tbody > tr > td { vertical-align: middle; }
.table > tbody > tr > td i.icon { cursor: pointer; }
.table > tbody > tr > td .t-dot {
    background-color: #000;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 auto;
}
.table > tbody > tr > td i.t-icon {
    padding: 5px;
    border-radius: 50%;
    font-size: 11px;
    vertical-align: sub;
    cursor: pointer;
}
.table > tbody > tr > td i.t-icon.t-hover-icon:hover { background-color: #e7515a; color: #fff; }
.table-bordered td { border: 1px solid #f1f3f1; }
.table-bordered th { border: 1px solid #f1f3f1; }
.table-bordered.dataTable th { border: 1px solid transparent; border-right: 1px solid #f1f3f1; }
.table thead th { vertical-align: bottom; border-bottom: none; }
.table-hover:not(.table-dark) tbody tr:hover { background-color: #f1f3f9!important; }
.table-controls>li>a i { color: #25d5e4; }
.bg-default { background-color: #ffffff!important; }

.table tr td .custom-dropdown.t-custom-dropdown a.dropdown-toggle,
.table tr td .custom-dropdown-icon.t-custom-dropdown a.dropdown-toggle {
    border-radius: 5px;
    border: 1px solid #d3d3d3;
}
.table-dark { background-color: #4f5163; }
.table-dark.table-hover tbody tr { background-color: #4f5163; }
.table-dark td, .table-dark th, .table-dark thead th { border-color: #32383e!important; }
.table-dark.table-hover tbody tr:hover { background-color: #454656; }
.table.table-dark > tbody > tr > td i.t-icon {
    padding: 5px;
    border-radius: 50%;
    font-size: 14px;
    vertical-align: sub;
    cursor: pointer;
    color: #191e22!important;
}
table .badge-success,table .badge-primary, table .badge-warning,table .badge-danger,
table .badge-info, table .badge-secondary, table .badge-dark  {
    box-shadow: 0px 5px 20px 0 rgba(0, 0, 0, 0.2);
    will-change: opacity, transform;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}
.table > tfoot > tr > th { color: #3b3f5c; }
.table-default>td, .table-default>th { background-color: #f5f5f5; color: #3b3f5c; }
.table-primary>td, .table-primary>th { background-color: #c2d5ff; color: #1a73e9; }
.table-secondary>td, .table-secondary>th { background-color: #dccff7; color: #805dca; }
.table-success>td, .table-success>th { background-color: #b6fff1; color: #1abc9c; }
.table-danger>td, .table-danger>th { background-color: #ffe1e2; color: #e7515a; }
.table-warning>td, .table-warning>th { background-color: #ffeccb; color: #e9b02b; }
.table-info>td, .table-info>th { background-color: #bae7ff; color: #00b1f4; }
.table-light>td, .table-light>th { background-color: #ffffff; color: #888da8; }
.table-dark>td, .table-dark>th {
    background-color: #acb0c3;
    color: #4f5163;
    border-color: #fff!important;
}
.table-wrapper {
    width: 100%;           /* ширина контейнера как у окна */
    overflow-x: auto; 
  }
  table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 300%;           /* шире окна — можно 150%, 300% и т.д. */
    min-width: 2800px;     /* чтобы точно было больше окна */
  }
  th {
    text-align: center;
    vertical-align: middle;
  }
  td {
    text-align: center;
    vertical-align: middle;
    aspect-ratio: 1 / 1;    /* делает ячейки квадратными */
    width: 100px;            /* можно задать явную ширину, если нужно */
  }
  /* фиксируем верхнюю строку по странице */
  thead th {
    position: sticky;
    top: 0;                 /* по отношению к странице */
    background: #0E5381;
    z-index: 100;            /* чтобы была поверх всего */
  }
  /* фиксируем первый столбец внутри контейнера */
  th:first-child, td:first-child {
	  width: 160px;
    position: sticky;
    left: 0;
    color: #fff;
    background: #1D324D;
    z-index: 50;
  }
  /* пересечение верхнего левого угла */
  thead th:first-child {
    z-index: 150;
    background: #1D324D;
  }
  /* Боковые тени */
.table-container::before,
.table-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  pointer-events: none;
  z-index: 101;
  opacity: 0;
  transition: opacity 0.2s;
}
.table-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.0), transparent);
}
.table-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(25,120,160,0.15), transparent)
}
.table-container.shadow-left::before { opacity: 1; }
.table-container.shadow-right::after { opacity: 1; }
.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link {
    color: red;
}
.btn {
    color: #333;
    text-decoration: none;
    font-family: inherit;
    font-size: 12px;
    transition: background 0.2s, color 0.2s;
}
.btn:hover {
    background: #e2e2e2;
	    border-radius: 30px;
}
.btn.active {
    background: #007BFF;
    color: white;
	border-radius: 30px;
}
section {
  scroll-margin-top: 80px;
}
html {
  scroll-behavior: smooth;
}
	/* затемнённый фон */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 50px;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}
/* содержимое окна */
.modal-content {
  background: #fff;
  width: 80%;
  max-width: 800px;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.3s ease;
}
.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  cursor: pointer;
}
@keyframes fadeIn {
  from {opacity:0; transform: scale(0.95);}
  to   {opacity:1; transform: scale(1);}
}