* {
    padding: 0;
    margin: 0;
    font-family: 'SF Pro Display', -apple-system, 'BlinkMacSystemFont', sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    display: flex;
    flex-direction: column;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

a {
    text-decoration: none;
}

/* MENU */
nav {
  z-index: 99;
  height: 90px;
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  padding: 0 70px;
    background-color: #12273b;
}

.scroll {
    background-color: #12273b !important;
}

.alwaysVisible {
    background-color: transparent;
}

.logo {
    height: 80px;
    width: 80px;
    z-index: 4;
}

nav img {
  width: 100%;
  height: 100%;
}

.menu {
    list-style: none;
    display: flex;
}

.menu li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    padding: 0 10px;
}

.menu a {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    padding: 0 10px;
}

.cross {
    display: none;
}

.menu-sm {
    display: none;
}

.active {
    width: 15px;
    height: 20px;
    display: flex;
    align-items: center;
}

.active img {
    width: 100%;
    height: auto;
}  /* END MENU */

/* HEADER */
header {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 756px;
    position: absolute;
    z-index: 22;
}

.hero > * {
    margin-bottom: 30px;
}

.hero h1 {
    color: #ffffff;
    font-size: 80px;
    line-height: 75px;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 3px 1px 6px #00000073;
}

.hero p {
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
    width: 650px;
}

.backgroundHero {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  background-color: #12273bad;

}

.detailHero {
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: flex-end;
}

.detailHero img {
    width: 100%;
    height: auto;
}

.heroVideoContainer {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

video {
    display: flex;
    min-height: 100vh;
    min-width: 100vw;
    position: absolute;
    z-index: 1;
}

.arrowBottom img {
    width: 100%;
    height: 100%;
}

.arrowBottom a {
    display: flex;
}

.arrowBottom {
    position: absolute;
    bottom: -20px;
    z-index: 5;
    width: 60px;
    height: 60px;
    background-color: #4ab03d;
    border-radius: 50%;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.downloadBox {
  display: flex;
}

.download {
  display: flex;
  width: 140px;
  height: auto;
}

.download img {
  width: 100%;
  height: 100%;
}  /* END HEADER */

/* SECTION */
section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 150px 0 0;
    overflow: hidden;
    outline: none;
}

h2 {
    font-size: 48px;
    color: #2B4259;
    line-height: 57px;
    font-weight: 700;
    text-align: center;
}

/* ARTICLE 1 */
.articles {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

article {
    display: flex;
    height: 60vh;
    align-items: center;
}

.article-content {
  display: flex;
  flex-direction: column;
  margin-left: 150px;
  flex: 0 0 40%;
}

.article-image {
    display: flex;
    flex: 0 0 50%;
    height: auto;
    align-items: center;
}

.article-image img {
    height: auto;
    width: 100%;
}

h3 {
  color: #1D1D1F;
    font-size: 48px;
    line-height: 57px;
  font-weight: 800;
  margin-bottom: 40px;
  text-transform: uppercase;
}

p {
    color: #1D1D1F;
    font-size: 24px;
}

/* A */
.a .article-image {
  justify-content: center;
}

.a .article-image img {
  width: 80%;
}  /* End A */

/* B */
article.b {
    height: 75vh;
}

.b .article-image {
    order: 0;
    justify-content: center;
}

.b .article-image img {
    width: 90%;
}

.b .article-content {
    order: 1;
  margin: 0 150px 0 0;
}  /* End B */

/* C */
.c {
  margin: 150px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
    height: 90vh;
    justify-content: center;
  padding: 5% 0;
  position: relative;
  overflow: hidden;
    width: 100%;
    background-color: #12273b;
    background-image: url("../assets/meetDrillroom.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.c h3 {
    color: #ffffff;
}

.playButton {
    width: 50px;
    cursor: pointer;
    height: 60px;
    transition: .9s ease;
}

.playButton img {
    width: 100%;
}

.video {
    display: none;
    height: 600px;
    width: 80vw;
}

.video iframe {
    width: 100%;
    height: 100%;
}

/* End C */

/* D */
.d {
    background-color: #12273B;
    flex-direction: column;
    align-items: center;
    padding: 70px 50px;
    height: auto;
    margin-top: 150px;
}

.d .article-content {
    margin: 0;
    flex: unset;
    width: 80%;
    display: flex;
    align-items: center;
}

.d .article-content h3 {
    width: 570px;
    color: #fff;
    text-align: center;
}

.d .article-image {
    flex: unset;
    height: 360px;
    margin-bottom: 30px;
}

.d p {
    color: #fff;
}

.article-box {
    display: flex;
    justify-content: space-between;
}

.article-box-item {
    display: flex;
    flex-direction: column;
    flex: 33.3%;
}

.article-box-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.article-box-item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.article-box-item:not(:last-child) {
    margin-right: 50px;
}  /* End D */

/* FOOTER */
footer {
    display: flex;
    padding: 80px 0 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    background-color: #2b4259;
}

.arrowFooter {
    width: 50px;
    height: 50px;
    margin-bottom: 40px;
}

footer h2 {
  color: #fff;
    margin-bottom: 40px;
}

.poweredBy {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100%;
  margin-top: 60px;
}

.poweredBy p {
  font-size: 14px;
  padding-right: 5px;
  text-transform: uppercase;
  color: #ffffff;
}

.poweredBy a {
  display: flex;
  height: 100%;
  width: 100px;
}
.poweredBy img {
  height: 100%;
  width: 100%;
}  /* END FOOTER */

/* CONTACT */
.contactPage header {
    width: 100%;
    height: 50px;
}

.contactPage .hero {
    position: absolute;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 756px;
    top: 40%;
}

.contactPage .heroImage {
    display: flex;
    min-height: 100vh;
    min-width: 100vw;
    position: absolute;
    height: 100vh;
    z-index: 13;
    right: 0;
    left: 0;
    width: 100%;
}

.contactPage .heroImage img {
    width: 100%;
    height: auto;
}

.contactBox {
    margin: 0 150px 150px;
    padding-top: 150px;
}

.contactBox h3 {
    width: 100%;
}

.contactPage form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contactPage form input {
    font-size: 20px;
    padding: 5px 10px;
    margin-bottom: 20px;
    -webkit-appearance: none;
    border: 1px solid #2b4259;
}

.contactPage form textarea {
    font-size: 20px;
    padding: 5px 10px;
    margin-bottom: 20px;
    -webkit-appearance: none;
    border: 1px solid #2b4259;
}

.contactPage form input::placeholder, .contactPage form textarea::placeholder {
    color: #657686;

}

.contactPage input:focus {
    outline: 0;
}

.contactPage button {
    text-transform: uppercase;
    color: #fff;
    background-color: #4ab03d;
    border: none;
    -webkit-appearance: none;
    border-radius: 10px;
    padding: 20px 50px;
    width: fit-content;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}  /* End CONTACT */

.contactPage button:hover {
    background-color: #2d7f23;
    transition: .9s ease;
}

/* THANK YOU */
.thankyou {
  background-color: #ffffff26;
  padding: 30px 10%;
  border-radius: 5px;
  margin-top: 80px;
}

.thankyouPage header {
    height: 100vh !important;
}

.thankyouPage .heroImage {
    top: 0;
    height: 100% !important;
}

.thankyouPage .heroImage img {
    height: 100% !important;
}

.thankyou h4 {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 42px;
  width: auto;
  color: #6FA768;
}  /* End THANK YOU */

/* FAQS */
.faqPage {
    margin: 200px 150px 100px;
}

.faqPage h1 {
    color: #1D1D1F;
    font-size: 60px;
    line-height: 70px;
    font-weight: 800;
    width: 80%;
    text-align: center;
    margin: 0 auto 150px;
    text-transform: uppercase;
}

.faqPage h2 {
    margin-bottom: 20px;
    text-align: left;
    color: #4AB03D;
}

.faqs-image {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 20px auto 100px;
    width: 60%;
}

.faqs-image p {
    margin-bottom: 10px;
}

.faqs-section2 {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.faqs-section2 h2 {
    margin-bottom: 10px;
}

.faqPage ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.faqPage li {
    display: flex;
    padding: 10px 0;
}

.faqPage li::before {
    content: " ";
    margin: 10px 8px 0 0;
    background-color: #4AB03D;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-table;
}

.faqPage span {
    font-weight: 600;
}  /* End FAQ */

/* TERMS & CONDITIONS */
.terms ul {
    margin: 0 0 20px !important;
}

.terms .terms-section {
    margin-bottom: 50px;
}

.terms .terms-section p:not(:last-child) {
    margin-bottom: 20px;
}

.terms ul p {
    margin-bottom: 0;
}

.terms a {
    color: #2b4259;
    font-weight: 600;
} /* End TERMS & CONDITIONS */

/* Privacy Policy */
.privacy p {
    margin-bottom: 20px;
}
/* End Privacy Policy */