/* Отображение горизонтального скроллбара только при ховере (прокрутка) */
body {
  overflow-x: hidden;
}

body a {
    text-decoration: none;
    color: #333;
    transition: 0.2s linear;
}
body a:hover {
    color: darkgray;
}

.custom_navbar{
    background-image: url('/static/artauction/core-img/f-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.blur-mask {
  backdrop-filter: blur(20px);
  background-color: rgba(0,0,0,0.4);

}

#language {
  width: auto;!important;
  border: none;!important;
  outline: none;!important;
  background-color: transparent;!important;
  font-weight: bold!important;
  box-shadow: none!important;
}

i{
    padding: 0px 5px 0px 5px;
}
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #6351ce;
}
.navbar-nav a{
    padding: 5px 10px;
}

.quick-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.quick-link{
    color: #fff;
    margin-left: 35px;
}
.quick-link:hover{
    color: darkgray;
    }
.quick-links li a{
    color: #fff
}
.quick-links li a:hover{
    color: darkgray;
}

.card_img{
    position: relative;
    padding: 33.33%;
}

.card_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;

    top: 0;
    left: 0;
}
.contact-information{
    background-color: #1B3D6D;
    border-radius: 10px;
    color: white;
    margin-top: 10px;
    padding: 80px 30px;
}

@media (max-width: 767px){
    .header-social-icon{
        display: none;
    }
    .header-text{
        font-size: 12px;
    }
}

.gradient-custom {
    /* fallback for old browsers */
    background: #4e5265;

    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to right, rgba(10,23,87,0.8), rgba(90,55,185,0.8));

    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(to right, rgba(10,23,87,0.8), rgba(90,55,185,0.8))
  }

.gradient-custom-white{
    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to right, rgba(10,23,87,0.8), rgba(90,55,185,0.8));

    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(112deg, rgba(255, 255, 255, 0.16) 0.72%, rgba(255, 255, 255, 0.30) 55%, rgba(255, 255, 255, 0.06) 99.28%);
}

.bg-card-service {

    background: rgba(83,104,114, 0.50)!important;

}
.forselect {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.line {
    display: block;
    width: 4px;
    height: 50px;
    background-color: #333;
    position: absolute;
    top: 100%; /* Позиционируем линию под кругом */
}

/* Анимация для кругов */
@keyframes bounce-in {
    0% {
        transform: scale(0.5);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes show_header {
	0% {
		opacity: 0.3;
		top: -70px;
	}
	100% {
		opacity: 1;
		top: 0;
	}
}


