/* CSSReset */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global */
.section{
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 5vw;
}

.container{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.inner{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inner *{
  margin-bottom: 20px;
}

.image{
  width: 100%;
  height: 20vw;
  object-fit: cover;
  object-position: center;
}

.w1{
  width: 100%;
}

.w2{
  width: 47.5%;
}

.w3{
  width: 30%;
}

.w4{
  width: 21.25%;
}

.section__title{
  margin-bottom: 5vw;
}

h1{
  font-size: 3.5em;
  font-family: "Noto Sans Display";
}

h2{
  font-size: 2.5em;
  font-family: "Noto Sans Display";
  color: rgb(0, 0, 107);
}

h3{
  font-size: 1.5em;
  font-family: "Monsterrat";
}

p{
  font-size:1.4em;
  font-family: "Monsterrat";
}

.ta{
  text-align: center;
}

.se{
  justify-content: space-evenly;
}

.link{
  text-decoration: none;
  font-size: 30px;
  color: #3d3dff;
  font-family: "Monsterrat";
}
.link:hover{
  color: #0400ff;
  transition: 0.5s;
}
.link:active{
  color:#0300a1;
}

.nsp{
  padding: 0;
  display: flex;
  align-items: center;
}

.tc{
  width: 82%;
}

.bc1{
  background-color: rgb(233 233 233 / 36%);
}

.bc2{
  background-color: rgb(0, 0, 107);
}

/* Local tags */
.section__menu{
  height: 80px;
}

.text{
  position: absolute;
  color: white;
}

.MainImg{
  position: relative;
  background-image: url('images/MainImg.jpg');
  background-size: cover;
  height: 800px;
  align-items: center;
}

.MainImg::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:rgba(0, 0, 0, .5);
}


.GoodSide{
  background: url('images/GoodSide.png');
  background-size: cover;
}

.BadSide{
  background: url('images/BadSide.gif');
  background-size: cover;
}

.cw{
  color: white;
}

.linkblock{
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background: url('images/ITcube.jpg');
  background-size: cover;
}

/* Media and Font-Family */
@font-face{
  font-family: "Monsterrat";
  src: url('fonts/MonsterratAlternates/MontserratAlternates-Medium.ttf')
  format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face{
  font-family: "Noto Sans Display";
  src: url('fonts/NotoSansDisplay/static/NotoSansDisplay/NotoSansDisplay-Medium.ttf')
  format("truetype");
  font-style: normal;
  font-weight: normal;
}
@media(max-width: 1190px){
  .link{
    font-size: 30px;
  }
}
@media(max-width: 800px){
  .link{
    font-size: 25px;
    font-weight: 600;
  }
  .GoodSide{
    display: none;
  }
  .BadSide{
    display: none;
    width: 0;
  }
  .w2{
    width: 100%;
  }
  .w3{
    width: 0;
  }
}
@media(max-width: 600px){
  .link{
    font-size: 20px;
  }
}