

/*--------------------- RESET -- */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    padding: 0;
}
a {
    display: inline-block;
    box-sizing: border-box;
    background-color: transparent;
    text-decoration: none;
}
img {
    border-style: none;
}
/*--------------------- RESET END -- */

html {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background-color: #00101D;
    color: #FFFFFF;
    height: 100%;
    width: 100%;
}

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

#topo {
  display: none;
  position: absolute;
  z-index: -1;
  top: 360px;
  left: 50%;
  transform: translateX(-60%);
  width: 934px;
  height: 556px;
  pointer-events: none;
}

main {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 680px;
  overflow: hidden;
}

#logocreasit {
  width: 100px;
  height: 35px;
  min-height: 35px;
  margin: 30px 0 25px;
}

h1 {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin: 0 0 15px;
}

h1::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -8px;
  bottom: 5px;
  height: 5px;
  width: 5px;
  background-color: #00ED60;
  border-radius: 50%;
}

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

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

.contacts__items a:hover svg, .contacts__items a:focus svg {
  background-color: #FFFFFF;
}

.contacts__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 95px;
  height: 135px;
  border-radius: 20px;
  background-color: #111C28;
}

.contacts__item img {
  margin-top: 15px;
  margin-bottom: 10px;
  border-radius: 50%;
}

.contacts__item h2 {
  font-size: 14px;
  line-height: 17px;
  font-weight: 800;
  text-align: center;
  margin: 0;
  padding: 0;
  color: #FFFFFF;
}

.contacts__item svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  margin: 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #00ED60;
  transition: background-color .25s ease-in-out;
}

.video-link {
  position: relative;
  display: inline-block;
  width: 300px;
  height: 210px;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 30px;
}

.video-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.56) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.video-link__label {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
}

.video-link__label svg {
  width: 45px;
  height: 45px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  margin-top: 70px;
  margin-bottom: 30px;
}

.video-link__label h2 {
  font-size: 20px;
  line-height: 20px;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
}

.links {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.social-links {
  display: flex;
  justify-content: space-between;
  width: 150px;
  height: 40px;
  margin-top: 75px;
  margin-bottom: 30px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid #464E58;
  border-radius: 50%;
  transition: .25s ease-in-out;
  transition-property: background-color border-color;
  box-sizing: content-box;
}

.social-links a svg path[fill="white"] {
  fill: #FFFFFF;
  transition: fill .25s ease-in-out;
}

.social-links a:hover, .social-links a:focus {
  border-color: #00ED60;
  background-color: #00ED60;
}

.social-links a:hover svg path[fill="white"], .social-links a:focus svg path[fill="white"] {
  fill: #00101D;
}

.links__website {
  color: #00101D;
  background-color: #FFFFFF;
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 600;
  transition: background-color .25s ease-in-out;
}

.links__website svg {
  fill: #00101D;
}

.links__website:hover, .links__website:focus {
  background-color: #00ED60;
}

@media screen and (max-width: 960px) {
  #topo {
    display: inline-block;
  }
}
