*,
*:before,
*:after {
  box-sizing: border-box;
}


html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-y: auto;
  font-weight: 500;
  width: 100%;
  min-height: 100vh;
  background-attachment: fixed;
}

/* START CUSTOM SCROLL BAR */

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: rgb(255, 255, 255);
}

*::-webkit-scrollbar-thumb {
  background: rgb(29, 28, 28);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgb(29, 28, 28) rgb(80, 80, 80);
}

/* END CUSTOM SCROLLBAR */

div,
section,
footer,
main {
  position: relative;
}

input,
textarea,
select {
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
}

button,
.button {
  padding: 15px 20px;
  border: none;
  font-weight: 700;
  min-width: 200px;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  transition: .3s;
  text-decoration: none;
  position: relative;
  text-align: center;
  border-radius: 5px;
  text-transform: uppercase;
}

button:hover,
.button:hover {
  cursor: pointer;
  background-color: #000;
}

a {
  transition: .2s;
}

button:active,
.button:active,
a:active {
  transform: scale(0.95);
}

button:active,
.button:active {
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-name: pulse;
  animation-duration: .5s;
}

body,
section,
header,
footer,
main {
  min-width: 1200px;
  width: 100%;
}

main {
  padding: 0;
  margin: 0;
}

a:hover,
.active {
  color: #ba9856;
}

#menu-btn {
  display: none;
}


form .row {
  display: flex;
  column-gap: 20px;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}

form .half {
  width: 50%;
  padding: 0;
}

form .third {
  width: 33.33%;
  border-bottom: 1px #eee solid;
  padding: 0;
}

form .half,
form .fullwidth,
form .third {
  display: flex;
  column-gap: 10px;
  transition: .3s;
  flex-direction: column;
  row-gap: 5px;
  justify-content: flex-start;
}

form .half:focus-within,
form .fullwidth:focus-within,
form .third:focus-within {
  border-color: #ba9856;
}

form .half:focus-within input,
form .fullwidth:focus-within input,
form .third:focus-within input,
form .half:focus-within textarea,
form .fullwidth:focus-within textarea,
form .third:focus-within textarea {
  color: #000;
}

form .half:focus-within input::placeholder,
form .fullwidth:focus-within input::placeholder,
form .third:focus-within input::placeholder,
form .half:focus-within textarea::placeholder,
form .fullwidth:focus-within textarea::placeholder,
form .third:focus-within textarea::placeholder {
  color: #333;
}

form .fullwidth {
  width: 100%;
  padding: 0;
}

form input,
form textarea,
form select {
  border: none;
  width: 100%;
  padding: 10px;
  background: #000;
  background-color: #eee;
  border-radius: 3px;
  border: none;
}

form .half img,
form .fullwidth img,
form .third img {
  height: 26px;
}

form textarea {
  width: 100%;
  align-self: flex-start;
  border: none;
  height: 100px;
}

form .special img {
  align-self: flex-start;
}

.thin-txt {
  font-weight: 200;
}

.m-right {
  margin-right: 5%;
}

.m-left {
  margin-left: 5%;
}

.m-bottom {
  margin-bottom: 5%;
}

.m-top {
  margin-top: 5%;
}

.hidden {
  display: none;
}

.center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}


.img-bg {
  background-position: center;
  background-size: cover;
}

.img-bg-top {
  background-position: center top;
  background-size: cover;
}

.img-bg-bottom {
  background-position: center bottom;
  background-size: cover;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: opacity(.4);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
}

p {
  line-height: 150%;
  position: relative;
}

li {
  line-height: 150%;
}

.modal {
  display: none;
  padding: 30px;
  min-width: 1000px;
}

.modal h3 {
  font-size: 1.8em;
}

.flex-align {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.center-align {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.bold-txt {
  font-weight: bold;
}

.thin-txt {
  font-weight: 200;
}

.f-button {
  min-width: 0;
}

.blur {
  filter: blur(10px);
}

.scaleDown {
  transform: scale(.8);
}

.max-txt {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.uppercase {
  text-transform: uppercase;
}

.size-wrapper {
  width: 100%;
  padding: 5px 5%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}


/**************  Colors */
.gray-bg {
  background-color: #f2f2f2;
}

.gray-txt {
  color: #f2f2f2;
}

.gray-bg-gradient {
  background-image: linear-gradient(to bottom right, #f2f2f2, #dedede);
}

.dark-gray-txt {
  color: #151515;
}

.dark-gray-bg {
  background-color: #151515;
}

.light-gray-txt {
  color: #6d6d6d;
}

.white-bg {
  background-color: #fff;
}

.white-txt {
  color: #fff;
}

.black-bg {
  background-color: #000;
}

.black-txt {
  color: #000;
}

.white-gray-bg-gradient {
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(242, 242, 242, 1));
}

.transparent-gray-bg-gradient {
  background: linear-gradient(to right, transparent 50%, #dedede);
}

.black-gradient-bg {
  background: linear-gradient(to bottom, transparent 40%, rgb(0, 0, 0, 0.8) 60%);
  background: -moz-linear-gradient(to bottom, transparent 40%, rgb(0, 0, 0, 0.8) 60%);
}

.black-gradient-right {
  background: linear-gradient(to right, #000 50%, transparent 50%);
  background: -moz-linear-gradient(to right, #000 50%, transparent 50%);
}


/* Animations */
.scale-down {
  transform: scale(.9);
  filter: opacity(0) blur(5px);
  transition: transform 1.2s, filter 1.2s;
}

.scale-up {
  transform: scale(1.05);
  filter: opacity(1) blur(5px);
  transition: transform 2s, filter 2s;
}

.scale-normal {
  transform: scale(1) !important;
  filter: opacity(1) blur(0) !important;
}

.invisible {
  filter: opacity(0) blur(5px);
  transition: filter 1s;
}

.visible {
  filter: opacity(1) blur(0) !important;
}

.hide-left {
  transition: left 1.2s, filter 1.2s;
  left: -10vw;
  filter: opacity(0) blur(5px);
}

.reveal-left {
  left: 0 !important;
  filter: opacity(1) blur(0) !important;
}

.hide-right {
  transition: right 1.2s, filter 1.2s;
  right: -10vw;
  filter: opacity(0) blur(5px);
}

.reveal-right {
  right: 0 !important;
  filter: opacity(1) blur(0) !important;
}

.hide-bottom {
  transition: top 1.2s, filter 1.2s;
  top: 70px;
  filter: opacity(0) blur(5px);
}

.reveal-bottom {
  top: 0 !important;
  filter: opacity(1) blur(0) !important;
}

.rotateOut {
  transform: rotate(360deg) scale(0);
}

.slide-left {
  left: 0 !important;
  filter: opacity(1) blur(0) !important;
}

.parallax {
  will-change: transform;
}

.showMenu {
  top: 0 !important;
  filter: opacity(1) blur(0) !important;
}

.zoom {
  will-change: transform;
  transition: transform 0.1s ease-out;
  /* Smooth transition */
}

.slideIn {
  right: 0 !important;
  filter: blur(0) opacity(1) !important;
}

.fadeIn {
  filter: blur(0) opacity(1) !important;
  z-index: 6 !important;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(186, 152, 86, 0.5);
  }

  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(186, 152, 86, 0.5);
  }

  70% {
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}


.fancybox__nav {
  position: absolute;
  top: 50%;
  width: 100%;
  overflow: visible;
}

/* Header */

header {
  position: absolute;
  width: 100%;
  padding: 0 10%;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 40%, transparent);
}


/* Home Page Section 1 */
.slide-inleft {
  filter: opacity(1) blur(0) !important;
  left: 0 !important;
}

.slide-inright {
  filter: opacity(1) blur(0) !important;
  right: 0 !important;
}

@keyframes fadeInOut {
  0% {
    filter: blur(10px) opacity(0);
    /* Initial blur and opacity */
  }

  10% {
    filter: blur(0) opacity(1);
    /* Remove blur and set opacity to full */
  }

  33% {
    filter: blur(0) opacity(1);
    /* Keep no blur and full opacity */
  }

  43% {
    filter: blur(10px) opacity(0);
    /* Reapply blur and reduce opacity */
  }

  100% {
    filter: blur(10px) opacity(0);
    /* Reapply blur and reduce opacity */
  }
}

.main-bg {
  z-index: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}

.home {

  .sec1 {
    height: 100vh;

    img {
      height: 100%;
      width: 100%;
      display: block;
    }

  }

  .sec2 {
      
    .pattern {
      display: block;
      position: relative;
    }

    .flex {
      min-height: 70vh;
      padding: 40px 10%;
      display: flex;
      align-items: center;
      column-gap: 5%;
      flex-wrap: nowrap;

      .left, .right {
        width: 47.5%;
      }

      .left {
        padding-right: 5%;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        text-align: center;

        .title {
          font-size: 2.5em;
          text-transform: uppercase;
          font-weight: 900;
          margin-bottom: 10px;
        }

        p {
          text-wrap: balance;
          font-size: 1.4em;
          margin-bottom: 40px;
        }

        justify-content: center;
      }
    }
  }

  .logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    min-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;

    img {
      height: 50px;
      position: relative;
    }
  }
}

.popup {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  font-size: .92em;

  .main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    width: 100%;
    z-index: 2;
  }

  #closebtn {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: .3s;
    z-index: 8;
    height: 36px;

    &:active {
      transform: scale(0.95);
    }
  }

  .content {
    padding: 40px 5%;
    display: flex;
    column-gap: 3%;

    .right {
      width: 57%;

      h2 {
        margin-top: 0;
        text-transform: uppercase;
        margin-bottom: 40px;
        font-size: 2em;
      }

      .main-title {
        margin-top: 5px;
        font-size: 1.6em;
        line-height: 120%;
      }

      ul {
        margin-left: 0;
        padding-left: 12px;
        display: flex;
        flex-direction: column;
        gap: 10px;

      }

      form {
        margin-top: 60px;

        h2 {
          font-size: 1.8em;
          text-transform: uppercase;
        }

        .terms {

          .fullwidth {
            flex-direction: row;
            align-items: center;

            input {
              width: fit-content;
              min-width: fit-content;
            }
          }
        }
      }
    }

    .left {
      width: 40%;
      top: 20px;
      position: sticky;

      .img-wrap {
        padding: 40px;
        background-color: #000;
      }

      h2 {
        font-size: 2.7em;
        text-transform: uppercase;
        line-height: 100%;
      }

      p {
        font-size: 1.1em;
      }

      height: 90vh;
    }
  }

  overflow-x: auto;
}

.spacer {
	height: 40px;
}

footer {
  padding: 40px 10%;
  font-size: .9em;

  .socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 10px;
    margin-bottom: 40px;

    .title {
      font-weight: 700;
      font-size: 1.6em;
      text-transform: uppercase;
    }

    .icons {
      display: flex;
      align-items: center;
      gap: 10px;

      img {
        height: 24px;
      }
    }
  }

  .copyrights {
    display: flex;
    align-items: center;

    a {
      color: #fff;
      text-decoration: none;

      &:hover {
        color: darkgoldenrod;
      }
    }
    text-align: center;
    justify-content: center;
  }
}