button {
  background-color: transparent;
}
header,#banner_wrapper {
    font-family: "Poppins", Arial, Helvetica, sans-serif !important;
  font-optical-sizing: auto !important;
}
.custom_container {
    padding-inline: 100px;
}

header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 20;
  overflow: visible;
}
.container {
  padding: 0 3.75rem;
}
.header_inner {
  padding: 1rem 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 110px;
  z-index: 1;
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.header__logo-svg {
  width: 7.5rem;
  height: 3.625rem;
}
.header--scroll .header__logo-svg path {
  fill: #FE0000;
}
.header__logo-svg path {
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.lang_wrapper {
  position: relative;
  z-index: 30;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lang_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(24, 29, 29, 0.08);
  box-shadow: 0 8px 20px rgba(24, 29, 29, 0.08);
  pointer-events: none;
  transition: height 0.2s ease;
}
.lang_wrapper:hover::before {
  height: 120px;
}
.lang_item {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  cursor: pointer;
}
.lang_item:not(.is-current) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.lang_wrapper:hover .lang_item:not(.is-current) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lang_wrapper:hover .lang_item:nth-child(2) {
  top: 38px;
}
.lang_wrapper:hover .lang_item:nth-child(3) {
  top: 76px;
}
.lang_flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(24, 29, 29, 0.08);
}
.lang_item:hover .lang_flag {
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px rgba(24, 29, 29, 0.16);
}
.header_left {
  display: flex;
  align-items: center;
  gap: 60px;
}
.header_left img {
    transform: scale(1.5);
}
.header_center {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 100px;
  width: 100%;
  justify-content: flex-start;
  gap: 28px;
}
.header_menu {
  margin-left: auto;
}
.menu_button {
  background-color: #181d1d;
  position: absolute;
  left: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 9px;
  cursor: pointer;
  top: -40px;
  padding-top: 40px;
  padding-inline: 9px;
  padding-bottom: 10px;
  width: 48px;
  height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: all .3s ease-in-out;
}
.menu_button.is-open {
  background-color: #FE0000;
  color: #fff;
}
.header__menu-burger {
  height: 0.625rem;
  display: flex;
  align-items: center;
  margin-top: 20px;
  justify-content: center;
}
.header__burger {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transition:
    height 0.4s 0.4s cubic-bezier(0.33, 1, 0.68, 1),
    border-color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.header__burger::before,
.header__burger::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 1.5px;
  transition:
    transform 0.4s cubic-bezier(0.33, 1, 0.68, 1),
    background 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  background: rgba(0, 0, 0, 0);
}

.search_button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 11px;
  text-transform: uppercase;
  --size: 2.9rem;
  position: relative;
  z-index: 0;
  width: var(--size);
  height: var(--size);
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  border-color: rgba(24, 29, 29, 0.12);
  overflow: hidden;
}
.search_button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background-color: #FE0000;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.search_button:hover::after {
  top: 0;
}
.search_button:hover svg path {
  fill: #fff;
}

.header_menu > ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header_menu ul a {
  color: #000;
  font-weight: 400;
}
.header_menu > ul > li > a {
  font-size: 15px;
  display: flex;
  align-items:center;
}
.menu__item--dropdown {
  position: relative;
  --submenu-gap: 30px;
}
.menu__submenu-link {
    padding: 10px 15px;
    width: 100%;
    display: inline-block;
    transition: all .3s ease-in-out;
    text-transform: uppercase;
}
.menu__submenu-link:hover {
    background: #FE0000;
    color: #fff;
}
.menu__item--dropdown:hover .menu__submenu {
  visibility: visible;
  opacity: 1;
}
.menu__item--dropdown::after {
    content: "";
    position: absolute;

    top: 100%;
    left: 0;

    width: max(100%, 220px);
    height: var(--submenu-gap);

    background: transparent;
    pointer-events: none;
    z-index: 999;
}
/* Parent hover olanda körpü aktivləşir */
.menu__item--dropdown:hover::after {
    pointer-events: auto;
}

.menu__submenu {
    position: absolute;
    top: calc(100% + var(--submenu-gap));
    left: 0;
    z-index: 1000;

    display: flex;
    flex-direction: column;

    width: max-content;
    margin: 0;
    padding: 0;

    text-align: left;
    font-size: 12px;

    background-color: #fff;
    border: 1px solid #c2c2c2;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0s linear 0.25s;
}

.menu__item--dropdown:hover .menu__submenu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;

    transition-delay: 0s;
}
.header_contact {
  display: flex;
  gap: 10px;
}
.header_contact a {
  color: #181d1d;
  font-size: 15px;
}
.header_right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
  position: relative;
  z-index: 30;
  flex-shrink: 0;
}
.header_network {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header_network a {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  --size: 2.3rem;
  width: var(--size);
  height: var(--size);
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  border-color: rgba(24, 29, 29, 0.12);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.header_network a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.header_network a:hover::after {
  top: 0;
}
.header_network a:hover svg path {
  fill: #fff;
}
#banner_wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #181d1d;
}
#banner_video {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  #banner_video {
    display: none;
  }
}

.all_menu_wrapper {
  position: fixed;
  left: 0;
  top: 75px;
  width: 100%;
  z-index: -1;
  background-color: #fff;
  border-top: 1px solid rgba(24, 29, 29, 0.12);
  color: #181d1d;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition:
    transform 0.32s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.2s ease,
    visibility 0s linear 0.32s;
}
.all_menu_wrapper.is-open {
  z-index: 0;
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition-delay: 0s;
}
.all_menu_main {
  padding: 62px 0 133px;
}
.all_menu_layout {
  display: grid;
  grid-template-columns: 1fr;
}
.all_menu_contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.all_menu_contact_link {
  color: #081016;
  font-size: clamp(27px, 2vw, 36px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.all_menu_contact_link + .all_menu_contact_link {
  margin-top: 4px;
  font-size: 22px;
}
.all_menu_socials {
  display: flex;
  gap: 10px;
  margin-top: 0;
  flex: 1 1 0;
  justify-content: flex-start;
}
.all_menu_social {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: #181d1d;
  border: 1px solid rgba(24, 29, 29, 0.12);
  position: relative;
  overflow: hidden;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}
.all_menu_social::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FE0000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.all_menu_social:hover,
.all_menu_social:focus-visible {
  color: #fff;
  border-color: #FE0000;
  outline: none;
}
.all_menu_social:hover::before,
.all_menu_social:focus-visible::before {
  transform: translateY(0);
}
.all_menu_social svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  position: relative;
}
.all_menu_bottom .all_menu_social {
  width: 40px;
  height: 40px;
}
.all_menu_bottom .all_menu_social svg {
  width: 18px;
  height: 18px;
}
.all_menu_social:hover svg path {
    fill: #fff;
}
.all_menu_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.all_menu_group {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.all_menu_heading {
  width: fit-content;
  min-height: 30px;
  color: #181d1d;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  position: relative;
}
.all_menu_heading:hover,
.all_menu_heading:focus-visible,
.all_menu_list a:hover,
.all_menu_list a:focus-visible,
.all_menu_dropdown:hover,
.all_menu_dropdown:focus-visible {
  color: #FE0000;
  outline: none;
}
.all_menu_list {
  margin-top: 12px;
}
.all_menu_list li {
  display: flex;
}
.all_menu_list li + li {
  margin-top: 10px;
}
.all_menu_list a,
.all_menu_dropdown {
  position: relative;
  width: fit-content;
  color: #181d1d;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  transition: color 0.2s ease;
}
.all_menu_main .all_menu_list a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -6px;
  width: 100%;
  opacity: 0;
  transform: scale(0, 1);
  transform-origin: left center;
  border-bottom: 4px solid #FE0000;
  transition: transform 0.3s, opacity 0.3s;
}
.all_menu_main .all_menu_list a:hover::before,
.all_menu_main .all_menu_list a:focus-visible::before {
  opacity: 1;
  transform: scale(1, 1);
}
.all_menu_dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.all_menu_dropdown svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 0.25s ease;
}
.all_menu_dropdown[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.all_menu_list_secondary {
  margin-top: 42px;
}
.all_menu_bottom {
  min-height: 60px;
  border-top: 1px solid #e8e8e8;
}
.all_menu_bottom_row {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.all_menu_copyright {
  color: #979797;
  font-size: 10px;
  font-weight: 500;
  flex: 1 1 0;
  text-align: right;
}
.all_menu_partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 0 0 auto;
}
.all_menu_partners a {
  height: 20px;
  display: flex;
  align-items: center;
}
.all_menu_partners img {
  display: block;
  width: auto;
  max-height: 20px;
}
.all_menu_made {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  margin-left: calc((((100vw - 120px - 220px) / 12) + 20px) * 4);
  color: #181d1d;
  font-size: 10px;
  font-weight: 500;
}
.all_menu_made a {
  color: #FE0000;
}
@media (max-width: 1279px) {
  .all_menu_wrapper {
    left: auto;
    right: 0;
    width: min(560px, 100%);
    height: calc(100vh - 75px);
    overflow-y: auto;
    transform: translateX(100%);
  }
  .all_menu_wrapper.is-open {
    transform: translateX(0);
  }
  .all_menu_main {
    padding: 32px 0 48px;
  }
  .all_menu_layout {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }
  .all_menu_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }
  .all_menu_contact_link {
    font-size: 28px;
  }
  .all_menu_socials {
    margin-top: 0;
  }
  .all_menu_bottom_row {
    padding: 24px 0;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 16px;
  }
  .all_menu_partners {
    order: -1;
    flex: 1 1 100%;
    justify-content: center;
    gap: 16px;
  }
  .all_menu_copyright {
    flex: 1 1 auto;
    text-align: right;
  }
  .all_menu_made {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .container {
    padding-inline: 20px;
  }
  .all_menu_main {
    padding-top: 24px;
  }
  .all_menu_grid {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .all_menu_contact_link {
    font-size: clamp(21px, 7vw, 28px);
  }
  .all_menu_social {
    width: 52px;
    height: 52px;
  }
  .all_menu_list_secondary {
    margin-top: 24px;
  }
  .all_menu_bottom_row {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .all_menu_made {
    justify-self: auto;
    margin-left: 0;
  }
}

#banner_wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.48) 38%,
    rgba(0, 0, 0, 0.16) 68%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

#banner {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: #fff;
  position: relative;
  z-index: 4;
  padding-bottom: 40px;
}
#banner h1 {
  font-size: 55px;
  line-height: 60px;
  font-weight: 500;
}
.banner_left {
  width: 50%;
}
.banner_left p {
  margin-top: 10px;
  font-size: 15px;
}
.banner_left .banner_card_link {
  width: 220px;
  max-width: 100%;
  margin-top: 24px;
}
.banner_right {
  display: flex;
  gap: 20px;
  align-items: end;
  width: 22%;
  min-width: 260px;
}
#banner_row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.banner_card {
  width: 100%;
  padding: 20px;
  border-radius: 15px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.banner_card_second {
  background-color: #fff;
  color: #000;
}
.banner_card_title {
  font-size: 18px;
  font-weight: 500;
}
.banner_card_description {
  opacity: .5;
  margin-top: 15px;
  font-size: 14px;
}
.banner_card_link {
  padding: 8px 8px 8px 16px;
  display: flex;
  margin-top: 25px;
  border-radius: 32px;
  font-size: 14px;
  color: #fff;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #2c61a6;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
.banner_card_link:hover {
  background-color: #154F9C;
}
.banner_card_link_span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100%;
  transition: all .3s ease-in-out;
}
.banner_card_link:hover .banner_card_link_span {
  transform: rotate(45deg);
}
.banner_card_socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner_card_second a {
  background-color: #EFEFF4;
  color: #000;
  display: flex;
  height: 48px;
  align-items:center;
  justify-content: center;
}
.banner_card_social-item {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease-in-out;
}
.banner_card_social-item:hover {
  background-color: #fff;
}
.banner_card_social-link {
  border-radius: 32px;
  font-size: 12px;
  width: fit-content;
  padding: 10px 12px;
  border: 1px solid #e2e2e2;
  transition: all .3s ease-in-out;
  text-align:center;
}
.banner_card_social-link:hover {
  color: #154F9C;
  border: 1px solid #154F9C ;
}
.modal_list_item {
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* Change this number to clamp more or fewer lines */
  overflow: hidden;
}

/*wp button*/
.mail_button {
    position: fixed;
    right: -10px;
    bottom: 115px;
    z-index: 10;
}
.mail_button .circlephone {
    border-color: #2c61a6;
}
.mail_button .circle-fill {
    background-color: #2c61a6;
}
#fixed_mail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    bottom: 7px !important;
    right: 42px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid transparent;
    background: #2c61a6;
}
#fixed_mail img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
    animation-name: tossing;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}
.whatsapp_button {
    position: fixed;
    right: -10px;
    bottom: 30px;
    z-index: 10;
}
.circlephone, .circle-fill {
    box-sizing: content-box;
    position: absolute;
    -webkit-box-sizing: content-box;
    border-radius: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.circlephone {
    border: 2px solid #25D366;
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: 15px;
    opacity: 0.5;
    -webkit-animation: 2.4s ease-in-out infinite circle-anim !important;
    animation: 2.4s ease-in-out infinite circle-anim !important;
}
@keyframes circle-anim {
    0% {
    -webkit-transform: rotate(0) scale(0.5) skew(1deg);
    transform: rotate(0) scale(0.5) skew(1deg);
    opacity: 0.1;
}
30% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.5;
}
100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.1;
}
}
.circle-fill {
    background-color: #25D366;
    width: 70px;
    height: 70px;
    bottom: -5px;
    right: 30px;
    border: 2px solid transparent;
    animation: 2.3s ease-in-out infinite circle-fill-anim;
}
#fixed_wp {
    width: 50px;
    height: 50px;
    bottom: 7px !important;
    right: 42px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid transparent;
}
#fixed_wp svg {
    fill: #25D366;
    -webkit-background-size: 40px 40px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    animation-name: tossing;
    -webkit-animation-name: tossing;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
    0%, 100% {
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
}
50% {
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
}
}
@keyframes circle-fill-anim {
0%, 100% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
}
50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.2;
}
}


.menu__link {
    position: relative;
}
.menu__link:hover {
        color: #FE0000;
    }
    
.header_menu .menu__link:before {
    position: absolute;
    content: '';
    bottom: -10px;
    width: 100%;
    left: 0px;
    opacity: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    border-bottom: 4px solid #FE0000;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
    .menu__link:hover:before {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

.gallery_slider {
  position: relative;
}
.gallery_slider .portfolio_carousel_viewport {
  width: 100%;
  overflow: hidden;
}
.gallery_nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #181d1d;
  box-shadow: 0 10px 28px rgba(24, 29, 29, 0.16);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.gallery_nav svg {
  width: 22px;
  height: 22px;
}
.gallery_nav--prev {
  left: 0;
  transform: translate(calc(-100% - -22px), -50%);
}
.gallery_nav--next {
  right: 0;
  transform: translate(calc(100% + -22px), -50%);
}
.gallery_nav:hover {
  background: #FE0000;
  color: #fff;
}
.gallery_nav--prev:hover {
  transform: translate(calc(-100% - -22px), -50%) scale(1.04);
}
.gallery_nav--next:hover {
  transform: translate(calc(100% + -22px), -50%) scale(1.04);
}
@media (max-width: 767px) {
  .gallery_nav {
    width: 40px;
    height: 40px;
  }
  .gallery_nav svg {
    width: 18px;
    height: 18px;
  }
  .gallery_nav--prev {
    transform: translate(calc(-100% - 22px), -50%);
  }
  .gallery_nav--next {
    transform: translate(calc(100% + 22px), -50%);
  }
  .gallery_nav--prev:hover {
    transform: translate(calc(-100% - 22px), -50%) scale(1.04);
  }
  .gallery_nav--next:hover {
    transform: translate(calc(100% + 22px), -50%) scale(1.04);
  }
}