@import "valuechain.css";
@import "therapies.css";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

@font-face {
  font-family: AdelleCyrillicLight;
  src: url(font/AdelleCyrillic-Light.ttf) format("truetype");
}

@font-face {
  font-family: AdelleCyrillicLightItalic;
  src: url(font/AdelleCyrillic-LightItalic.ttf) format("truetype");
}

ul {
  list-style-type: none;
  padding: 0px;
}

ul li a {
  text-decoration: none;
}

.search_bar {
  background: #071d49;
  color: white;
  display: none;
  height: 120px;
  position: fixed;
  z-index: 999;
  width: 100%;
  animation-name: search_bar;
  animation-duration: 1s;
}

@keyframes search_bar {
  from {
    height: 50px;
  }
  to {
    height: 100px;
  }
}

.home__banner_overlay {
  background-image: linear-gradient(to right, #0032e6, white);
}

.remove__class {
  display: none;
}

.hover-style-link {
  font-style: "Lato", sans-serif;
  position: relative;
  color: white;
  transition: all 0.5s;
  font-size: 16px;
}

.hover-style-link:hover {
  color: #cf4141;
  padding-left: 4px;
}

.hover-style-link:hover:after {
  left: 0;
  width: 100%;
  right: auto;
}

.hover-style-link:after {
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background-color: #cf4141;
}

.short-banner-bg {
  background-image: url("../../assets/images/banner/banner_short.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  min-height: 200px;
  position: relative;
}

.short-banner-bg-overlay {
  min-height: 200px;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  background-color: rgba(75, 54, 54, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* index page blog start */

.blog:hover {
  margin-top: -20px;
  transition-duration: 0.7s;
}

/* index page blog end */

/* index page therapies start */
.zoom {
  transition: transform 0.2s;
}

.zoom:hover {
  transform: scale(1.1);
}
/* index page therapies end */


/* product & index page product start */

.product_shadow {
  box-shadow: 0px 0px 2px 0px #2660AC;
  transition: all 0.5s;
}

.product_shadow:hover {
  box-shadow: 0px 0px 4px 0px #888888;
  margin-top: -10px;
  background-color: #2660AC;
  color: #f6f2ed !important;
}
/* product & index page product end */



/* product & index page product start */

.product_shadow {
  box-shadow: 0px 0px 2px 0px #2660AC;
  transition: all 0.5s;
}

.product_shadow:hover {
  box-shadow: 0px 0px 4px 0px #888888;
  margin-top: -10px;
  background-color: #2660AC;
  color: #f6f2ed !important;
}

/* product & index page product end */







/* index page parallax start */
.parallax {
  /* The image used */
  background-image: url("../../assets/images/banner/carousel-3.png");

  /* Set a specific height */
  min-height: 350px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-overlay {

  background-color: rgba(75, 54, 54, 0.3);

  /* Set a specific height */
  min-height: 350px;
}

/* index page parallax end */

@media only screen and (min-width: 320px) and (max-width: 700px) {
  .parallax {

    /* Set a specific height */
    min-height: 300px;

    /* Create the parallax scrolling effect */
    background-attachment: unset;
    background-position: center;
    background-repeat: unset;

  }

  .parallax-overlay {

    background-color: rgba(75, 54, 54, 0.3);

    /* Set a specific height */
    min-height: 300px;
  }
}
