@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Roboto", sans-serif;
}

.qu {
    font-family: "Quicksand", sans-serif;
}

a {
    text-decoration: none !important;
}

ul {
    margin-bottom: 0;
    padding-left: 0;
}

h1 {
    margin: 0;
}

p {
    margin: 0;
}

h2 {
    margin: 0;
}

h3 {
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    position: relative;
    z-index: 2;
    background: #F5F7F6;
    font-family: "Roboto", sans-serif;
}

img {
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}

.my-container {
    width: 1340px;
    margin: 0 auto;
}
@media (max-width: 1380px) {
    .my-container {
        width: auto;
        margin: 0 40px;
    }
}
@media (max-width: 950px) {
    .my-container {
        margin: 0 40px;
    }
}
@media (max-width: 650px) {
    .my-container {
        margin: 0 18px;
    }
}

.my-container-mini {
    width: 1100px;
    margin: 0 auto;
}
@media (max-width: 1380px) {
    .my-container-mini {
        width: auto;
        margin: 0 100px;
    }
}
@media (max-width: 950px) {
    .my-container-mini {
        margin: 0 80px;
    }
}
@media (max-width: 650px) {
    .my-container-mini {
        margin: 0 18px;
    }
}

.my-site-page {
    width: 1440px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}
@media (max-width: 2000px) {
    .my-site-page {
        width: 100%;
    }
}

.my-btn {
    color: #232324;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: #fff;
    border-radius: 50px;
    transition: 0.3s ease;
    border: none;
    outline: none;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    max-width: 300px;
}
@media (max-width: 650px) {
    .my-btn {
        padding: 11px 18px;
    }
}
@media (max-width: 650px) {
    .my-btn {
        font-size: 16px;
        line-height: 24px;
    }
}
.my-btn::after {
    content: "";
    width: 50px;
    height: 200px;
    background: rgba(238, 236, 236, 0);
    position: absolute;
    transition: 0.2s ease;
    box-shadow: 2px 3px 100px 100px rgba(235, 233, 233, 0.0823529412);
    z-index: 1;
    top: -50px;
    left: -300%;
    animation: anim 3s ease infinite;
}
.my-btn i {
    color: #232324;
}
.my-btn:hover {
    background: #232324;
    color: #fff;
}
.my-btn:hover i {
    color: #fff;
}
.my-btn:hover::after {
    opacity: 0;
}
.my-btn:active {
    background: #232324;
    color: #fff;
}
.my-btn:active i {
    color: #fff;
}
.my-btn:active::after {
    opacity: 0;
}
.my-btn.card-btn {
    border-radius: 25px;
    color: #fff;
    background: #232324;
}
@media (max-width: 650px) {
    .my-btn.card-btn {
        padding: 11px 18px;
    }
}
.my-btn.card-btn:active {
    background: #192f59;
}
.my-btn.card-btn:hover {
    background: #192f59;
}
.my-btn.card-btn:hover i {
    transform: translateX(5px);
}
.my-btn.card-btn i {
    color: #fff;
    transition: 0.3s;
}

.my-btn2 {
    color: #fff;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: transparent;
    border-radius: 50px;
    transition: 0.3s ease;
    border: none;
    outline: none;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    max-width: 300px;
    border: 2px solid #fff;
}
@media (max-width: 650px) {
    .my-btn2 {
        padding: 11px 18px;
    }
}
@media (max-width: 650px) {
    .my-btn2 {
        font-size: 16px;
        line-height: 24px;
    }
}
.my-btn2::after {
    content: "";
    width: 50px;
    height: 200px;
    background: rgba(238, 236, 236, 0);
    position: absolute;
    transition: 0.2s ease;
    box-shadow: 2px 3px 100px 100px rgba(235, 233, 233, 0.0823529412);
    z-index: 1;
    top: -50px;
    left: -300%;
    animation: anim 3s ease infinite;
}
.my-btn2 i {
    color: #fff;
}
.my-btn2:hover {
    background: #fff;
    color: #192f59;
}
.my-btn2:hover i {
    color: #192f59;
}
.my-btn2:hover::after {
    opacity: 0;
}
.my-btn2:active {
    background: #fff;
    color: #192f59;
}
.my-btn2:active i {
    color: #192f59;
}
.my-btn2:active::after {
    opacity: 0;
}

.danger-btn {
    font-weight: 600;
    color: #fff !important;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    gap: 5px;
    padding: 10px 10px;
    background: #E53131;
    border-radius: 12px;
    transition: 0.2s ease;
    border: none;
    outline: none;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    min-width: 240px;
}
.danger-btn.my-account {
    min-width: 98px;
    border-radius: 500px;
}
@media (max-width: 650px) {
    .danger-btn {
        font-size: 16px;
        line-height: 24px;
    }
}
.danger-btn::after {
    content: "";
    width: 50px;
    height: 200px;
    background: rgba(254, 251, 251, 0.3176470588);
    position: absolute;
    transition: 0.2s ease;
    box-shadow: 2px 3px 100px 100px rgba(254, 251, 251, 0.3176470588);
    z-index: 1;
    top: -50px;
    left: -300%;
    animation: anim 3s ease infinite;
}
.danger-btn svg {
    transition: 0.2s ease;
}
.danger-btn svg path {
    fill: #fff;
}
.danger-btn:hover {
    background: #f14141;
}
.danger-btn:hover::after {
    opacity: 0;
}
.danger-btn:active {
    background: #f14141;
}
.danger-btn:active::after {
    opacity: 0;
}

@keyframes anim {
    0% {
        transform: rotate(40deg);
        display: flex;
    }
    100% {
        transform: rotate(40deg);
        left: 300%;
        display: none;
    }
}
.slider-btn {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 2px solid #F5FBFD;
    border-radius: 50%;
    outline: none;
    background: #0A97BC;
}
.slider-btn svg {
    width: 7px;
    height: 12px;
}

.txt-95 {
    font-style: normal;
    font-weight: 600;
    font-size: 90px;
    line-height: 108px;
}
@media (max-width: 650px) {
    .txt-95 {
        font-size: 24px;
        line-height: 28px;
    }
}

.txt-60 {
    font-size: 60px;
    line-height: 64px;
    font-weight: 700;
}
@media (max-width: 650px) {
    .txt-60 {
        font-size: 24px;
        line-height: 28px;
    }
}

.txt-42 {
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 58px;
}
@media (max-width: 650px) {
    .txt-42 {
        font-size: 21px;
        line-height: 28px;
    }
}

.txt-18 {
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
}
@media (max-width: 650px) {
    .txt-18 {
        font-size: 18px;
        line-height: 27px;
    }
}

.txt-21 {
    font-size: 21px;
    line-height: 27px;
    font-weight: 600;
}
@media (max-width: 650px) {
    .txt-21 {
        font-size: 18px;
    }
}

.txt-48 {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
}
@media (max-width: 650px) {
    .txt-48 {
        font-size: 20px;
        line-height: 24px;
    }
}

.txt-50 {
    font-size: 50px;
    line-height: 64px;
    font-weight: 700;
}
@media (max-width: 650px) {
    .txt-50 {
        font-size: 33px;
        line-height: 38px;
    }
}

.txt-33 {
    font-size: 33px;
    line-height: 47px;
    font-weight: 500;
}
@media (max-width: 650px) {
    .txt-33 {
        font-size: 18px;
        line-height: 23px;
    }
}

.txt-28 {
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
}
@media (max-width: 650px) {
    .txt-28 {
        font-size: 23px;
        line-height: 28px;
    }
}

.txt-24 {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
}
@media (max-width: 650px) {
    .txt-24 {
        font-size: 22px;
        line-height: 28px;
    }
}

.txt-16 {
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
}
@media (max-width: 650px) {
    .txt-16 {
        font-size: 16px;
        line-height: 24px;
    }
}

.txt-12 {
    font-size: 12px;
    line-height: 17px;
    font-weight: 500;
}
@media (max-width: 650px) {
    .txt-12 {
        font-size: 12px;
        line-height: 18px;
    }
}

.txt-14 {
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
}
@media (max-width: 650px) {
    .txt-14 {
        font-size: 12px;
        line-height: 18px;
    }
}

.txt-19 {
    font-size: 19px;
    line-height: 23px;
    font-weight: 500;
}
@media (max-width: 650px) {
    .txt-19 {
        font-size: 16px;
        line-height: 18px;
    }
}

.txt-20 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}
@media (max-width: 650px) {
    .txt-20 {
        font-size: 16px;
        line-height: 140% !important;
    }
}

.txt-28 {
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
}
@media (max-width: 650px) {
    .txt-28 {
        font-size: 23px;
        line-height: 28px;
    }
}

.my-input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(11, 10, 55, 0.1);
    background: #F7F8FA;
    outline: none;
    transition: 0.2s;
    padding: 12px 18px;
}
.my-input::-moz-placeholder {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400;
}
.my-input::placeholder {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400;
}
.my-input:focus {
    border: 1px solid #098BED;
}

.label {
    font-weight: 400;
    color: #000;
}

.list {
    padding-left: 40px;
}
.list li {
    list-style: disc;
}

strong {
    color: #252525;
}

.tran:hover svg {
    transform: translate(0);
}

.bg-menu {
    position: fixed;
    pointer-events: none;
    width: 100%;
    height: 100vh;
    z-index: 2;
    opacity: 0;
    top: 0;
    left: 0;
    transition: 0.2s ease;
    background: rgba(29, 46, 52, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.bg-menu.active {
    opacity: 1;
    pointer-events: visible;
}

.kod-blog {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.kod-blog .kod-text {
    color: #6D7983;
    font-weight: 400;
}
.kod-blog .kod-blog-in {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.kod-blog .kod-blog-in input {
    width: 47px;
    height: 47px;
    text-align: center;
}

.modal {
    background: rgba(29, 46, 52, 0.5) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    backdrop-filter: blur(5px) !important;
}
.modal .modal-content {
    border-radius: 18px;
    overflow: hidden;
    border: none;
}
@media (max-width: 650px) {
    .modal .modal-content {
        border-radius: 18px;
    }
}
.modal .modal-content .modal-body {
    background: #FFFFFF;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    padding: 40px;
    position: relative;
}
@media (max-width: 950px) {
    .modal .modal-content .modal-body {
        padding: 24px;
    }
}
@media (max-width: 650px) {
    .modal .modal-content .modal-body {
        padding: 18px;
    }
}
.modal .modal-content .modal-body .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    color: #000;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    font-size: 12px;
    border-radius: 50%;
    background: transparent;
}
@media (max-width: 650px) {
    .modal .modal-content .modal-body .close-btn {
        top: 8px;
        right: 8px;
    }
}
.modal .modal-content .modal-body .close-btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.modal .modal-content .modal-body .close-btn:hover {
    opacity: 0.7;
}
.modal .modal-content .modal-body .modal-in {
    display: flex;
    flex-direction: column;
}
@media (max-width: 650px) {
    .modal .modal-content .modal-body .modal-in {
        padding-top: 24px;
    }
}
.modal .modal-content .modal-body .modal-in .nav-text {
    text-align: start;
    width: 100%;
}

.sign-in {
    cursor: pointer;
}

.my-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    margin-top: 24px;
    gap: 24px;
}

.my-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 10px;
}

.label {
    font-weight: 400;
    color: #8E8E93;
}

.input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(94, 94, 94, 0.3);
    border-radius: 18px;
    padding: 11px 23px;
    width: 100%;
    height: 46px;
    transition: 0.2s;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
    color: #252525;
}
.input.text {
    height: auto;
}
@media (max-width: 650px) {
    .input {
        font-size: 16px;
        line-height: 24px;
    }
}
.input:active {
    border: 1px solid #192f59;
}
.input:focus {
    border: 1px solid #192f59;
    outline: none;
}
.input::-moz-placeholder {
    color: #D1D6DE;
    font-weight: 400;
}
.input::placeholder {
    color: #D1D6DE;
    font-weight: 400;
}

.my-chek {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.file-input {
    width: -moz-max-content;
    width: max-content;
}
.file-input input {
    display: none;
}
.file-input .green-btn {
    width: -moz-max-content;
    width: max-content;
}

.mobile-menu {
    width: 100%;
    height: 100vh;
    position: fixed;
    transition: 0.3s ease;
    background: #fff;
    z-index: 11;
    top: 0;
    left: -100%;
}
.mobile-menu.active {
    left: 0;
}
.mobile-menu .back-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    transition: 0.2s;
}
.mobile-menu .back-btn:hover {
    opacity: 0.7;
    cursor: pointer;
}
.mobile-menu .mobile-in {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
}
.mobile-menu .mobile-in .nav-menu {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 18px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
}
.mobile-menu .mobile-in .nav-menu li {
    width: 100%;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu .mobile-in .nav-menu li:last-child {
    border-bottom: none;
}
.mobile-menu .mobile-in .nav-menu li .txt-16 {
    font-weight: 400;
    color: #000;
    transition: 0.2s;
}
.mobile-menu .mobile-in .nav-menu li .txt-16:hover {
    opacity: 0.8;
    color: #62BCFF;
}
.mobile-menu .mobile-in .nav-menu li .txt-16.active {
    color: #62BCFF;
}
.mobile-menu .mobile-in .footer-text {
    text-align: center;
    width: 100%;
}

body {
    transition: 0.2s ease;
}
body.my-dark {
    background: #1D2E34;
}
body.my-dark .my-input {
    background: #1D2E34;
    border: 1px solid #4B5A5F;
}
body.my-dark .my-input::-moz-placeholder {
    color: #BDCBCF;
}
body.my-dark .my-input::placeholder {
    color: #BDCBCF;
}
body.my-dark .my-input:focus {
    border: 1px solid #0A97BC;
}
body.my-dark .label {
    color: #fff;
}
body.my-dark .modal .my-input {
    background: rgb(51, 66, 72);
    border: 1px solid #4B5A5F;
}
body.my-dark .modal .my-input::-moz-placeholder {
    color: #BDCBCF;
}
body.my-dark .modal .my-input::placeholder {
    color: #BDCBCF;
}
body.my-dark .modal .my-input:focus {
    border: 1px solid #0A97BC;
}
body.my-dark .modal .modal-content .txt-16 {
    color: #fff;
}
body.my-dark .modal .modal-content .modal-body {
    background: #1D2E34;
}
body.my-dark .modal .modal-content .modal-body .close-btn {
    background: rgb(51, 66, 72);
    color: #fff;
}
body.my-dark .modal .modal-content .modal-body .close-btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
body.my-dark .modal .modal-content .modal-body .close-btn:hover {
    opacity: 0.7;
}
body.my-dark .my-btn5 {
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: rgb(51, 66, 72);
    border-radius: 12px;
    transition: 0.2s ease;
    border: none;
    outline: none;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.25);
}
@media (max-width: 650px) {
    body.my-dark .my-btn5 {
        font-size: 16px;
        line-height: 24px;
    }
}
body.my-dark .my-btn5::after {
    content: "";
    width: 50px;
    height: 200px;
    background: rgba(254, 251, 251, 0.3176470588);
    position: absolute;
    transition: 0.2s ease;
    box-shadow: 2px 3px 100px 100px rgba(254, 251, 251, 0.3176470588);
    z-index: 1;
    top: -50px;
    left: -300%;
    animation: anim 3s ease infinite;
}
body.my-dark .my-btn5 svg {
    transition: 0.2s ease;
}
body.my-dark .my-btn5 svg path {
    fill: #fff;
}
body.my-dark .my-btn5:hover {
    background: #3fc2e3;
    color: #fff;
}
body.my-dark .my-btn5:hover::after {
    opacity: 0;
}
body.my-dark .my-btn5:active {
    background: #3fc2e3;
}
body.my-dark .my-btn5:active::after {
    opacity: 0;
}
body.my-dark .my-btn5.active {
    background: #3fc2e3;
    color: #fff;
}
body.my-dark .my-btn5.active::after {
    opacity: 0;
}
body.my-dark .my-btn2 {
    background: rgb(51, 66, 72);
}
body.my-dark .my-btn2:hover {
    background: #3fc2e3;
    color: rgb(51, 66, 72);
}
body.my-dark .my-btn2:hover::after {
    opacity: 0;
}
body.my-dark .my-btn2:hover svg {
    transition: 0.2s ease;
}
body.my-dark .my-btn2:hover svg path {
    fill: rgb(51, 66, 72);
}
body.my-dark .my-btn2:active {
    background: #3fc2e3;
}
body.my-dark .my-btn2:active::after {
    opacity: 0;
}
body.my-dark .glavni-page .card-gl .video-bg {
    border: 10px solid #2A3437;
    background: #4B5A5F;
}
body.my-dark .nav-text {
    color: #fff;
}
body.my-dark .bg-white {
    background: rgb(51, 66, 72) !important;
}
body.my-dark .sec-text {
    color: rgba(255, 255, 255, 0.8);
}
body.my-dark .worked-card .text-card {
    background: #1D2E34;
    color: #fff;
    box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.25);
}
body.my-dark .dark {
    cursor: pointer;
    transition: 0.4s;
}
body.my-dark .dark svg {
    transition: 0.4s;
}
body.my-dark .dark.active {
    background: #4B5A5F !important;
}
body.my-dark .dark.active svg {
    transform: rotate(360deg);
}
body.my-dark .comanda-card {
    background: rgb(51, 66, 72);
    box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.25);
}
body.my-dark .comanda-card .top {
    background: #1D2E34;
}
body.my-dark .comanda-card .text-blog .txt-20 {
    font-weight: 600;
    color: #fff;
}
body.my-dark .comanda-card .text-blog .txt-14 {
    font-weight: 300;
}
body.my-dark .fikr-card {
    background: rgb(51, 66, 72);
    box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.25);
}
body.my-dark .my-counter .my-counter-in {
    background: rgb(51, 66, 72);
    box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.25);
}
body.my-dark .gray-4 {
    color: #fff;
}
body.my-dark .my-contact .my-contact-in {
    background: rgb(51, 66, 72);
}
body.my-dark .my-about .my-about-in .my-counter-in {
    background: rgb(51, 66, 72);
    box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.25);
}
body.my-dark .vakansi-card {
    background: rgb(51, 66, 72);
    box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.25);
}
body.my-dark .vakansi-card .txt-16, body.my-dark .vakansi-card .txt-14 {
    color: #fff;
}
body.my-dark .detail-page {
    gap: 24px;
}
body.my-dark .detail-page .right .txt-16 {
    color: #fff;
}
body.my-dark .detail-page .right .my-global-bg {
    background: rgb(51, 66, 72);
    box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.25);
}
body.my-dark .detail-page .main {
    color: #fff;
}
body.my-dark .detail-page .main .detail-page-in {
    background: rgb(51, 66, 72);
    box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.25);
}
body.my-dark .detail-page .main .detail-page-in .blog .txt-16 {
    color: #fff;
}
body.my-dark .detail-page .main .detail-page-in .blog ul li img {
    -o-object-fit: contain;
    object-fit: contain;
}
body.my-dark .detail-page .main .detail-page-in .blog .my-btn {
    width: -moz-max-content;
    width: max-content;
}
body.my-dark .blog {
    width: 100%;
    margin-top: 18px;
}
body.my-dark .blog:first-child {
    margin-top: 0;
}
body.my-dark .blog ul {
    padding-left: 0;
}
body.my-dark .blog ul li {
    display: flex;
    align-items: center;
    margin-top: 18px;
    gap: 8px;
}
body.my-dark .blog ul li img {
    -o-object-fit: contain;
    object-fit: contain;
}
body.my-dark .blog .my-btn {
    width: -moz-max-content;
    width: max-content;
}
body.my-dark .detail-static {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 20px;
    margin-top: 24px;
}
body.my-dark .btns-table {
    display: flex;
    align-items: center;
    gap: 5px;
}
body.my-dark .my-btn-t {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 5px;
    background: rgb(51, 66, 72);
    border-radius: 12px;
    color: #fff;
}
body.my-dark .rating-table {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
}
body.my-dark .rating-table table {
    width: 100%;
}
body.my-dark .rating-table .tbl-header {
    background: rgb(51, 66, 72);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px 18px 0 0;
}
body.my-dark .rating-table .tbl-header tr th {
    width: -moz-max-content;
    width: max-content;
    color: #F5FBFD;
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
    font-weight: 400 !important;
}
@media (max-width: 650px) {
    body.my-dark .rating-table .tbl-header tr th {
        font-size: 12px;
        line-height: 18px;
    }
}
body.my-dark .rating-table .tbl-content {
    height: auto;
    margin-top: 0px;
    background: rgb(39, 52, 58);
    border-radius: 0 0 18px 18px;
}
body.my-dark .rating-table .tbl-content tr td {
    color: #F5FBFD;
    align-items: center;
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
    font-weight: 400 !important;
}
@media (max-width: 650px) {
    body.my-dark .rating-table .tbl-content tr td {
        font-size: 12px;
        line-height: 18px;
    }
}
body.my-dark .rating-table th {
    padding: 18px 5px;
    text-align: left;
}
body.my-dark .rating-table td {
    padding: 12px 5px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.my-dark iframe {
    filter: grayscale(1) invert(1);
}
body.my-dark .status {
    padding: 10px 18px;
    background: rgb(93, 52, 52);
    border-radius: 18px;
    width: -moz-max-content;
    width: max-content;
    color: #fff;
}
body.my-dark .status.active {
    background: rgba(10, 174, 27, 0.1);
    color: rgb(13, 248, 36);
}
body.my-dark .table-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgb(51, 66, 72);
    padding: 10px 11px;
    border-radius: 12px;
    text-align: center;
    color: rgb(10, 151, 188);
}
body.my-dark .bottom-table {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 18px;
    margin-top: 24px;
}
body.my-dark .map-blog {
    width: 100%;
    height: 650px;
}
body.my-dark .map-blog iframe {
    width: 100%;
    height: 100%;
}
body.my-dark .tab-contents {
    width: 100%;
    margin-top: 30px;
}
body.my-dark .tab-content {
    display: none;
}
body.my-dark .tab-content.active {
    display: block;
}
body.my-dark .my-map {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    height: 620px;
    background: #4B5A5F;
}
body.my-dark .my-map iframe {
    width: 100%;
    height: 100%;
}
body.my-dark .tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 24px;
    padding-left: 0;
    margin-bottom: 0;
}
body.my-dark .anons-page {
    width: 100%;
}
body.my-dark .anons-page .img-card {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
}
body.my-dark .anons-page .img-card .img-bg {
    width: 100%;
    height: 270px;
    position: relative;
    overflow: hidden;
    background: #000;
}
body.my-dark .anons-page .img-card .img-bg a {
    width: 100%;
    overflow: hidden;
}
body.my-dark .anons-page .img-card .img-bg a:hover .plus::after {
    width: 1200px;
    height: 1200px;
}
body.my-dark .anons-page .img-card .img-bg a img {
    width: 100%;
    height: 270px;
    position: relative;
    z-index: 1;
    transform: scale(1.1);
}
body.my-dark .anons-page .img-card .img-bg a .plus {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    left: 20px;
    top: 20px;
    z-index: 4;
}
body.my-dark .anons-page .img-card .img-bg a .plus::after {
    transition: 0.4s ease;
    z-index: 2;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.25);
    width: 38px;
    height: 38px;
    border-radius: 50%;
}
body.my-dark .anons-page .main-sl {
    width: 100%;
    position: relative;
}
body.my-dark .anons-page .main-sl .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
body.my-dark .anons-page .main-sl .slider-btn.rh-bt {
    right: 10px;
}
body.my-dark .anons-page .main-sl .slider-btn.pr-bt {
    left: 10px;
}
body.my-dark .my-btns {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
    gap: 12px;
    margin-top: 18px;
}
body.my-dark .my-btns .my-btn4 {
    min-width: auto;
}
body.my-dark .my-line {
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 12px;
}
body.my-dark .my-line .line {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    color: #fff;
}
body.my-dark .main-color {
    color: #0A97BC;
}
body.my-dark .main-modal {
    width: 100%;
}
body.my-dark .main-modal .top-modal {
    width: 100%;
    display: grid;
    gap: 24px;
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
}
body.my-dark .main-modal .top-modal img {
    width: 100%;
    border-radius: 18px;
}
body.my-dark .main-modal .top-modal .blogs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgb(51, 66, 72);
    padding: 15px;
    border-radius: 18px;
}
body.my-dark .main-modal .top-modal .blogs .blog {
    padding: 0 4px;
}
body.my-dark .scren-page {
    width: 100%;
    display: grid;
    grid-template-columns: auto 70%;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgb(51, 66, 72);
    padding: 15px;
    border-radius: 18px;
}
body.my-dark .man-blog {
    display: flex;
    align-items: center;
    gap: 10px;
}
body.my-dark .man-blog img {
    width: 47px;
    height: 47px;
    border-radius: 50%;
}
body.my-dark .my-blog .rating {
    margin-top: 0;
    border: none;
    float: left;
    width: -moz-max-content;
    width: max-content;
}
body.my-dark .my-blog .rating > label {
    color: rgb(51, 66, 72);
    float: right;
}
body.my-dark .my-blog .rating > label:before {
    margin: 0;
    font-size: 2em;
    font-family: FontAwesome;
    content: "\f005";
    display: inline-block;
}
body.my-dark .my-blog .rating > input {
    display: none;
}
body.my-dark .my-blog .rating > input:checked ~ label,
body.my-dark .my-blog .rating:not(:checked) > label:hover,
body.my-dark .my-blog .rating:not(:checked) > label:hover ~ label {
    color: #0A97BC;
}
body.my-dark .my-blog .rating > input:checked + label:hover,
body.my-dark .my-blog .rating > input:checked ~ label:hover,
body.my-dark .my-blog .rating > label:hover ~ input:checked ~ label,
body.my-dark .my-blog .rating > input:checked ~ label:hover ~ label {
    color: #3fc2e3;
}
body.my-dark .ear-blog {
    width: 100%;
    padding: 24px;
    box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 80px auto;
    gap: 30px;
    align-items: center;
    border-radius: 18px;
}
body.my-dark .btn-blog {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 10px;
    border-radius: 18px;
    margin-top: 18px;
    padding: 10px;
    box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.25);
}

.navigation {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.12);
    transition: 0.3s;
    padding: 12px 0;
}
@media (max-width: 950px) {
    .navigation {
        height: auto;
        padding: 14px 0;
    }
}
.navigation.active {
    background: #fff;
    padding: 9px 0;
}
@media (max-width: 950px) {
    .navigation.active {
        padding: 12px 0;
    }
}
.navigation .navigation-in {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.navigation .navigation-in .left {
    display: flex;
    align-items: center;
}
.navigation .navigation-in .left .search-icon {
    font-size: 20px;
    color: #252525;
    transition: 0.2s;
    padding: 0 30px;
    cursor: pointer;
}
@media (max-width: 950px) {
    .navigation .navigation-in .left .search-icon {
        display: none;
    }
}
.navigation .navigation-in .left .search-icon:hover {
    color: #192f59;
}

.language {
    display: flex;
    position: relative;
    margin-left: 18px;
}
.language:hover .language-in {
    color: #192f59;
}
.language:hover .language-in svg path {
    fill: #192f59;
}
.language:hover .language-menu {
    top: 99%;
    opacity: 1;
    pointer-events: all;
}
.language .language-in {
    display: flex;
    height: 48px;
    align-items: center;
    cursor: pointer;
    gap: 4px;
    text-transform: uppercase;
    color: #232324;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #192f59;
    transition: 0.2s;
}
.language .language-in svg path {
    fill: #232324;
}
@media (max-width: 750px) {
    .language .language-in {
        border: 1px solid transparent;
        padding: 10px 5px;
        height: auto;
    }
}
.language .language-in .txt-18 {
    font-weight: 600;
}
.language .language-in .fa-chevron-down {
    font-size: 12px;
}
.language .language-menu {
    position: absolute;
    background: #fff;
    box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.12);
    padding: 12px;
    width: 100%;
    top: 110%;
    opacity: 0;
    pointer-events: none;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    transition: 0.2s;
}
.language .language-menu .txt-16 {
    text-transform: uppercase;
    transition: 0.2s;
    padding: 5px;
    width: 100% !important;
    text-align: center;
    color: #232324;
    cursor: pointer;
    font-weight: 600;
}
.language .language-menu .txt-16:hover {
    color: #192f59;
}

.logo {
    width: -moz-max-content;
    width: max-content;
}
.logo img {
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 950px) {
    .logo img {
        height: 30px;
    }
}

.hov {
    transition: 0.2s ease;
}
.hov:hover {
    opacity: 0.8;
}

.my-search {
    width: 100%;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.my-search .close {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #192f59;
    z-index: 3;
}
.my-search .close i {
    font-size: medium;
    color: #fff;
}
.my-search .form-search {
    width: 60%;
    margin: auto;
    position: relative;
    height: 60px;
}
@media (max-width: 700px) {
    .my-search .form-search {
        width: 100%;
    }
}
.my-search .form-search i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #192f59;
    pointer-events: none;
    left: 5px;
    z-index: 1;
    font-size: large;
}
.my-search .form-search .search-input {
    width: 100%;
    height: 100%;
    border: none;
    font-size: large;
    outline: none;
    position: absolute;
    left: 0;
    top: 0;
    border-bottom: 2px solid #7e7e7e;
    transition: 0.3s ease;
    padding: 11px 20px 11px 40px;
}
.my-search .form-search .search-input:focus {
    border-bottom: 2px solid #192f59;
}

.box-section {
    width: 100%;
    padding: 110px 0 40px;
}
.box-section .box-section-in {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-fac {
    margin-top: 24px;
    display: grid;
    grid-template-columns: auto;
    width: 100%;
    gap: 18px;
}
.box-fac .my-table {
    width: 100%;
    position: relative;
    padding-left: 50px;
    min-height: 220px;
}
.box-fac .my-table .date {
    width: 60px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: grid;
    grid-template-columns: auto;
    place-items: center;
    background: #192f59;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}
.box-fac .my-table .date .txt-18 {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    text-align: center;
}
@media (max-width: 1050px) {
    .box-fac .my-table {
        overflow-x: auto;
    }
}
.box-fac .my-table table {
    background: #fff;
    border-radius: 0px 12px 12px 0;
    position: relative;
    z-index: 2;
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0px 2px 5px 1px rgba(34, 60, 80, 0.2);
    min-width: 780px;
    min-height: inherit;
}
.box-fac .my-table th {
    border-bottom: 1px solid #364043;
    color: #3db166;
    font-size: 0.85em;
    font-weight: 600;
    padding: 0.5em 1em;
    text-align: left;
}
.box-fac .my-table td {
    color: #192f59;
    font-weight: 400;
    padding: 0.65em 1em;
    transition: 0.2s ease;
}
.box-fac .my-table .disabled td {
    color: #d0d7da;
}
.box-fac .my-table tbody tr {
    transition: 0.2s ease;
    border-bottom: 1px solid #bdbdbd;
}
.box-fac .my-table tbody tr:last-child {
    border: none;
}
.box-fac .my-table tbody tr:hover {
    background: #192f59;
}
.box-fac .my-table tbody tr:hover td {
    color: #fff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 5px;
}
.breadcrumb .txt-16 {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #807f7f;
}
.breadcrumb .txt-16 span {
    color: #2c2b2b;
}
.breadcrumb .txt-16 a {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #807f7f;
    transition: 0.2s;
}
.breadcrumb .txt-16 a:hover {
    color: #192f59;
}

.fac-card {
    width: 100%;
    padding: 18px 18px 18px 100px;
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 2px 5px 1px rgba(34, 60, 80, 0.2);
}
.fac-card .number {
    position: absolute;
    height: 100%;
    width: 80px;
    left: 0px;
    top: 0;
    color: #fff;
    display: grid;
    grid-template-columns: auto;
    place-items: center;
    background: #192f59;
}
.fac-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
}
.fac-card:hover .nav-text {
    color: #192f59;
}
.fac-card .nav-text {
    color: #232324;
    transition: 0.2s;
}

.nav-text {
    font-weight: 700;
    color: #252525;
}

.sec-text {
    font-weight: 700;
    color: #54595f;
    font-weight: 400;
}

.footer-bottom {
    width: 100%;
    padding: 30px 0;
    background: #2c2b2b;
}
.footer-bottom .footer-bottom-in {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
@media (max-width: 900px) {
    .footer-bottom .footer-bottom-in {
        flex-direction: column;
        gap: 18px;
    }
}
.footer-bottom .footer-bottom-in .txt-18 {
    color: #fff;
}
@media (max-width: 900px) {
    .footer-bottom .footer-bottom-in .txt-18 {
        text-align: center;
    }
}/*# sourceMappingURL=main.css.map */
