body {
    --primary-rgb: 11, 58, 120;
    --secondary-rgb: 40, 170, 225;
    --success-rgb: 164, 199, 62;
}

@font-face {
    font-family: "GothanRoundedBold";
    src: url("/fonts/GothamRoundedBold.ttf");
}

@font-face {
    font-family: "GothanRoundedBook";
    src: url("/fonts/GothamRoundedBook.ttf");
}

@font-face {
    font-family: "GothanRoundedMedium";
    src: url("/fonts/GothamRoundedMedium.ttf");
}

html,
body,
main {
    height: 100%;
    font-family: "GothanRoundedMedium";
}

.bg__primary {
    background-color: rgb(var(--primary-rgb));
}

.bg__secondary {
    background-color: rgb(var(--secondary-rgb));
}

.bg__success {
    background-color: rgb(var(--success-rgb));
}

.text__primary {
    color: rgb(var(--primary-rgb));
}

.text__success {
    color: rgb(var(--success-rgb));
}

a { 
    text-decoration:none !important;
}

.logo-header {
    height: auto;
    width: 150px;
}

.nav-link {
    color: white;
    font-size: large;
}

.gotin {
    bottom: 5%;
    right: 1%;
    font-size: small;
    line-height: 0.8rem;
}

    .gotin .image__gotin {
        width: 50px;
        height: auto;
    }

.social figure {
    width: 40px;
    margin-bottom: 0.4rem;
}

.actions-main figure {
    width: 30%;
}

.news img {
    height: 180px;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.contacts figure {
    width: 30px;
}

.pointer {
    cursor: pointer;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {
    .dropdown-menu li {
        position: relative;
    }

    .dropdown-menu .submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: -7px;
    }

    .dropdown-menu .submenu-left {
        right: 100%;
        left: auto;
    }

    .dropdown-menu > li:hover {
        background-color: #f1f1f1;
    }

        .dropdown-menu > li:hover > .submenu {
            display: block;
        }
}
/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {
    .dropdown-menu .dropdown-menu {
        margin-left: 0.7rem;
        margin-right: 0.7rem;
        margin-bottom: 0.5rem;
    }
}
/* ============ small devices .end// ============ */

