/* latin */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: url(fonts/quicksand.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Quicksand', sans-serif;

}
nav{
  background: #fff;
  display: flex;
  justify-content: right;
  align-content: center;
  position: fixed;
  left:0;
  right:0;
  width: 100vw;
  height: 60px;
  z-index: 999;
  box-shadow: 0px 0px 10px #555;
}

nav #logo{
  position: absolute;
  left: 10px;
  top: 5px;
  color: #222;
  font-family: 'Georgia', serif;
}
nav #burger{
  position: absolute;
  right: 30px;
  top: 7.5px;
  font-size: 30px;
  display: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 25px;
  cursor: pointer;
}
nav #burger span{
  display: inline-block;
  position: relative;
  height: 5px;
  width: 40px;
  background-color: #222;
  transition: all 0.5s cubic-bezier(0.34, 0.07, 0.1, 1);
  display: none;
}
#burger span:before, #burger span:after {
  content: '';
  height: 5px;
  width: 40px;
  position: absolute;
  right: 0;
  background-color: #222;
  transition: all 0.5s cubic-bezier(0.34, 0.07, 0.1, 1);
}
#burger span:before {
  top: -10px;
}
#burger span:after {
  bottom: -10px;
}

nav #burgerSwitch{
  display: none;
  opacity: 0;
}

nav ul{
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  width: inherit;
}

nav a{
  text-decoration: none;
  color: #222;
  transition: .3s;
}

nav ul li{
  margin: 0px 20px;
  color: #222;
  font-family: arial;
  cursor: pointer;
  transition: .3s;
}
nav ul li:hover a{
  color: purple;
}
nav ul li:last-child{
  margin-right: 35px;
}

@media screen and (max-width: 675px){
  nav #burger span{
    display: inline-block;
  }
  nav #burgerSwitch:checked ~ ul{
    opacity: 1 !important;
    transform: translateY(0) !important;
    height: auto;
  }
  nav #burgerSwitch:checked ~ #burger > span{
    background-color: transparent;
  }
  nav #burgerSwitch:checked ~ #burger > span:before{
    top: 0;
    transform: rotate(-45deg);
  }
  nav #burgerSwitch:checked ~ #burger > span:after{
    top: 0;
    transform: rotate(45deg);
  }
  nav ul{
    display: block;
    position: absolute;
    left: 0;
    top: 43px;
    width: 100vw;
    height: 0;
    background: white;
    opacity: 0;
    box-shadow: 15px 0px 15px -7px black;
    transform: translateY(-100px);
    z-index: -1;
    overflow: hidden;
    transition: all .3s;
  }
  nav ul li{
    height: 60px;
  }
  nav ul li:nth-child(1){
    padding-top: 25px;
  }
  nav #burger{
    display: block;
  }
}

.header{
  width: 100vw;
  min-height: 350px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: url(../src/Sreemik_fon.jpg);
  background-size: cover;
  background-repeat: repeat;
  animation: backgr 185s linear infinite;
}
@keyframes backgr{
  0%{
    background-position: 0 10000px;
  }
  100%{
    background-position: 0 0;
  }
}
.header p{
  color: white;
  font-family: arial;
  text-align: center;
  font-size: 25px;
  max-width: inherit;
  padding-top: 55px;
  color: #FFCCFF;
  padding-bottom: 20px;
}
.header p span{
  font-size: 60px;
  line-height: 110px;
  font-family: 'Georgia', serif;
  flex-basis: 100%;
}

.mainContainer{
  position: relative;
  width: 100vw;
  min-height: calc(100vh - 350px);
  background: #fefefe;
}

.section{
  width: 100vw;
  min-height: 420px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: start;
}

.section .leftCol{
  width: 50vw;
  margin: 0 0;
  height: inherit;
}

.section .rightCol{
  width: 50vw;
  margin: 0 0;
  height: inherit;
}

#section1 h1{
  flex-basis: 100%;
  text-align: center;
}
#section1 p{
  text-align: center;
  box-sizing: border-box;
  padding: 0 3vw;
}
#section1 .content{
  box-sizing: border-box;
  padding: 0 3vw;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
  margin: 50px 0;
  width: 94vw;
  text-align: center;
}
#section1 .content ul{
  text-align: left;
  margin-bottom: 30px;
}

/*
  Table
*/

.table td {
	  font-weight: normal;
	  font-size: 1em;
  -webkit-box-shadow: 0 2px 2px -2px #0E1119;
	   -moz-box-shadow: 0 2px 2px -2px #0E1119;
	        box-shadow: 0 2px 2px -2px #0E1119;
}

.table{
  text-align: left;
	overflow: hidden;
	width: 94vw;
	margin: 0 auto;
  display: table;
  table-layout: fixed;
  padding: 0 0;
  border-radius: 12px;
  margin-bottom: 20px;
  border-collapse: collapse;
}

.table td, .table th {
	  padding-bottom: 1.5%;
	  padding-top: 1.5%;
  padding-left:1.5%;
}

.table tr{
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  color:#00557F;
  font-style: italic;
}

.table tbody tr:last-child{
  border: none;
}

.table th {
	background-color: #fff;
  color: #649;
  font-style: normal;
}


.table{
   background-color: rgba(84, 160, 255, 0.5);
}

.footer{
  margin-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.2);
  min-height: 40px;
  width: 100vw;
  background: #fff;
  color: #000;
  box-shadow: 0px 0px 15px -5px rgba(0,0,0,0.5);
  display: flex;
align-content: center;
justify-content: center;
}

.footer ul{
  width: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0 0 0 -40px;
  flex-wrap: wrap;
}
.footer ul li{
  margin: 5px 20px;
}
.footer ul li a{
  text-decoration: none;
}
.footer ul li a:active{
  color: purple;
}
