@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700;900&display=swap");
body {
  color: #999999;
  font-family: "Raleway", sans-serif;
  font-size: 1em;
  font-weight: 400;
  background-color: #fff;
}

a {
  color: #000000;
  transition: 0.2s;
}
a:hover {
  color: #333;
}

p {
  color: #999999;
}

section {
  text-align: center;
  padding: 6rem 0;
  position: relative;
}

h1 {
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  line-height: 34px;
  letter-spacing: 1px;
  color: #000000;
}
@media (max-width: 767px) {
  h1 {
    font-size: 42px;
    line-height: 46px;
  }
}

h2 {
  font-family: "Raleway", sans-serif;
  font-size: 48px;
  line-height: 54px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #000000;
}
@media (max-width: 767px) {
  h2 {
    font-size: 38px;
    line-height: 44px;
  }
}

.btn {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  text-transform: capitalize;
  color: #000000;
  font-weight: bold;
  padding: 0.85rem 2rem;
  background-color: #fff;
  transition: 0.5s;
  border-radius: 6px;
  border: 2px solid #000000;
}
@media (max-width: 767px) {
  .btn {
    padding: 0.7rem 1.5rem;
  }
}
@media (max-width: 576px) {
  .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.875rem;
  }
}
.btn:hover {
  background-color: #000000;
  color: #fff;
  border-color: #000000;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 1rem 0;
  z-index: 9;
  transition: 0.5s ease-in-out;
}
@media (max-width: 991px) {
  header {
    padding: 1rem 2rem;
  }
  header .container {
    max-width: inherit;
  }
}
@media (max-width: 767px) {
  header {
    padding: 1rem 0;
  }
}
@media (max-width: 576px) {
  header {
    padding: 0;
  }
}
header .navbar-brand {
  opacity: 0;
  transition: 0.5s ease-in-out;
}
@media (max-width: 576px) {
  header .navbar-brand {
    opacity: 1;
  }
}
header .navbar-brand img {
  height: 50px;
}
@media (max-width: 767px) {
  header .navbar-brand img {
    height: 45px;
  }
}
@media (max-width: 576px) {
  header .navbar-brand img {
    height: 40px;
  }
}
header .navbar-nav {
  flex-direction: row;
}
@media (max-width: 576px) {
  header .navbar-nav {
    flex-direction: column;
    background-color: #000000;
  }
}
header .navbar-nav .nav-item .nav-link {
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 0;
  margin: 0 1rem;
}
@media (max-width: 767px) {
  header .navbar-nav .nav-item .nav-link {
    font-size: 14px;
    margin: 0;
    padding: 0.5rem;
  }
}
header .navbar-nav .nav-item:last-child .nav-link {
  margin-right: 0;
}
header .navbar-toggler {
  padding: 0;
  box-shadow: none;
  border: 0;
  outline: none;
  transition: none;
  position: relative;
  z-index: 3;
}
header .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar-toggler .navbar-toggler-icon {
  padding: 0;
}
header .navbar-toggler .navbar-toggler-icon svg {
  height: 100%;
  width: 100%;
}
header.fixed {
  padding: 0 1rem;
  background-color: #000000;
}
header.fixed .navbar-brand {
  opacity: 1;
}
@media (max-width: 576px) {
  header {
    background-color: #000000;
  }
}

.separator {
  position: absolute;
  width: 50px;
  height: 200px;
  left: 50%;
  bottom: -92px;
  z-index: 2;
  transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  .separator {
    width: 38px;
    height: 150px;
    bottom: -68px;
  }
}
.separator svg {
  width: 100%;
}
.separator.top {
  bottom: auto;
  top: -109px;
}
@media (max-width: 767px) {
  .separator.top {
    top: -82px;
  }
}

.form {
  margin: auto;
  max-width: 900px;
  text-align: left;
}
.form .form-control {
  position: relative;
  background-color: transparent;
  padding: 0.75rem 0;
  font-size: 1rem;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #000000;
  box-shadow: none;
}
.form .form-control.error {
  border-bottom-color: red;
}
.form .form-group {
  margin-bottom: 1rem;
  position: relative;
}
.form .form-group label.error {
  color: red;
  font-size: 13px;
}
.form label.error {
  color: red;
  top: -15px;
  left: 0;
  font-size: 13px;
  position: relative;
}

.first-block {
  background-image: url("../img/banner.png");
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
@media (max-width: 767px) {
  .first-block {
    background-image: url("../img/banner-mobile.png");
  }
}
.first-block .block-caption {
  width: 100%;
  max-width: 600px;
  margin: auto;
}
.first-block .block-caption .block-brand {
  max-width: 300px;
  margin: auto;
  transition: 0.5s ease-in-out;
}
@media (max-width: 1199px) {
  .first-block .block-caption .block-brand {
    max-width: 220px;
  }
}
.first-block .block-caption h1 {
  text-align: center;
  font-size: 20px;
  color: #fff;
  margin-top: 4rem;
  letter-spacing: 2px;
  font-weight: 400;
  line-height: 1.4;
}
.first-block::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 920px;
  background-size: contain;
  background-position: top left;
  background-image: url("../img/bg_r.svg");
  background-repeat: no-repeat;
  left: 0;
  top: 30%;
}
@media (max-width: 1199px) {
  .first-block::after {
    width: 230px;
    height: 700px;
  }
}
@media (max-width: 991px) {
  .first-block::after {
    width: 140px;
    height: 430px;
  }
}
@media (max-width: 767px) {
  .first-block::after {
    display: none;
  }
}

.second-block {
  padding-top: 10rem;
  padding-bottom: 0;
}
.second-block .intro {
  width: 100%;
  max-width: 890px;
  margin: auto;
}
.second-block .intro p {
  font-size: 20px;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .second-block .intro p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .third-block {
    padding-bottom: 0;
  }
}

.four-block .left {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 576px) {
  .four-block .left {
    justify-content: center;
  }
}
.four-block .right {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 576px) {
  .four-block .right {
    justify-content: center;
  }
}
.four-block .diamond {
  position: relative;
  width: 500px;
  height: 550px;
  display: flex;
  top: 0;
  transition: 0.5s ease-in-out;
}
@media (max-width: 576px) {
  .four-block .diamond {
    width: 300px;
    height: 350px;
  }
}
.four-block .diamond .mask {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}
.four-block .diamond .mask path {
  filter: grayscale(1);
}
.four-block .diamond:hover {
  top: -30px;
}
.four-block .diamond:hover .mask {
  transform: scale(1.1);
}
@media (max-width: 576px) {
  .four-block .diamond:hover .mask {
    transform: scale(1);
  }
}
.four-block .diamond .overlay {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.four-block .diamond .caption {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
}
.four-block .diamond .caption h3 {
  font-family: "Raleway", sans-serif;
  font-size: 40px;
  line-height: 44px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
}
@media (max-width: 991px) {
  .four-block .diamond .caption h3 {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .four-block .diamond .caption h3 {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .four-block .container {
    max-width: inherit;
  }
}

.five-block {
  margin-top: 10rem;
  margin-bottom: 5rem;
  padding: 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .five-block {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .five-block {
    min-height: inherit;
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    min-height: 900px;
  }
}
.five-block .mask-container {
  position: absolute;
  min-height: 550px;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 1199px) {
  .five-block .mask-container {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .five-block .mask-container {
    min-height: inherit;
    height: 100%;
  }
}
.five-block .mask-container .mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  min-width: 1800px;
  transform: translate(-50%, -50%);
  z-index: 0;
  height: 100%;
}
@media (max-width: 767px) {
  .five-block .mask-container .mask {
    min-width: 3000px;
  }
}
.five-block .left {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .five-block .left {
    justify-content: center;
  }
}
.five-block .right {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .five-block .right {
    justify-content: center;
  }
}
.five-block .container {
  position: relative;
  z-index: 2;
}
.five-block .block-content {
  width: 500px;
  padding: 30px;
}
.five-block .block-content h3 {
  font-family: "Raleway", sans-serif;
  font-size: 40px;
  line-height: 44px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
}
@media (max-width: 767px) {
  .five-block .block-content h3 {
    font-size: 30px;
    line-height: 34px;
  }
}
.five-block .block-content p {
  color: #fff;
}

.footer {
  position: relative;
  padding: 5rem 0 3rem;
  text-align: center;
}
.footer .footer-brand img {
  height: 100px;
  width: auto;
}
.footer h4 {
  font-size: 18px;
  font-weight: 300;
}
.footer p {
  margin-bottom: 0.5rem;
}
.footer p b {
  color: #000000;
}
.footer p b a {
  text-decoration: none;
}
.footer .end {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .end .agency {
  background-image: url("../img/bg_agency.svg");
  background-size: cover;
  width: 260px;
  height: 80px;
  display: inline-block;
  margin: auto;
  padding-top: 30px;
}
.footer .end .agency svg {
  height: 8px;
}

.social-bar {
  position: fixed;
  z-index: 9;
  right: 0;
  bottom: 30%;
  display: flex;
  flex-direction: column;
  width: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 576px) {
  .social-bar {
    width: 40px;
  }
}
.social-bar li {
  margin-bottom: 15px;
}
.social-bar li a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .social-bar li a {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 576px) {
  .social-bar li a {
    width: 40px;
    height: 40px;
  }
}
.social-bar li a img {
  width: 100%;
}

/*brands*/
.rowbrand {
  margin: 0 50px;
}

.imgbrand {
  margin: 20px 0;
}/*# sourceMappingURL=style.css.map */