html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



@import url(https://fonts.googleapis.com/css?family=Montserrat);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
@import url("https://cdn.web-fonts.ge/fonts/bpg-nino-mtavruli/css/bpg-nino-mtavruli.min.css");

h1 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 4em;
  color: #333;

  word-spacing: 16px;
}

p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4em;
  font-weight: bold;
  color: #222;
}

.container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: url('');
  background-size: cover;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  height: auto;
  display: table;
}

.content {
  display: table-cell;
  vertical-align: middle;
}

.item {
  width: auto;
  height: auto;
  margin: 0 auto;
  text-align: center;
  padding: 8px;
}

@media only screen and (min-width: 800px) {
  h1 {
    font-size: 6em;
  }
  p {
    font-size: 1.6em;
  }
}

@media only screen and (max-width: 320px) {
  h1 {
    font-size: 2em;
  }
  p {
    font-size: 1.2em;
  }
}

.header {
  max-width: 500px;
  margin: 50px auto;
  text-align: center;
}

.header__btns {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.header__btn {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  padding: 10px 20px;
  margin-right: 10px;
  background-color: #fff;
  border: 1px solid #2c2c2c;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
}
.header__btn:last-child {
  margin-right: 0;
}
.header__btn:hover, .header__btn.js-active {
  color: #fff;
  background-color: #2c2c2c;
}

.header__title {
  margin-bottom: 10px;
  font-weight: 500;
}

.header__subtitle {
  margin-bottom: 30px;
  font-size: 20px;
}

.content {
  width: 700px;
  max-width: 95%;
  margin: auto;
}

.effect {
  margin: 50px 0;
}

.effect__title {
  text-align: center;
}

.effect__cell {
  margin-bottom: 20px;
  width:500px;
  margin:1% auto;
}
@media (max-width: 767px) {
  .effect__cell {
    margin-bottom: 20px;
    width:400px;
    margin:3% auto;
  }
}
.effect__cell:last-child {
  margin-bottom: 0;
}

/******* COMMON NOTIFICATION STYLES *******/
.notification {
  display: flex;
  max-width: 700px;
  padding: 20px;
  border-radius: 5px;
  box-sizing: border-box;
}
.notification:before {
  display: inline-flex;
  flex-shrink: 0;
  content: "";
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}

.notification--elevation {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px;
}

.notification__btn {
  border: none;
  background-image: none;
  background-color: transparent;
  cursor: pointer;
}

.notification__btn--close {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-indent: -99999px;
}

.notification__title {
  margin-top: 0;
  margin-bottom: 10px;
}

.notification__content p {
  margin-top: 0;
  line-height: 1.5;
}
.notification__content p:last-child {
  margin-bottom: 0;
}
.notification__content a {
  text-decoration: underline;
}


/******* NOTIFICATIONS #4 *******/
.notification4 {
  position: relative;
  padding: 0 20px 0 0;
  flex-wrap: wrap;
}
@media (min-width: 500px) {
  .notification4 {
    flex-wrap: nowrap;
    gap: 20px;
  }
}
.notification4:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  flex-shrink: 0;
  content: "";
  background-position: 50%;
}
@media (min-width: 500px) {
  .notification4:before {
    width: 80px;
  }
}

.notification4--success:before {
  background-color: #D60000;
  background-size: 80px auto;
  background-image: url(../images/linklogo.png);
}
@media (min-width: 500px) {
  .notification4--success:before {
    
  }
}
.notification4--success a {
  color: #D60000;
}

.notification4--warning:before {
  background-color: #D60000;
  background-size: 80px auto;
  background-image: url(../images/linklogo.png);
}
@media (min-width: 500px) {
  .notification4--warning:before {
    
  }
}
.notification4--warning a {
  color: #D60000;
}

.notification4--danger:before {
  background-color: #D60000;
  background-size: 80px auto;
  background-image: url(../images/linklogo.png);
}
@media (min-width: 500px) {
  .notification4--danger:before {
    
  }
}
.notification4--danger a {
  color: #D60000;
}

.notification4__title--success {
  color: #D60000;
}

.notification4__title--warning {
  color: #D60000;
}

.notification4__title--danger {
  color: #D60000;
}

.notification4__content {
  padding: 20px 0;
  margin-left: 80px;
}
@media (min-width: 500px) {
  .notification4__content {
    margin-left: 100px;
    margin-right: 30px;
  }
}

.notification4__btn-bar {
  display: inline-flex;
  padding-top: 20px;
  width: 100%;
  order: -1;
  justify-content: flex-end;
}
@media (min-width: 500px) {
  .notification4__btn-bar {
    width: auto;
    order: 0;
  }
}

.notification4__close {
  background-image: url("https://assets.codepen.io/3341051/cancel.svg");
}

.files-list-item{
  font-size:1em;
  font-family: "BPG Nino Mtavruli", sans-serif;

}







