@import url('https://fonts.googleapis.com/css?family=Raleway:600');
@import url('https://fonts.googleapis.com/css?family=Varela+Round');

* {
  font-family: 'Varela Round', sans-serif;
}

a {
  color: #FFF;
}

a:hover {
  color: #FFF;
  text-decoration: none;
}

h1 {
  font-family: 'Raleway', sans-serif;
}


/*  ----------- Перший слайд -----------   */

.bgVideo{
    position: absolute;
    z-index: -100;
    right: 0;
    bottom: 0;
    top:0;
    right:0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-color: black; /* in case the video doesn't fit the whole page*/
    background-image: /* our video */;
    background-position: center center;
    background-size: contain;
    object-fit: cover; /*cover video background */
}


.slide1 {
    background: #2980b9;
    text-align: center;
    color: #FFF;
    
}

.madeIn {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.madeIn span {
    color: #c0392b;
}


/*  ----------- Другий слайд -----------   */


.slide2 {
    background: #2e5266;
    color: #FFF;

}

.socialButt img {
    width: 60px;
    height: 60px;
    border-radius: 20%;
    padding: 10px;
    border: 2px solid #FFF;
    margin: 5px;
    transition: 0.2s;
}

.socialButt:hover img {
    border: 5px solid #FFF;
    transition: 0.2s;
}



.gallery {
    display: none;
}
@media(min-width: 640px) {
    .gallery {
    display: block;
    }
    
}



.gallery__img {
    width: 200px;
    height: 200px;
}
@media(min-width: 1100px) {
   .gallery__img {
    width: 300px;
    height: 300px;
}
}

@media(min-width: 1600px) {
    .gallery__img {
        width: 400px;
        height: 400px;
    }
}


.connection {
    text-align: center;
    padding: 30px;
    text-transform: uppercase;
    font-size: 30px;
}


/*  ----------- Третій слайд -----------   */

.slide3 {
    background: #11806A;
    padding-right: 45px;

}

/*  ----------- Четвертий слайд -----------   */

.slide4 {
    background: #464646;
    padding-right: 45px;
}


