@charset "utf-8";
/* CSS Document */
:root {
--primary-color: #0dcaf0;
}
body{
font-family: roboto, sans-serif;
font-weight: 400;
font-style: normal;
   /* background-image: linear-gradient(to bottom right, black, #070d48, #0b59e7);*/
    background-image: radial-gradient(circle at top left, #2278c0 0%, #070d48 30%, black 100%);
    background-size:cover;
    background-repeat: no-repeat;
    color:white;
}
h1{
font-family: roboto-condensed, sans-serif;
font-weight: 700;
font-style: normal;
    color:var(--primary-color);
}
.visforms h1{
    font-size: 1rem;
    text-transform: uppercase;
}
nav{
    margin-bottom:30px;
    }
.nav-link{
    color:#fff;
    font-size:140%;
}
li.active>a, .nav-link:hover{
    text-decoration: none !important;
}
a.nav-link:hover, li.active>a{
    color:var(--primary-color) !important;
}
.navbar-toggler{
    color:white !important;
    background-color: white;
}
#carouselExampleAutoplaying{
    margin-top:50px;
    margin-bottom:50px;
}
.carousel-caption {
    position: absolute;
    right: 0%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: right;
    font-size:5rem;
    font-family: roboto-condensed, sans-serif;
font-weight: 700;
font-style: normal;
    line-height: 100%;
    text-shadow: 2px 2px 4px #000000;
}
.mod-languages__list{
    margin-bottom:0px;
    list-style-type:none;
}
#kontakt{
    background-color:rgba(0,0,0,0.40);
}
.naglowek{
    margin-bottom:30px;
}
.carousel-item img{
  animation-name: pom;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes pom{
  from {transform: scale(2);}
  to {transform: scale(1);}
}
.nav-item::after{
    content:'';
    display:block;
    width:0%;
    height:3px;
}
.nav-item.active::after, .nav-item:hover::after{
    content:'';
    display:block;
    width:100%;
    height:3px;
    background:var(--primary-color);
    transition:1s;
}
.form-control, .form-select{
    margin-bottom:10px;
}
.realizacje p{
    margin-bottom:0px !important;
    margin-top:12px;
    font-size:1.4rem;
    padding-left:10px;
}
.text-info{
        color:var(--primary-color) !important;
}