@import "./fonts/fonts.css";
@import "./vendor/bootstrap.min.css";
@import "./vendor/normalize.css";
@import "./vendor/slick.css";
@import "./vendor/leaflet.css";
@import "./vendor/leaflet-gesture-handling.css";

/* Global styles */

:root {
  --color-white: #ffffff;
  --color-darkBg: #181818;
  --color-redBg: #cb1c00;
  --color-redText: #dc3545;
  --color-darkText: #202020;
  --font-family-1: "Montserrat", sans-serif;
  --font-family-2: "Amsterdam Handwriting";
  --font-family-3: "Cerebri Sans Pro", sans-serif;
}

body {
  font-family: var(--font-family-3);
  opacity: 0;
  /* Start with opacity 0 for smooth fade-in */
}

body.gsap-initialized .navbar {
  visibility: visible !important;
  opacity: 1 !important;
}

header {
  position: relative;
  z-index: 9999;
}

a {
  font-family: var(--font-family-1);
}

h1,
.h1 {
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: var(--font-family-1);
}

h2,
.h2 {
  font-size: 48px;
  line-height: 72px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: var(--font-family-1);
}

@media (max-width: 992px) {
  h1,
  .h1 {
    font-size: 64px;
  }

  h2,
  .h2 {
    font-size: 42px;
    line-height: 52px;
  }
}

h3,
.h3 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: var(--font-family-1);
}

@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 54px;
  }

  h2,
  .h2 {
    font-size: 38px;
  }

  h3,
  .h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 576px) {
  h1,
  .h1 {
    font-size: 48px;
  }

  h2,
  .h2 {
    font-size: 34px;
  }

  h3,
  .h2 {
    font-size: 28px;
  }
}

@media (max-width: 420px) {
  h1,
  .h2 {
    font-size: 40px;
  }
}

@media (max-width: 380px) {
  h1,
  .h1 {
    font-size: 36px;
  }

  h2,
  .h2 {
    font-size: 28px;
  }
}

.fa-chevron-right::before {
  width: 9px;
}

.navbar a svg path {
  transition: fill 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    stroke 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Navbar Start */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  max-height: 90px;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: background-color, box-shadow, height;
}

.navbar .container-fluid {
  padding: 0 45px;
  height: 90px;
  transition: inherit;
}

.navbar .col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 330px) {
  .navbar .col {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.navbar-left {
  display: flex;
  gap: 70px;
}

.navbar__toggler {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  cursor: pointer;
  border: none;
  background: none;
}

.navbar__toggler .menu-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.navbar__toggler span {
  transition: 0.3s ease-in-out;
}

.navbar__toggler span:nth-child(1) {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
}

.navbar__toggler span:nth-child(2) {
  width: 20px;
  height: 2px;
  background: var(--color-white);
  content: " ";
  display: block;
}

.navbar__toggler div {
  font-family: var(--font-family-1);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white);
  transition: 0.3s ease-in-out;
}

.navbar.navbar_scrolled .navbar__toggler div {
  color: var(--color-darkText);
}

.navbar .navbar__toggler:hover div {
  color: var(--color-redBg) !important;
}

.navbar.navbar_scrolled .navbar__toggler .menu-icon span {
  background-color: var(--color-darkText);
}

.navbar .navbar__toggler:hover .menu-icon span {
  background: var(--color-redBg) !important;
}

@media (max-width: 991.98px) {
  .navbar__toggler span {
    transform: translateX(6px);
  }
}

.navbar .navbar-left .location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white);
  transition: 0.3s ease-in-out;
}

.navbar .navbar-left .location:hover {
  color: var(--color-redBg) !important;
}

.navbar .navbar-left .location i {
  font-size: 18px;
}

.navbar .navbar-right {
  display: flex;
  gap: 50px;
  transition: 0.3s ease-in-out;
}

.navbar.navbar_scrolled .navbar-right {
  gap: 35px;
}

.navbar .navbar-right .phone {
  display: flex;
  align-items: center;
  color: var(--color-white);
  gap: 10px;
}

.navbar .navbar-right .phone:hover i {
  animation: bounceArrowRight 2s infinite;
}

.navbar .navbar-right .phone .text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
  align-items: flex-end;
  font-family: var(--font-family-1);
}

.navbar .navbar-right .phone .text .number {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.navbar .navbar-right .phone .text :not(.number) {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.navbar .navbar-right .phone i {
  font-size: 14px;
  width: 40px;
  height: 40px;
  border: 2px solid #bd0102;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.navbar .navbar-right .ferrari-wrapper {
  position: relative;
  width: 150px;
  top: -25px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar .navbar-right .ferrari {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 160px;
  background-color: var(--color-redBg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar .navbar-right .ferrari img {
  width: 49px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar .navbar-right .ferrari .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  font-family: var(--font-family-1);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.0025em;
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.navbar_scrolled .navbar-right .ferrari-wrapper {
  width: 95px;
}

.navbar.navbar_scrolled .navbar-right .ferrari {
  width: 95px;
  height: 105px;
}

.navbar.navbar_scrolled .navbar-right .ferrari img {
  width: 34px;
}

.navbar.navbar_scrolled .navbar-right .ferrari .text {
  font-size: 10px;
}

.navbar.navbar_scrolled {
  background: var(--color-white);
  box-shadow: 0px 0px 13px -2px #000;
  height: 90px;
  padding: 0;
  color: var(--color-darkText);
}

.navbar.navbar_scrolled a {
  color: var(--color-darkText) !important;
}

.navbar a.navbar__logo {
  position: absolute;
  top: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
  align-content: center;
  height: 150%;
}

.navbar.navbar_scrolled a.navbar__logo {
  height: 100%;
}

.navbar a svg {
  transition: height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 75px;
}

.navbar.navbar_scrolled a svg {
  height: 60px;
}

.navbar.navbar_scrolled a svg path:nth-child(1),
.navbar.navbar_scrolled a svg path:nth-child(3) {
  fill: #202020 !important;
  transition: fill 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.navbar_scrolled a svg path:nth-child(2) {
  stroke: #202020 !important;
  transition: stroke 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100%;
  height: 100lvh;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-100%);
  transition: all 0.5s ease-out;
  background-color: var(--color-white);
  overflow: hidden;
}

.menu__opened {
  transform: translateX(0);
  transition: all 0.5s ease-out;
}

.menu__toggler {
  background: none;
  border: none;
  border-radius: 0;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 87px;
  height: 70px;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.82, -0.32, 0.18, 0.96);
}

.menu__toggler:before {
  display: block;
  content: " ";
  background: var(--color-white);
  width: 30px;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}

.menu__toggler:after {
  display: block;
  content: " ";
  background: var(--color-white);
  width: 30px;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
}

.menu__toggler:focus {
  outline: none;
  box-shadow: none;
}

.menu__toggler:hover {
  transform: rotate(180deg);
}

.menu .left-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 690px;
}

.menu .left-menu .menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding: 50px 0 0 80px;
  gap: 20px;
}

.menu .left-menu .menu-title {
  font-family: var(--font-family-1);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b7b7b7;
}

.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu ul li {
  text-align: left;
}

.menu ul li a {
  color: var(--color-darkText);
  font-size: 48px;
  line-height: 80px;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.menu ul li a:hover {
  color: var(--color-redBg);
}

.menu ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--color-redBg);
  transition: width 0.3s ease;
}

.menu ul li a:hover::after {
  width: 100%;
}

@media (max-height: 770px) {
  .menu ul li a {
    line-height: 50px;
  }
}

@media (max-height: 630px) {
  .menu {
    padding: 30px 0;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  .menu {
    padding: 30px 0;
    padding-top: 60px;
  }
}

.menu .right-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}

.menu .right-menu .cta-blocks {
  display: flex;
  height: 50%;
  width: 100%;
  min-height: 430px;
}

.menu .right-menu .cta-blocks .block-title {
  line-height: 48px;
  margin-bottom: 30px;
  display: block;
}

.menu .right-menu .cta-blocks .garage {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: var(--color-redBg);
  color: var(--color-white);
  padding: 95px 0 0 100px;
}

.menu .right-menu .cta-blocks .garage .address {
  font-family: var(--font-family-3);
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

.menu .right-menu .cta-blocks .garage .link {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.menu .right-menu .cta-blocks .garage .link i {
  font-size: 14px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.menu .right-menu .cta-blocks .garage .link:hover i {
  animation: bounceArrowRight 2s infinite;
}

.menu .right-menu .cta-blocks .call-us {
  width: 100%;
  background-image: url("/images/menu-call-us.webp");
  background-size: cover;
  background-position: left bottom;
  color: var(--color-white);
  padding: 95px 0 0 80px;
}

.menu .right-menu .cta-blocks .call-us .phone {
  font-family: var(--font-family-1);
  font-size: 20px;
  font-weight: 900;
  color: var(--color-white);
  position: relative;
  transition: color 0.3s ease;
}

.menu .right-menu .cta-blocks .call-us .phone:hover {
  color: var(--color-redBg);
}

.menu .right-menu .cta-blocks .call-us .phone:hover::after {
  width: 100%;
}

.menu .right-menu .cta-blocks .call-us .phone::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--color-redBg);
  transition: width 0.3s ease;
}

.menu .right-menu .map-wrapper {
  width: 100%;
  flex-grow: 1;
}

.menu .leaflet-tile-container {
  filter: grayscale(90%);
}

.menu .right-menu .map-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

@media (max-width: 1400px) {
  .menu .right-menu .cta-blocks .garage,
  .menu .right-menu .cta-blocks .call-us {
    padding: 50px;
  }

  .menu .left-menu {
    max-width: 550px;
  }
}

@media (max-width: 1200px) {
  .menu .right-menu .cta-blocks .garage,
  .menu .right-menu .cta-blocks .call-us {
    padding: 80px 40px;
  }

  .menu ul li a {
    font-size: 42px;
    line-height: 60px;
  }

  .menu .left-menu {
    max-width: 450px;
  }

  .menu .left-menu .menu-wrapper {
    padding: 50px;
  }

  .navbar .navbar-right .ferrari-wrapper {
    width: 95px;
  }

  .navbar .navbar-right .ferrari {
    width: 95px;
    height: 105px;
  }

  .navbar .navbar-right .ferrari img {
    width: 34px;
  }

  .navbar .navbar-right .ferrari .text {
    font-size: 10px;
  }

  .navbar .navbar-right {
    gap: 35px;
  }
}

@media (max-width: 992px) {
  .menu .right-menu .map-wrapper {
    display: none;
  }

  .menu .right-menu .cta-blocks {
    flex-direction: column;
    height: 100%;
  }

  .menu .right-menu .cta-blocks .garage,
  .menu .right-menu .cta-blocks .call-us {
    height: 100%;
  }

  .menu .right-menu .cta-blocks .block-title {
    font-size: 42px;
  }

  .navbar .navbar-right .ferrari-wrapper,
  .navbar .navbar-left .location {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar a.navbar__logo {
    height: 100%;
  }

  .navbar a svg {
    height: 60px;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    height: 100lvh;
  }

  .menu ul li a {
    font-size: 20px;
    line-height: 45px;
  }

  .menu__toggler:before,
  .menu__toggler:after {
    background: var(--color-darkText);
  }

  .menu .right-menu .cta-blocks .block-title {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 0;
  }

  .menu .right-menu .cta-blocks .block-title br {
    display: none;
  }

  .menu .right-menu .cta-blocks .garage {
    display: none;
  }

  .menu .right-menu .cta-blocks .call-us,
  .menu .right-menu {
    min-height: 270px;
    max-height: 270px;
  }

  .menu .right-menu .cta-blocks .call-us {
    padding: 40px;
  }

  .menu .right-menu .cta-blocks .call-us .phone {
    font-size: 30px;
  }

  .menu .left-menu .menu-wrapper {
    padding: 40px;
  }

  .menu .left-menu .menu-image {
    display: none;
  }

  .navbar .navbar-right .phone .text {
    display: none;
  }

  .navbar .navbar-right .phone i::before {
    content: "\f095";
    width: auto;
  }

  .navbar .navbar-right .phone i {
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .navbar .container-fluid {
    padding: 0 25px;
  }

  .navbar__toggler div {
    display: none;
  }

  .navbar a svg {
    height: 60px;
  }
}

/* Navbar End */

/* Main banner Start */

.main-banner {
  height: 100svh;
  height: min(100svh, 960px);
  width: 100%;
  background-image: url("/images/bg/main-banner-bg.webp");
  background-size: auto 130%;
  background-repeat: no-repeat;
  background-position: 20% 20%;
  align-content: end;
  padding-bottom: 35px;
}

@media screen and (min-width: 1920px) {
  .main-banner {
    background-size: 100%;
  }
}

.main-banner .banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: var(--color-white);
}

.main-banner .banner-text {
  font-family: var(--font-family-2);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 10px;
}

.main-banner .banner-title {
  line-height: 0;
  margin: 0.67em 0;
}

.main-banner .banner-subtitle {
  line-height: 0;
  margin: 15px 0 40px;
  text-wrap: nowrap;
}

.main-banner .banner-link {
  display: flex;
  gap: 20px;
  align-items: center;

  color: var(--color-white);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.main-banner .banner-link i {
  font-size: 14px;
  width: 40px;
  height: 40px;
  border: 2px solid #bd0102;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.main-banner .banner-link:hover i {
  animation: bounceArrowRight 2s infinite;
}

@media (max-width: 992px) {
  .main-banner .banner-subtitle {
    line-height: 1;
    text-align: center;
    margin-top: 0;
    text-wrap: balance;
  }

  .main-banner .banner-text {
    line-height: 34px;
  }
}

@media (max-width: 480px) {
  .main-banner .banner-text {
    font-size: 38px;
    line-height: 30px;
  }

  .main-banner .banner-title {
    font-size: clamp(30px, 10vw, 48px);
  }

  .main-banner .banner-subtitle {
    font-size: clamp(22px, 8vw, 34px);
  }

  .main-banner .banner-text {
    font-size: clamp(22px, 8vw, 38px);
  }
}

/* Main banner End */

/* Welcome section Start */

.welcome {
  padding: 110px 0;
}

.welcome .block-title {
  line-height: 0.8;
  margin-bottom: 35px;
}

.welcome .block-desc {
  font-size: 22px;
  line-height: 28px;
  color: var(--color-darkText);
  max-width: 560px;
}

.welcome .block-link {
  color: var(--color-darkText);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.welcome .block-link i {
  font-size: 14px;
  width: 40px;
  height: 40px;
  border: 2px solid #bd0102;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.welcome .block-link:hover i {
  animation: bounceArrowRight 2s infinite;
}

.welcome .right-content {
  margin-top: 22px;
}

.welcome .item-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-redText);
  text-transform: uppercase;
  font-family: var(--font-family-1);
  letter-spacing: 4px;
  margin-bottom: 35px;
}

.welcome .item-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-darkText);
  max-width: 255px;
}

.welcome .item-line {
  display: block;
  width: 300px;
  height: 2px;
  background-color: var(--color-redText);
  margin-top: 40px;
}

@media (max-width: 576px) {
  .welcome {
    padding: 50px 0 30px;
  }

  .welcome .block-title {
    text-align: center;
    margin-bottom: 10px;
  }

  .welcome .block-desc {
    text-align: center;
  }

  .welcome .col-12 {
    text-align: center;
  }

  .welcome .item-text {
    max-width: 100%;
  }

  .welcome .item-line {
    display: none;
  }

  .welcome .right-content {
    display: none;
  }
}

/* Welcome section End */

/* Services Start */

.services {
  height: max-content;
  min-height: 690px;
  display: flex;
  width: 100%;
  overflow: hidden;
}

.services .service {
  position: relative;
  width: 100%;
  color: var(--color-white);
  overflow: hidden;
}

.services .service .read-more {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.services .service .read-more i {
  font-size: 14px;
  width: 40px;
  height: 40px;
  border: 2px solid #bd0102;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  will-change: background-color, border-color, color;
  transition: 0.3s ease-in-out;
}

.services .service:hover .read-more i {
  rotate: 90deg;
  animation: bounceArrowRight 2s infinite;
}

.services .service:hover .read-more i {
  background-color: #e10001;
  border-color: #e10001;
  color: var(--color-white);
}

/* .services .service::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-redBg);
  opacity: 0.6;
  transition: 0.3s ease-in-out;
  mix-blend-mode: hard-light;
}

.services .service:nth-child(1):after {
  transform: translateX(-100%);
}

.services .service:nth-child(2):after {
  transform: translateX(200%);
} */

.services .service:hover::after {
  transform: none;
}

.services .service .service-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0px 0px 10px rgba(77, 0, 0, 0.5));
  text-align: center;
}

.services .service img {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 690px;
  object-fit: cover;
  z-index: 0;
}

.services .service:first-child img {
  object-position: left;
}

@media screen and (max-width: 1200px) {
  .services {
    min-height: 600px;
  }
}

@media (max-width: 992px) {
  .services {
    min-height: 500px;
  }

  .services .service {
    max-height: 500px;
  }

  .services .service:first-child img {
    object-position: right;
  }
}

@media (max-width: 768px) {
  .services .service img {
    object-position: center;
  }
}

@media (max-width: 576px) {
  .services {
    flex-direction: column;
    min-height: auto;
  }

  .services .service img {
    object-position: center;
  }

  .services .service {
    min-height: 240px;
  }

  .services .service:hover .read-more i {
    rotate: 0deg;
  }

  .services .service .service-content {
    height: 240px;
  }

  .services .service .service-content::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000012;
    opacity: 1;
    transition: 0.3s ease-in-out;
    mix-blend-mode: overlay;
    z-index: 1;
  }

  .services .service .read-more {
    flex-flow: row;
  }
}

/* Services End */

/* why choose Start */

.why-choose {
  padding: 130px 0;
}

.why-choose .block-title {
  line-height: 0.8;
  margin-bottom: 35px;
}

.why-choose .block-desc {
  max-width: 525px;
}

.why-choose .block-desc .hr-line {
  display: block;
  width: 125px;
  height: 2px;
  background-color: var(--color-redText);
  margin-top: 35px;
}

.why-choose .item-title {
  font-size: 24px;
  line-height: 24px;
  max-width: 180px;
  color: #bd0102;
  margin-bottom: 20px;
}

.why-choose .item-text {
  font-size: 16px;
  line-height: 24px;
  max-width: 260px;
}

@media (max-width: 1199.98px) {
  .why-choose .item-title {
    font-size: 20px;
    line-height: 1;
  }
}

@media (max-width: 991.98px) {
  .why-choose .right-content {
    margin-top: 35px;
  }

  .why-choose .block-desc {
    max-width: 100%;
  }

  .why-choose .block-desc .hr-line {
    margin-top: 25px;
  }
}

@media (max-width: 768px) {
  .why-choose .right-content {
    margin-top: 30px;
  }

  .why-choose {
    padding: 80px 0 40px;
  }
}

@media (max-width: 576px) {
  .why-choose h2 {
    text-align: center;
    margin-bottom: 10px;
  }

  .why-choose .block-desc {
    max-width: unset;
    text-align: center;
  }

  .why-choose .block-desc .hr-line {
    margin: 30px auto 0;
  }

  .why-choose .item-title {
    max-width: unset;
    text-align: center;
    margin-bottom: 15px;
    text-wrap: balance;
  }

  .why-choose .item-text p:last-child {
    margin-bottom: 0;
  }

  .why-choose .item-text {
    max-width: unset;
    text-align: center;
    margin-bottom: 30px;
    text-wrap: balance;
  }
}

/* why choose End */

/* Gallery Start */

.gallery {
  overflow: hidden;
}

.gallery .gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  aspect-ratio: 4 / 2;
  width: 100%;
  position: relative;
}

.gallery .gallery-wrapper .gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

/* .gallery .gallery-wrapper .gallery-item:not(.block-head):after {
  content: "\f1e0";
  z-index: 1;
  font-family: "Font Awesome 6 Pro";
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #a4170091;
  opacity: 0;
  transition: 0.3s ease-in-out;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  mix-blend-mode: hard-light;
} */

/* .gallery .gallery-wrapper .gallery-item:nth-child(5)::after {
  width: 100%;
}

.gallery .gallery-wrapper .gallery-item:hover::after {
  opacity: 1;
} */

.gallery .gallery-wrapper .gallery-item:nth-child(2) {
  grid-area: 1 / 1 / 3 / 3;
  aspect-ratio: 1 / 1;
}

.gallery .gallery-wrapper .block-head {
  grid-column: 2;
  grid-row: 1;
  grid-area: 1 / 3 / 2 / 4;
  background-color: #202020;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.gallery .gallery-wrapper .block-head h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 48px;
  line-height: 48px;
}

.gallery .gallery-wrapper .gallery-item:nth-child(3) {
  grid-area: 1 / 4 / 2 / 5;
}

.gallery .gallery-wrapper .gallery-item:nth-child(4) {
  grid-area: 2 / 3 / 3 / 4;
}

.gallery .gallery-wrapper .gallery-item:nth-child(5) {
  grid-area: 2 / 3 / 4 / 5;
  aspect-ratio: 2/1;
  overflow: hidden;
  transform: translate(50%);
}

.gallery .gallery-wrapper .gallery-item:nth-child(6) {
  grid-area: 1 / 1 / 3 / 1;
  aspect-ratio: 1 / 2;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
}

.gallery .gallery-wrapper .gallery-item:nth-child(7) {
  grid-area: 1 / 4 / 2 / 5;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
}

.gallery .gallery-wrapper .gallery-item:not(:nth-child(5)) .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.gallery .gallery-wrapper .gallery-item:nth-child(5) .gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  max-width: none;
  object-fit: contain;
}

@media (max-width: 768px) {
  .gallery .gallery-wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    aspect-ratio: unset;
  }

  .gallery .gallery-wrapper .block-head {
    grid-area: 1 / 1 / 2 / 3;
    aspect-ratio: unset;
    height: 100px;
    background: none;
    color: var(--color-darkText);
  }

  .gallery .gallery-wrapper .block-head h2 {
    font-size: 42px;
  }

  .gallery .gallery-wrapper .block-head h2 br {
    display: none;
  }

  .gallery .gallery-wrapper .gallery-item:nth-child(2),
  .gallery .gallery-wrapper .gallery-item:nth-child(3),
  .gallery .gallery-wrapper .gallery-item:nth-child(4),
  .gallery .gallery-wrapper .gallery-item:nth-child(5),
  .gallery .gallery-wrapper .gallery-item:nth-child(6),
  .gallery .gallery-wrapper .gallery-item:nth-child(7) {
    grid-area: auto;
    overflow: hidden;
    aspect-ratio: 1/1;
    transform: translate(0);
  }

  .gallery .gallery-wrapper .gallery-item:nth-child(6),
  .gallery .gallery-wrapper .gallery-item:nth-child(7) {
    position: relative;
    left: unset;
    top: unset;
    transform: none;
  }

  .gallery .gallery-wrapper .gallery-item:nth-child(5) .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery .gallery-wrapper .gallery-item:nth-child(5)::after {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .gallery .col-12 {
    padding: 0;
  }

  .gallery .gallery-wrapper .block-head h2 {
    font-size: 34px;
  }
}

/* Gallery End */

/* Testimonials Start */

.testimonials-carousel {
  padding: 120px 0;
}

.testimonials-carousel .block-title {
  font-size: 38px;
  line-height: 38px;
}

.testimonials-carousel .subtitle {
  text-align: left;
}

.testimonials-carousel .carousel-nav {
  display: flex;
  gap: 25px;
  margin-top: 35px;
}

.testimonials-carousel .carousel-nav button {
  border: none;
  background: none;
  font-size: 40px;
  color: var(--color-darkText);
  will-change: color;
  transition: 0.3s ease-in-out;
}

.testimonials-carousel .carousel-nav button.next-slide:hover {
  animation: bounceArrowRight 2s infinite;
  color: var(--color-redBg);
}

.testimonials-carousel .carousel-nav button.prev-slide:hover {
  animation: bounceArrowLeft 2s infinite;
  color: var(--color-redBg);
}

.testimonials-carousel .testimonial-item {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonials-carousel .testimonial-item .testimonial-text {
  font-size: 24px;
  line-height: 32px;
}

.testimonials-carousel .testimonial-item .testimonial-text p:last-child {
  margin-bottom: 0;
}

.testimonials-carousel .testimonial-item .testimonial-author {
  font-family: var(--font-family-2);
  font-size: 36px;
  margin: 25px 0 0 10px;
  padding: 20px 0 10px;
}

.testimonials-carousel .carousel-wrapper:not(.slick-initialized) {
  display: flex;
  flex-flow: row nowrap;
  position: relative;
}

.testimonials-carousel
  .carousel-wrapper:not(.slick-initialized)
  .testimonial-item {
  display: none;
}

.testimonials-carousel
  .carousel-wrapper:not(.slick-initialized)
  .testimonial-item:first-child {
  display: inline-block;
}

@media (max-width: 991.98px) {
  .testimonials-carousel .row {
    position: relative;
  }

  .testimonials-carousel .subtitle,
  .testimonials-carousel .block-title {
    text-align: center;
  }

  .testimonials-carousel .carousel-wrapper {
    max-width: 640px;
    margin: 0 auto;
  }

  .testimonials-carousel .testimonial-item {
    text-align: center;
  }

  .testimonials-carousel .carousel-nav {
    position: absolute;
    width: 100%;
    gap: unset;
    justify-content: space-between;
    top: 50%;
  }

  .testimonials-carousel .carousel-nav button.prev-slide {
    transform: translateX(-50%);
  }
}

@media (max-width: 767.98px) {
  .testimonials-carousel .block-title {
    line-height: 1;
    margin-bottom: 15px;
  }

  .testimonials-carousel .carousel-wrapper {
    max-width: 480px;
  }

  .testimonials-carousel .testimonial-item .testimonial-text {
    font-size: 20px;
    line-height: 28px;
  }

  .testimonials-carousel .testimonial-item .testimonial-author {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  .testimonials-carousel .slick-track {
    display: flex;
  }

  .testimonials-carousel .slick-track .slick-slide {
    display: flex;
    height: auto;
    align-items: center;
    justify-content: center;
  }

  .testimonials-carousel .carousel-nav {
    display: none;
  }

  .testimonials-carousel .testimonial-item .testimonial-text {
    font-size: 18px;
    line-height: 24px;
    text-wrap: balance;
  }

  .testimonials-carousel .testimonial-item .testimonial-author {
    font-size: 26px;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .testimonials-carousel {
    padding: 60px 0 40px;
  }

  .testimonials-carousel .block-title {
    line-height: 1;
    margin-bottom: 25px;
  }
}

/* Testimonials End */

/* Map Start */

.map {
  position: relative;
}

.map::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--color-darkBg);
  z-index: -1;
}

.map .row {
  overflow: hidden;
  background-color: var(--color-redBg);
}

.map .text-content {
  background-color: var(--color-redBg);
  color: #fff;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.map .text-content .block-title {
  line-height: 48px;
  margin-bottom: 20px;
}

.map .text-content .address {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}

.map .text-content a {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.map .text-content a:hover i {
  animation: bounceArrowRight 2s infinite;
}

.map .text-content a i {
  font-size: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.map .map-item {
  min-height: 250px;
}

.map .map-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map .map-wrapper {
  padding-right: 0;
}

.map .leaflet-tile-container {
  filter: grayscale(90%);
}

@media (max-width: 991.98px) {
  .map .text-content {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .map .text-content {
    padding: 30px;
  }

  .map .text-content .block-title br {
    display: none;
  }

  .map .map-wrapper {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .map .text-content {
    text-align: center;
    align-items: center;
  }
}

/* Map End */

/* Footer main Start */

footer {
  padding-top: 110px;
  background-color: var(--color-darkBg);
}

footer .block-header h2 {
  margin-bottom: 20px;
  color: #fff;
}

@media (max-width: 767.98px) {
  footer {
    padding-top: 50px;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  footer {
    padding-top: 50px;
  }
}

.footer__slogan {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  padding-bottom: 18px;
  color: #fff;
  text-wrap: balance;
}

.footer__slogan span {
  text-wrap: nowrap;
}

.footer-main .contact-title {
  color: var(--color-white);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 5px;
  text-transform: none;
}

.footer-main .contact-title.mail {
  margin-top: 20px;
}

.footer-main .contact-link {
  color: var(--color-redBg);
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  position: relative;
  width: fit-content;
}

.footer-main .contact-link:hover::after {
  width: 100%;
}

.footer-main .contact-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--color-redBg);
  transition: width 0.3s ease;
}

@media (max-width: 1399.98px) {
  .footer__slogan br {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .footer__contacts {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .footer__contacts .footer__contact:first-child {
    grid-area: 1/1/3/2;
  }
}

@media (max-width: 575.98px) {
  .footer__contacts {
    display: flex;
    flex-direction: column;
  }
}

.footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  text-decoration: none;
  overflow: hidden;
  color: var(--color-white);
  font-family: var(--font-family-1);
  font-size: 18px;
  line-height: 24px;
}

.footer__contact:hover,
.footer__contact:focus {
  text-decoration: none;
}

.footer__text {
  overflow: hidden;
}

.footer__description {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer__socials {
  display: flex;
  gap: 7px;
  margin-top: 25px;
}

.footer__socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
  font-size: 20px;
  border-radius: 0;
  color: var(--color-white);
  background: var(--color-redBg);
}

.footer__socials a i {
  transition: 0.3s ease-in-out;
  will-change: transform;
}

.footer__socials a svg {
  fill: #fff;
  width: 30px;
  height: auto;
}

.footer__socials a:hover i {
  transform: scale(1.1);
}

.footer__map {
  margin-top: 35px;
}

.footer__map img {
  max-width: 100%;
}

.footer__tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family-1);
  color: var(--color-white);
  font-size: 15px;
  line-height: 30px;
  padding: 5px 0;
}

.footer__tools a {
  color: var(--color-greenText);
  text-transform: uppercase;
  font-family: var(--font-family-1);
  font-size: 12px;
}

@media (max-width: 991.98px) {
  .footer__tools {
    max-width: 442px;
  }
}

@media (max-width: 380px) {
  .footer__tools {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.footer__form {
  font-size: 0.9375rem;
  line-height: 30px;
}

.footer__form .form-group {
  margin-bottom: 24px;
}

.footer__form .form-group .required {
  color: var(--color-redText);
}

.footer__form .form-group .error {
  font-size: 14px;
  color: var(--color-redText);
}

.footer__form .form-label {
  display: block;
  margin-bottom: 5px;
  color: var(--color-white);
}

.footer__form .form-control {
  font-weight: 400;
  height: 60px;
  border-radius: 0;
  border: none;
}

.footer__form .form-control:focus,
.footer__form .form-control:hover {
  box-shadow: none;
  outline: none;
}

.footer__form textarea.form-control {
  height: 228px;
}

.footer__form .button {
  margin-top: 26px;
  width: 225px;
  height: 56px;
  border: none;
  background-color: var(--color-redBg);
  color: var(--color-white);
  font-family: var(--font-family-1);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .footer__form .button {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991.98px) {
  .footer__form {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .footer__form .row:nth-child(5) .col {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .footer__form {
    padding: 0;
    border-radius: 10px;
  }
}

.footer__menu {
  padding-top: 48px;
  padding-bottom: 30px;
  color: var(--color-white);
  border-top: 1px solid #434d53;
  margin-top: 95px;
}

.footer__menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__menu ul li a {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--font-family-1);
  text-decoration: none;
  margin-right: 35px;
  color: var(--color-white);
  position: relative;
  transition: color 0.3s ease;
}

.footer__menu ul li a:hover {
  color: var(--color-redBg);
}

.footer__menu ul li a:hover::after {
  width: 100%;
}

.footer__menu ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--color-redBg);
  transition: width 0.3s ease;
}

.footer__menu ul li a span {
  text-transform: none;
}

@media (max-width: 991.98px) {
  .footer__menu ul li a {
    margin-right: 0;
  }
}

@media (max-width: 575.98px) {
  .footer__menu ul li a {
    text-align: center;
    display: block;
    margin-right: 0;
    line-height: 36px;
  }
}

.footer__menu ul li:last-child a {
  margin-right: 0;
}

@media (max-width: 991.98px) {
  .footer__menu ul li {
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  .footer__menu ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-flow: row wrap;
    gap: 5px 0;
  }

  .footer__menu ul li {
    width: 33.33%;
    flex-grow: 1;
  }
}

@media (max-width: 767.98px) {
  .footer__menu ul {
    order: 1;
  }
}

@media (max-width: 575.98px) {
  .footer__menu ul {
    gap: 0;
  }

  .footer__menu ul li {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .footer__menu {
    margin-top: 50px;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  .footer__menu {
    margin-top: 50px;
  }
}

@media (max-width: 575.98px) {
  .footer__menu {
    padding-bottom: 30px;
    padding-top: 10px;
  }
}

.footer__rights {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 36px;
  font-weight: 400;
  margin-top: 12px;
  text-wrap: balance;
}

@media (max-width: 991.98px) {
  .footer__rights {
    flex-direction: column;
    align-items: center;
    line-height: 14px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767.98px) {
  .footer__rights {
    order: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media (max-width: 991.98px) {
  .footer__copyright {
    text-align: center;
    line-height: 20px;
  }
}

.footer__authors {
  display: flex;
  align-items: center;
  line-height: 100%;
  font-family: var(--font-family-3);
}

.footer__authors a {
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--font-family-3);
}

.footer__authors a:hover,
.footer__authors a:focus {
  text-decoration: none;
}

.footer__authors img {
  margin-left: 2px;
  margin-top: 2px;
}

@media (max-width: 991.98px) {
  .footer__authors {
    margin-top: 10px;
  }
}

.footer__author {
  font-family: Arial, sans-serif;
  font-size: 12pt;
  font-weight: bold;
  color: var(--color-white);
  margin-top: -3px;
}

.custom-checkbox-group {
  display: flex;
  align-items: flex-start;
}

.custom-checkbox-group label {
  line-height: 24px;
  color: var(--color-white);
}

.custom-checkbox-group label.visible-desctop {
  display: block;
}

@media (max-width: 575.98px) {
  .custom-checkbox-group label.visible-desctop {
    display: none;
  }
}

.custom-checkbox-group label.visible-mobile {
  display: none;
}

@media (max-width: 575.98px) {
  .custom-checkbox-group label.visible-mobile {
    display: block;
  }
}

.custom-checkbox {
  position: relative;
  width: 19px;
  height: 19px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 15px;
}

@media (max-width: 575.98px) {
  .custom-checkbox {
    margin-right: 20px;
  }
}

.custom-checkbox input {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  opacity: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 19px;
  width: 19px;
  background-color: var(--color-white);
  border-radius: 0;
}

.checkmark.error {
  background-color: var(--color-redText);
}

.custom-checkbox input:checked ~ .checkmark,
.custom-checkbox input:checked {
  background-color: var(--color-white) !important;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 0px;
  top: 0px;
  width: 19px;
  height: 19px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAlElEQVQ4T6WTXQ2AMAwGDwdIQAISQAEWsIQCQAkWkIAEJJCSNCljP7Dtdblb26+rKDxVIU+uoAY2YMoRKNwC61/BAwbGP4IXLPP7KvDCVtAARyCRIKyCBRiAHtgdSRRWwQjMwOlIkrBtwZVIO5LzHZVMO7RwdohWIoIk7EtBJXIXfVkr8sUoki5Wtm3n6x4E/1yx4AI+qiERKNFzCwAAAABJRU5ErkJggg==")
    2px 2px no-repeat;
  animation: checkbox 0.3s linear;
}

@keyframes checkbox {
  from {
    width: 0;
  }

  to {
    width: 19px;
  }
}

/* Footer main End */

/* Instagram Gallery Styles */
.gallery-wrapper.loading {
  position: relative;
  min-height: 300px;
}

.gallery-wrapper.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7)
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid"><circle cx="50" cy="50" fill="none" stroke="%23333" stroke-width="8" r="40" stroke-dasharray="188.49555921538757 64.83185307179586"><animateTransform attributeName="transform" type="rotate" repeatCount="indefinite" dur="1s" values="0 50 50;360 50 50" keyTimes="0;1"></animateTransform></circle></svg>')
    center no-repeat;
  background-size: 50px;
  z-index: 1;
}

.instagram-item {
  position: relative;
}

.instagram-item .video-indicator,
.instagram-item .carousel-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.instagram-item img {
  transition: transform 0.3s ease;
}

.instagram-item:hover img {
  transform: scale(1.05);
}

@keyframes bounceArrowRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }

  40% {
    transform: translateX(5px);
  }

  60% {
    transform: translateX(3px);
  }
}

@keyframes bounceArrowLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }

  40% {
    transform: translateX(-5px);
  }

  60% {
    transform: translateX(-3px);
  }
}

/* Modal Start */

.modal.show .modal-dialog {
  transform: translate(0, 100px);
}

.modal-header {
  justify-content: space-between;
}

.modal-header button.close {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: inherit;
  font-size: 40px;
  line-height: 20px;
}
