header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    min-height: 500px;
    padding-top: 60px;
    padding-bottom: 50px;
}

body.body-ar .dropdown-menu {
    text-align: right !important;
}

.banner-content {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

nav.header-navbar {
    background-color: var(--primary-color);
    height: 60px;
    position: fixed;
    z-index: 999;
    border-bottom: 1px solid black;
}

.logo-img {
    width: 150px;
}

.nav-links {
    color: white !important;
    padding-right: 50px;
    transition: all 0.15s ease;
    font-size: 18px;
    font-weight: 600;
}

.nav-links:hover {
    color: rgb(208, 208, 208) !important;
}

.nav-links:focus {
    color: white !important;
}

.banner-title {
    font-weight: 700;
    font-size: 40px;
    color: white;
    width: 50%;
}

.banner-logo {
    margin: 0 auto;
    display: block;
    width: 250px;
}

.sidebar {
    position: fixed;
    height: 100%;
    width: 90%;
    background: linear-gradient(125deg, var(--primary-color), var(--secondary-color));
    z-index: 10000;
    border-right: 1px black solid;
    left: -100%;
    transition: left 0.5s ease;
}

.sidebar.open {
    left: 0;
}

.sidebar.close {
    left: -100%;
}

.sidebar-toggle-side,
.sidebar-toggle-nav {
    border: none;
    background: transparent;
    margin-left: 20px;
}

.sidebar-toggle-side {
    margin-left: 0;
    margin-top: 20px;
}

.sidebar-link {
    display: block;
    width: 90%;
    background-color: var(--primary-color);
    color: white;
    margin: 10px;
    margin-top: 20px;
    padding: 10px;
    font-size: 20px;
    border: black 1px solid;
    transition: all 0.15s ease;
    border-radius: 5px;
}

.sidebar-link:hover,
.dropdown-menu-side:hover {
    background-color: var(--primary-color);
    border: black 1px solid;
    color: rgb(206, 206, 206);
}

.logo-img-side {
    width: 200px;
}

.about-popup {
    position: fixed;
    z-index: 10000;
    left: 50%;
    right: 50%;
    top: 50%;
    bottom: 50%;
    border: 1px solid black;
    transform: translate(-50%, -50%);
    /*background: linear-gradient(to right, var(--blue-color), var(--blue-light-color));*/
    background-color: var(--theme-color);
    color: var(--text-color);
    height: 80%;
    width: 80%;
    text-align: center;
    display: none;
}

.contacts-popup {
    position: fixed;
    z-index: 10000;
    left: 50%;
    right: 50%;
    top: 50%;
    bottom: 50%;
    border: 1px solid black;
    transform: translate(-50%, -50%);
    /*background: linear-gradient(to right, var(--blue-color), var(--blue-light-color));*/
    background-color: var(--theme-color);
    color: var(--text-color);
    height: 80%;
    width: 80%;
    padding-left: 20px;
    display: none;
    padding-right: 30px;
}

.about-title {
    display: block;
    font-weight: 700;
    font-size: 40px;
    padding-top: 40px;
}

.about-text {
    padding: 30px;
    font-weight: 500;
    font-size: 25px;
}

.background-darken {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: black;
    opacity: 50%;
    z-index: 9999;
    display: none;
}

.contacts-title {
    color: var(--text-color);
    font-weight: 700;
    font-size: 30px;
    padding: 20px;
    padding-top: 40px;
}

.contact-links {
    display: block;
    color: white;
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    margin: 10px;
    border-radius: 50px;
    transition: all 0.15s ease;
}

.contact-links:hover {
    box-shadow: 0 4px 8px 0 #00000050, 0 6px 20px 0 #00000050;
    color: unset;
}

.facebook {
    background: linear-gradient(to left, #1877F2, #5ba0fb);
}

.twitter {
    background: linear-gradient(125deg, rgb(74, 74, 74), rgb(184, 184, 184));
}

.insta {
    background: linear-gradient(to left, #f9ce34, #ee2a7b, #6228d7);
}

.tiktok {
    background-color: #EE1D52;
}

.dropdown-menu-side {
    display: block;
    width: 90% !important;
    background-color: var(--primary-color);
    color: white;
    margin: 10px;
    margin-top: 20px;
    padding: 10px;
    font-size: 20px;
    border: black 1px solid;
    transition: all 0.15s ease;
    text-align: start;
    border-radius: 5px !important;
}

.header-navbar .btn {
    border: none;
}

.header-navbar .btn:focus {
    border: unset;
}

.sidebar .btn:focus {
    border: black 1px solid;
    background-color: var(--primary-color);
}

a.lang-links {
    background-color: var(--primary-color);
    color: white;
    padding: 5px;
    border-radius:  5px;
    font-size: 15px;
}

@media(max-width:768px) {
    header {
        padding-top: 0;
    }

    .banner-content {
        padding-top: 0;
    }

    .about-text {
        font-size: 20px;
    }

    .banner-title {
        width: 95% !important;
    }

    .small-btn {
        /*background-color: transparent;*/
        border: none;
        font-size: 17px;
        width: unset !important;
        margin-top: 28px;
    }

    .small-div {
        text-align: -moz-right;
    }
}

@media(max-width:400px) {
    .banner-title {
        font-weight: 700;
        font-size: 25px;
        color: white;
        width: 250px;
    }

    .about-text {
        padding: 10px;
    }
}
