@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
* {
  font-family: "Montserrat";
}

html {
  padding: 0;
  margin: 0;
}

body {
  background-image: url("/assets/img/bg.jpg");
  background-color: #9be8e2;
  background-size: cover;
  background-position: top;
  background-repeat: repeat-y;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.menu {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 10;
  transition: background 0.35s ease-in-out;
}
.menu.active {
  background: #ffffff50;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.menu .logo {
  font-size: 24px;
  font-weight: bold;
}
.menu .logo .red {
  color: #c00;
}

#hero {
  background-image: url("/assets/img/hero.jpg");
  background-size: contain;
  background-color: #009f01;
  background-position-x: center;
  background-position-y: 100px;
  background-repeat: no-repeat;
}
#hero .content {
  min-height: 790px;
}
#hero .content img {
  max-width: 100%;
}
#hero h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 46px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0px 4px 4px rgba(57, 249, 145, 0.25);
}
#hero p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

#posters {
  background: rgba(26, 26, 26, 0.4);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  width: 100%;
  padding: 20px 0px 50px 0px;
  position: relative;
}
#posters .poster-cover {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  z-index: 99999999;
}
#posters .poster-cover.active {
  display: none;
}
#posters .btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}
#posters .content {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  z-index: -1;
}
#posters .content::-webkit-scrollbar {
  width: 2px;
  height: 0px;
}
#posters .scroller {
  padding: 0px 20px;
}
#posters .scroller input {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 25px;
  background: transparent;
  outline: none;
}
#posters .scroller input::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Override default look */
  appearance: none;
  width: 100px;
  /* Set a specific slider handle width */
  height: 5px;
  /* Slider handle height */
  background: #fff;
  /* Green background */
  cursor: pointer;
  /* Cursor on hover */
  border-radius: 50px;
}
#posters ul {
  padding: 0;
  margin: 0;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#posters ul li {
  list-style: none;
  display: inline-block;
  margin: 0px 20px;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#posters ul li a {
  text-decoration: none;
  transition: all 0.5s ease;
}
#posters ul li a:hover h3, #posters ul li a:hover p {
  color: #192DDC;
}
#posters ul li a:hover img {
  box-shadow: 0px 0px 40px rgba(127, 29, 193, 0.5);
}
#posters ul li h3 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  margin-top: 20px;
  text-transform: uppercase;
  transition: all 0.5s ease;
  color: #FFFFFF;
}
#posters ul li p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 15px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.5s ease;
  color: rgba(255, 255, 255, 0.77);
}
#posters ul li img {
  height: 300px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all 0.5s ease;
}

#services {
  margin-top: 120px;
}
#services .service-item {
  padding: 0px 40px;
}
#services .service-item h3 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 22px;
  line-height: 27px;
  text-transform: uppercase;
  color: #3447E6;
  margin-top: 15px;
}
#services .service-item p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

#bio {
  padding: 30px 0px;
  position: relative;
  margin-top: 120px;
}
#bio:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #192DDC 0%, #0D1877 126.97%);
  opacity: 0.33;
}
#bio h3 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 22px;
  line-height: 27px;
  text-indent: 50px;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0px 0px 10px rgba(122, 27, 186, 0.46);
}

#videos {
  margin-top: 120px;
}

#photos {
  margin-top: 120px;
}
#photos .photo-item {
  height: 30vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  flex: 1;
}

#contact {
  margin-top: 120px;
}
#contact h2 {
  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  font-size: 26px;
  line-height: 32px;
  /* identical to box height */
  color: #000000;
}
#contact p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: rgba(0, 0, 0, 0.7);
}
#contact .contact-info {
  margin-left: 30px;
}
#contact .contact-info .contact-info-item {
  display: flex;
}
#contact .contact-info .contact-info-item img {
  margin-right: 30px;
}
#contact .contact-info .contact-info-item h2 {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: rgba(0, 0, 0, 0.7);
  word-break: break-all;
}

#resume h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 38px;
  line-height: 46px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0px 4px 4px rgba(57, 249, 145, 0.25);
}

footer {
  margin-top: 120px;
}

.text-purple {
  color: #4659E8 !important;
}

a {
  color: #4659E8;
}
a p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
}

.btn.btn-purple {
  background: linear-gradient(180deg, #7F1DC1 0%, #3F0366 100%);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 10px 20px;
  color: #fff;
  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 17px;
  text-transform: uppercase;
  color: #FFFFFF;
  border: none;
  transition: all 0.35s ease;
  position: relative;
  z-index: 2;
}
.btn.btn-purple:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 30px;
  height: 100%;
  width: 0;
  background-color: transparent;
  transition: all 0.35s ease;
  background-color: #7F1DC1;
  opacity: 0;
  z-index: -1;
}
.btn.btn-purple:hover:before {
  opacity: 1;
  width: 100%;
}
.btn.btn-purple img {
  margin-left: 10px;
  margin-top: -3px;
  z-index: 2;
}/*# sourceMappingURL=style.css.map */