/* Theme Name: Boomerang Global
Version: 1.0
*/

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/montserrat-v31-latin-300.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 300;
  src: url("fonts/montserrat-v31-latin-300italic.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/montserrat-v31-latin-regular.woff2") format("woff2");
}

body {
  font-family: Montserrat;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  font-size: 17px;
}

h1,
.h1,
h2,
.h2 {
  font-size: 63px;
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  h2,
  .h2 {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  h2,
  .h2 {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  h2,
  .h2 {
    font-size: 34px;
  }
}

h3,
.h3,
h4,
.h4 {
  color: #000;
}

h4,
.h4 {
  font-size: 24px;
}

.border-start,
.border-bottom,
.border-end,
.border-top {
  border-color: #e9e9e9 !important;
}

@media (min-width: 768px) {
  .border-end-md {
    border-right: 1px solid #e9e9e9 !important;
  }
}

@media (min-width: 768px) {
  .center-line::after {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -0.5px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e9e9e9;
    pointer-events: none;
    z-index: -1;
  }
}

.text-dark {
  color: #000 !important;
}

/* ------ Buttons ------ */

.btn-dark {
  background-color: #000;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 0;
  padding: 9px 30px;
}

.btn-outline-dark {
  background-color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 0;
  padding: 9px 30px;
}

@media (max-width: 1199px) {
  .btn-outline-dark {
    padding: 9px 14px;
  }
}

/* ------ Header ------ */

.header {
  z-index: 100;
}

.header__brand {
  display: flex;
  align-items: center;
  margin-right: 26px;
}

.nav-link {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 22px;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-nav .dropdown-menu {
  border-radius: 0;
  border-color: #000;
}

.navbar-nav .dropdown-toggle::after {
  display: none;
}

.navbar-nav .dropdown-item {
  font-style: italic;
  color: #000;
}

.navbar-nav .dropdown-item:active,
.navbar-nav .dropdown-item.active {
  background: #f8f9fa;
  color: #000;
}

@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    background: none;
  }
  .navbar-nav .dropdown-item,
  .navbar-nav .dropdown-item.active  {
    color: #fff;
  }
  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item:active,
  .navbar-nav .dropdown-item:focus,
  .navbar-nav .dropdown-item.active  {
    background: none;
    opacity: 0.8;
  }
  .navbar-nav .nav-link.active {
	color: rgba(255, 255, 255, 0.8);  
	background: none;
  }
}

.header.fixed-top {
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding-top 0.3s ease;
}

.header--scrolled .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header.fixed-top.header--scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header--scrolled.pt-4, .header--scrolled.py-3, .header--scrolled.py-lg-4 {
  padding: 5px 0 !important;
}

@media (min-width: 992px) {
  .header--scrolled .nav-link {
    color: #000;
  }
  .header--scrolled .nav-link.active,
  .header--scrolled .nav-link:hover {
    color: rgba(0, 0, 0, 0.8);
  }
}

/* ------ HEADER BG WHITE ------ */

@media (min-width: 992px) {
  header.bg-white .nav-link {
    color: #000;
  }

  header.bg-white .nav-link.active,
  header.bg-white .nav-link:hover {
    color: rgba(0, 0, 0, 0.8);
  }
}

/* ------ HERO SLIDER ------ */

.hero-slider {
  height: 900px;
  position: relative;
  overflow: hidden;
}

.hero-slider__item {
  height: clamp(600px, 100vh, 900px);
  background-size: cover;
  background-position: center;
  position: relative;
}


.hero-slider__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.hero-slider__content {
  position: relative;
  z-index: 10;
  color: #fff;
}

.hero-slider__title {
  font-size: clamp(32px, 2.5vw + 1rem, 63px);
  font-weight: 300;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-slider__title span {
  color: #fff;
}

.hero-slider__btn {
  padding: 15px 30px;
  font-style: italic;
  text-decoration: none;
  color: #000;
  font-size: 24px;
  font-weight: 300;
  background-color: #ffffff;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  z-index: 20;
}

.hero-slider__btn:hover {
  background: #e0e0e0;
}

.hero-slider__indicators.carousel-indicators {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  z-index: 50;
  display: block;
  justify-content: unset;
  list-style: none;
  pointer-events: none;
  border: none;
}

.hero-slider__indicators.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: auto;
  height: auto;
  text-indent: 0;
  background: none !important;
  border: none !important;
  outline: none;
  opacity: 0.4;
  transition: all 0.4s ease;
  margin-right: 2rem;
  color: #fff;
  text-align: left;
  padding: 0;
  pointer-events: auto;
  display: inline-block;
  transform: skewX(0deg);
  font-size: 32px;
  font-weight: 300;
}

.hero-slider__progress {
  width: 100px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-top: 10px;
  transition: all 0.4s ease;
}

.hero-slider__indicators.carousel-indicators .active {
  opacity: 1 !important;
  transform: skewX(-15deg);
}

.hero-slider__indicators.carousel-indicators .active .hero-slider__progress {
  background-color: #fff;
  width: 92px;
}

.hero-slider__indicator:last-child {
  margin-right: 0;
}

@media (max-width: 1320px) {
  .nav-link {
    margin: 0px 10px;
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .hero-slider,
  .hero-slider__item {
    height: 650px;
  }
  .hero-slider__indicators.carousel-indicators [data-bs-target] {
    font-size: 20px;
    margin-right: 1rem;
  }
  .hero-slider__indicators.carousel-indicators .active .hero-slider__progress {
    width: 40px;
  }
  .hero-slider__progress {
    width: 48px;
  }
  .hero-slider__btn {
    padding: 14px 14px;
    font-size: 19px;
  }
  .offcanvas.text-bg-dark {
    background-color: #000 !important;
    width: 80%;
    max-width: 320px;
  }

  .nav-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ------ HERO SLIDER WHITE ------ */

.hero-breadcrumbs {
  font-size: 16px;
  font-weight: 300;
}

.hero-breadcrumbs .breadcrumb_last {
  color: #000;
}

.hero-breadcrumbs a,
.hero-breadcrumbs span {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.hero-slider-white {
  border-bottom: 1px solid #e9e9e9;
  background: #fff;
  margin-top: 134px;
}

.hero-slider-white {
  height: clamp(600px, 75vh, 700px);
}

.hero-slider-white .hero-slider__item {
  height: 100%;
}

.hero-slider-white .hero-slider__item::before {
  display: none;
}

.hero-slider-white .hero-slider__title {
  color: rgba(0, 0, 0, 0.7);
}

.hero-slider-white .hero-slider__title span {
  color: #000;
}

.hero-slider__right-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-slider-white .hero-slider__content p {
  color: rgba(0, 0, 0, 0.5);
}

.hero-slider-white .hero-slider__btn {
  background: #000;
  color: #fff;
}

.hero-slider-white .hero-slider__btn:hover {
  background: #424649;
  color: #fff;
}

.hero-slider-white .carousel-inner {
  border-bottom: 1px solid #e9e9e9;
}

.page-template-default {
  margin-top: 134px;	
}

@media (max-width: 991px) {
  .hero-slider-white, .page-template-default {
    margin-top: 118px;
  }	
  .hero-slider__right-image {
    width: 100%;
    opacity: 0.3;
  }
  .hero-slider-white,
  .hero-slider-white .hero-slider__item {
    height: 500px;
  }
}

/* ------ HERO SLIDER VIDEO ------ */

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* ------ EXPERTISE ------ */

.expertise__title {
  font-size: 40px;
  font-weight: 300;
}

@media (max-width: 767px) {
  .expertise__title {
    font-size: 26px;
    font-weight: 300;
  }
}

/* ------ CASE SECTION ------ */

.case-section__item {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
}

.case-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s ease;
}

.case-section__item:hover .case-section__overlay {
  background: rgba(0, 0, 0, 0.5);
}

.case-section__title,
.case-section__number {
  font-size: 44px;
  font-weight: 300;
  text-transform: uppercase;
  font-style: italic;
  color: #fff;
  margin: 0;
  padding: 0 40px;
}

.case-section__content {
  background: rgba(0, 0, 0, 0.5);	
  padding: 20px 40px;
}

.case-section__description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.case-section__result {
  font-size: 20px;
  font-weight: 500;
  margin: 20px 0 0;
}

@media (max-width: 991px) {
  .case-section__title,
  .case-section__number {
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    font-style: italic;
    margin: 0;
  }
  .case-section__item {
    height: 400px;
  }
  .case-section__description {
    font-size: 15px;
  }
  .case-section__result {
    font-size: 18px;
  }
}

/* ------ BRANDS TICKER ------ */

.brands-ticker {
  overflow: hidden;
  position: relative;
  display: flex;
  user-select: none;
  -webkit-user-select: none;
}

.brands-ticker__track {
  display: flex;
  width: max-content;
  animation: scroll-left 100s linear infinite;
}

.brands-ticker__item {
  padding: 0 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brands-ticker__item img {
  height: 45px;
  width: auto;
  pointer-events: none;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

@media (max-width: 991px) {
  .brands-ticker {
    margin-top: 30px;
  }
  .brands-ticker__item img {
    height: 38px;
  }
}

/* ------ OUR PROCESS ------ */

.our-process__title {
  font-size: 40px;
  font-weight: 300;
  color: #000;
}

@media (max-width: 767px) {
  .our-process__title {
    font-size: 26px;
    font-weight: 300;
  }
}

/* ------ FOOTER ------ */

footer {
  background: #000;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  footer .border-end-md {
    border-color: #292929 !important;
  }
}

footer .border-start,
footer .border-end,
footer .border-bottom {
  border-color: #292929 !important;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

footer a:hover {
  color: #fff;
}

footer a svg {
  transition: all 0.3s ease-out;
}

footer a svg:hover {
  opacity: 0.7;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotating-logo {
  animation-name: spin;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center center;
  pointer-events: none;
}

.footer-title {
  font-size: 32px;
  color: #fff;
  margin: 18px 0 0;
}

footer .list-unstyled li {
  margin-top: 20px;
}

@media (max-width: 991px) {
  footer {
    font-size: 16px;
  }
  .footer-title {
    font-size: 20px;
    color: #fff;
    margin: 10px 0 0;
  }
  footer .list-unstyled li {
    margin-top: 10px;
  }
}

.footer-form-container {
  max-width: 100%;
  background: transparent;
}

.footer-form-container input[type="text"],
.footer-form-container input[type="tel"] {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8) !important;
  border-radius: 0 !important;
  padding: 10px 0 !important;
  margin-bottom: 25px !important;
  color: #ffffff !important;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-form-container input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.footer-form-container input:focus {
  outline: none !important;
  box-shadow: none !important;
  border-bottom-color: #ffffff !important;
}

.footer-form-container .wpcf7-submit {
  width: 100% !important;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 15px 0 !important;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.footer-form-container .wpcf7-submit:hover {
  background-color: #e0e0e0 !important;
}

.footer-form-container .wpcf7-response-output {
  border: none !important;
  color: #fff;
  margin: 10px 0 0 0 !important;
  padding: 0 !important;
  font-size: 0.8rem;
}

/* ------ MODAL ------ */

.custom-modal {
  border-radius: 0 !important;
  border: none !important;
}

.modal-title-custom {
  font-weight: 300;
  color: #000;
  line-height: 1.2;
  font-size: 2.5rem;
  text-transform: uppercase;
}

.custom-modal .wpcf7 form .wpcf7-response-output {
  margin: 0;
  border: 0;
  color: #888;
}

.custom-modal input[type="text"],
.custom-modal input[type="tel"],
.custom-modal input[type="email"] {
  width: 100%;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  padding: 13px 20px !important;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.custom-modal .wpcf7-submit {
  width: 100%;
  background-color: #000 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 11px !important;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 2px;
  transition: 0.3s;
}

.custom-modal .wpcf7-submit:hover {
  background-color: #424649 !important;
}

.call-us-link {
  font-style: italic;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.call-us-link:hover {
  opacity: 0.8;
}

.btn-close {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3E%3Cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E") !important;
  opacity: 1;
}

.custom-modal .btn-close:focus {
  box-shadow: none !important;
  outline: none !important;
}

@media (max-width: 991px) {
  .modal-title-custom {
    font-size: 1.5em;
  }
  .custom-modal .wpcf7-submit,
  .call-us-link {
    font-size: 16px;
  }
}

/* ------ SERVICES RESULTS ------ */

.services-results__title {
  font-size: 32px;
  color: #000;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .services-results__title {
    font-size: 26px;
    font-weight: 300;
  }
}

/* ------ ABOUT ------ */

.about-block-2 {
  background-size: cover;
  background-position: center;
  padding: 160px 0;
}

.about-block-2__title {
  color: rgba(255, 255, 255, 0.7);
}

.about-block-2__title span {
  color: #fff;
}

@media (max-width: 991px) {
  .about-block-2 {
    padding: 100px 0;
  }
}

/* ------ CONTACT ------ */

.page-template-single-contact .hero-slider-white {
    height: auto;
}

.page-template-single-contact .hero-slider__right-image {
    top: 1px;
}

.page-template-single-contact .hero-slider__content {
    padding-bottom: 40px;
}

.page-template-single-contact .hero-slider__right-image iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 991px) {
  .page-template-single-contact .hero-slider__right-image {
    position: relative;
    width: 100%;
    height: 300px;
    opacity: 1;
  }

  .page-template-single-contact .hero-slider-white,
  .page-template-single-contact .hero-slider-white .hero-slider__item {
    height: auto;
  }
  .page-template-single-contact .hero-breadcrumbs {
    position: initial;
    margin-top: 40px;
  }
  .page-template-single-contact .hero-slider__content {
    padding-bottom: 60px;
  }
}

/* ------ ARCHIVE / SINGLE ------ */

.single-article__info span {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.single-hero__meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-style: italic;
}

.archive-card__image {
  display: block;
  height: 330px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.archive-card__image:hover {
  opacity: 0.85;
}

.archive-card__title {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.15;
}

.archive-card__title a,
.single-article__info a,
.single-content a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.archive-card__title a:hover,
.single-article__info a:hover,
.single-content a:hover {
  opacity: 0.65;
}

.archive-card__excerpt p:last-child {
  margin-bottom: 0;
}

.archive-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.archive-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  transition: all 0.3s ease;
}

.archive-pagination__link.current,
.archive-pagination__link:hover {
  background: #000;
  color: #fff;
}

.single-content h2,
.single-content h3,
.single-content h4 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.single-content h2 {
    font-size: 63px;
    font-weight: 300;
    color: #000;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .single-content h2 {
        font-size: 34px;
    }
}

.single-content h3 {
    font-size: 40px;
    font-weight: 300;
	font-style: italic;
    text-transform: uppercase !important;
}

@media (max-width: 767px) {
    .single-content h3 {
        font-size: 26px;
        font-weight: 300;
    }
}

.single-content img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .archive-card__image {
    height: 260px;
  }

  .archive-card__title {
    font-size: 30px;
  }

  .single-article__side-title {
    font-size: 46px;
  }

}

@media (max-width: 767px) {
  .archive-card {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .single-article__side-title {
    font-size: 34px;
  }

  .single-article__info p {
    font-size: 19px;
  }
}
