/********** Template CSS **********/
:root {
  --primary: #06a3da;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #091e3e;
  --theme: #ed563b;
}

.text-theme {
  color: var(--theme);
}

 /* Basic styling for popup */
    #popup {
      display: none;
      position: fixed;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      /* padding: 20px; */
      background-color: white;
      /* border: 2px solid #000; */
      border-radius: 8px;
      z-index: 1000;
    }
    #overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 999;
    }

.popup-content {
  display: flex;
  position: relative;
  font-family: "Nunito", sans-serif;
}

.popup-content .left-content .transplatacija-kose-image {
  width: 620px;
}

.popup-content .right-content {
  min-width: 400px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup-content .right-content .before-after-image {
  width: 280px;
}

.popup-content .right-content h1 {
  max-width: 250px;
  text-align: center;
  margin: 0 auto;
  text-transform: capitalize;
  color: #202E36;
}

.popup-content .right-content .content-text {
  color: #091e3e;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  line-height: 30px;
  margin-top: 16px;
}


.popup-content .right-content .social-media {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.popup-content .right-content .social-media-button-groups {
  display: flex;
  justify-content: space-between;
}

.popup-content .right-content .social-media-button-groups a {
  margin-right: 8px;
}

.popup-content .right-content .social-media-button-groups a i {
  font-size: 30px;
}
.popup-content .right-content .social-media-button-groups a .bi-instagram {
  color: #DD2A7B;
}

.popup-content .right-content .social-media-button-groups a .bi-facebook {
  color: #4267B2;
}

.popup-content .right-content .social-media-button-groups a .bi-whatsapp {
  color: #25D366;
}

.popup-content .right-content .social-media a {
  font-size: 20px;
}

.popup-content .right-content img {
  border-radius: 8px;
  margin-top: 16px;
}

.popup-content .right-content button {
  border: none;
  background: none;
  position: absolute;
  top: 8px;
  right: 8px;
}

.popup-content .right-content button i.bi {
  font-size: 20px;
}

.popup-content .left-content img {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

/* @media (max-width: 1200px) {
  .popup-content .left-content .transplatacija-kose-image {
    width: 420px;
  }
} */
@media (max-width: 1000px) {
  .popup-content .left-content {
    display: none;
  }
}

@media (max-width: 520px) {
  .popup-content .right-content {
    min-width: 300px;
  }
  .popup-content .right-content h1 {
    max-width: 220px;
  }
  .popup-content .right-content .before-after-image {
    width: 160px;
    margin-top: 8px;
  }
  .popup-content .right-content .content-text {
    font-size: 14px;
    line-height: 20px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
}

@media (max-width: 400px)  {
  .popup-content .right-content {
    min-width: 300px;
  }
  .popup-content .right-content h1 {
    max-width: 220px;
  }
}


/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/*** Navbar ***/
.navbar-container {
  display: unset;
}
.navbar .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar .logo-container img {
  width: 45px;
}

.navbar .language-switcher {
  height: 31px;
  margin-left: auto;
  margin-right: 8px;
  font-size: 12px;
  border-radius: 2px;
  display: none;
}

.language-switcher-desktop {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  height: 29px;
  margin-right: 16px;
}

@media (max-width: 992px) {
  .language-switcher-desktop {
    display: none;
  }
  .navbar .language-switcher {
    display: block;
  }
}

.navbar-dark .navbar-nav .nav-link {
  font-family: "Nunito", sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
  color: #ffffff;
}

.navbar-dark .navbar-toggler {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

@media (max-width: 520px) {
  .navbar-dark {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .navbar-dark .navbar-brand h1 {
    font-size: 24px;
  }
  .navbar-dark .navbar-brand img {
    width: 35px;
  }
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: sticky;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
    color: #53575b;
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: #53575b;
  }
}

@media (max-width: 400px) {
  .navbar .language-switcher {
    font-size: 10px;
  }
  .navbar .navbar-brand h1 {
    font-size: 20px;
  }
}

@media (max-width: 350px) {
  .navbar .language-switcher {
    font-size: 9px;
  }
  .navbar .navbar-brand h1 {
    font-size: 18px;
  }
}

/*** Carousel ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, 0.7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

.flag-carousel .owl-item {
  margin-right: 12px !important;
}

.flag-carousel .owl-item img {
  width: 35px;
  height: 35px;
}

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

/*** Section Title ***/
.section-title-theme::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--theme);
  border-radius: 2px;
}

.section-title-theme.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title-theme.section-title-theme-sm::before {
  width: 90px;
  height: 3px;
}

.section-title-theme::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title-theme.section-title-theme-sm::after {
  width: 4px;
  height: 3px;
}

.section-title-theme.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title-theme.section-title-theme-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 45px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}

/*** Service ***/
.service-item {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: 0.5s;
}

.img-container {
  min-height: 500px;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}

@media (max-width: 520px) {
  .img-container {
    min-height: 400px;
  }
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #dddddd;
  border-radius: 2px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
}

.comments-container .owl-item .testimonial-item {
  min-height: 340px;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}

/*** Team ***/
.team-item {
  transition: 0.5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #dddddd;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, 0.7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: 0.5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

/* Main banner */
/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

.main-banner {
  position: relative;
}

#bg-video {
  min-width: 100%;
  min-height: 100vh;
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
  z-index: -1;
}

#bg-video::-webkit-media-controls {
  display: none !important;
}

.video-overlay {
  position: absolute;
  /* background-color: rgba(35, 45, 57, 0.8); */
  top: 0;
  left: 0;
  bottom: 7px;
  width: 100%;
}

.main-banner .caption {
  text-align: center;
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.main-banner .caption h2 {
  margin-top: 30px;
  margin-bottom: 25px;
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #ed563b;
  font-weight: 900;
}

.facts .card-content {
  min-width: 163px;
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.back-to-top {
  position: fixed;
  /* display: none; */
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.bg-header {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
    url(../img/carousel-1.png) center center no-repeat;
  background-size: cover;
}

.bg-header-2 {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
  url(../img/fue-hair.jpg) center center no-repeat;
background-size: cover;
}

.bg-header-3 {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
  url(../img/dhi-hair2.jpg) center center no-repeat;
background-size: cover;
}

.bg-header-5 {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
  url(../img/hair-plant-mesotherapy.jpg) center center no-repeat;
background-size: cover;
}

.bg-header-6 {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
  url(../img/hair-plantlaserbg.jpg) center center no-repeat;
background-size: cover;
}

.bg-header-7 {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
  url(../img/heading-bg.jpg) center center no-repeat;
background-size: cover;
}

.link-animated a {
  transition: 0.5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}

/* Whatsapp */

.whatsapp-fixed {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 9999;
}

.btn-whatsapp {
  background-color: #30bf39;
  color: #fff;
  border-radius: 100%;
  transition: background-color 0.5s;
  width: 60px !important;
  height: 60px !important;
  line-height: 70px;
  position: relative !important;
  display: block;
  transform: none !important;
  z-index: 9999;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07),
    0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07),
    0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
}

.btn-whatsapp:hover {
  background-color: #53ca5b;
}

.whatsapp-fixed a.video-vemo-icon.btn-whatsapp i {
  font-size: 32px;
  color: #fff;
  animation: sm-shake-animation linear 1.5s infinite;
  animation-delay: 3s;
}

.rs-video .animate-border .video-vemo-icon:before {
  content: "";
  border: 2px solid #fff;
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  animation: zoomBig 3.25s linear infinite;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.rs-video .animate-border .video-vemo-icon:after {
  content: "";
  border: 2px solid #fff;
  position: absolute;
  opacity: 0;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  animation: zoomBig 3.25s linear infinite;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.btn-whatsapp:after,
.btn-whatsapp:before {
  border: 2px solid #30bf39 !important;
  width: 130px !important;
  height: 130px !important;
}

.sm-red-dot {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 12px;
  height: 12px;
  margin: 0 auto;
  background: red;
  transform: scale(0);
  border-radius: 50%;
  animation-name: notificationPoint;
  animation-duration: 300ms;
  animation-fill-mode: forwards;
  animation-delay: 3s;
}

.quick-message {
  position: absolute;
  bottom: 4px;
  right: 88px;
  width: max-content;
  border-radius: 0;
  background: #393b39;
}

.line-up {
  opacity: 0;
  animation-name: anim-lineUp;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  animation-delay: 5s;
}

.quick-message p {
  line-height: 40px;
  font-size: 15px;
  padding: 4px 16px;
  height: 40px;
  position: relative;
  color: #fff;
  margin: 0;
}

.quick-message .seta-direita:before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-right: 10px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #393b39;
  position: absolute;
  bottom: 3px;
  right: -30px;
}

#hover-message {
  display: none;
}

.whatsapp-fixed:hover #hover-message {
  display: block;
}

/* Contact */

a.contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: orange;
  border-color: orange;
}
a.contact-btn svg {
  margin-right: 4px;
}

@keyframes zoomBig {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
    border-width: 3px;
  }
  40% {
    opacity: 0.5;
    border-width: 2px;
  }
  65% {
    border-width: 1px;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    border-width: 1px;
  }
}

@keyframes sm-shake-animation {
  0% {
    transform: rotate(0) scale(1) skew(0.017rad);
  }
  25% {
    transform: rotate(0) scale(1) skew(0.017rad);
  }
  35% {
    transform: rotate(-0.3rad) scale(1) skew(0.017rad);
  }
  45% {
    transform: rotate(0.3rad) scale(1) skew(0.017rad);
  }
  55% {
    transform: rotate(-0.3rad) scale(1) skew(0.017rad);
  }
  65% {
    transform: rotate(0.3rad) scale(1) skew(0.017rad);
  }
  75% {
    transform: rotate(0) scale(1) skew(0.017rad);
  }
  100% {
    transform: rotate(0) scale(1) skew(0.017rad);
  }
}

@keyframes notificationPoint {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes anim-lineUp {
  from {
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}

/* Call us */

.apply-image-bg {
  /* background-color: #F79749; */
  /* background: linear-gradient(to right, rgba(247, 151, 73, 1), rgba(247, 151, 73, 0.5)); */
  background: linear-gradient(to right, rgba(237, 86, 59, 1), rgba(237, 86, 59, 0.5));
}
.apply-image-bg .container {
  display: flex;
  align-items: center;
}

.apply-image-bg .container .text-content {
  margin-left: 20px;
  color: white;
}

.apply-image-bg .container .text-content .text-contact-info {
  display: flex;
  flex-direction: column;
}

.apply-image-bg .container .text-content h1 {
  color: white;
  text-transform: uppercase;
}

.btn-linear-theme {
  background: linear-gradient(to right, rgba(237, 86, 59, 1), rgba(237, 86, 59, 0.5));
  color: white;
}
.btn-linear-theme:hover {
  background: var(--theme);
  color: rgb(228, 225, 225);
}

/* Contact form */
.form-container {
  height: 100vh;
  background-color: white;
}

.form-icon-container {
  position: relative;
}

form .iti {
  width: 100%;
}

.form-icon-container i {
  position: absolute;
  right: 20px;
  top: 20px;
}

.form-icon-container input {
  padding-right: 40px;
  border-color: var(--theme);
}

.form-container .contact-content {
  border: 0;
}

.form-container .contact-content .btn-close {
  display: block;
  margin-left: auto;
}

.form-container .contact-img {
  margin-top: 25px;
  margin-left: 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-container .contact-img img {
  width: 120px;
  height: 100%;
  object-fit: contain;
}

.form-container .contact-img h2 {
  color: #53575b;
  margin-left: -12px;
}

.form-container .form-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.toast {
  box-shadow: none;
}

@media (max-width: 500px) {
  .apply-image-bg img {
    width: 100px;
  }
  .apply-image-bg .container .text-content h1 {
    font-size: 20px;
  }
}

@media (max-width: 375px) {
  .form-container .toast {
    width: 320px;
  }

  .form-container .contact-img img {
    width: 120px;
  }

  .apply-image-bg img {
    width: 90px;
  }
  .apply-image-bg .container .text-content h1 {
    font-size: 16px;
  }
  .apply-image-bg .container .text-content .text-contact-info {
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .form-container .toast {
    width: 240px;
  }
}

