body {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: 'Quicksand', sans-serif;
  background-image: url(../images/home/back.png);
  background-attachment: fixed;
}

/*titlelink*/
.titlelink {
  text-decoration: none;
  color: #fff;
}

.titlelink:hover {
  text-decoration: none;
  color: #fff;
}

/* titlelink1 (in bigram - link) */
.titlelink1 {
  text-decoration: none;
  color: #000;
}

.titlelink1:hover {
  text-decoration: none;
  color: ##232D39;
}

/* color container */
section>.container {
  background-color: #fff;
}

/* preloader */
#preloader {
  background-color: #232D39;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 350ms ease;
}

.dot {
  width: 20px;
  height: 20px;
  margin: 0 10px;
  border: 4px solid #fff;
  border-radius: 50%;
  animation: show 1s ease infinite;
}

.dot:nth-child(2) {
  animation-delay: 300ms;
}

.dot:nth-child(3) {
  animation-delay: 600ms;
}

@keyframes show {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
    opacity: 1
  }

  100% {
    opacity: 0;
  }
}

#preloader.preloader-hiding {
  opacity: 0;
}

#preloader.preloader-hidden {
  display: none;
}

/* home photo */
.home {
  background-image: url(../images/home/tlo.jpg);
  background-size: cover;
  height: 100vh;
}

/* main logo */
.logo {
  position: absolute;
  top: 30%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.logo>img {
  width: 50vh;
  height: 50vh;
}

/* icon keyboard_arrow_down */
.down-icon {
  color: #fff;
  display: block;
  text-align: center;
}

.icon {
  height: 5vh;
  width: 100%;
  position: absolute;
  bottom: 60px;
  text-align: center;
}

/* navbar */
#navbar {
  background-color: #222C38;
  height: 70px;
  z-index: -2000;
  position: absolute;
}

.logo-navbar>img {
  float: left;
  height: 50px;
  width: 50px;
  padding: 0;
  margin: 0;
}

/* hyperlink */
.hyperlink {
  color: #fff;
}
.hyperlink:hover{
  cursor: pointer;
}

/* menu RWD */
#panel {
  display: none;
  width: 300px;
  height: 100%;
  background-color: #222C38;
  color: #fff;
  position: fixed;
  overflow-y: auto;
  z-index: 1001;
  top: 0;
  right: -310px;
  text-align: center;
}

#panel>ul {
  text-align: center;
  font-size: 20px;
  margin-left: -5px;
}

#panel>ul>li {
  list-style-type: none;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: -30px;
}

#panel>ul>hr {
  width: 150%;
  background-color: #fff;
  margin-left: -40px;
}

#button-hide-panel {
  display: block;
  padding: 5px;
  font-size: 40px;
}

#button-hide-panel:hover {
  cursor: pointer;
}

#button-show-panel {
  font-size: 40px;
  text-align: center;
  width: 100%;
  height: 40px;
}

/* contact */
.phone {
  color: #000;
  margin-left: 10px;
}

.phone:hover {
  text-decoration: none;
}

/*time */
.photo-person {
  width: 265px;
  height: 265px;
  margin: 0 auto;
}

.photo-person>img {
  width: 100%;
}
