.container {
  max-width: 1440px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
p,
span,
a {
  margin: 0;
  font-family: 'Pattaya', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
}

header {
  height: 80px;
  width: 100%;
  position: fixed;
  z-index: 10;
  top: 0px;
  left: 0px;
  background-color: #ffffff;
}

header .container {
  position: relative;
  height: 100%;
}

header.fixed {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.32);
}

header .logo {
  position: absolute;
  left: 0;
  top: 50%;
  height: 60px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.logo img {
  max-height: 100%;
}

header .actions {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media only screen and (max-width: 639px) {
  header {
    height: 56px;
  }

  header .logo {
    height: 33px;
  }

  header .actions {
    display: none;
  }
}

.btn {
  padding: 9px 30px;
  background: #ffffff;
  border: none;
  font-size: 18px;
  color: #39b54a;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
}

.btn:hover,
.btn:focus {
  text-decoration: none;
}

.btn:focus {
  color: #39b54a !important;
  color: unset;
  outline: none;
}

.btn:active {
  box-shadow: unset;
}

.btn-active {
  color: #ffffff;
  background-color: #fcd421;
}

.btn:hover {
  color: #ffffff !important;
  background-color: #fcd421;
}

.btn-active:focus {
  color: #ffffff !important;
}

.slider {
  margin-top: 80px;
  margin-bottom: 120px;
}

.slider .container {
  padding-top: 400px;
}

.slider-img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 600px;
}

.slider h2 {
  font-weight: bold;
  font-size: 48px;
  text-align: center;
  color: #ffffff;
}

.slider h4 {
  font-weight: bold;
  font-size: 36px;
  text-align: center;
  color: #ffffff;
}

@media only screen and (max-width: 1023px) {
  .slider .container {
    padding-top: 350px;
  }
}

@media only screen and (max-width: 639px) {
  .slider {
    margin-top: 56px;
  }

  .slider .container {
    padding-top: 300px;
  }
}

section.gallery {
  margin-bottom: 120px;
}

section.gallery h2 {
  margin-bottom: 64px;
  font-weight: bold;
  font-size: 48px;
  text-align: center;
  color: #fcd421;
}

section.gallery .row div {
  margin-bottom: 32px;
}

section.gallery img {
  max-width: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

section.gallery img:hover {
  box-shadow: 5px 3px 13px 0 rgba(0, 0, 0, 0.37);
  -webkit-box-shadow: 5px 3px 13px 0 rgba(0, 0, 0, 0.37);
  -moz-box-shadow: 5px 3px 13px 0 rgba(0, 0, 0, 0.37);
}

section.about {
  margin-bottom: 120px;
  padding: 96px 0;
  background-color: #39b54a;
}

.about h2 {
  margin-bottom: 64px;
  font-weight: bold;
  font-size: 48px;
  text-align: center;
  color: #ffffff;
}

.about p {
  font-size: 24px;
  color: #ffffff;
}

section.contacts {
  margin-bottom: 120px;
}

section.contacts h2 {
  margin-bottom: 64px;
  font-weight: bold;
  font-size: 48px;
  text-align: center;
  color: #fcd421;
}

section.contacts a {
  position: relative;
  font-size: 24px;
  color: #000000;
}

section.contacts a.tel::before {
  content: ' ';
  position: absolute;
  left: -40px;
  width: 24px;
  height: 24px;
  background-image: url('img/call-answer.svg');
  background-size: cover;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

section.contacts a.email::before {
  content: ' ';
  position: absolute;
  left: -40px;
  width: 24px;
  height: 24px;
  background-image: url('img/message-closed-envelope.svg');
  background-size: cover;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

section.contacts .col-xs-12 div {
  text-align: center;
  margin-bottom: 24px;
}

footer {
  padding: 24px 0;
  background-color: #1a252f;
}

footer span {
  font-size: 14px;
  color: #ffffff;
}

footer span.right {
  float: right;
}

footer span a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: underline;
}

footer span a:hover {
  color: #ffffff;
  text-decoration: unset;
}

footer span a:focus {
  color: #ffffff;
  text-decoration: unset;
  outline: none;
}