*, *:before, *:after {
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0 auto;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-weight: 400;
  transition: height .5s;
}
section, footer, main {
  position: relative;
}
input, textarea, select {
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
}
button, .button {
  padding: 15px 20px;
  border: none;
  font-weight: 700;
  min-width: 200px;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  transition: .3s;
  text-decoration: none;
  position: relative;
  text-align: center;
  box-shadow: 0 0 0 0 rgb(240, 161, 112, 0.5);
}

button:hover, .button:hover {
  cursor: pointer;
  background-color: #d40303;
}
a {
  transition: .2s;
}
button:active, .button:active, a:active {
  transform: scale(0.95);
}
button:active, .button:active {
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-name: pulse;
  animation-duration: .5s;
}

body, section, header, footer, main {
  min-width: 1200px;
}
main {
  padding: 0;
  margin: 0;
  width: 100%;
}
a:hover {
  color: #d40303;
}
#menu-btn {
  display: none;
}
menu {
  display: none;
}
form .row {
  display: flex;
  column-gap: 20px;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}
form .half {
  width: 50%;
  border: 1px #eee solid;
  padding: 8px 10px;
}
form .third {
  width: 33.33%;
  border: 1px #eee solid;
  padding: 8px 10px;
}
form .half, form .fullwidth, form .third {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 10px;
  align-items: center;
  transition: .3s;
}
form .half:focus-within,
form .fullwidth:focus-within, 
form .third:focus-within {
  background: #eee;
}
form .half:focus-within input,
form .fullwidth:focus-within input,
form .third:focus-within input,
form .half:focus-within textarea,
form .fullwidth:focus-within textarea,
form .third:focus-within textarea {
  color: #000;
}
form .half:focus-within input::placeholder,
form .fullwidth:focus-within input::placeholder,
form .third:focus-within input::placeholder,
form .half:focus-within textarea::placeholder,
form .fullwidth:focus-within textarea::placeholder,
form .third:focus-within textarea::placeholder {
  color: #333;
}
form .fullwidth {
  width: 100%;
  border: 1px #eee solid;
  padding: 8px 10px;
}
form input, form textarea, form select {
  border: none;
  width: 82%;
  padding: 10px;
  background: transparent;
}
form .half img, form .fullwidth img, form .third img {
  height: 26px;
}
form textarea {
  width: 90%;
  min-height: 100px;
  align-self: flex-start;
}
form .special img {
  align-self: flex-start;
}
.thin-txt {
  font-weight: 300;
}
.m-right {
  margin-right: 5%;
}
.m-left {
  margin-left: 5%;
}
.m-bottom {
  margin-bottom: 5%;
}
.m-top {
  margin-top: 5%;
}
.hidden {
  display: none;
}
.center {
  text-align: center;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.img-bg {
  background-position: center;
  background-size: cover;
}
.img-bg-top {
  background-position: center top;
  background-size: cover;
}
.img-bg-bottom {
  background-position: center bottom;
  background-size: cover;
}
.overlay {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: opacity(.4);
}
p, h1, h2, h3, h4, h5, h6 {
  position: relative;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Bebas Neue", sans-serif;
}
p, li {
  line-height: 150%;
}
.modal h3 {
  font-size: 3em;
}
.flex-align {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.center-align {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.bold-txt {
  font-weight: 900;
}
.thin-txt {
  font-weight: 300;
}
.f-button {
  min-width: 0;
}
.blur {
  filter: blur(10px);
}
.bg-blur {
  backdrop-filter: blur(20px);
}
.scaleDown {
  transform: scale(.8);
}

/* START CUSTOM SCROLL BAR */

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: rgb(124, 124, 124);
}

*::-webkit-scrollbar-thumb {
  background: rgb(143, 1, 1);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgb(143, 1, 1) rgb(124, 124, 124);
}

/* END CUSTOM SCROLL BAR */

/* Colors */
.gray-bg {
  background-color: #f2f2f2;
}
.gray-txt {
  color: #f2f2f2;
}
.gray-bg-gradient {
  background-image: linear-gradient(to bottom right, #f2f2f2, #dedede);
}
.gradient-black-bg {
  background-image: linear-gradient(to top, rgb(0, 0, 0, 0.7), transparent 40%);
}
.dark-gray-txt {
  color: #636363;
}
.white-bg {
  background-color: #fff;
}
.white-txt {
  color: #fff;
}
.black-bg {
  background-color: #000;
}
.black-txt {
  color: #000;
}
.green-bg {
  background-color: #8A9A8F;
}
.green-txt {
  color: #8A9A8F;
}
.peach-bg {
  background-color: #f9b78f;
}
.peach-txt {
  color: #f9b78f;
}
.red-bg {
  background-color: #d40303;
}
.red-txt {
  color: #d40303;
}
.maroon-bg {
  background-color: #8f0101;
}
.maroon-txt {
  color: #8f0101;
}
.white-gray-bg-gradient {
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(242, 242, 242, 1));
}
.transparent-gray-bg-gradient {
  background: linear-gradient(to right, transparent 50%, #dedede);
}

/* Animations */
.scale-down {
  transform: scale(.9);
  filter: opacity(0) blur(5px);
  transition: transform 1.5s, filter 1.5s;
}
.scale-up {
  transform: scale(1.05);
  filter: opacity(0) blur(5px);
  transition: transform 1.5s, filter 1.5s;
}
.scale-normal {
  transform: scale(1) !important;
  filter: opacity(1) blur(0) !important;
}
.invisible {
  filter: opacity(0) blur(5px);
  transition: filter 1.5s;
}
.visible {
  filter: opacity(1) blur(0);
}
.hide-left {
  transition: left 1.5s, filter 1.5s;
  left: -10vw;
  filter: opacity(0) blur(5px);
}
.reveal-left {
  left: 0 !important;
  filter: opacity(1) blur(0) !important;
}
.hide-right {
  transition: right 1.5s, filter 1.5s;
  right: -10vw;
  filter: opacity(0) blur(5px);
}
.reveal-right {
  right: 0 !important;
  filter: opacity(1) blur(0) !important;
}
.rotateOut {
  transform: rotate(360deg) scale(0);
}
.slide-left {
  left: 0 ;
  filter: opacity(1);
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(212, 3, 3, 0.5);
  }
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(212, 3, 3, 0.5);
  }
  70% {
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgb(0, 0, 0, 0.6), transparent);
  width: 100%;
  z-index: 100;
  padding: 10px 8%;
}
header nav {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav menu {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  column-gap: 25px;
  position: relative;
}
header nav a,
header nav menu a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  font-size: .9em;
  transition: color .5s;
  position: relative;
}
header nav menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #d40303; /* Change this to border-bottom */
  top: calc(100% + 8px); /* Position it at the bottom of the link */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.active::after {
  opacity: 1;
}
header nav menu a:hover::after {
  opacity: 1;
}
header nav a img.logo {
  margin-right: 20px;
  height: 60px;
}
header nav menu span {
  color: #d40303;
  font-weight: 600;
  position: relative;
  transition: .5s;
}

/* Footer */
footer {
  padding: 30px 8%;
  font-size: .9em;
}

section {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
/* Hero Section */
.hero {
  min-height: 100dvh;
}

/* Section 1 (About Us) */
.home .sec1 {
  padding: 60px 5%;
  background-attachment: fixed;
  width: 100%;
  overflow: hidden;
}
.home .sec1 .wrap {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 60px;
  overflow: hidden;
  padding: 0 10px 30px;
}
.home .sec1 .blur {
  backdrop-filter: blur(10px);
  position: absolute;
  width: 104%;
  height: 104%;
  z-index: 0;
  left: 0;
  top: -1%;
  background-color: rgb(0, 0, 0, 0.6);
}

.home .intro {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 80px 8% 40px;
  flex-wrap: nowrap;
  column-gap: 5%;
}
.home .intro .left,
.home .intro .right {
  width: 47.5%;
  z-index: 3;
}
.home .intro h1 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 100%;
  font-size: 9em;
  font-weight: bold;
  display: flex;
  flex-direction: column;
}
.home .intro h1 span.small-txt {
  font-size: .2em;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
}
.home .intro h1 span {
  line-height: 100%;
}
.home .intro .subtitle {
  font-weight: bold;
  letter-spacing: 5px;
  margin-bottom: 50px;
}
.home .intro .right {
  padding-left: 5%;
}
.home .intro .main-mask-bottom {
  background: linear-gradient(to bottom, transparent 0%, rgb(0, 0, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  height: 20%;
  width: 100%;
  z-index: 1;
}
.home .intro .main-mask-top {
  background: linear-gradient(to top, transparent 0%, rgb(0, 0, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  height: 20%;
  width: 100%;
  z-index: 1;
}
.home .intro .overlay {
  filter: opacity(.7);
}

.title-sec {
  font-size: 1.6em;
  padding: 40px 8%;
  font-weight: 700;
}

.swiper-container {
  overflow: visible;
  position: relative;
}

.container .cat-title,
.videos-section .cat-title,
.photos-section .cat-title {
  font-size: 1.6em;
  font-weight: 700;
  padding: 20px 0;
  position: relative;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home .container .cat-title span:last-of-type {
  font-size: .6em;
}
.container .cat-title span.v-all {
  cursor: pointer;
}
.swiper-slide {
  transition: all 300ms ease-in-out;
  border-radius: 5px;
}

.swiper-slide .img {
  border-radius: 5px;
  max-width: 100%;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider1 .swiper-slide .img {
  height: 350px;
}
.slider1 .swiper-slide .img a,
.horizontal .swiper-slide .img a,
.slider3 .swiper-slide .img a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 5;
}
.slider2 .swiper-slide .img {
  height: 130px;
}
.horizontal .swiper-slide .img {
  height: 150px;
}
.slider3 .swiper-slide .img {
  height: 180px;
}
.swiper-slide .img img {
  position: relative;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  background-color: rgb(0, 0, 0, 0.4);
  transition: transform .3s;
}
.swiper-slide .title {
  font-weight: 600;
  margin-top: 10px;
  font-size: 1em;
}

.swiper-slide .img:active {
  cursor: grabbing;
}
.artwork .swiper-slide .img {
  height: 250px;
}

.swiper-slide:hover {
  transform: scale(1.05);
  transition: all .3s;
  transition-delay: .1s;
  z-index: 1;
}

.swiper-slide:hover .img {
  transition-delay: 300ms;
  box-shadow: 0 0 5px 1px rgba(0,0,0,0.5);
}
.swiper-slide:hover img {
  background-color: #d40303;
  transform: rotate(360deg);
}
.swiper-button-next::after, .swiper-button-prev::after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	font-variant: initial;
	line-height: 1;
	padding: 30px 10px;
	color: #d40303;
  border-radius: 5px;
  transition: background .3s, transform .2s, filter .3s;
  filter: opacity(0);
}
.swiper-container:hover .swiper-button-next::after, 
.swiper-container:hover .swiper-button-prev::after {
  background: rgb(0, 0, 0, 0.6);
  filter: opacity(1);
}

@media screen and (max-width: 599px) {
  .swiper-slide img {
    max-width: 14rem;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  .swiper-slide img {
    max-width: 10.5rem;
    border-radius: 2px;
  }
}


/* Photography */
.photo-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.photo-grid .img {
  border-radius: 5px;
  max-width: 100%;
  height: 350px;
}
.photo-grid .img,
.video-grid .item {
  transition: transform .3s, filter 1s !important;
}
.photo-grid .img:hover,
.video-grid .item:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.photo-grid .img a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.page .hero {
  min-height: 50dvh;
  background-attachment: fixed;
  padding: 150px 8% 40px;
}
.page .hero div {
  position: relative;
}
.page .hero .cbg-blur,
.page .hero .ccbg-blur {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.page .hero .cbg-blur {
  background-color: rgb(0, 0, 0, 0.6);
  animation: blur 1s linear 3s forwards;
}
.page .hero .ccbg-blur {
  background-color: rgb(0, 0, 0, 0.75);
}
@keyframes blur {
  0% {
    backdrop-filter: blur(0);
  }
  100% {
    backdrop-filter: blur(15px);
  }
}
.page .hero h1 {
  font-size: 5em;
  margin-bottom: 0;
  line-height: 100%;
  margin-top: 20px;
}
.page .hero .title {
  z-index: 2;
}
.page .hero .photo-grid,
.page .hero .video-grid,
.page .hero .campaign-grid {
  margin-top: 60px;
  z-index: 3;
}
.page .hero .main-mask {
  background: linear-gradient(to bottom, transparent 0%, rgb(0, 0, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  height: 60%;
  width: 100%;
  z-index: 1;
}

.campaigns .hero {
  min-height: 100dvh;
}

/* Videos */
.video-grid {
  row-gap: 60px;
}
.video-grid .img {
  border-radius: 5px;
  max-width: 100%;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-grid .item .title {
  font-weight: 600;
  margin-top: 10px;
  font-size: 1em;
}
.video-grid .img img {
  position: relative;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  background-color: rgb(0, 0, 0, 0.4);
  transition: transform .3s;
}
.video-grid .item:hover img {
  background-color: #d40303;
  transform: rotate(360deg);
}
.video-grid .item .description {
  overflow: hidden;
  display: none;
  filter: opacity(0) blur(1);
  position: relative;
}

/* Campaigns */
.campaign-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
}
.campaign-grid .item .img {
  height: 250px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  padding: 30px;
  flex-direction: column;
  row-gap: 10px;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform .3s;
}
.campaign-grid .item .img:hover {
  transform: scale(1.03);
  cursor: pointer;
}
.campaign-grid .item .title {
  font-weight: 700;
  margin-top: 10px;
  font-size: 1.4em;
  text-transform: uppercase;
}
.campaign-grid .item .img .mask {
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgb(0, 0, 0, 0.7) 60%, transparent);
}
.campaign-grid .item .img button {
  min-width: 0;
  font-size: .9em;
}

.campaign .two-col {
  display: flex;
  align-items: center;
  column-gap: 5%;
  flex-wrap: nowrap;
  z-index: 3;
}
.campaign .container {
  z-index: 3;
}
.campaign .two-col .left {
  width: 47.5%;
}
.campaign .two-col .img-wrap {
  height: 300px;
  width: 45%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.campaign .two-col .img-wrap img {
  padding: 5px;
  border-radius: 5px;
}
.campaign .two-col .subtitle {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 0;
}
.campaign .two-col .flex {
  display: flex;
  align-items: flex-start;
  column-gap: 20px;
}
.campaign .two-col .flex:first-of-type {
  margin-bottom: 10px;
}
.campaign .two-col .flex span:first-of-type {
  min-width: 100px;
}
.campaign .two-col .buttons {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 40px;
  row-gap: 10px;
  flex-wrap: wrap;
}
.campaign .two-col .buttons button {
  background-color: transparent;
  border: 1px #fff solid;
  min-width: 0;
  text-transform: uppercase;
}
.campaign .two-col .buttons button:hover {
  border-color: #d40303;
  color: #d40303;
}
.campaign .back-arrow {
  position: absolute;
  left: 0;
  top: -20px;
}
.campaign .back-arrow img {
  cursor: pointer;
  transition: transform .3s, filter .3s, padding .3s;
}
.campaign .back-arrow img:hover {
  filter: drop-shadow(0px 0px 5px #d40303);
  border-radius: 50%;
  backdrop-filter: blur(20px);
  background-color: rgb(212, 3, 3, 0.1);
  padding: 5px;
}
.campaign .back-arrow img:active {
  transform: scale(.95);
}

.campaign .hero {
  padding-top: 120px;
}
.campaign .sec1 {
  padding: 20px 8% 60px;
  background-attachment: fixed;
  width: 100%;
  overflow: hidden;
}
.campaign .sec1 .wrap {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 60px;
  overflow: hidden;
  padding: 0 0 30px;
}
.campaign .hero .main-mask {
  height: 40%;
}
.audio-grid .img img {
  border-radius: 10px;
  padding: 5px;
}
.campaign .sec1 h2 {
  margin-bottom: 0;
  font-size: 3em;
}
.line {
  height: 1px;
  width: 100px;
  margin-bottom: 30px;
}

.campaign .modal {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100dvh;
  z-index: 100;
  overflow: hidden;
  right: -50vw;
  filter: blur(10px) opacity(0);
  transition: filter .8s, right .8s;
  background-color: #000;
}
.campaign .modal .overlay {
  filter: opacity(0.4);
}
.campaign .modal .inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  top: 0;
  height: 100dvh;
  width: 100%;
  z-index: 5;
  filter: blur(20px) opacity(0);
  transition: filter .5s, z-index .5s;
}
.campaign .modal .inner .content {
  max-width: 800px;
  padding: 40px;
  position: relative;
}
.campaign .modal h3 {
  margin-bottom: 0;
  text-transform: uppercase;
}
.campaign .modal li {
  margin-bottom: 10px;
}
#closeModal {
  position: absolute;
  right: 40px;
  top: 40px;
  cursor: pointer;
  z-index: 8;
}
.no-scroll {
  overflow: hidden;
}
.slideIn {
  right: 0 !important;
  filter: blur(0) opacity(1) !important;
}
.fadeIn {
  filter: blur(0) opacity(1) !important;
  z-index: 6 !important;
}
.transition-delay {
  transition-delay: .5s !important;
}
.activeBtn {
  border-color: #d40303 !important;
  color: #d40303 !important;
}
.campaign .service-title {
  font-size: 1.6em;
  margin-bottom: 5px;
}

/* contact page */
.contact .hero {
  min-height: 100dvh;
}
.contact .hero .two-col {
  z-index: 3;
  min-height: 62dvh;
  display: flex;
  align-items: center;
  column-gap: 10%;
}
.contact .hero .two-col .title {
  font-size: 5em;
  line-height: 100%;
  font-weight: bold;
  font-family: "Bebas Neue", sans-serif;
}
.contact .hero .two-col .subtitle {
  font-size: 1.6em;
  font-weight: 400;
}
.contact .hero .two-col .left,
.contact .hero .two-col .right {
  width: 40%;
}
.contact .hero .two-col .left .contacts {
  margin-top: 20px;
}
.contact .hero {
  background-position: center -100px;
}

/* Our Clients */
.clients .grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
	z-index: 1;
  margin-top: 60px;
}
.clients .grid .item {
	overflow: hidden;
	filter: grayscale(1);
	transition: .3s;
  overflow: hidden;
}
.clients .grid .item:hover {
  cursor: pointer;
  filter: grayscale(0);
}
.clients .grid .item img {
	width: 100%;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
}

/* Health Campaigns */
.health_campaigns .hero .video-grid {
  grid-template-columns: repeat(4, 1fr);
}
.health_campaigns .hero .video-grid.img,
.popup .inner .content .img,
.popup .inner .video-grid {
  height: 240px;
}
.health_campaigns .hero .video-grid p {
  font-size: .8em;
}

.popup {
  display: none;
  position: fixed;
  width: 100%;
  height: 100dvh;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: 100;
}
.popup .overlay {
  filter: opacity(.95);
}
.popup .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 100%;
  height: 100dvh;
  position: relative;
}
.popup .inner .video-grid {
  width: 100%;
  padding-left: 8%;
  padding-right: 8%;
}
.popup .back-arrow {
  position: absolute;
  left: 8%;
  top: 80px;
  z-index: 4;
}
.popup .back-arrow img {
  cursor: pointer;
  transition: transform .3s, filter .3s, padding .3s;
}
.popup .back-arrow img:hover {
  filter: drop-shadow(0px 0px 5px #d40303);
  border-radius: 50%;
  backdrop-filter: blur(20px);
  background-color: rgb(212, 3, 3, 0.1);
  padding: 5px;
}
.popup .back-arrow img:active {
  transform: scale(.95);
}