@keyframes infinite-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
  }
}
@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -o-transform: translateY(0);
  }
  40% {
    -o-transform: translateY(-30px);
  }
  60% {
    -o-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  color: #000000;
  box-sizing: border-box;
  overflow-x: hidden;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #fff;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

hr {
  width: 20rem;
  height: 3px;
  background-color: #0a2756;
  border: none;
}

@font-face {
  font-family: "somatic";
  src: url("../../assets/fonts/Somatic-Rounded.woff2") format("woff2");
}
body {
  font-family: "poppins";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 567px) {
  body {
    font-size: 14px;
  }
}

.heading {
  font-family: "somatic";
  line-height: 1.2;
}
.heading-primary {
  font-size: 5.6rem;
}
@media (max-width: 992px) {
  .heading-primary {
    font-size: 3.2rem;
  }
}
.heading-secondary {
  font-size: 4rem;
}
@media (max-width: 992px) {
  .heading-secondary {
    font-size: 3rem;
  }
}
.heading-tertiary {
  font-size: 3.2rem;
}
@media (max-width: 992px) {
  .heading-tertiary {
    font-size: 2.4rem;
  }
}

p {
  font-size: 1.6rem;
}
p .bold {
  font-weight: bold;
}

.btn {
  padding: 1.6rem 3.2rem;
  border-radius: 10rem;
  text-decoration: none;
  border: none;
  display: inline-block;
  transition: all 2s ease;
  cursor: pointer;
}
.btn:hover {
  box-shadow: 0 1rem 2rem rgba(37, 37, 37, 0.85);
  transform: translateY(-2px) scale(1.1);
  transition: all 0.2s;
}
@media (max-width: 992px) {
  .btn:hover {
    transform: translateY(-2px) scale(1);
  }
}
.btn-primary {
  background-color: #0a2756;
  color: #fff;
}
.btn-secondary {
  background-color: #fff;
  color: #0a2756;
}
.btn-tertiary {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.navigation {
  padding: 0.8rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: 0.8s ease-in-out 0.8s;
}
.navigation.active {
  background-color: #ffffff !important;
}
@media (max-width: 768px) {
  .navigation {
    background-color: #fff !important;
  }
}
.navigation .mobile {
  display: none;
}
@media (max-width: 768px) {
  .navigation .mobile {
    display: flex;
  }
}
@media (max-width: 768px) {
  .navigation .desktop {
    display: none;
  }
}
.navigation img {
  transition: 0.1s ease-in-out 0.1s;
}
.navigation .container {
  justify-content: space-between;
  flex-direction: row;
}
.navigation__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 10rem;
  background-color: #0a2756;
  cursor: pointer;
}
.navigation__hamburger-container {
  display: flex;
  width: 90%;
  height: 2rem;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
/* Menu Button 6 */
.menu-btn-6 {
  height: 15px;
  width: 30px;
  cursor: pointer;
}

.menu-btn-6 span,
.menu-btn-6 span::before,
.menu-btn-6 span::after {
  background: #fff;
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  margin-top: 5px;
  border-radius: 10rem;
  -webkit-transition: 0.3s ease-in-out 0.3s;
  -moz-transition: 0.3s ease-in-out 0.3s;
  -o-transition: 0.3s ease-in-out 0.3s;
  transition: 0.3s ease-in-out 0.3s;
}

.menu-btn-6 span::before {
  margin-top: -8px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.menu-btn-6 span::after {
  margin-top: 8px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.menu-btn-6.active span {
  background: transparent;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.menu-btn-6.active span::before {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.menu-btn-6.active span::after {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.5s;
}

.services {
  background-color: #f5f5f5;
  position: relative;
  display: flex;
}
.services__items {
  display: flex;
  gap: 3.2rem;
  width: 100%;
  align-items: center;
}
@media (max-width: 1200px) {
  .services__items {
    gap: 1.6rem;
  }
}
@media (max-width: 992px) {
  .services__items {
    flex-wrap: wrap;
  }
}
.services__item {
  flex: 1;
  background-color: #ffffff;
  padding: 3.2rem 1.6rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 2s ease;
  transform-origin: center;
  background-position: center center;
  min-height: 255px;
  z-index: 1;
  background-size: 99% 99%;
  overflow: hidden;
  width: 25%;
  justify-content: center;
}
@media (max-width: 567px) {
  .services__item {
    background-color: #f5f5f5;
  }
}
@media (max-width: 567px) and (max-width: 567px) {
  .services__item {
    background-image: none !important;
  }
}
@media (max-width: 992px) {
  .services__item {
    width: 48%;
    flex: none;
    gap: 0;
  }
}
@media (max-width: 567px) {
  .services__item {
    width: 100%;
  }
}
.services__item svg, .services__item h4, .services__item p, .services__item-button {
  z-index: 3;
}
.services__item:hover {
  transform: scale(1.1);
  background-size: 100% 100%;
}
.services__item:hover::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(10, 39, 86, 0.6);
  z-index: 2;
}
@media (max-width: 567px) {
  .services__item:hover::before {
    background-color: transparent !important;
  }
}
.services__item:hover p, .services__item:hover h4 {
  color: #fff;
}
@media (max-width: 567px) {
  .services__item:hover p, .services__item:hover h4 {
    color: #000;
  }
}
.services__item:hover svg {
  fill: #fff;
}
@media (max-width: 567px) {
  .services__item:hover svg {
    fill: #000;
  }
}
@media (max-width: 992px) {
  .services__item:hover {
    transform: scale(1);
  }
}
.services__item:nth-child(1):hover {
  background-image: url("../../assets/images/design-branding-background.webp");
}
.services__item:nth-child(2):hover {
  background-image: url("../../assets/images/photography-background.webp");
}
.services__item:nth-child(3):hover {
  background-image: url("../../assets/images/videography-background.webp");
}
.services__item:nth-child(4):hover {
  background-image: url("../../assets/images/drone-solution-background.webp");
}
.services__logo {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 567px) {
  .services__logo {
    width: 250px;
    bottom: -15px;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  background-color: #0a2756;
  gap: 4.8rem;
  z-index: 3;
  position: relative;
}
.footer .container {
  flex-direction: column;
  gap: 4.8rem;
}
.footer .heading {
  color: #fff;
}
.footer__cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 567px) {
  .footer__cta {
    flex-direction: column;
    align-items: start;
    gap: 1.6rem;
  }
}
.footer__center {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer__center {
    gap: 2.4rem;
  }
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 768px) {
  .footer__links {
    width: 48%;
  }
}
.footer__links-item {
  color: #fff;
  margin-bottom: 0.4rem;
}
.footer__links-item a {
  color: #fff;
  display: inline-block;
}
.footer__links-item a:hover {
  transform: scale(1.1);
}
.footer__links__socials {
  display: flex;
  gap: 1.6rem;
}
.footer__links__socials a {
  display: inline-block;
  transition: all 0.2s ease;
}
.footer__links__socials a:hover {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .footer__logo {
    width: 100%;
  }
}
.footer__copyright {
  text-align: center;
  color: #fff;
}
.footer__copyright a {
  color: #fff;
  font-weight: bold;
}

.menu {
  background: rgb(20, 43, 115);
  background: -moz-linear-gradient(90deg, rgb(20, 43, 115) 50%, #f5f5f5 50%);
  background: -webkit-linear-gradient(90deg, rgb(20, 43, 115) 50%, #f5f5f5 50%);
  background: linear-gradient(90deg, rgb(20, 43, 115) 50%, #f5f5f5 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#142b73",endColorstr="#f5f5f5",GradientType=1);
  margin-top: 70px;
  height: calc(100svh - 70px);
  display: flex;
  align-items: center;
  transform: translateX(-100%);
  transition: 0.8s ease-in-out 0.8s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
@media (max-width: 1200px) {
  .menu {
    align-items: start;
    padding-top: 3rem;
    margin-top: 64px;
    height: calc(100svh - 64px);
  }
}
@media (max-width: 992px) {
  .menu {
    background: #f5f5f5;
  }
}
.menu.active {
  transform: translateX(0);
}
.menu__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 992px) {
  .menu__left {
    display: none;
  }
}
.menu__left-heading {
  color: #fff;
}
.menu__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  padding-left: 4.8rem;
}
@media (max-width: 768px) {
  .menu__right {
    padding-left: 0.8rem;
  }
}
.menu__right-links ul {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.menu__right-links ul a {
  color: #0a2756;
  font-size: 2.4rem;
  display: inline-block;
  transition: all 0.2s ease;
}
.menu__right-links ul a:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .menu__right-links ul a:hover {
    transform: scale(1);
  }
}
.menu__right-socials {
  display: flex;
  gap: 1.6rem;
}
.menu__right-socials a {
  transition: all 0.2s ease;
}
.menu__right-socials a:hover {
  transform: scale(1.2);
}

.glide {
  width: 500px;
}
@media (max-width: 1200px) {
  .glide {
    width: 450px;
  }
}
@media (max-width: 567px) {
  .glide {
    width: 98vw;
  }
}
.glide__track {
  margin-bottom: 2rem;
}
.glide__slide {
  background-color: #ffffff;
  padding: 1.6rem 3.2rem;
  min-height: 300px;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  .glide__slide {
    padding: 0.8rem 1.6rem;
  }
}
.glide__bullets {
  height: 50px;
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.3);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet--active {
  background-color: #fff;
}
.glide img {
  width: 64px !important;
}
.glide .testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.glide .testimonials p {
  font-style: italic;
}
.glide__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.glide__arrows {
  height: 40px;
}
.glide__arrow {
  background-color: transparent !important;
  border: none;
}
.glide__arrow:hover {
  cursor: pointer;
}

/*===========  Page Loader ==================*/
#preloader {
  height: 100svh;
  width: 100%;
  position: fixed;
  z-index: 99999999;
  background-color: #ffffff;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader .loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#preloader .loader img {
  width: 200px;
  margin-bottom: 30px;
}

.container {
  display: flex;
  width: 1200px;
  margin: 0 auto;
  gap: 4.8rem;
  align-items: center;
}
@media (max-width: 1200px) {
  .container {
    width: 98%;
    margin: 0 1%;
    gap: 1.6rem;
  }
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

section,
.footer {
  padding: 12rem 0;
}
@media (max-width: 768px) {
  section,
  .footer {
    padding: 6rem 0 9rem 0;
  }
}

.footer {
  padding: 4rem 0 2rem 0;
}

.popup.my-popup .popup-content {
  background-color: #ffffff;
  width: 40% !important;
  height: 800px !important;
  border-radius: 15px;
  border: 0 solid #000000;
}
@media (max-width: 992px) {
  .popup.my-popup .popup-content {
    width: 60% !important;
    height: 600px !important;
  }
}
@media (max-width: 768px) {
  .popup.my-popup .popup-content {
    width: 80% !important;
    height: 500px !important;
  }
}
@media (max-width: 567px) {
  .popup.my-popup .popup-content {
    width: 90% !important;
    height: 400px !important;
  }
}

.popup .popup-close {
  top: 20px; /* move up */
}

.popup.my-popup .popup-body {
  color: #000000;
  margin-left: 0 !important;
  margin-right: 0 !important;
  line-height: auto;
  font-size: min(25px, 4vw);
}

.popup-close {
  position: absolute;
  top: 0;
  right: 2.2%;
  cursor: pointer;
  font-size: min(25.1px, 8vw) !important;
}

.hero {
  position: relative;
  z-index: 2;
}
.hero__left {
  flex: 1;
}
.hero__right {
  flex: 1;
}

.home header {
  height: 100svh;
  display: flex;
  background-image: url("../../assets/images/home-hero-background-image.webp");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center right;
}
@media (max-width: 768px) {
  .home header {
    background-size: contain;
    background-position: center 70px;
  }
}
@media (max-width: 768px) {
  .home header {
    background-size: cover;
    position: relative;
  }
  .home header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }
}
.home .hero {
  width: 100%;
  height: 100svh;
  display: flex;
}
.home .hero__left {
  display: flex;
  align-items: center;
}
.home .hero__left-container {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media (max-width: 768px) {
  .home .hero__left {
    padding-top: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.home .hero__right {
  flex: 1;
}
@media (max-width: 768px) {
  .home .hero__right {
    flex: none;
  }
}
.home .hero .heading {
  color: #0a2756;
}
@media (max-width: 768px) {
  .home .hero .heading {
    color: #fff;
  }
}
.home .hero p {
  margin-top: -2rem;
}
@media (max-width: 768px) {
  .home .hero p {
    color: #fff;
  }
}

.trust {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.trust .container::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 25rem;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
.trust__left {
  flex: 2;
}
@media (max-width: 567px) {
  .trust__left {
    text-align: center;
  }
}
.trust__right {
  flex: 1;
}

.logos {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}
.logos::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  z-index: 2;
}
.logos:hover .logos__slide {
  animation-play-state: paused;
}
.logos__slide {
  display: inline-block;
  animation: 30s infinite-slide infinite linear;
}
.logos__slide img {
  height: 50px;
  margin: 0 30px;
}

.design-page img {
  width: 100%;
}
.design-page header {
  display: flex;
  align-items: center;
}
.design-page .hero {
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.design-page .hero .container {
  align-items: center;
}
.design-page .hero__left {
  flex: 1;
}
@media (max-width: 768px) {
  .design-page .hero__left {
    order: 2;
  }
}
.design-page .hero__left-container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.design-page .hero__left .heading {
  line-height: 1;
  color: #0a2756;
}
.design-page .hero__button {
  margin-top: 2rem;
}
.design-page .hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .design-page .hero__right {
    order: 1;
  }
}
.design-page .hero__right img {
  width: 70%;
}
@media (max-width: 768px) {
  .design-page .hero__right img {
    width: 100%;
  }
}

.achievement {
  padding: 4.8rem 0;
  background-color: #0a2756;
  color: #fff;
}
.achievement .container {
  gap: 4.8rem;
}
.achievement__left {
  flex: 1;
}
.achievement__right {
  flex: 1;
  display: flex;
}
@media (max-width: 768px) {
  .achievement__right {
    width: 100%;
  }
}
.achievement__right-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .achievement__right-item {
    align-items: start;
    text-align: center;
  }
}
@media (max-width: 567px) {
  .achievement__right-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.achievement__right-item .heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.achievement__right-item .heading::after {
  content: "+";
  margin-left: 5px;
  margin-top: -5px;
  font-family: "somatic";
}

.branding__left {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  flex: 3;
}
@media (max-width: 768px) {
  .branding__left {
    order: 2;
  }
}
.branding__left .heading {
  color: #0a2756;
}
.branding__left_service {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.6rem;
}
.branding__left_service-item {
  display: flex;
  width: 33%;
}
@media (max-width: 768px) {
  .branding__left_service-item {
    width: 50%;
  }
}
@media (max-width: 567px) {
  .branding__left_service-item {
    width: 100%;
  }
}
.branding__left-btn {
  display: inline-flex;
}
.branding__left-btn a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.branding__right {
  flex: 2;
}

.banner {
  background-image: url("../../assets/images/banner.webp");
  background-size: cover;
  height: 70rem;
  background-position: center center;
}
@media (max-width: 992px) {
  .banner {
    height: 40rem;
  }
}
@media (max-width: 768px) {
  .banner {
    height: 28rem;
  }
}

.photography-page header {
  height: 100svh;
  background-image: url("../../assets/images/photography-hero-background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0%;
  display: flex;
  align-items: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .photography-page header {
    background-position: center 70px;
  }
}
.photography-page header::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.photography-page header .hero {
  width: 100%;
}
.photography-page header .hero__center {
  width: 100%;
}
.photography-page header .hero__center-container {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.photography-page .down {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  -o-animation: bounce 2s infinite;
}

.photography__left {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  gap: 1.6rem;
}
.photography__left-heading {
  color: #0a2756;
}
@media (max-width: 768px) {
  .photography__left-heading {
    margin-bottom: 5px;
  }
}
.photography__left-btn {
  display: inline-flex;
  margin-top: 2.4rem;
}
.photography__left-btn a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (max-width: 768px) {
  .photography__left-btn {
    display: none;
  }
}
.photography__right {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.6rem;
}
.photography__right-item {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.photography__right-btn {
  display: none;
}
@media (max-width: 768px) {
  .photography__right-btn {
    display: inline-flex;
    margin-top: 2.4rem;
  }
  .photography__right-btn a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
}

.food-photography {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
}
.food-photography .container {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
.food-photography__heading {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: center;
  margin-bottom: 4.8rem;
}
@media (max-width: 768px) {
  .food-photography__heading {
    width: 100%;
    text-align: left;
  }
}
.food-photography__heading .heading {
  color: #0a2756;
}
.food-photography__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 460px;
  margin-bottom: 4.8rem;
}
.food-photography__carousel .carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.food-photography__carousel .carousel-track img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin: 0 0.8rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.food-photography__carousel .carousel-track img:hover {
  transform: perspective(600px) rotateX(0deg) scale(1.05);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.food-photography__btn {
  display: inline-flex;
}

.portfolio {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.portfolio-item {
  width: 25%;
  overflow: hidden;
  z-index: 1;
  position: relative;
  transition: all 2s ease;
}
.portfolio-item:hover img {
  scale: 1.2;
}
@media (max-width: 768px) {
  .portfolio-item {
    width: 50%;
  }
}
.portfolio-item:hover::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.portfolio img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 2s ease;
}

.contact {
  height: calc(100svh - 70px);
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .contact {
    padding: 0rem 0 4rem 0;
    height: 100%;
  }
}
@media (max-width: 992px) {
  .contact .container {
    flex-direction: column;
    row-gap: 4.8rem;
  }
}
.contact__left {
  flex: 1;
}
.contact__left-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__left img {
  width: 80%;
}
@media (max-width: 992px) {
  .contact__left img {
    width: 100%;
  }
}
.contact__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 2.4rem;
}
.contact__right-heading h1 {
  color: #0a2756;
}
.contact__right .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .form {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.contact .form__group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact .form__group-input {
  padding: 1.6rem 1.6rem;
  border-radius: 10rem;
  border: none;
  background-color: #f5f5f5;
}
@media (max-width: 992px) {
  .contact .form__group-input {
    width: 100%;
  }
}
.contact .form__group-textarea {
  padding: 1.6rem 1.6rem;
  border-radius: 0.5rem;
  border: none;
  background-color: #f5f5f5;
}
.contact .form .toast {
  flex-basis: auto;
  font-size: 1.6rem !important;
  box-shadow: none !important;
  border: none;
}
.contact .form .toast:not(:last-child) {
  margin-bottom: 0rem;
}

.testi {
  display: none;
  background: #0a2756;
}
@media (max-width: 768px) {
  .testi {
    display: flex;
  }
}
.testi .menu {
  background: #0a2756;
  transform: translateX(0%);
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: 0rem;
  margin-top: 0px;
}
.testi .menu__left {
  display: flex;
}
.testi .menu__right {
  display: none;
}

.videography-page img {
  width: 100%;
}
.videography-page header {
  height: 100svh;
  display: flex;
  background-image: url("../../assets/images/videography-hero-background.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  position: relative;
}
@media (max-width: 768px) {
  .videography-page header {
    background-size: cover;
    background-position: center 70px;
    position: relative;
  }
  .videography-page header::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.videography-page .hero {
  width: 100%;
  height: 100svh;
  display: flex;
  padding-top: 80px;
}
@media (max-width: 768px) {
  .videography-page .hero .container {
    align-items: center;
    justify-content: center;
  }
}
.videography-page .hero__left {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .videography-page .hero__left {
    flex: none !important;
    height: 100%;
    justify-content: center;
  }
}
.videography-page .hero__left-container {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.videography-page .hero .heading {
  color: #0a2756;
}
@media (max-width: 768px) {
  .videography-page .hero .heading {
    color: #fff;
  }
}
.videography-page .hero p {
  margin-top: -2rem;
}
@media (max-width: 768px) {
  .videography-page .hero p {
    color: #fff;
  }
}
.videography-page .videography {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 4.8rem 0;
}
.videography-page .videography .container {
  flex-direction: column;
  align-items: start;
}
.videography-page .videography__heading {
  color: #0a2756;
}
.videography-page .videography .items {
  flex-direction: row;
}
@media (max-width: 768px) {
  .videography-page .videography .items {
    flex-direction: column;
    row-gap: 4.8rem;
  }
}
.videography-page .videography__left, .videography-page .videography__right {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.6rem;
}
@media (max-width: 768px) {
  .videography-page .videography__left, .videography-page .videography__right {
    flex: none !important;
  }
}
.videography-page .videography__left-items, .videography-page .videography__right-items {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.6rem;
}
.videography-page .videography__left-item, .videography-page .videography__right-item {
  display: flex;
  gap: 0.8rem;
  width: 49%;
}
@media (max-width: 567px) {
  .videography-page .videography__left-item, .videography-page .videography__right-item {
    width: 100%;
  }
}
.videography-page .projects {
  background-color: #f5f5f5;
  flex-direction: column;
  align-items: center;
  padding: 4.8rem 0;
}
.videography-page .projects .container {
  flex-direction: column;
}
.videography-page .projects__primary-item {
  position: relative;
}
.videography-page .projects__secondary {
  display: flex;
  gap: 0.8rem;
  position: relative;
  margin-top: 3.2rem;
}
@media (max-width: 768px) {
  .videography-page .projects__secondary {
    flex-wrap: wrap;
  }
}
.videography-page .projects__secondary-item {
  flex: 1;
  height: 100%;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .videography-page .projects__secondary-item {
    flex: none;
    width: 48%;
  }
}
@media (max-width: 567px) {
  .videography-page .projects__secondary-item {
    width: 100%;
  }
}
.videography-page .projects__secondary-item a {
  height: 100%;
  width: 100%;
  display: inline-block;
  border-radius: 0.5rem;
  transition: all 2s ease;
}
.videography-page .projects__secondary-item a:hover {
  transition: all 2s ease;
}
.videography-page .projects__secondary-item a:hover::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 97%;
  z-index: 1;
  border-radius: 0.5rem;
}
.videography-page .projects__secondary-item a img {
  position: relative;
  height: 100%;
  border-radius: 0.5rem;
}
.videography-page .projects__secondary-item a p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 2.4rem;
  opacity: 0;
}
.videography-page .projects__secondary-item a:hover p {
  opacity: 1;
  z-index: 2;
}
.videography-page .projects .responsive-video {
  position: relative;
  padding-bottom: 53.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.videography-page .projects .responsive-video iframe {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .videography-page .projects .responsive-video iframe {
    width: 98%;
    margin: 0 1%;
    left: 0;
    transform: translateX(0);
  }
}
.videography-page .reels {
  padding: 0 0 12rem 0;
}
.videography-page .reels .container {
  gap: 0;
}
@media (max-width: 768px) {
  .videography-page .reels .container {
    gap: 4.8rem;
  }
}
.videography-page .reels__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .videography-page .reels__right {
    order: 1;
  }
}
.videography-page .reels__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media (max-width: 768px) {
  .videography-page .reels__left {
    order: 2;
  }
}
.videography-page .reels__left .heading {
  color: #0a2756;
}
.videography-page .reels__btn {
  display: inline-flex;
}
.videography-page .reels__btn .btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.videography-page .food-reels__left {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media (max-width: 768px) {
  .videography-page .food-reels__left {
    order: 2;
  }
}
.videography-page .food-reels__left-heading {
  color: #0a2756;
}
.videography-page .food-reels__right {
  flex: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0.8rem;
}
@media (max-width: 768px) {
  .videography-page .food-reels__right {
    order: 1;
    flex-direction: column;
    gap: 3.2rem;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .videography-page .food-reels__right-images {
    width: 100%;
  }
}
.videography-page .food-reels__right img {
  width: 72%;
}
@media (max-width: 768px) {
  .videography-page .food-reels__right img {
    width: 100%;
  }
}
.videography-page .reels-video-container {
  padding-bottom: 100%;
  position: relative;
  width: 100%;
  display: block;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  .videography-page .reels-video-container {
    padding-bottom: 178%;
  }
}
.videography-page .reels-video-container video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.drone-solutions .header {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  height: 550px;
  align-items: center;
}
@media (max-width: 992px) {
  .drone-solutions .header {
    height: 450px;
  }
}
@media (max-width: 768px) {
  .drone-solutions .header {
    height: 100%;
    flex-direction: column;
  }
}
.drone-solutions .header__left {
  flex: 1;
  order: 2;
}
.drone-solutions .header__right {
  flex: 1;
}
@media (max-width: 768px) {
  .drone-solutions .header .hero {
    background-color: #0a2756;
    padding: 2rem 0;
  }
}
.drone-solutions .header .hero__left-container {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  color: #fff;
}
.drone-solutions .choose .container {
  flex-direction: column;
}
.drone-solutions .choose__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.drone-solutions .choose__heading h2 {
  color: #0a2756;
}
.drone-solutions .choose__heading p {
  color: #6C6D71;
}
.drone-solutions .choose__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.6rem;
}
.drone-solutions .choose__content p {
  width: 70%;
}
@media (max-width: 768px) {
  .drone-solutions .choose__content p {
    width: 100%;
  }
}
.drone-solutions .drone-services {
  padding-bottom: 25rem;
}
.drone-solutions .drone-services .container {
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .drone-solutions .drone-services .container {
    gap: 0;
    row-gap: 0.8rem;
  }
}
@media (max-width: 768px) {
  .drone-solutions .drone-services .container {
    gap: 2.4rem;
  }
}
@media (max-width: 768px) {
  .drone-solutions .drone-services {
    padding: 4.8rem 0;
  }
}
.drone-solutions .drone-services__item {
  width: 30%;
  background-color: #f5f5f5;
  min-height: 300px;
  border-radius: 0.5rem;
  padding: 1.6rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  justify-content: space-between;
  background-size: cover;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 2s ease;
}
@media (max-width: 1200px) {
  .drone-solutions .drone-services__item {
    width: 32%;
  }
}
@media (max-width: 992px) {
  .drone-solutions .drone-services__item {
    width: 49%;
  }
}
@media (max-width: 768px) {
  .drone-solutions .drone-services__item {
    width: 100%;
    min-height: 250px;
  }
}
.drone-solutions .drone-services__item:hover {
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .drone-solutions .drone-services__item:hover {
    transform: scale(1);
  }
}
.drone-solutions .drone-services__item:hover p {
  transform: translateY(0%);
}
.drone-solutions .drone-services__item:hover .heading {
  font-size: 2.6rem;
}
.drone-solutions .drone-services__item .heading {
  letter-spacing: 2px;
  font-size: 2.4rem;
  transition: all ease 0.5s;
}
.drone-solutions .drone-services__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.drone-solutions .drone-services__item p {
  transition: all ease 0.5s;
  transform: translateY(120%);
}
@media (max-width: 768px) {
  .drone-solutions .drone-services__item p {
    transform: translateY(0%);
  }
}
.drone-solutions .drone-services__item:nth-child(1) {
  background-image: url("../../assets/images/aerial.webp");
}
.drone-solutions .drone-services__item:nth-child(2) {
  background-image: url("../../assets/images/construction.webp");
}
.drone-solutions .drone-services__item:nth-child(3) {
  background-image: url("../../assets/images/events.webp");
}
.drone-solutions .drone-services__item:nth-child(4) {
  background-image: url("../../assets/images/live-stream.webp");
}
.drone-solutions .drone-services__item:nth-child(5) {
  background-image: url("../../assets/images/real-estate.webp");
}
.drone-solutions .drone-services__item:nth-child(6) {
  background-image: url("../../assets/images/custom-solution.webp");
}
.drone-solutions .drone-services__item h3, .drone-solutions .drone-services__item p {
  position: relative;
  z-index: 3;
}
.drone-solutions .elevating {
  background-color: #f5f5f5;
}
.drone-solutions .elevating__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 768px) {
  .drone-solutions .elevating__left {
    order: 2;
  }
}
.drone-solutions .elevating__left .heading {
  color: #0a2756;
}
.drone-solutions .elevating__left-btn {
  margin-top: 2rem;
}
.drone-solutions .elevating__right {
  position: relative;
  flex: 1;
}
@media (max-width: 768px) {
  .drone-solutions .elevating__right {
    order: 1;
  }
}
.drone-solutions .elevating__right img {
  position: absolute;
  top: -280px;
  left: -50px;
}
@media (max-width: 768px) {
  .drone-solutions .elevating__right img {
    position: relative;
    top: 0;
    left: 0;
    width: 80%;
  }
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 56.25%;
  height: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .video-container {
    margin-top: 70px;
  }
}
@media (max-width: 768px) {
  .video-container {
    position: relative;
    order: 1;
  }
}
.video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(20, 43, 115);
  background: -moz-linear-gradient(90deg, rgb(20, 43, 115) 25%, rgba(0, 0, 0, 0.2581232322) 25%);
  background: -webkit-linear-gradient(90deg, rgb(20, 43, 115) 25%, rgba(0, 0, 0, 0.2581232322) 25%);
  background: linear-gradient(90deg, rgb(20, 43, 115) 25%, rgba(0, 0, 0, 0.2581232322) 25%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#142b73",endColorstr="#000000",GradientType=1);
  z-index: 2;
}
@media (max-width: 768px) {
  .video-container::before {
    background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.2581232322) 25%, rgba(0, 0, 0, 0.2581232322) 25%);
    background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.2581232322) 25%, rgba(0, 0, 0, 0.2581232322) 25%);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2581232322) 25%, rgba(0, 0, 0, 0.2581232322) 25%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  }
}/*# sourceMappingURL=main.css.map */