@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans Hebrew", sans-serif;
}

body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ff553e;
  border: 3px solid #f1f1f1;
  border-radius: 10px;
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
#preloader .ajax-loader {
  position: absolute;
  top: 25%;
  left: 50%;
  transform-origin: 50% 50%;
  transform: rotate(90deg) translate(-50%, 0%);
  font-size: 50px;
  width: 1em;
  height: 3em;
  color: #d31145;
}
#preloader .ajax-loader .paw {
  width: 1em;
  height: 1em;
  animation: 2050ms pawAnimation ease-in-out infinite;
  opacity: 0;
}
#preloader .ajax-loader .paw svg {
  width: 100%;
  height: 100%;
}
#preloader .ajax-loader .paw .icon {
  fill: currentColor;
}
#preloader .ajax-loader .paw:nth-child(odd) {
  transform: rotate(-10deg);
}
#preloader .ajax-loader .paw:nth-child(even) {
  transform: rotate(10deg) translate(125%, 0);
}
#preloader .ajax-loader .paw:nth-child(1) {
  animation-delay: 1.25s;
}
#preloader .ajax-loader .paw:nth-child(2) {
  animation-delay: 1s;
}
#preloader .ajax-loader .paw:nth-child(3) {
  animation-delay: 0.75s;
}
#preloader .ajax-loader .paw:nth-child(4) {
  animation-delay: 0.5s;
}
#preloader .ajax-loader .paw:nth-child(5) {
  animation-delay: 0.25s;
}
#preloader .ajax-loader .paw:nth-child(6) {
  animation-delay: 0s;
}
.no-cssanimations #preloader .ajax-loader .paw {
  opacity: 1;
}
@keyframes pawAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

#back-to-top {
  position: fixed;
  bottom: 82px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #e6e6e6;
  color: #1f0f02;
  border: none;
  border-radius: 10px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: scale(0);
  transition: 0.2s;
  overflow: hidden;
}
#back-to-top span {
  font-weight: 600;
  position: absolute;
  bottom: 0;
  left: 7px;
  font-size: 7px;
}
#back-to-top img {
  width: 100%;
  padding: 0 10px 10px;
}
#back-to-top:hover {
  background-color: #e6e6e6;
}

.text-green {
  color: #19be71;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.site-btn {
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #ff553e;
  box-shadow: 0 0 0 2px #ff553e;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.site-btn svg {
  position: absolute;
  width: 24px;
  fill: #ff553e;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.site-btn svg.arr-1 {
  right: 16px;
}
.site-btn svg.arr-2 {
  left: -25%;
}
.site-btn .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #ff553e;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.site-btn .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.site-btn:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #ffffff;
  border-radius: 12px;
}
.site-btn:hover .arr-1 {
  right: -25%;
}
.site-btn:hover .arr-2 {
  left: 16px;
}
.site-btn:hover .text {
  transform: translateX(12px);
}
.site-btn:hover svg {
  fill: #ffffff;
}
.site-btn:hover:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #ff553e;
}
.site-btn:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

nav {
  padding: 20px 0;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .container .logo a {
  text-decoration: none;
}
nav .container .logo a h3 {
  color: #1f0f02;
}
nav .container .logo a h3 img {
  width: 45px;
  margin-right: 5px;
}
nav .container .toggler .icon {
  width: 45px;
  height: 45px;
  background: #ff553e;
  border-radius: 50px;
  cursor: pointer;
  display: grid;
  place-content: center;
}

header .container .row .img-boxes {
  -moz-columns: 2;
       columns: 2;
}
header .container .row .img-boxes .box {
  height: 250px;
}
header .container .row .img-boxes .box video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 80px;
}
header .container .row .img-boxes .box img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 80px;
}
header .container .row .img-boxes .box:nth-child(1) video {
  border-top-left-radius: 0;
}
header .container .row .img-boxes .box:nth-child(2) img {
  border-bottom-left-radius: 0;
}
header .container .row .img-boxes .box:nth-child(3) img {
  border-top-right-radius: 0;
}
header .container .row .img-boxes .box:nth-child(4) video {
  border-bottom-right-radius: 0;
}
@media only screen and (max-width: 576px) {
  header .container .row .img-boxes .box {
    height: 200px;
  }
  header .container .row .img-boxes .box video {
    border-radius: 50px;
  }
  header .container .row .img-boxes .box img {
    border-radius: 50px;
  }
}
@media only screen and (max-width: 380px) {
  header .container .row .img-boxes .box {
    height: 130px;
  }
  header .container .row .img-boxes .box video {
    border-radius: 30px;
  }
  header .container .row .img-boxes .box img {
    border-radius: 30px;
  }
}

.growing .container .row .content .image img {
  width: 70%;
}
.growing .container .row .content .image .video {
  width: 350px;
  height: 250px;
  position: absolute;
  border-radius: 20px;
  bottom: 80px;
  left: 0;
  overflow: hidden;
  border: 4px solid #fff;
}
@media only screen and (max-width: 768px) {
  .growing .container .row .content .image img {
    width: 70%;
  }
  .growing .container .row .content .image .video {
    width: 250px;
    height: 200px;
  }
}
@media only screen and (max-width: 576px) {
  .growing .container .row .content .image img {
    width: 100%;
  }
  .growing .container .row .content .image .video {
    margin-top: 6px;
    position: static;
    width: 100%;
    height: 300px;
  }
}

.therapy .container .row .content {
  border: 1px solid #e8e8e8;
  padding: 30px;
  border-radius: 30px;
  transition: 0.3s;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: transparent;
}
.therapy .container .row .content img {
  width: 120px;
  transition: 0.3s;
}
.therapy .container .row .content h3 {
  color: #ff553e;
}
.therapy .container .row .content p {
  margin-bottom: 0;
}
.therapy .container .row .content:hover {
  box-shadow: 0 10px 30px 0px rgba(153, 153, 153, 0.368627451);
}
.therapy .container .row .content:hover img {
  transform: scale(1.5) translateY(-30px);
}

.contact .container .box {
  display: block;
  background: transparent;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  text-decoration: none;
  color: #19be71;
  position: relative;
  font-weight: 600;
}
.contact .container .box .icon {
  padding: 20px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.contact .container .box .icon img {
  width: 45px;
}
.contact .container .box .icon span {
  font-size: 20px;
}
.contact .container .box::before {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  background: linear-gradient(90deg, #19be71, rgba(25, 190, 113, 0.3882352941));
  opacity: 0;
  z-index: -1;
  border-radius: 20px;
  transition: 0.3s;
  right: 0;
}
.contact .container .box:hover {
  color: #fff;
}
.contact .container .box:hover img {
  filter: brightness(255);
}
.contact .container .box:hover::before {
  left: 0;
  opacity: 1;
  width: 100%;
}
@media only screen and (max-width: 400px) {
  .contact .container .box .icon {
    padding: 10px;
  }
  .contact .container .box .icon img {
    width: 35px;
  }
}

.gallery-1 .container .row .image {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  transition: 0.3s;
}
.gallery-1 .container .row .image a {
  position: relative;
  display: block;
}
.gallery-1 .container .row .image a::after {
  position: absolute;
  top: 0;
  left: 45%;
  content: "";
  width: 0%;
  height: 100%;
  background: rgba(245, 245, 245, 0.3607843137);
  z-index: 10;
  transform: skew(-45deg);
  transition: 0.3s;
}
.gallery-1 .container .row .image img {
  height: 230px;
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.gallery-1 .container .row .image:hover {
  rotate: 5deg;
}
.gallery-1 .container .row .image:hover a::after {
  left: 0;
  width: 100%;
  transform: skew(-45deg) scale(2);
}

.loc-fam .family .row .image img {
  height: 100%;
  border-radius: 8em 0 8em 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 992px) {
  .loc-fam .family .row .image img {
    border-radius: 5em;
  }
}
@media only screen and (max-width: 576px) {
  .loc-fam .family .row .image img {
    border-radius: 1.2em;
  }
}

.breed {
  background: linear-gradient(90deg, #f7ecee, #f1f9fa);
}
.breed .container .row .images {
  display: flex;
  gap: 20px;
}
.breed .container .row .images .left {
  flex: 1;
}
.breed .container .row .images .left .image1 {
  width: 100%;
  height: 400px;
}
.breed .container .row .images .left .image2 {
  margin-top: 20px;
  height: 260px;
  width: 100%;
}
.breed .container .row .images .right {
  flex: 1;
  padding: 0 1em;
}
.breed .container .row .images .right .image3 {
  width: 100%;
  height: 260px;
}
.breed .container .row .images .right .image4 {
  margin-top: 20px;
  width: 100%;
  height: 400px;
}
.breed .container .row .images img {
  border-radius: 5em;
  box-shadow: 10px 10px 30px 0px rgba(153, 153, 153, 0.368627451);
  transition: 0.3s;
}
.breed .container .row .images img:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0px 10px 30px 10px rgba(153, 153, 153, 0.6470588235);
}
@media only screen and (max-width: 1200px) {
  .breed .container .row .images .left {
    flex: 1;
  }
  .breed .container .row .images .left img {
    width: 100%;
  }
  .breed .container .row .images .right {
    padding: 0;
    flex: 1;
  }
}
@media only screen and (max-width: 576px) {
  .breed .container .row .images {
    gap: 10px;
  }
  .breed .container .row .images .left .image1 {
    height: 260px;
  }
  .breed .container .row .images .right .image4 {
    height: 260px;
  }
}
@media only screen and (max-width: 400px) {
  .breed .container .row .images {
    flex-direction: column;
    gap: 20px;
  }
  .breed .container .row .images .left .image1 {
    height: 260px;
  }
}

.good-bad {
  background: linear-gradient(rgba(207, 207, 207, 0.3137254902), rgba(207, 207, 207, 0.3137254902)), url(../images/1719050020751.jpg);
  -webkit-backdrop-filter: blur(130px);
          backdrop-filter: blur(130px);
  background-size: cover;
}
.good-bad .container .row .text {
  background: rgba(255, 255, 255, 0.3764705882);
  border: 2px solid #ccc;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 30px;
  height: 100%;
  padding: 20px;
}
.good-bad .container .row .text .box ul {
  padding-left: 0;
  margin-bottom: 0;
}
.good-bad .container .row .text .box ul li {
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
  gap: 10px;
  margin: 15px 0;
}
.good-bad .container .row .text .box ul li .boder {
  background: #fff;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 8px;
  display: flex;
  align-content: center;
  border-radius: 50px;
  box-shadow: 0px 0px 30px 0px rgba(25, 190, 113, 0.3607843137);
}
.good-bad .container .row .text .box ul li .boder img {
  width: 100%;
}
.good-bad .container .row .text .box.bad ul li .boder {
  box-shadow: 0px 0px 30px 0px rgba(255, 84, 62, 0.3607843137);
}
.good-bad .container .row.summary .content {
  background: rgba(255, 255, 255, 0.3764705882);
  border: 2px solid #ccc;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 30px;
  height: 100%;
  padding: 20px;
}

.gallery-2 .container .row .preview video {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
.gallery-2 .container .row .thumb-boxes .box {
  margin-top: 20px;
  transition: 0.3s;
}
.gallery-2 .container .row .thumb-boxes .box a {
  display: flex;
  gap: 20px;
  text-decoration: none;
  align-items: center;
  cursor: pointer;
}
.gallery-2 .container .row .thumb-boxes .box a img {
  width: 200px;
  height: 110px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-2 .container .row .thumb-boxes .box a .text {
  background-color: #eee;
  height: 110px;
  padding: 20px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  position: relative;
}
.gallery-2 .container .row .thumb-boxes .box a .text::before {
  content: "";
  width: 30px;
  height: 30px;
  background: #eee;
  position: absolute;
  left: -20px;
}
.gallery-2 .container .row .thumb-boxes .box a .text p {
  color: #1f0f02;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gallery-2 .container .row .thumb-boxes .box:nth-child(2) a .text::before {
  left: auto;
  right: -20px;
}
.gallery-2 .container .row .thumb-boxes .box:last-child a .text::before {
  left: auto;
  right: -20px;
}
.gallery-2 .container .row .thumb-boxes .box:hover {
  scale: 1.05;
}
@media only screen and (max-width: 992px) {
  .gallery-2 .container .row .thumb-boxes .box a .text {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .gallery-2 .container .row .thumb-boxes {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .gallery-2 .container .row .thumb-boxes .box {
    margin-top: 0;
  }
  .gallery-2 .container .row .thumb-boxes .box a img {
    width: 100%;
  }
  .gallery-2 .container .row .thumb-boxes .box a .text {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  .gallery-2 .container .row .thumb-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gallery-2 .container .row .thumb-boxes .box {
    margin-top: 0;
  }
  .gallery-2 .container .row .thumb-boxes .box a img {
    width: 100%;
  }
  .gallery-2 .container .row .thumb-boxes .box a .text {
    display: none;
  }
}

.contact-us .container .row .contact-form form .input label {
  width: 100%;
  padding: 10px 8px 10px 0;
  text-align: end;
  font-size: 18px;
  font-weight: 600;
}
.contact-us .container .row .contact-form form .input input {
  width: 100%;
  padding: 14px;
  text-align: end;
  border-radius: 40px;
  border: 1px solid #ddd;
  box-shadow: 0 5px 10px 0px #eee;
  transition: 0.3s;
  outline: none;
}
.contact-us .container .row .contact-form form .input input:focus {
  border-color: #ff553e;
  box-shadow: 0 0px 20px 0px rgba(255, 84, 62, 0.262745098);
}
.contact-us .container .row .contact-form form .input textarea {
  padding: 14px;
  border-radius: 40px;
  border: 1px solid #ddd;
  box-shadow: 0 5px 10px 0px #eee;
  transition: 0.3s;
  outline: none;
  resize: none;
}
.contact-us .container .row .contact-form form .input textarea:focus {
  border-color: #ff553e;
  box-shadow: 0 0px 20px 0px rgba(255, 84, 62, 0.262745098);
}
.contact-us .container .row .content .box {
  display: flex;
  align-items: center;
  box-shadow: 5px 5px 10px 0px #eee;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
}
.contact-us .container .row .content .box .icon {
  width: 60px;
  border-right: 2px solid #ff553e;
  display: grid;
  background: rgba(235, 235, 235, 0.3607843137);
  height: 90px;
  place-items: center;
}
.contact-us .container .row .content .box .text {
  padding: 0 40px;
}
.contact-us .container .row .content .box .text a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  color: #1f0f02;
  transition: 0.3s;
}
.contact-us .container .row .content .box .text a:hover {
  color: #ff553e;
}
.contact-us .container .row .content .box:hover {
  scale: 1.05;
}
@media only screen and (max-width: 400px) {
  .contact-us .container .row .content .box .icon {
    width: 50px;
    min-width: 50px;
    height: 70px;
  }
  .contact-us .container .row .content .box .text {
    padding: 0 20px;
  }
  .contact-us .container .row .content .box .text a {
    font-size: 16px;
  }
}

footer {
  background: rgba(25, 190, 113, 0.8078431373);
  padding: 20px 0;
}
footer .ftr-logo h3 {
  font-size: 20px;
  color: #fff;
}
footer .ftr-logo h3 img {
  width: 40px;
  margin-right: 6px;
}

.ani-left {
  animation: apear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
@keyframes apear {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.newsletter-modal .modal-dialog .modal-content {
  background: rgba(255, 255, 255, 0.3960784314);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 40px;
}
.newsletter-modal .modal-dialog .modal-content .modal-header {
  padding: 10px 20px 10px 10px;
}
.newsletter-modal .modal-dialog .modal-content .modal-header .logo h3 {
  margin-bottom: 0;
}
.newsletter-modal .modal-dialog .modal-content .modal-header .logo h3 img {
  width: 50px;
}
.newsletter-modal .modal-dialog .modal-content .modal-header .btn-bg {
  background: #ff553e;
  width: 35px;
  height: 35px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  padding-right: 6px;
}
.newsletter-modal .modal-dialog .modal-content .modal-header .btn-bg button {
  filter: invert(1) brightness(55);
  opacity: 1;
}
.newsletter-modal .modal-dialog .modal-content .modal-body {
  overflow: hidden;
  border-radius: 50px;
}
.newsletter-modal .modal-dialog .modal-content .modal-body .image img {
  border-radius: 40px;
}
.newsletter-modal .modal-dialog .modal-content .modal-body form input, .newsletter-modal .modal-dialog .modal-content .modal-body form textarea {
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid rgba(238, 238, 238, 0.4588235294);
  background: rgba(255, 255, 255, 0.2117647059);
  margin-top: 10px;
  color: #fff;
  outline: none;
  resize: none;
}
.newsletter-modal .modal-dialog .modal-content .modal-body form input::-moz-placeholder, .newsletter-modal .modal-dialog .modal-content .modal-body form textarea::-moz-placeholder {
  color: #eee;
}
.newsletter-modal .modal-dialog .modal-content .modal-body form input::placeholder, .newsletter-modal .modal-dialog .modal-content .modal-body form textarea::placeholder {
  color: #eee;
}
.newsletter-modal .modal-dialog .modal-content .modal-body form button {
  background: #ff553e;
  color: #fff;
  padding: 10px 40px;
  font-weight: 600;
  border-radius: 12px;
  border: 0;
  outline: none;
}/*# sourceMappingURL=style.css.map */