/*----------------------------------------------------*/
/*  02. Sections
/*----------------------------------------------------*/
.home-section {
  display: flex;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.home-section .section-inner {
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 80px 100px;
  display: flex;
  transition: transform 100ms ease 0s;
  transition: transform 0s linear -1ms, -webkit-transform 0s linear -1ms !important;
  position: relative;
}

.home-section .section-inner .video-container {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.home-section .section-inner .video-container video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: relative;
  top: 0;
  left: 0;
}

.home-section .section-inner .section-content {
  display: flex;
  flex-direction: column;
  padding-top: 340px;
}

.home-section .section-inner .section-content .call-to-action-btn {
  display: flex;
  flex-direction: row;
  width: auto;
  align-items: center;
}

.home-section
  .section-inner
  .section-content
  .call-to-action-btn-space-between {
  justify-content: space-between;
}

.home-section
  .section-inner
  .section-content
  .call-to-action-btn-space-between
  > a {
  margin: 0 10px;
}

.home-section .section-inner .section-content .pm-call-to-action-btn-center {
  justify-content: center;
}

.home-section .section-inner .section-content .pm-call-to-action-btn-right {
  justify-content: flex-end;
  padding: 0px 40px;
}
.home-section .section-inner .section-content .pm-call-to-action-btn-right > a {
  margin-left: 20px;
}

.home-section .section-inner .section-content .pm-call-to-action-btn-left {
  justify-content: flex-start;
  padding: 0px 40px;
}

.home-section .section-inner .section-content .pm-call-to-action-btn-left > a {
  margin-right: 20px;
}

/** SECTION INNER - LEFT **/
.home-section .section-inner-left {
  justify-content: flex-start;
}
.home-section .section-inner-left .section-content {
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
}
.home-section .section-inner-left .section-content .call-to-action {
  align-items: flex-start;
}

/** SECTION INNER - RIGHT **/
.home-section .section-inner-right {
  justify-content: flex-end;
}
.home-section .section-inner-right .section-content {
  text-align: right;
  align-items: flex-end;
  justify-content: flex-start;
}
.home-section .section-inner-right .section-content .call-to-action {
  align-items: flex-end;
}

/** SECTION INNER - CENTER **/
.home-section .section-inner-center {
  justify-content: center;
}
.home-section .section-inner-center .section-content {
  text-align: center;
  align-items: center;
  justify-content: flex-start;
}
.home-section .section-inner-center .section-content .call-to-action {
  align-items: center;
}

.home-section .section-inner .section-content > h1 {
  font-family: "Poppins", sans-serif;
  max-width: 600px;
  min-height: 170px;
  flex-grow: 0;
  margin: 0 0 18px;
  font-size: 70px;
  font-weight: bold;
  font-stretch: normal;
  font-style: italic;
  line-height: 1.21;
  letter-spacing: normal;
  color: #ffffff;
}
.home-section .section-inner .section-content > h1.section-sub-title {
  max-width: 323px;
}

.home-section .section-inner .section-content .call-to-action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 130px;
  padding: 0px 40px;
}
.home-section .section-inner .section-content .call-to-action h3 {
  display: flex;
  margin: 0;
  padding: 0;
  max-width: 420px;
  min-height: 61px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #ffffff;
}

/* BTNS */

.home-section .btn {
  display: flex;
  padding: 16px 29px;
  height: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #303136;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.home-section .btn > i {
  margin-left: 10px;
}

.home-section .btn-primary {
  border: 0px;
  background-color: var(--main-color);
}
.home-section .btn-primary:hover {
  filter: brightness(0.85);
}

.home-section .btn-primary-outline {
  border: 1px solid var(--main-color);
  color: var(--main-color);
}
.home-section .btn-primary-outline:hover {
  filter: brightness(0.85);
}
.home-section .btn-outline {
  border: 1px solid white;
  color: white;
}
.home-section .btn-outline:hover {
  border: 1px solid var(--hover-color);
  color: var(--hover-color);
}

@media screen and (max-width: 912px) {
  .home-section {
    height: 85vh;
  }
  .home-section .section-inner {
    padding: 20px;
  }

  .home-section .section-inner .section-content {
    padding: 0px;
    justify-content: center;
    width: 100%;
  }

  .home-section .section-inner .section-content > h1 {
    font-size: 60px;
  }
  .home-section .section-inner .section-content .call-to-action {
    padding: 0;
  }
  .home-section .section-inner .section-content .call-to-action > p {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 600px) {
  .home-section {
    height: 100vh;
  }

  .home-section .btn {
    width: 100%;
  }

  .home-section .section-inner .section-content .call-to-action-btn {
    flex-direction: column;
    width: 100%;
  }

  .home-section .section-inner .section-content .call-to-action-btn > a {
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
  }

  .home-section .section-inner .section-content .pm-call-to-action-btn-center {
    justify-content: center;
  }

  .home-section .section-inner .section-content .pm-call-to-action-btn-right {
    justify-content: center;
    padding: 0px;
  }

  .home-section .section-inner .section-content .pm-call-to-action-btn-left {
    justify-content: center;
    padding: 0px;
  }
}
