@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Poppins", sans-serif;
}

a {
  transition: 0.1s;
}

header {
  background: #111517;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: 0.3s;
  top: 0px;
  z-index: 4;
}
header .header-inner-mobile {
  display: none;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header .header-inner .logo {
  width: 14vw;
}
header .header-inner .logo img {
  transition: 0.3s;
  height: 50px;
}
header .header-inner .menu {
  display: flex;
}
header .header-inner .menu li {
  position: relative;
}
header .header-inner .menu li > a {
  padding: 9px 15px;
  font-size: 13px;
  transition: 0.3s;
}
header .header-inner .menu li .submenu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 20px;
  background: #191f23;
  width: auto;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.2s;
}
header .header-inner .menu li .submenu li a {
  padding: 13px;
  white-space: nowrap;
  display: block;
  font-size: 14px;
  transition: 0.3s;
  color: #868889;
}
header .header-inner .menu li .submenu li a:hover {
  color: #fff;
  padding: 13px 13px 13px 17px;
}
header .header-inner .menu li .submenu li a:hover i {
  visibility: hidden;
  left: 10px;
}
header .header-inner .menu li:hover > .hasSubMenu {
  background-color: #191f23;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #fff;
}
header .header-inner .menu li:hover .submenu {
  top: 25px;
  visibility: visible;
  opacity: 1;
}
header .header-inner a {
  color: #868889;
  text-decoration: none;
}
header .header-inner a:hover {
  color: #fff;
}
header .header-inner > img, header .header-inner .search {
  width: 14vw;
}
header .header-inner .search {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .header-inner .search button {
  background: none;
  border: none;
  color: #fff;
  text-align: right;
}
header .header-inner .search button:hover svg {
  color: #fff;
  cursor: pointer;
}
header .header-inner .search button svg {
  width: 21px;
  pointer-events: none;
  color: #868889;
  transition: 0.2s;
}
header .header-inner .search:hover {
  cursor: pointer;
}
header .header-inner .search .drop-menu {
  position: relative;
  z-index: 4;
  transition: 0.01s;
  background: rgba(37, 37, 37, 0);
  min-width: 50px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
header .header-inner .search .drop-menu .selected {
  position: relative;
  z-index: 5;
}
header .header-inner .search .drop-menu .selected:hover {
  cursor: pointer;
}
header .header-inner .search .drop-menu .drop-menu-items {
  position: absolute;
  left: 0;
  right: 0;
  display: none;
  text-align: center;
  background: #191f23;
  top: 32px;
  padding: 10px 0 0 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
header .header-inner .search .drop-menu-item.selected {
  min-width: auto;
}
header .header-inner .search .drop-menu .drop-menu-item.in-progress {
  pointer-events: none;
  position: relative;
}
header .header-inner .search .drop-menu .drop-menu-item.in-progress img {
  filter: brightness(0.7);
}
header .header-inner .search .drop-menu .drop-menu-item {
  display: block;
  padding: 6px 13px;
}
header .header-inner .search .drop-menu-items .drop-menu-item:hover {
  background: #292929;
}
header .header-inner .search .drop-menu img {
  width: 25px;
  border-radius: 50%;
  height: 25px;
}
header .header-inner .search .drop-menu.active {
  background: #191f23;
}

.header-sticky {
  padding-top: 0px;
  padding-bottom: 0px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #191919;
}
.header-sticky .logo img {
  height: 35px !important;
}
.header-sticky + div {
  margin-top: 52px !important;
}
.header-sticky .header-inner .menu li > a {
  font-size: 11px;
}
.header-sticky .header-inner .search button {
  padding: 14px;
}
.header-sticky + .search-box .close-search i {
  color: #000;
}
.header-sticky .search button svg {
  width: 20px !important;
}
.header-sticky .drop-menu.selected img {
  width: 20px !important;
  height: 20px !important;
}

.inner {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.inner-70 {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}
.section-title h2 {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  font-family: "Playfair Display", serif;
}

.button-primary {
  background: #0b9180;
  color: #fff;
  border: #0b9180;
}

.slider {
  background: rgb(17, 21, 23);
  background: linear-gradient(0deg, rgb(17, 21, 23) 0%, rgb(16, 21, 24) 100%);
  height: 60vh;
  width: 100%;
}
.slider .slider-inner {
  height: 100%;
  width: 100%;
  position: relative;
}
.slider .slider-inner .Swiper {
  height: 100% !important;
  width: 100% !important;
  margin: 0 auto;
}
.slider .slider-inner .Swiper .p-0 {
  padding: 0 !important;
}
.slider .slider-inner .Swiper .p-0 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider .slider-inner .Swiper .swiper-slide {
  padding-left: 10vw;
  padding-right: 10vw;
  height: 100% !important;
}
.slider .slider-inner .Swiper .swiper-slide .swiper-slide-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slider .slider-inner .Swiper .swiper-slide .swiper-slide-inner > div {
  margin-bottom: 120px;
}
.slider .slider-inner .Swiper .swiper-slide .swiper-slide-inner h5 {
  color: #fff;
  font-size: 75px;
  font-weight: 700;
  margin-bottom: 25px;
}
.slider .slider-inner .Swiper .swiper-slide .swiper-slide-inner .main-slider-img {
  height: 100%;
}
.slider .slider-inner .swiper-controls {
  position: absolute;
  top: 31vh;
  right: 9vw;
  z-index: 1;
  color: #fff;
  display: flex;
}
.slider .slider-inner .swiper-controls .swiper-control-next svg {
  width: 80px;
  height: 50px;
}
.slider .slider-inner .slider-banner {
  position: absolute;
  bottom: 30px;
  width: 100%;
  backdrop-filter: blur(10px);
  height: 100px;
  z-index: 1;
  border-radius: 30px;
  padding: 0 5%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.slider .slider-inner .slider-banner span {
  vertical-align: middle;
}
.slider .slider-inner .slider-banner span h7 {
  color: #fff;
}
.slider .slider-inner .slider-banner span i {
  font-size: 25px;
  color: #fff;
  margin-right: 2px;
}

.categories {
  width: 100%;
  background: #f5f4f5;
  padding: 80px 0;
}
.categories .categories-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 50px;
}
.categories .categories-inner .category-type {
  padding: 20px;
  background: #fff;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.0588235294);
  transition: 0.2s;
}
.categories .categories-inner .category-type .category-title p {
  color: #242629;
  font-size: large;
  font-weight: 600;
}
.categories .categories-inner .category-type .category-title span {
  font-size: 12px;
  color: #787878;
  margin-top: 10px;
  display: block;
}
.categories .categories-inner .category-type .category-face {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.categories .categories-inner .category-type .category-face img {
  width: 80%;
  object-fit: contain;
  min-height: 290px;
}
.categories .categories-inner .category-type:hover span, .categories .categories-inner .category-type:hover p {
  color: #fff;
}
.categories .categories-inner .category-type:first-child {
  grid-row: 1/3;
}
.categories .categories-inner .category-type:first-child img {
  width: 90%;
}
.categories .categories-inner .category-type:nth-child(5):hover {
  background: #0b9180;
}
.categories .categories-inner .category-type:nth-child(4):hover {
  background: #3366ff;
}
.categories .categories-inner .category-type:nth-child(3):hover {
  background: #ff3333;
}
.categories .categories-inner .category-type:nth-child(2):hover {
  background: #ffcc33;
}
.categories .categories-inner .category-type:nth-child(1):hover {
  background: #333;
}

.products {
  width: 100%;
  padding: 80px 0;
}
.products .products-inner .all-products-button {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  white-space: nowrap;
  font-family: "Playfair Display";
  width: 120px;
}
.products .products-inner .product-types {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: repeat(3, 1fr);
}
.products .products-inner .product-types .product-type {
  text-decoration: none;
}
.products .products-inner .product-types .product-type:hover .product-title {
  transform: translateY(-5px);
}
.products .products-inner .product-types .product-type:hover .product-face img {
  transform: scale(1.1);
}
.products .products-inner .product-types .product-type .product-face {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  padding: 60px 0;
  min-height: 50vh;
}
.products .products-inner .product-types .product-type .product-face img {
  width: 90%;
  transition: 0.3s;
}
.products .products-inner .product-types .product-type .product-title {
  transition: 0.2s;
}
.products .products-inner .product-types .product-type .product-title p {
  color: #242629;
  font-size: large;
  font-weight: 500;
  margin-top: 30px;
}
.products .products-inner .product-types .product-type .product-title span {
  font-size: 12px;
  color: #787878;
  margin-top: 10px;
  display: block;
}
.products .products-inner .product-types .product-type .product-title button.btn {
  margin-top: 12px;
}

.main-about {
  width: 100%;
  background: radial-gradient(circle, rgb(26, 31, 36) 0%, rgb(23, 28, 32) 39%, rgb(36, 39, 41) 100%, rgb(16, 20, 24) 100%);
  padding: 80px 0;
  color: #fff;
}
.main-about .main-about-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.main-about .main-about-inner > p {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.2;
}
.main-about .main-about-inner .dot {
  font-family: cursive;
  transform: rotate(180deg);
  margin-bottom: 50px;
  font-size: 80px;
}
.main-about .main-about-inner .about-logo {
  margin-bottom: 50px;
}
.main-about .main-about-inner .about-resources {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 30px;
}
.main-about .main-about-inner .about-resources .resource-type {
  text-align: center;
  text-decoration: none;
  width: 25%;
  transition: 0.2s ease-in-out;
}
.main-about .main-about-inner .about-resources .resource-type .resource-face {
  overflow: hidden;
  background: #000;
  max-height: 160px;
  border-radius: 20px;
  border: 3px solid #fff;
  position: relative;
}
.main-about .main-about-inner .about-resources .resource-type .resource-face img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.main-about .main-about-inner .about-resources .resource-type .resource-face .resource-face-hover {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  background: rgba(11, 145, 128, 0.768627451);
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  color: #fff;
  font-size: 40px;
}
.main-about .main-about-inner .about-resources .resource-type .resource-face .resource-face-hover svg {
  height: 50px;
  width: 50px;
}
.main-about .main-about-inner .about-resources .resource-type:hover {
  transform: translateY(-5px);
}
.main-about .main-about-inner .about-resources .resource-type:hover .resource-face-hover {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
.main-about .main-about-inner .about-resources .resource-type h7 {
  font-size: larger;
  font-weight: 600;
  margin-top: 20px;
  display: block;
  color: #fff;
}
.main-about .main-about-inner .about-resources .resource-type p {
  font-size: 12px;
  color: #787878;
  margin-top: 10px;
}

.contact-form {
  background: #f4f4f4;
  padding: 80px;
}
.contact-form .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  align-items: center;
}
.contact-form .contact-content .map iframe {
  width: 100%;
  max-height: 50vh;
}
.contact-form .contact-content .map i {
  color: #0b9180;
}
.contact-form .contact-content form {
  text-align: center;
}
.contact-form .contact-content form h3 {
  font-weight: 700;
  font-size: 22px;
}
.contact-form .contact-content form .response-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1.4;
  white-space: inherit;
}
.contact-form .contact-content form .response-area span {
  display: block;
  width: 100%;
}

.footer {
  padding: 80px 0;
  background: #111518;
}
.footer .footer-inner {
  display: grid;
  grid-template-columns: 250px auto auto 260px;
  grid-gap: 50px;
  color: #fff;
}
.footer .footer-inner b {
  font-weight: 700;
}
.footer .footer-inner .footer-section-1 .logo {
  margin-bottom: 20px;
}
.footer .footer-inner .footer-section-1 p {
  font-size: 11px;
}
.footer .footer-inner .footer-section-2 {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer .footer-inner .footer-section-2 p {
  font-weight: 200;
  margin-top: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}
.footer .footer-inner .footer-section-2 div {
  position: relative;
  display: inline-block;
  font-size: 13px;
}
.footer .footer-inner .footer-section-2 div .arrow {
  width: 21px;
  position: absolute;
  right: 19px;
  bottom: -37px;
  transform: rotate(170deg);
}
.footer .footer-inner .footer-section-2 a {
  margin-top: 20px;
  border: navajowhite;
  padding: 5px 10px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  font-size: 12px;
  grid-gap: 5px;
  background: #fff;
  text-decoration: none;
  color: #000;
}
.footer .footer-inner .footer-section-2 a i {
  font-size: 20px;
}
.footer .footer-inner .footer-section-2 a:hover {
  background-color: #25d366;
  color: #fff;
}
.footer .footer-inner .footer-section-3 ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 90%;
}
.footer .footer-inner .footer-section-3 ul li a {
  color: #868889;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  text-align: center;
  font-size: 14px;
}
.footer .footer-inner .footer-section-3 ul li a:hover {
  color: #fff;
}
.footer .footer-inner .footer-section-4 .footer-response-area {
  white-space: inherit;
  display: none;
}
.footer .footer-inner .footer-section-4 h5 {
  font-size: 13px;
  text-align: right;
  line-height: 1.5;
}
.footer .footer-inner .footer-section-4 .subscribe-form {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
}
.footer .footer-inner .footer-section-4 .subscribe-form input {
  margin-top: 20px;
  display: block;
  padding: 10px 14px;
  height: 40px;
  width: 100%;
  font-size: 13px;
  border-radius: 1px;
  border: none;
  padding-right: 100px;
}
.footer .footer-inner .footer-section-4 .subscribe-form input:active, .footer .footer-inner .footer-section-4 .subscribe-form input:focus {
  outline: none;
}
.footer .footer-inner .footer-section-4 .subscribe-form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  border-radius: 0;
  border-bottom-right-radius: 1px;
  border-top-right-radius: 1px;
}
.footer .footer-inner .footer-section-4 .subscribe-form .response-area span {
  white-space: normal;
}

.socialbtns {
  margin: 0;
  padding: 5px;
}
.socialbtns ul {
  margin: 0;
  padding: 5px;
}
.socialbtns li {
  margin: 0;
  padding: 5px;
  list-style: none outside none;
  display: inline-block;
}
.socialbtns li a {
  transition: 0.3s ease;
  text-decoration: none;
  text-align: center;
}
.socialbtns .fab:hover, .socialbtns .fa-brands:hover, .socialbtns .fa-solid:hover {
  color: #ffffff;
  background-color: #323232;
  border: 1px solid #272727;
}
.socialbtns .fa-whatsapp {
  font-size: 24px;
  line-height: 14px;
}
.socialbtns .fa-whatsapp:hover {
  background-color: #25d366;
  border: 1px solid #115129;
}
.socialbtns .fa-facebook {
  font-size: 24px;
  line-height: 14px;
}
.socialbtns .fa-facebook:hover {
  background-color: #3b5998;
  border: 1px solid #1a2a4b;
}
.socialbtns .fab, .socialbtns .fa-brands, .socialbtns .fa-solid {
  width: 40px;
  height: 40px;
  color: #000;
  background-color: #FFF;
  border: 1px solid #000;
  padding-top: 12px;
  border-radius: 22px;
  -moz-border-radius: 22px;
  -webkit-border-radius: 22px;
  -o-border-radius: 22px;
}

b {
  font-weight: 500;
}

.footer {
  padding: 80px 0;
}

.form-floating input.form-control, .form-floating textarea.form-control {
  height: 20px !important;
  padding-bottom: 0 !important;
  line-height: 20px !important;
  min-height: 56px;
  padding-top: 13px !important;
  background: none;
  border: 1px solid #707070;
  border-radius: 0px;
}
.form-floating input.form-control:focus, .form-floating textarea.form-control:focus {
  box-shadow: none !important;
  border: 1px solid #707070;
}
.form-floating input.form-control:focus + label, .form-floating textarea.form-control:focus + label {
  background: none;
}

.form-floating textarea.form-control {
  height: 250px !important;
  padding-top: 25px !important;
}

.form-floating label {
  line-height: 22px;
  background: none;
}
.form-floating label::after {
  background-color: transparent !important;
}

.fixed-contact {
  position: fixed;
  left: 2.5rem;
  bottom: 100px;
  z-index: 999;
}

.fixed-contact.right {
  left: auto;
  right: 2.5rem;
}

.fixed-contact--wrap {
  position: relative;
  bottom: 0;
  margin-top: 80px;
  cursor: pointer;
}

.icon-btn-img {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1182fc;
}

.hotline-container .icon-btn-img {
  position: absolute;
  width: 34px;
  height: 34px;
  bottom: 3px;
  left: 3px;
  background-color: #25d366;
  border: 2px solid transparent;
}

.fixed-contact--wrap img {
  max-width: 100%;
  height: auto;
}

.cmoz-alo-circle {
  position: absolute;
  width: 50px;
  height: 50px;
  bottom: -5px;
  left: -5px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background-color: transparent;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border: 2px solid rgba(17, 130, 252, 0.8);
  opacity: 0.5;
}

.hotline-container .cmoz-alo-circle {
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid #25d366;
}

.cmoz-alo-circle.fill {
  width: 60px;
  height: 60px;
  bottom: -10px;
  left: -10px;
  background-color: rgba(17, 130, 252, 0.45);
  border: 2px solid transparent;
  opacity: 0.75;
}

.hotline-container .cmoz-alo-circle.fill {
  background-color: #dcf8c6;
}

.hotline-phone-ring {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: auto;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}

.hotline-phone-ring i {
  color: #fff;
}

.hotline-phone-ring-img-circle img {
  width: 20px;
  height: 20px;
}

.fixed-contact--wrap.zalo-container {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.hotline-bar {
  position: absolute;
  background: #25d366;
  height: 40px;
  width: 145px;
  line-height: 40px;
  padding: 0 10px;
  background-size: 100%;
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
  z-index: 9;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 50px !important;
  left: 0;
  bottom: 0;
}

.fixed-contact-buttons:hover .ring-alo-anim {
  animation: none !important;
}

.right .hotline-bar {
  left: auto;
  right: 0;
}

.right .hotline-phone-ring i {
  transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
}

.hotline-bar > .text-hotline {
  color: #fff;
  text-decoration: none;
  display: block;
  line-height: 40px;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hotline-bar {
    display: none;
  }
}
.animated_btn {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.zoomIn_btn {
  -webkit-animation-name: zoomIn_circle;
  animation-name: zoomIn_circle;
}

.zoomIn_btn--big {
  width: 80px;
  height: 80px;
  bottom: -20px;
  left: -20px;
  -webkit-animation: zoomIn_circle--big 1.2s infinite ease-in-out;
  animation: zoomIn_circle--big 1.2s infinite ease-in-out;
}

.pulse_btn {
  -webkit-animation-name: pulse_circle;
  animation-name: pulse_circle;
}

.pulse_btn--ring {
  -webkit-animation: pulse_circle--ring 2.3s infinite ease-in-out;
  animation: pulse_circle--ring 2.3s infinite ease-in-out;
}

.animated_btn.infinite {
  animation-iteration-count: infinite;
}

.ring-alo-anim {
  -webkit-animation: ring-alo-circle-anim 1s infinite ease-in-out;
  animation: ring-alo-circle-anim 1s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

@keyframes zoomIn_circle {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn_circle--big {
  0% {
    -webkit-transform: rotate(0) scale(0.5) skew(1deg);
    -webkit-opacity: 0.1;
  }
  30% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    -webkit-opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    -webkit-opacity: 0.1;
  }
}
@-webkit-keyframes pulse_circle {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse_circle {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes pulse_circle--ring {
  0% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
}
@-webkit-keyframes ring-alo-circle-anim {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
.page-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #111518;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.page-banner .page-map {
  margin-top: 20vh;
  display: flex;
  grid-gap: 10px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}
.page-banner .page-map li {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.page-banner .page-map li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
}
.page-banner .page-map li:last-child a {
  color: #ffffff;
}
.page-banner .contact-page-map {
  margin-top: 10vh;
}
.page-banner .page-name {
  font-weight: 700;
  font-size: 60px;
  margin-bottom: calc(50px + 20vh);
  margin-top: 30px;
}
.page-banner h5 {
  font-weight: 700;
  font-size: 35px;
}
.page-banner + .page-face {
  overflow: hidden;
  border-radius: 20px;
  width: 70vw;
  height: 40vh;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -20vh;
  margin-bottom: -90px;
  border: 1px solid #eaeaea;
  border-radius: 20px;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.1098039216);
}
.page-banner + .page-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-banner + .page-face .page-face-meta {
  width: 100%;
  height: 100%;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  text-align: center;
  padding: 0 9%;
  align-items: center;
}
.page-banner + .page-face .page-face-meta > div {
  display: flex;
  justify-content: center;
}
.page-banner + .page-face .page-face-meta a {
  color: #505c6b;
  text-decoration: none;
}
.page-banner + .page-face .page-face-meta .meta-first-section {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.page-banner + .page-face .page-face-meta .meta-first-section i {
  font-size: 50px;
  margin-right: 20px;
  color: #0b9180;
}
.page-banner + .page-face .page-face-meta .meta-second-section p {
  white-space: break-spaces;
  text-align: left;
  margin-left: 20px;
  font-size: 12px;
}
.page-banner + .page-face .page-face-meta .meta-second-section h4 {
  font-weight: 700;
  font-size: 21px;
  text-align: center;
  margin-bottom: 10px;
}

.page-banner.contact-page-banner + .page-face.contact-page-face {
  height: 20vh;
  top: -10vh;
}
.page-banner.contact-page-banner .page-name {
  margin-bottom: calc(50px + 10vh);
}

.about-content .services-inner h4 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
}
.about-content .services-inner ul {
  list-style-type: disc;
}
.about-content .services-inner ul li {
  margin-bottom: 25px;
  margin-left: 50px;
}
.about-content h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.6;
}
.about-content p {
  text-align: center;
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
  color: #505c6b;
}

.referances-area {
  margin-top: 80px;
}
.referances-area .referancesSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.referances-area .referancesSwiper .swiper-slide:hover img {
  filter: grayscale(0);
}
.referances-area .referancesSwiper img {
  height: 75px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.referances-area.home-referances {
  margin-bottom: 60px;
}
.referances-area.home-referances .section-title {
  margin-bottom: 70px;
}

.contact-content h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.6;
}
.contact-content p {
  text-align: center;
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
  color: #505c6b;
}
.contact-content .contact-form {
  background: #fff;
}
.contact-content .map iframe {
  max-height: 100% !important;
}
.contact-content .content-subsribe {
  margin-top: 0;
}

.big-section-title {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 20px rgba(86, 86, 86, 0.1294117647);
}
.big-section-title:hover::before {
  width: 25%;
  height: 85%;
}
.big-section-title:hover::after {
  width: 25%;
  height: 85%;
}
.big-section-title:hover .big-section-title-content {
  background: #f4f4f4;
}
.big-section-title::before {
  content: "";
  position: absolute;
  transition: 0.3s ease-in-out;
  z-index: 0;
  background: linear-gradient(90deg, rgb(8, 141, 124) 0%, rgb(13, 175, 154) 100%);
  top: -20px;
  left: -20px;
  width: 20%;
  height: 70%;
}
.big-section-title::after {
  content: "";
  position: absolute;
  transition: 0.3s ease-in-out;
  z-index: 0;
  background: linear-gradient(90deg, rgb(13, 175, 154) 0%, rgb(8, 141, 124) 100%);
  bottom: -20px;
  right: -20px;
  width: 20%;
  height: 70%;
}
.big-section-title .big-section-title-content {
  transition: 0.4s ease-in-out;
  width: 100%;
  height: 100px;
  border: 1px solid #c5c5c5;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px;
  z-index: 3;
  position: relative;
  font-size: 26px;
  font-weight: 600;
  font-family: "Playfair Display";
}

.content-subsribe {
  margin-top: 150px;
  background: #181c1f;
}
.content-subsribe .content-subsribe-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 90px 0;
  color: #fff;
}
.content-subsribe .content-subsribe-inner .subscription-area {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.content-subsribe .content-subsribe-inner .subscription-area > div {
  display: flex;
}
.content-subsribe .content-subsribe-inner .subscription-area .subs-response-area {
  width: 100%;
  text-align: center;
  display: none;
}
.content-subsribe .content-subsribe-inner .subscription-area #subscription-form form {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.content-subsribe .content-subsribe-inner h4 {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 30px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.content-subsribe .content-subsribe-inner input {
  background-color: rgb(0, 0, 0);
  border: none;
  padding: 14px 50px 14px 12px;
  color: #fff;
  font-weight: 300;
  width: 25vw;
  min-width: 250px;
  border-radius: 2px;
  height: 55px;
}
.content-subsribe .content-subsribe-inner input:active, .content-subsribe .content-subsribe-inner input:focus {
  outline: none;
}
.content-subsribe .content-subsribe-inner button {
  height: 55px;
  margin-left: 20px;
  padding: 0 40px;
}

.content h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.6;
}

.mt-10 {
  margin-top: 150px;
}

.products-content {
  min-height: 100vh;
}
.products-content .category-title {
  text-align: center;
  padding-top: 70px;
}
.products-content .category-title h1 {
  font-size: 40px;
  font-weight: 800;
}
.products-content .category-title + .products {
  padding-top: 20px;
}
.products-content .product-section-title {
  display: flex;
  justify-content: flex-end;
  color: #787878;
  margin-bottom: 20px;
}
.products-content .page-banner.products-page-banner .page-name {
  margin-bottom: calc(50px + 0vh);
}

.search-box {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: center;
  top: 0;
  padding-top: 40px;
  height: 100%;
  backdrop-filter: blur(12px);
  display: none;
  z-index: 4;
}
.search-box .close-search {
  border: none;
  background: none;
  color: #fff;
  width: 50%;
  line-height: 50px;
  height: 50px;
}
.search-box .close-search i {
  font-size: 20px;
  transition: 0.2s;
}
.search-box .search-form-area {
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-box .search-form-area form {
  position: relative;
}
.search-box .search-form-area form input {
  width: 40vw;
  height: 50px;
  border-radius: 9px;
  border: none;
  padding: 0 20px;
  border: 1px solid rgba(0, 0, 0, 0.2784313725);
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1490196078);
}
.search-box .search-form-area form input:active, .search-box .search-form-area form input:focus {
  outline: none;
}
.search-box .search-form-area form button {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  height: 100%;
  width: 10%;
}

.big-title {
  display: block;
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 90px;
  margin-top: 40px;
  letter-spacing: 1px;
}

.under-the-construction {
  width: 15%;
  margin-left: auto;
  display: block;
  margin-right: auto;
  filter: grayscale(33%);
}

.product-details-content {
  padding: 80px 0;
  min-height: 100vh;
}
.product-details-content .product-site-map ul {
  display: flex;
  grid-gap: 10px;
}
.product-details-content .product-site-map ul span {
  font-size: 10px;
  line-height: 14px;
}
.product-details-content .product-site-map ul li {
  font-size: 12px;
  text-transform: uppercase;
}
.product-details-content .product-site-map ul li a {
  text-decoration: none;
  color: #5B38ED;
}
.product-details-content .product-site-map ul li:last-child {
  color: #4d5d6d;
}
.product-details-content .product-details {
  display: grid;
  margin-top: 30px;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
}
.product-details-content .product-details .product-detail-face {
  background: #e6e6e6;
  padding: 80px;
  border-radius: 20px;
}
.product-details-content .product-details .product-detail-face img {
  width: 100%;
}
.product-details-content .product-details .product-detail-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-details-content .product-details .product-detail-text h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}
.product-details-content .product-details .product-detail-text p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #4d5d6d;
  line-height: 1.7;
}
.product-details-content .product-details .product-detail-text a {
  display: block;
  width: 100%;
}
.product-details-content .product-details .product-detail-text .category {
  display: flex;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #4d5d6d;
  padding-bottom: 7px;
}
.product-details-content .product-details .product-detail-text .category span {
  display: inline-block;
}
.product-details-content .product-details .product-detail-text .category a {
  color: black;
  margin-left: 10px;
  color: #5B38ED;
  text-decoration: none;
}

.btn-light-purple {
  background: #f5f6f8;
  color: #000;
  border: none;
  padding: 20px;
  transition: 0.2s;
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  text-decoration: none;
  text-align: center;
}
.btn-light-purple:hover {
  cursor: pointer;
  background: #4a29cf;
  color: #fff;
}

.videos-content .videos-page-banner h5 {
  margin-bottom: 20px;
}
.videos-content .videos-page-banner p {
  margin-bottom: calc(50px + 0vh);
}

.videos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  flex-direction: column;
  padding-top: 40px;
  grid-gap: 40px;
}
.videos .video-type {
  width: 100%;
  position: relative;
  margin: 20px auto 100px auto;
}
.videos .video-type .video-icon {
  position: absolute;
  left: 0;
  left: -35px;
}
.videos .video-type h4 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.parallax {
  background-image: url("./../media/parallax.png");
  min-height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.results {
  background: #f2f2f2;
  padding: 40px 0;
  min-height: 100vh;
}
.results .results-inner {
  width: 80%;
  grid-gap: 30px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.results .results-inner .result-type {
  display: flex;
  border: 1px solid #c3c3c3;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  text-decoration: none;
  color: #444;
  box-shadow: 1px 1px white;
  transition: 0.1s;
}
.results .results-inner .result-type .result-title {
  margin-bottom: 20px;
}
.results .results-inner .result-type .result-face img {
  height: 100px;
}
.results .results-inner .result-type:hover {
  box-shadow: 0px 0px 11px rgba(40, 40, 40, 0.0784313725);
}

.mr-auto {
  margin-right: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.g-recaptcha {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.mobile-langbar {
  align-items: center;
  grid-gap: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}
.mobile-langbar a {
  border-radius: 50%;
  overflow: hidden;
  object-fit: contain;
}
.mobile-langbar img {
  width: 40px;
  height: 40px;
}

/*# sourceMappingURL=style.css.map */
