@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --bg-color: #404040;
    --bg-card: #2C2C2C;
    --bg-button: #cce337;
    --head-title: #afafaf;
    --text-color: #CCCCCC;
    --bg-footer: #2C2C2C;
}
body {
    background-color: var(--bg-color);
    font-family: 'Rubik', sans-serif;
}
a {
    text-decoration: none;
}
p, h1, h2, h3, h4, h5, ul, li, ul li, ol {
    padding: 0;
    margin: 0;
}
ul, li {
    list-style: none;
}

/*
Center
 */
.navigation {
    padding: 30px 0;
    background-color: var(--bg-card);
    position: sticky;
    top: 0;
    z-index: 99999;
}
.menu {
    color: #FFFFFF;
    font-size: 20px;
    display: flex;
    font-weight: 300;
    align-items: center;
}
.menu i{
    font-size: 28px;
    margin-right: 5px;
}
.menu button {
    display: flex;
    font-weight: 300;
    align-items: center;
    background-color: transparent;
    border: none;
    color: white;
}
.bgBigMenu {
    background-color: #404040;
}
.bigMenu {
    padding: 100px 0;
}
.bigMenu li {
    margin-bottom: 30px;
}
.bigMenu .bigMenuLink {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 300;
    transition: all .3s;
}
.bigMenu .bigMenuLink:hover {
    color: var(--bg-button);
}
.language button {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 2rem
}
.language a {
    color: var(--head-title);
    padding: 10px;
    transition: 0.3s all;
}
.language a:hover {
    color: #FFFFFF;
}
.videoSlide {
    max-width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}
.back-video {
    max-width: 100%;
    object-fit: cover;
    z-index: -1;
}
.ust {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%);
    z-index: 2;
    text-transform: uppercase;
    width: 100%;
    background-color: rgba(75, 75, 75, 0.6);
    color: #FFFFFF;
    padding: 0 20px;
}
@media (min-aspect-ratio: 16/9) {
    .back-video {
        width: 100%;
        height: 60vh;
    }
}
@media (max-aspect-ratio: 16/9) {
    .back-video {
        width: auto;
        height: 100%;
    }
}
.cardArea .row {
    background-color: var(--bg-card);
    align-items: center;
}
.firstCard {
    padding: 50px 100px;
}
.firstCard .cardTitle {
    color: var(--head-title);
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 10px;
}
.firstCard .cardTitle:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 3px solid var(--bg-button);
    width: 30px;
}
.firstCard p {
    color: var(--text-color);
    text-align: justify;
    text-indent: 30px;
}
.estetik {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 36px;
    color: var(--head-title);
    text-align: center;
    padding: 100px 0;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 2px;
}
.estetik p {
    color: #FFFFFF;
    display: inline;
    text-shadow: 2px 2px 5px rgba(255,255,255,.3);
}
.contactUs {
    background-color: var(--bg-card);
}
.contactUsRight {
    padding: 50px 100px;
}
.contactUsRight .form-control {
    border-radius: 0;
    padding: 10px 20px;
    border: 0;
    margin-top: 10px;
}
.contactUsRight .form-control:focus {
    border: 0;
    box-shadow: none;
}
.maps iframe {
    display: block;
    border: none;
    height: 70vh;
}

/*
Footer
 */
.footer {
    background-color: var(--bg-footer);
}
.footerHead {
    padding: 100px 0;
}
.footerHead a {
    transition: .3s all;
    color: var(--text-color);
}
.footerHead a:hover {
    color: var(--bg-button);
}
.footerHead p {
    color: var(--text-color);
    margin: 0 0 10px 0;
    cursor: pointer;
}
.footerHead i {
    margin: 0 10px 0 0;
}
.footerTitle {
    color: var(--head-title);
    font-weight: 400;
    margin: 0 0 30px 0;
    position: relative;
    padding: 0 0 10px 0;
}
.footerTitle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 3px solid var(--text-color);
    width: 20px;
}

.footerHead .form-control {
    border-radius: 0;
    padding: 10px 20px;
    border: 0;
}
.footerHead .form-control:focus {
    border: 0;
    box-shadow: none;
}
.btn-footer {
    border-radius: 0;
    margin: 15px 0 0 0;
    text-transform: uppercase;
    padding: 10px 30px;
    width: 100%;
    font-weight: 300;
    transition: all .3s;
    z-index: 1;
    position: relative;
    overflow: hidden;
}
.btn-footer:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-button);
    z-index: -2;
}
.btn-footer:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg-color);
    transition: all 0.3s;
    z-index: -1;
}
.btn-footer:hover {
    color: var(--head-title);
}
.btn-footer:hover:before {
    width: 100%;
}
.copyrightArea {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    padding: 15px;
    border-top: 1px solid #4c4c4c;
}
.copyrightArea span {
    font-weight: 600;
    color: #FFFFFF;
}
.copyrightArea p{
    margin: 0;
    padding: 0;
}
.loginPage {
    padding: 50px 0;
}

/**
Swiper JS
 */
.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    position: relative;
}



.sliderWidgetBox {
    border-radius: 15px;
    background-color: #2C2C2C;
    padding: 30px 40px 30px 40px;
    color: #FFFFFF;
    position: relative;
    line-height: 30px;
    border: 1px solid #5C5C5C;
}
.sliderWidgetBox h4 {
    margin-bottom: 30px;
}
.sliderWidgetBox article{
    position: relative;
    z-index: 1;
}
.sliderWidgetBox .sliderWidgetBoxImage {
    margin-top: 30px;
    position: absolute;
    max-width: 100%;
    right: -30%;
    top: 10%;
    z-index: 0;
    animation: 2s infinite alternate topdown;
}
.sliderWidgetBox .sliderWidgetBoxImage img {
    filter: drop-shadow(0 0 15px rgba(0,0,0,.3));
    z-index: 0;
}
@keyframes topdown {
    from {
        transform: translateX(0px);
    }
    to {
        transform: translateX(10px);
    }
}
/**
Swiper Js
 */
@media only screen and (max-width: 900px) {
    .firstCard, .secondCard {
        padding: 25px;
    }
    .contactUsRight {
        padding: 25px;
    }
    .footerRight {
         margin-top: 30px;
     }
    .bigMenuRight {
        padding: 25px;
    }
}
@media only screen and (max-width: 576px) {
    .firstCard {
        padding: 25px;
    }
    .contactUsRight {
        padding: 25px;
    }
    .footerHead {
        padding: 30px 0;
    }
    .footerLeft {
        text-align: center;
        border-bottom: 1px solid #424242;
        padding-bottom: 30px;
    }
    .footerCenter {
        border-bottom: 1px solid #424242;
        padding-bottom: 30px;
    }
    .footerCenter, .footerRight {
        margin-top: 30px;
    }
    .copyrightArea {
        display: block;
        text-align: center;
    }
    .copyrightArea p:first-child {
        margin-bottom: 15px;
    }
    .bigMenuRight {
        padding: 25px;
    }
}

/**
Admin Page
 */
.verticalMenu {
    padding: 50px 25px;
    background-color: #3e4752;
    color: white;
    min-height: 100vh;
    height: 100%;
}
.adminPageMenuItem {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #919191;
}
.adminPageMenuLink {
    color: #FFFFFF;
    font-weight: 500;
    letter-spacing: 2px;
}
.adminPageMenuLink:hover {
    color: #d0d0d0;
}
.contentArea {
    padding: 50px 25px;
}
.contentArea label {
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.contentArea input {
    margin-bottom: 20px;
}
.contentArea textarea {
    margin-bottom: 20px;
}
.contentArea .form-select {
    border-radius: 0;
    padding: 10px 20px;
}
.contentArea .form-control {
    border-radius: 0;
    padding: 10px 20px;
}
.contentArea .form-control:focus {
    box-shadow: none;
}
.ck-editor__editable[role="textbox"] {
    /* editing area */
    min-height: 200px;
    margin-bottom: 20px;
}
.bannerBig {
    background-image: url("../images/world-map.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px;
    text-align: center;
    color: var(--text-color);
}
.bannerBigTitle {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    margin: 20px 0;
}