* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  text-align: justify;
}

section#about {
  background-image: linear-gradient(125deg,#08405c,#012e45);
  padding: 0 70px 0 70px;
}

#about {
  height: 100vh;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about .triangle-right {
  margin-top: 95px;
  width: 0;
  height: 0;
  border-top: 259px solid transparent;
  border-left: 470px solid #fff;
  border-bottom: 259px solid transparent;
}

#about .triangle-right img {
  position: absolute;
  left: -1px;
  top: 81px;
  width: 74%;
}

.fa-play {
  font-size: 100px;
}

#about .p-first {
  margin: 15px 0;
}

#about h2 {
  margin-bottom: 47px;
  margin-top: 12px;
}

#about .social-link-text {
  margin-top: 50px;
  margin-bottom: 25px;			
}

#about .about-link {
  padding-left: 0px;
  text-align: center;
}

#about .about-link li {
  display: inline-block;
}

#about .about-link li a i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  border: 1px solid #fff;
  margin-right: 10px;
  font-size: 22px;
  color: #fff;
  transition: all .3s;
}

#about .about-link li a i:hover {
  color: #008ad4;
  background: #fff;
  border-color: #fff;
}

#about .about-img {
  position: relative;
}

#about .about-img {
  position: relative;
}

#about .about-img .man {
  position: absolute;
  bottom: 161px;
  top: 12px;
  left: -2px;
}

.color-3 {
  color: #fff;
}

.text-white {
  color: white;
  text-align: center;
}

p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

.button {
  color: #fff;
  background-color: #00a6ff;
  border: 0;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bolder;
  padding: 15px 20px;
  text-transform: uppercase;
}

.button:hover {
  color: #fff;
  background-color: #008ad4;
  cursor: pointer;
}

img {
  vertical-align: middle;
  border: 0;
}

.container-about {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: grid;
  grid-template-columns: auto auto;
}

.float-right {
  grid-row: 1;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

.float-left  {
  grid-row: 1;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

#about h2 {
  margin-bottom: 47px;
  margin-top: 12px;
}

.h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

#about .social-link-text {
  margin-top: 25px;
  margin-bottom: 40px;
  text-align: center;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

/* ===== MODAL ===== */
a:link,
a:visited {
  text-decoration: none;
}

.modal {
  background-color: rgba(0,0,0, .8);
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  text-align: center;
  visibility: hidden;
  transition: all .5s;
}

.content {
  width: 450px;
  height: 250px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  border-radius: 1em;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}

#modal:target {
  opacity: 1;
  visibility: visible;
}

#modal:target .content {
  opacity: 1;
  visibility: visible;
}

.close {
  color: #363636;
  font-size: 2em;
  position: absolute;
  top: .5em;
  right: 1em;
}

.paragraph {
  color: #012e45;
  font-size: 20px;
  line-height: 1.5em;
}

span {
  font-weight: bolder;
}

.modal-open {
  display: inline-block;
  color: dodgerblue;
}
