@font-face {
  src: url(/assets/css/fonts/SFPRODISPLAYREGULAR.OTF);
  font-family: sf_pro;
}

@font-face {
  src: url(/assets/css/fonts/SFCompactDisplay-Regular.otf);
  font-family: sf_compact;
}

:root {
  /* Fonts */
  --ff-pro-display: sf_pro;
  --ff-compact: sf_compact;

  /* Font-weights */
  --fw-regular-1: 300;
  --fw-regular-2: 400;
  --fw-regular-3: 500;
  --fw-bold-1: 600;
  --fw-bold-2: 700;

  /* Font-size */
  --fs-13: 0.8125rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-19: 1.1875rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-32: 2rem;
  --fs-40: 2.5rem;
  --fs-50: 3.125rem;

  /* Colors */
  --cl-purple-100: #7a0643;
  --cl-purple-900: #7a064380;
  --cl-gray-100: #f0f0f0;
  --cl-gray-900: #929497;
}

/* Utility classes */

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.text-font-compact {
  font-family: var(--ff-compact);
}

.text-cl-dark-purple {
  color: var(--cl-purple-900);
}

.text-cl-light-purple {
  color: var(--cl-purple-100);
}

.bg-cl-light-purple {
  background-color: var(--cl-purple-100);
}

.product {
  box-shadow: 0px 0px 9px 3px rgb(15 15 15 / 4%);
  border-radius: 9%;
  width: 100%;
  height: 100%;
  position: relative;
}

.product img {
  border-top-left-radius: 5%;
  border-top-right-radius: 5%;
}

.product-information {
  background-color: var(--cl-gray-100);
  font-size: 24px;
  display: flex;
  padding: 1rem;
  justify-content: space-between;
  position: relative;
  z-index: 0.1;
  bottom: 0%;
  border-bottom-left-radius: 0.95rem;
  border-bottom-right-radius: 0.95rem;
  min-width: 100%;
}

.product-information h1 {
  font-size: 24px;
}

.plus {
  min-width: 1rem;
  min-height: 1rem;
  border-radius: 10%;
  font-size: 30px;
  color: var(--cl-purple-100);
  margin-top: -3%;
}

.plus a {
  padding: 0.3rem 0.7rem;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  background: var(--cl-purple-100);
  transition: 0.5s;
  border: 0.2rem solid var(--cl-purple-100);
  font-weight: var(--fw-bold-2);
}

.plus a:hover {
  color: var(--cl-purple-100);
  background: white;
  border: 0.2rem solid var(--cl-purple-100);
}

.text-animate {
  --s: 0.1em;
  color: #000;
  cursor: pointer;
  padding-bottom: var(--s);

  background: calc(100% - var(--p, 0%)) / 200% 100%,
    linear-gradient(var(--cl-purple-100) 0 0) 0% 100% / var(--p, 0%) var(--s) no-repeat;
  -webkit-background-clip: text, padding-box;
  background-clip: text, padding-box;
  transition: 0.5s;
}

.download {
  margin-top: 4rem;
  color: #929497;
  display: flex;
  justify-content: space-between;
  border-bottom: 0.0625rem solid #929497;
}

.download h1 {
  margin-bottom: 1rem;
  font-size: var(--fs-20);
  font-weight: var(--fw-regular-1);
}

.btn {
  margin-top: 2rem;
  background-color: var(--cl-purple-100);
  max-width: 15.3125rem;
  min-height: 4.0625rem;
  color: white;
  font-family: var(--ff-pro-display);
  font-size: 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: 0.5s;
}

.btn:hover {
  background: white;
  color: var(--cl-purple-100);
  border: 0.2rem solid var(--cl-purple-100);
}

.text-animate:hover {
  --p: 100%;
}

.details {
  margin-top: 50px;
  font-weight: var(--fw-bold-2);
  border-bottom: 0.0625rem solid var(--cl-purple-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.details h1 {
  font-size: 20px;
  margin-bottom: 1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*
** Navbar
*/
.navigation {
  background-color: white;
  position: fixed;
  width: 100%;
  z-index: 11;
  -webkit-box-shadow: 0px 0px 9px 3px rgba(41, 41, 41, 0.25);
  -moz-box-shadow: 0px 0px 9px 3px rgba(41, 41, 41, 0.25);
  box-shadow: 0px 0px 9px 3px rgba(41, 41, 41, 0.25);
}

.navbar {
  padding: 0;
}

.navbar-brand {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-brand h1 {
  font-size: 20px;
}

.logo {
  width: 110px;
}

.navbar-nav .nav-link {
  padding: 0 !important;
  margin: 0.5rem 1.5rem;
  position: relative;
  font-size: 16px;
}

.form-inline {
  display: flex;
  align-items: flex-end;
  flex-direction: column-reverse;
  margin-top: 10px;
}

.top-tel {
  line-height: 1;
}

.top-tel a {
  font-size: 18px;
  color: var(--cl-purple-100) !important;
  margin-right: 25px;
  text-decoration: none !important;
  position: relative;
  letter-spacing: 1px;
}

.navigation-menu {
  display: flex;
  justify-content: flex-end;
}

navbar-nav {
  display: flex;
  justify-content: flex-end;
}

.navbar {
  display: flex;
  background-color: white;
  top: 0;
  width: 100%;
  height: 5.375rem;
  z-index: 1;
}

.navbar-collapse {
  align-items: center;
  width: 100%;
}

.navbar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.navbar-list {
  list-style-type: none;
}

.navbar-list a {
  text-decoration: none;
}

.navbar-title {
  width: 30%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navbar-title h1 {
  font-size: 18px;
  margin-left: 0.6rem;
}

.navbar-list {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  margin-right: 2rem;
  font-size: 18px;
}

.navbar-list li {
  margin: 1rem;
}

.navbar-list h3 {
  font-size: 16px;
}

.navbar-title img {
  width: 85px;
}

.navbar-pages {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.contacts-header p {
  margin-bottom: -8px;
}

.contacts-header a {
  text-decoration: none;
  color: #1e2125;
}

.email {
  font-size: 13px;
}

/*
** Page Header
*/

.header {
  min-height: 100%;
  position: relative;
  max-width: 100%;
  background-image: url(../img/products/background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: row;
}

.header-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 30%;
}

.header-text-text {
  text-align: left;
  display: flex;
  flex-direction: column;
}

#title {
  margin-top: 2rem;
  font-size: 50px;
  font-weight: var(--fw-bold-2);
}

#text {
  margin-top: 3rem;
  font-size: 18px;
  font-weight: var(--fw-regular-2);
}

.header-img {
  margin-top: 150px;
  width: 100%;
  height: 80%;
  position: relative;
}

.header-img>ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.8s opacity ease-in-out;
  transition-delay: 0.8s;
}

.slide img {
  border-radius: 30px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.slide[data-active] {
  opacity: 1;
  z-index: 0.3;
  transition-delay: 0s;
}

.content-block {
  width: 80%;
  background-color: rgba(255, 255, 255, 0.76);
  position: absolute;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  border-radius: 15px;
  justify-content: space-between;
  top: 70%;
  left: 10%;
}

.content-block h1 {
  font-size: 24px;
}

.content a {
  text-decoration: none;
}

.content-info {
  top: 90%;
  position: absolute;
  left: 9%;
  display: flex;
  justify-content: space-between;
  width: 80%;
}

.content-info-numbers {
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 14rem;
}

.line {
  min-width: 7.6875rem;
  background-color: black;
  position: absolute;
  padding: 0.0625rem;
  left: 3rem;
}

.number {
  padding: 1rem;
}

.arrows {
  display: flex;
  justify-content: space-between;
  margin: 0px;
  width: 20%;
  position: absolute;
  left: 70%;
  top: 91%;
}

.arrow>button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  transition: background 0.5s;
}

.arrow>button:hover,
.arrow>button:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.2);
  border: none;
}

.circle {
  width: 130px;
  margin-top: 2rem;
}

.circle img {
  animation: rotation 8s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

.header-video {
  max-width: 16.0625rem;
  max-height: 10.9375rem;
  position: absolute;
  top: 70%;
  left: 37%;
  filter: brightness(50%);
}

.header-video img {
  border-radius: 0.94rem;
}

/*
** Our Products
*/

.products {
  margin-top: 3rem;
  min-height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products-list {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  justify-content: center;
}

.description {
  max-width: 23.93rem;
}

/*
** About Us
*/

.about-us {
  padding-bottom: 50px;
  padding-top: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  background: url(../img/products/background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.about-us-container {
  display: flex;
  flex-direction: row;
  padding-bottom: 5rem;
}

.about-us-description {
  margin-top: 4rem;
  font-size: 32px;
  font-weight: var(--fw-bold-2);
}

.about-us-description p {
  margin-top: 4rem;
  font-size: 18px;
  font-weight: var(--fw-regular-2);
}

.about-us-blocks {
  font-weight: var(--fw-regular-1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-us-blocks h1 {
  font-size: 24px;
  text-transform: uppercase;
}

.about-us-blocks p {
  margin-top: 0.5rem;
  font-size: 16px;
}

.about-us-block {
  margin-left: 30px;
  background-color: var(--cl-purple-100);
  border-radius: 0.95rem;
  padding: 1rem 4.5rem;
  color: white;
  margin-top: 2rem;
  position: relative;
}

.about-us-block h1 {
  font-size: 24px;
  text-transform: uppercase;
}

.icon {
  background-color: var(--cl-purple-100);
  padding: 1rem 1rem;
  border: 0.2rem solid white;
  border-radius: 50%;
  max-width: fit-content;
  display: grid;
  left: -8%;
  top: 20%;
  /* z-index: 0.3; */
  place-items: center;
  position: absolute;
}

.icon img {
  min-width: 2.875rem;
  min-height: 2.875rem;
}

/*
** Support/Contacts
*/

.contact {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}

.contacts-container {
  display: flex;
  flex-direction: row;
  padding-bottom: 4rem;
}

.contacts-description {
  margin-top: 10%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.contacts-description h2 {
  font-size: 40px;
  font-weight: var(--fw-bold-2);
  margin-bottom: 3rem;
  margin-top: 4rem;
}

.contacts-description p {
  font-size: 18px;
  font-weight: var(--fw-regular-2);
}

.detail {
  width: 50%;
}

.contacts-consultation {
  display: flex;
  align-items: center;
  margin-left: 7rem;
}

.consultation {
  display: flex;
  flex-direction: column;
  background-color: #f0f0f0;
  padding: 4rem;
  border-radius: 0.95rem;
}

.consultation-info {
  display: flex;
  flex-direction: column;
}

.consultation-info input {
  border: 0.2rem solid var(--cl-gray-100);
  border-radius: 0.5rem;
  font-size: 18px;
  padding: 0.5rem;
  transition: 0.5s;
  outline: none;
}

.consultation-info input:focus {
  border: 0.2rem solid var(--cl-purple-100);
}

.input-div {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.input-div label {
  font-size: 18px;
  color: var(--cl-gray-900);
}

#first {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.consultation-text h2 {
  font-size: 24px;
}

.consultation-text p {
  font-size: 20px;
}

/*
** Popular
*/

.popular {
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 70px;
  display: flex;
  justify-content: center;
}

.footer-list ul {
  list-style: none;
}

.footer-list ul li a {
  color: white;
  text-decoration: none;
}

.footer-information ul {
  padding-left: 0;
  list-style: none;
}

.footer-information ul li a {
  text-decoration: none;
  color: white;
}

.footer-phone ul {
  padding-left: 0;
  list-style: none;
}

.footer-email ul {
  padding-left: 0;
  list-style: none;
}

.popular-container {
  display: flex;
  align-items: center;
  position: relative;
}

.popular-text {
  display: flex;
  flex-direction: column;
}

.popular-text h2 {
  font-size: 40px;
  font-weight: var(--fw-bold-2);
}

.popular-text p {
  margin-top: 2rem;
  font-size: 18px;
  font-weight: var(--fw-regular-2);
}

.popular-slider {
  margin-left: 10rem;
  display: flex;
  flex-wrap: wrap;
}

.footer-second-container h2 {
  font-size: 14px;
  margin-right: 30px;
  margin-left: 30px;
}

.footer-information ul {
  list-style: none;
  padding-left: 0;
}

.footer-phone ul {
  list-style: none;
  padding-left: 0;
}

.footer-phone ul li a {
  color: white;
}

.footer-email ul {
  list-style: none;
  padding-left: 0;
}

.footer-email ul li a {
  color: white;
}

.consultation-info-contacts {
  display: flex;
  
}

.consultation-info-div h1 {
  font-size: 18px;
  font-weight: bold;
  color: black;
}

.consultation-info-number {
  display: flex;
  font-size: 18px;
  color: black;
  align-items: flex-start;
  margin: 10px 0;
  transition: color .5s;
}

.cons {
  margin: 12px 0;
  flex-direction: column;
}

.cont {
  display: flex;
  align-items: center;
}

#btn-arrow {
  display: flex;
  justify-content: flex-end;
}

.download-special {
  color: #929497;
  display: flex;
  justify-content: space-between;
  border-bottom: 0.0625rem solid #929497;
  width: 50%;
}

.download-special h1 {
  font-size: 20px;
}

.jcons {
  display: flex;
  align-items: self-end;
}

#image-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.consultation-info-number img {
  margin-right: 10px;
}

.footer-information>ul>li {
  margin-bottom: 15px;
}

.footer-phone>ul>li {
  margin-bottom: 15px;
}

.footer-email>ul>li {
  margin-bottom: 15px;
}

.consultation-info-num img {
  margin-right: 10px;
}

.consultation-info-num {
  display: flex;
  font-size: 18px;
  color: black;
  align-items: center;
  margin: 10px 0;
  transition: color .5s;
}

.consultation-info-num h2 {
  font-size: 18px;
}

.consultation-info-num:hover {
  color: #7a0643;
}

.consultation-info-number h2 {
  font-size: 18px;
}

.consultation-info-number:hover {
  color: #7a0643;
}

.text-footer-second-container {
  text-align: right;
}

.popular-arrow {
  padding: 0.3rem 0.3rem;
  border: 0.2rem solid white;
  border-radius: 50%;
  position: absolute;
  background: white;
  transition: border 0.5s;
}

.popular-arrow:hover {
  border: 0.2rem solid var(--cl-purple-100);
  cursor: pointer;
}

#first-arrow {
  right: 14%;
}

#second-arrow {
  left: 37%;
  transform: rotate(180deg);
}

/*
** Footer
*/

.footer {
  background-color: #1e1e1e;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 60px;
}

.distance {
  margin: 10px;
}

.footer-adress p {
  font-size: 14px;
}

.footer-container {
  display: flex;
  margin: 3rem;
}

.footer-image {
  display: flex;
  align-content: center;
  flex-direction: column;
  position: relative;
}

.facebook-logo {
  display: flex;
  font-size: 16px;
  color: white;
}

.facebook-logo:focus,
.facebook-logo:hover {
  color: white;
}

.facebook-logo img {
  height: 25px;
}

.footer-header {
  font-size: 20px;
  margin-bottom: 2rem;
}

.footer-container h1 {
  font-size: var(--fs-20);
  font-weight: var(--fw-bold-2);
  text-transform: uppercase;
}

.footer-header-text {
  margin-top: 6rem;
  font-size: 14px;
}

.footer-container ul,
p {
  list-style: none;
  font-size: 16px;
}

.footer-container ul li a {
  text-decoration: none;
  color: white;
}

.footer-container ul li a:hover {
  text-decoration: underline;
}

.footer-container ul li {
  margin-bottom: 1rem;
}

.footer-second {
  color: white;
  position: relative;
  top: -5%;
  background: #000000;
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

#second-footer-text {
  display: flex;
  justify-content: center;
  margin: 10px;
}

.footer-second-container {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.footer-list ul {
  display: flex;
  padding: 0;
}

.footer-list ul>li {
  margin: 1rem;
}

.page-header {
  padding-top: 150px;
}

.product-detail {
  margin-bottom: 70px;
}

.owl-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  user-select: none;
}

.owl-prev {
  top: 30%;
  left: -55px;
  z-index: 3;
}

.owl-next {
  top: 30%;
  right: -55px;
  z-index: 3;
}

.mobile-navigation {
  width: 100%;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0px 15px;
  background-color: #fff;
  box-shadow: -1px 4px 11px 1px rgb(0 0 0 / 7%);
}

#mobileNavModal .modal-content {
  height: 100vh;
  border-radius: 0;
}

#mobileNavModal .modal-body {
  position: relative;
}

#mobileNavModal .modal-body .mnav-links a {
  text-decoration: none;
  font-size: 16px;
  color: #58595b;
  font-weight: 700;
  display: block;
  border-bottom: 1px solid #ebebeb;
  padding: 10px 20px;
}

.menu img {
  width: 30px;
}

#map {
  width: 100%;
  height: 57%;
  border-radius: 15px;
}

.about-us3 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.accordion-button:focus {
  z-index: 3;
  border-color: rgba(0, 0, 0, .125);
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--cl-purple-100);
  background-color: #ffffff;
}

.accordion-item {
  border: 1px solid rgba(0, 0, 0, .125);
}

.accordion-button:not(.collapsed)::after {
  background-image: url(/assets/img/icons/down.svg);
  transform: rotate(180deg);
}

.product-detail-description h1 {
  margin-top: 0;
}

.clients{
  margin-top: 70;
  margin-bottom: 70px;
}
.owl-clients {
  padding: 60px;
}
.active {
  color: var(--cl-purple-100) !important;
}

.social ul {
  margin-bottom: 0 !important;
      display: inline-flex;
}
.social ul li img {
  max-width: 20px;
}
.social ul li{
    margin-right:1rem;
}

.consultation-info-contacts .consultation-info-div{
   margin-right:2rem;
}
.float{
	position:fixed;

    display: grid;
    place-items: center;
    bottom: 40px;
    padding: 1rem;
	bottom:40px;
	right:40px;
    background-color: var(--cl-purple-100);
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}


.float img {
    max-width:30px;
}
@media (max-width: 1450px) {
    .slide{
            height: 521px !important;
    }
}