/* ---------------- fonts ---------------- */

/* Oswald */

@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900; /* Defines the supported weight range */
  font-style: normal;
}

/* Quicksand */

@font-face {
  font-family: "Quicksand";
  src: url("../fonts/Quicksand-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900; /* Defines the supported weight range */
  font-style: normal;
}

/* ---------------- Basic css ------------------ */

html {
  font-size: 0.5208vw; /* 1rem =10px */
}

:root {
  --bodyFont: "Quicksand";
  --headingFont: "Oswald";
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
  color: inherit;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

/* body */
body {
  background-color: #0a0a0a;
  color: #fff;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.25;
  font-family: var(--bodyFont);
}

/* Title */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--headingFont);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.title_xl {
  font-size: 10.5rem;
}

.title_lg {
  font-size: 10rem;
}

.title_md {
  font-size: 5.5rem;
}

.title_sm {
  font-size: 4.8rem;
}

/* -------------- preloader --------------- */

#preloader {
  position: fixed;
  background: #0a0a0a;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

#preloader .icon {
  width: 8rem;
  margin-bottom: 4rem;
}

.loading-text .letter:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.loading-text .letter:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.loading-text .letter:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.loading-text .letter:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.loading-text .letter:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.loading-text .letter:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.loading-text .letter:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.loading-text .letter:nth-child(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.loading-text .letter:nth-child(9) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.loading-text .letter {
  display: inline-block;
  font-size: 2rem;
  color: #fff;
  -webkit-animation: bounce 1s ease-in-out infinite;
  animation: bounce 1s ease-in-out infinite;
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  font-family: "Sour Gummy", sans-serif;
  font-optical-sizing: auto;
}

@-webkit-keyframes bounce {
  0%,
  80%,
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  30% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  80%,
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  30% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* ---------------- Header Section ------------------ */

.site_header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 3rem;
  z-index: 1024;
  background-color: #0a0a0a;
}

.header_content {
  padding-bottom: 1.4rem;
}

.site_logo a {
  font-size: 3rem;
  color: inherit;
  font-family: var(--bodyFont);
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 4rem;
}

.menu li a {
  color: var(--white);
  font-size: 2.9rem;
  display: inline-block;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.menu li a:hover {
  color: rgb(255 211 105);
}

.search_form {
  position: relative;
}

.search_form input {
  width: 30.5rem;
  background-color: #3ca6da;
  border: 0.1rem solid #0a0a0a;
  border-radius: 3.4rem;
  padding: 0.7rem 2.2rem;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
}

.search_form input::-webkit-input-placeholder {
  color: #fff;
}

.search_form input::-moz-placeholder {
  color: #fff;
}

.search_form input:-ms-input-placeholder {
  color: #fff;
}

.search_form input::-ms-input-placeholder {
  color: #fff;
}

.search_form input::placeholder {
  color: #fff;
}

.search_form button {
  background: transparent;
  border: none;
  position: absolute;
  right: 2rem;
  top: 1.1rem;
  padding: 0;
}

.search_form button img {
  width: 2.4rem;
}
.menu_toggle {
  display: none;
}

.border_line {
  display: block;
  border: 0.2rem solid #fff;
}

/* ---------------- Hero Section ------------------ */
.hero_section {
  padding: 5rem 0 15rem;
}

.hero_section .hero_title {
  font-size: 18.5rem;
  font-weight: 700;
  font-family: var(--headingFont);
  text-transform: uppercase;
  line-height: 1.1;

  animation: reveal 700ms linear forwards 1s;
  transform: translate(0, 100%);
  opacity: 0;
}

@keyframes reveal {
  0% {
    transform: translate(0, 100%);
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.hero_section .hero_title img {
  width: 15rem;
}

.hero_bannar img {
  width: 100%;
}

/* ---------------- Service Section ------------------ */

.service_section {
  background-image: url(../img/services-bannar.png);
  background-position: center;
  background-size: 170.4rem auto;
  background-repeat: no-repeat;
  padding: 10rem 0 24rem;
}

.service_section .title_lg {
  padding-bottom: 6rem;
}

.service_section .row {
  --bs-gutter-x: 8rem;
  --bs-gutter-y: 5rem;
}

.services_logo {
  min-height: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.services_card:hover .services_logo {
  -webkit-transform: translateY(-1.5rem) scale(1.1);
  -ms-transform: translateY(-1.5rem) scale(1.1);
  transform: translateY(-1.5rem) scale(1.1);
}

.services_card .production_logo {
  width: 21.5rem;
}

.services_card .photography_logo {
  width: 17.3rem;
}

.services_card .events_logo {
  width: 17.2rem;
}

.services_card .audio_logo {
  width: 19.5rem;
}

.services_card .film_logo {
  width: 16.2rem;
}

.services_card .podcasts_logo {
  width: 9rem;
}

.services_card p {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1rem;
}

/* ---------------- Portfolio Section ------------------ */

.portfolio_section {
  background-image: url(../img/portfolio-bannar.png);
  background-position: center;
  background-size: 170rem auto;
  background-repeat: no-repeat;
  padding: 10rem 0 8rem;
}

.portfolio_card_gaps {
  --bs-gutter-x: 4rem;
  --bs-gutter-y: 11.6rem;
}

.portfolio_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

.portfolio_card img {
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.portfolio_card:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.portfolio_card .photoshoots_logo {
  width: 11.6rem;
}

.portfolio_card .branding_logo {
  width: 10.5rem;
}

.portfolio_card .videography_logo {
  width: 11.5rem;
}

.portfolio_card .creation_logo {
  width: 11.4rem;
}

.portfolio_card .film_logo {
  width: 8.7rem;
}

.portfolio_card .event_logo {
  width: 9.4rem;
}

.portfolio_card p {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.portfolio_paragraph {
  padding: 2rem 0 4rem;
}

.portfolio_paragraph p {
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 1.3rem;
  padding-top: 2rem;
}

.portfolio_content.text-center {
  padding-top: 4rem;
}

.button {
  display: inline-block;
  padding: 0.5rem 2.7rem;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border: 0.1rem solid #0a0a0a;
  border-radius: 3.4rem;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#41aae1),
    color-stop(#2f94f1),
    to(#fd21b0)
  );
  background: -o-linear-gradient(left, #41aae1, #2f94f1, #fd21b0);
  background: linear-gradient(90deg, #41aae1, #2f94f1, #fd21b0);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.button:hover {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#14143a),
    color-stop(#e01d9f),
    to(#14143a)
  );
  background: -o-linear-gradient(left, #14143a, #e01d9f, #14143a);
  background: linear-gradient(90deg, #14143a, #e01d9f, #14143a);
  color: #fff;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.button:active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* ---------------- Audio Production Section ------------------ */

.audio_production_section {
  background-image: url(../img/audio-bannar.png);
  background-position: center;
  background-size: 112.5rem auto;
  background-repeat: no-repeat;
  padding: 10rem 0 7rem;
}

.audio_production_wrapper .row {
  --bs-gutter-x: 20rem;
  --bs-gutter-y: 3rem;
}

.audio_production_instument .row {
  --bs-gutter-x: 0rem;
  --bs-gutter-y: 8rem;
}

.instument_card img {
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.instument_card:hover img {
  -webkit-transform: translateY(1rem) scale(1.1);
  -ms-transform: translateY(1rem) scale(1.1);
  transform: translateY(1rem) scale(1.1);
}

.instument_card p {
  font-size: 2.6rem;
  font-weight: 700;
  padding-bottom: 2rem;
}

.instument_card .recording_logo {
  width: 18rem;
}

.instument_card .mixing_logo {
  width: 14.8rem;
}

.instument_card .mastering_logo {
  width: 15rem;
}

.instument_card .library_logo {
  width: 27rem;
}

.audio_paragraph {
  padding: 2rem 0 6rem;
}

.audio_paragraph p {
  font-size: 1.2rem;
  padding-top: 1.5rem;
  font-weight: 600;
}

/* ---------------- Film Production Section ------------------ */

.film_production_section {
  background-image: url(../img/film-production-bannar.png);
  background-position: 32% 1400%;
  background-size: 117rem auto;
  background-repeat: no-repeat;
  padding: 8rem 0;
}

.film_production_wrapper {
  position: relative;
}

.film_production_wrapper .film_production_shap1 {
  position: absolute;
  left: 0;
  top: -3rem;
  width: 15.2rem;
}

.film_production_wrapper .film_production_shap2 {
  position: absolute;
  right: 0;
  top: -3rem;
  width: 15.2rem;
}

.film_production_wrapper .row {
  padding-top: 5rem;
  max-width: 147.4rem;
  margin: 0 auto;
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 2rem;
}

.film_production_wrapper .title_box p {
  max-width: 108.4rem;
  font-size: 2.4rem;
  margin: 0 auto;
  padding-top: 1rem;
}

.film_production_packages .title_md {
  font-weight: 400;
}

.film_production_packages ul {
  position: relative;
  min-height: 26.5rem;
  padding: 2rem 0 0rem;
}

.film_production_packages ul li {
  color: #fff;
  font-size: 1.4rem;
}

.film_production_packages .button {
  padding: 0.5rem 7.8rem;
}

/* ---------------- Film Sets Section ------------------ */

.film_sets_section {
  background-image: url(../img/Film-sets-bannar.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10rem 0;
}

.film_sets_paragraph {
  max-width: 66.8rem;
  font-size: 1.8rem;
  margin: 0 auto;
  padding: 2.5rem 0 5rem;
}

.film_sets_paragraph .text {
  font-weight: 700;
  padding-bottom: 2rem;
}

.film_sets_paragraph p {
  font-weight: 500;
}

.film_sets_content .button {
  padding: 0.5rem 7.8rem;
}
.film_big {
  background-color: #000;
  padding: 2.5rem;
  border: 0.4rem solid #fff;
  border-radius: 3rem;
  max-width: 56rem;
  height: 38rem;
  margin-left: auto;
  margin-right: auto;
}
.film_big > * {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.film_sm {
  padding: 0.8rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.film_sm > * {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#sync2 {
  background-image: url(../img/film_bg.png);
  background-size: contain;
  background-color: #000;
  margin-top: 8rem;
}

/* ---------------- Photography Section ------------------ */

.photography_section {
  background-image: url(../img/photography-bannar.png);
  background-position: 59% -50%;
  background-size: 94.5rem auto;
  background-repeat: no-repeat;
  padding: 2rem 0 20rem;
  margin-top: 7.5rem;
}

.photography_packages_gaps {
  padding-top: 9rem;
  --bs-gutter-x: -6rem;
  --bs-gutter-y: 3rem;
}

.photography_packages ul {
  padding: 2rem 0 3rem;
}

.photography_packages ul li {
  color: #fff;
  font-size: 1.8rem;
}

.photography_packages .button {
  padding: 0.4rem 7rem;
  font-size: 2.6rem;
}

.photography_camera {
  padding-top: 4rem;
}

.photography_camera img {
  width: 42rem;
}

/* ---------------- Live Section ------------------ */

.live_section {
  background-image: url(../img/Live-bannar.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5rem 0 10rem;
}

.live_wrapper .live_logo {
  width: 97rem;
  padding: 2.5rem 0;
}

.live_wrapper ul li {
  font-size: 3.8rem;
  color: #fff;
}

.live_wrapper .button {
  padding: 0.5rem 7.8rem;
  margin-top: 4rem;
}

/* ---------------- About Section ------------------ */

.about_section {
  padding: 8rem 0;
}

.about_section .row {
  --bs-gutter-x: 12.4rem;
  --bs-gutter-y: 2.4rem;
}

.about_bannar img {
  width: 79rem;
}

.about_content p {
  padding-top: 1rem;
  font-weight: 500;
}

.about_content .about_btn {
  width: 80rem;
  margin-left: -20rem;
  margin-top: -7.5rem;
}

.about_border_box {
  width: 65.7rem;
  padding-top: 22rem;
}

/* ---------------- Credits Section ------------------ */

.credits_wrapper {
  background-image: url(../img/Credits-bannar.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10rem 3rem 28rem;
}
.credit_item {
  background-image: url(../img/credit_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 1.8rem 0.9rem;
}
.credit_item img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 23rem;
}
.credit_slider {
  background-color: #000;
  padding: 0 5rem;
  margin-top: 10rem;
}

/* ---------------- Community Initiatives Section ------------------ */

.community_initiatives_section {
  padding: 8rem 0;
  position: relative;
}

.community_initiatives_wrapper .community_shap {
  position: absolute;
  left: -4rem;
  bottom: -1rem;
  width: 60rem;
  z-index: -1;
}

.community_initiatives_content {
  padding: 1.5rem 0 3rem;
}

.community_initiatives_content p {
  font-size: 1rem;
  margin: 0 auto;
  font-weight: 500;
}

.community_initiatives_content .text {
  width: 32rem;
}

.community_paragraph_box h6 {
  font-family: var(--bodyFont);
  font-weight: 700;
  font-size: 1rem;
}

.community_paragraph_box {
  padding-top: 2rem;
}

.community_initiatives_gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10rem;
  padding-left: 28rem;
  margin-top: -5rem;
}

.community_initiatives_gallery .img1 {
  width: 29rem;
}

.community_initiatives_gallery .img2 {
  width: 22rem;
}

/* ---------------- Contact Section ------------------ */

.contact_section {
  padding-top: 3rem;
}

.contact_wrapper {
  background-image: url(../img/contact-bannar.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem 0 18rem;
}

.contact_wrapper .row {
  --bs-gutter-x: -20rem;
  --bs-gutter-y: 3rem;
  padding-top: 7.7rem;
}
.contact_icon {
  display: block;
  color: #fff !important;
}
.contact_icon img {
  width: 24.9rem;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.contact_icon:hover img {
  -webkit-transform: translateY(-1rem) scale(1.1);
  -ms-transform: translateY(-1rem) scale(1.1);
  transform: translateY(-1rem) scale(1.1);
}

.contact_icon p {
  font-size: 3rem;
  font-weight: 700;
  padding-top: 5rem;
}

.community_slider {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24.5rem;
  height: 42rem;
}

.community_slider img {
  width: 100%;
  margin-top: 1rem;
}

/* ---------------- Footer Section ------------------ */

.footer_content {
  padding-bottom: 7rem;
}

.footer_content p {
  padding-top: 2rem;
  font-size: 3rem;
}
