/* width - 1920px  */
:root {
  --primary-color: #456dcd;
  --info-color: #6acdff;
  --dark-green-color: #779722;
  --dark-green-color-2: #445226;
  --dark-blue-color: #496472;
  --main-black-color: #191919;
}

@font-face {
  font-family: 'Gilroy-Regular';
  src: url("../fonts/Gilroy-Regular.ttf");
}

@font-face {
  font-family: 'Gilroy-Bold';
  src: url("../fonts/Gilroy-Bold.ttf");
}

@font-face {
  font-family: 'Gilroy-Black';
  src: url("../fonts/Gilroy-Black.ttf");
}

@font-face {
  font-family: 'Gilroy-Thin';
  src: url("../fonts/Gilroy-Thin.ttf");
}

body {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 14px;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
}

strong,
b {
  font-family: 'Gilroy-Bold', 'sanf-serif';
}

.mb-6 {
  margin-bottom: 4rem !important;
}

.mt-6 {
  margin-top: 4rem !important;
}

.mb-7 {
  margin-bottom: 5rem !important;
}

.mb-8 {
  margin-bottom: 6rem !important;
}

.mb-9 {
  margin-bottom: 7rem !important;
}

.mb-10 {
  margin-bottom: 12rem !important;
}

.dropdown-menu[data-bs-popper] {
  background: #3f67cb;
  border-color: #3f67cb;
}

.dropdown-item {
  color: white;
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: white;
  color: #0a58ca;
}

.text-paragraph {
  font-size: 16px;
  color: var(--main-black-color);
}

.text-heading {
  font-size: 74px;
  color: var(--main-black-color);
}

.currentColor {
  color: currentColor;
  fill: currentColor;
  stroke: currentColor;
}

.navbar-light .navbar-toggler {
  color: #3f67cc;
  border-color: rgba(0, 0, 0, 0.1);
  border: 2px solid #3f67cc;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 8px 12px;
}

#side-navigation {
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  min-height: 100vh;
  width: 300px;
  background: #3f67cc;
  color: #5a80df;
  overflow-y: scroll;
  z-index: 202;
  -webkit-transition: .4s;
  transition: .4s;
  left: -300px;
  padding-top: 12px;
}

#side-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#side-navigation ul>li>a {
  display: block;
  color: #fff;
  padding: 8px 15px;
  margin-bottom: 5px;
  border-bottom: 1px solid #5a80df;
}

#side-navigation.active {
  left: 0 !important;
}

#black-bg {
  display: none;
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
}

#black-bg.active {
  display: block;
}

#site-search {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  right: 0;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--main-black-color);
  font-family: 'Gilroy-Regular', sans-serif;
  overflow-y: auto;
  z-index: 202;
  -webkit-transition: .4s;
  transition: .4s;
  padding: 35px;
  padding-top: 10px;
}

#site-search .closebtn {
  position: absolute;
  top: 25%;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  right: 25%;
  font-size: 25px;
  color: #666;
}

#site-search .form {
  border-bottom: 2px solid #44caf0;
  font-size: 14px;
  font-family: 'Gilroy-Regular', sans-serif;
  text-align: center;
}

#site-search .form-control {
  text-align: center;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: auto;
  border-color: transparent;
  color: black;
  background: white;
  font-family: 'Gilroy-Thin', sans-serif;
  font-size: 24px;
  padding: 15px 35px;
}

#site-search .btn-submit-search {
  background: white;
}

#site-search .btn-submit-search svg {
  fill: #44caf0;
}

#site-search.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  top: 0 !important;
  opacity: 1;
  -webkit-transition: .4s;
  transition: .4s;
}

.btn {
  font-size: 14px;
}

.btn.btn-wide {
  padding: 14px 120px;
}

.btn.primary {
  color: var(--primary-color);
}

.btn.btn-search {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 42px;
  height: 42px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}

.btn.btn-search svg {
  fill: white;
}

.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-outline-primary {
  border-radius: 40px;
  padding: 8px 24px;
  font-family: 'Gilroy-Bold';
  color: var(--primary-color);
  border: 3px solid var(--primary-color);
}

.btn-outline-primary:hover {
  color: white;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-success {
  border-radius: 40px;
  padding: 8px 24px;
  font-family: 'Gilroy-Bold';
  border: 3px solid #c9f065;
  color: #68802a;
}

.btn-outline-success:hover {
  color: white;
  background-color: #c9f065;
  border-color: #c9f065;
}

.btn-success {
  border-radius: 40px;
  padding: 8px 24px;
  font-family: 'Gilroy-Bold';
  border: 3px solid #c9f065;
  background-color: #c9f065;
  color: white;
}

.btn-success svg {
  fill: white;
}

.btn-success:hover {
  border: 3px solid #c9f065;
  background-color: white;
  color: #c9f065;
}

.btn-success:hover svg {
  fill: #c9f065;
}

.btn-outline-info {
  border-radius: 40px;
  padding: 8px 24px;
  font-family: 'Gilroy-Bold';
  color: var(--info-color);
  border: 3px solid var(--info-color);
}

.btn-outline-info:hover {
  color: white;
  background-color: var(--info-color);
  border-color: var(--info-color);
}

.btn-outline-info:hover svg {
  fill: white;
}

.btn-outline-info svg {
  fill: var(--info-color);
}

.btn.btn-white {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 82px;
  padding-right: 112px;
  background-color: white;
  border-radius: 40px;
  color: var(--info-color);
  font-family: 'Gilroy-Bold';
  position: relative;
  font-size: 15px;
}

.btn.btn-white .btn-icon-wrapper {
  position: absolute;
  right: 14px;
  width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  border: 4px solid #b9eb7c;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

.btn.btn-white .btn-icon-wrapper svg {
  fill: #b9eb7c;
  -webkit-transition: color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out;
}

.btn.btn-white:hover {
  background-color: #b9eb7c;
  color: white;
}

.btn.btn-white:hover .btn-icon-wrapper {
  border-color: white;
}

.btn.btn-white:hover .btn-icon-wrapper svg {
  fill: white;
}

.btn.btn-abstract {
  padding: 0;
  position: relative;
}

.btn.btn-abstract svg {
  height: 20px;
  width: 38px;
  fill: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btn.btn-abstract .abstract-btn-bg-img-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.btn.btn-abstract:hover .abstract-btn-bg-img-2 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.btn.btn-abstract:focus, .btn.btn-abstract:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.breadcrumb-item {
  color: var(--main-black-color);
}

.pagination .page-item {
  margin-right: 8px;
}

.pagination .page-item .page-link {
  color: #333333;
  border-style: none;
  border-radius: 50% !important;
  padding: 0;
  width: 48px;
  height: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination .page-item.active .page-link {
  background: #a3d3e9;
  font-family: 'Gilroy-Bold', sans-serif;
}

.panel {
  border-radius: 25px;
  -webkit-box-shadow: 0px 73px 155px 0px rgba(174, 174, 174, 0.55);
  box-shadow: 0px 73px 155px 0px rgba(174, 174, 174, 0.55);
}

.panel.large {
  padding: 70px 200px;
}

.navbar .nav-icon {
  margin-top: -2px;
  margin-left: 6px;
}

.nav-item:focus,
.nav-link:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.navbar .dropdown-toggle::after {
  display: none;
}

.navbar-light .navbar-nav .nav-link.disabled svg {
  fill: rgba(0, 0, 0, 0.3);
}

.site-footer {
  border-radius: 40px 40px 0 0;
  padding: 40px 0 24px 0;
  position: relative;
  background-color: white;
  margin-top: 180px;
}

.site-footer::before {
  position: absolute;
  display: block;
  content: '';
  background: transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(65%, #d1effe));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #d1effe 65%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#d1effe", GradientType=1);
  width: 100%;
  height: 200px;
  bottom: calc(100% - 30px);
  z-index: -1;
}

.site-footer .footer-site-logo {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-bottom: 24px;
}

.site-footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.site-footer .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  padding-left: 0;
}

.site-footer .footer-nav li {
  padding: 8px;
}

.site-footer .footer-nav.right {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.site-footer .footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.index-layout+.site-footer {
  margin-top: -30px;
}

.parallax-slider-addon-img {
  position: absolute;
  top: 380px;
  right: 0;
  z-index: 2;
  max-height: 480px;
  -o-object-fit: cover;
  object-fit: cover;
}

#indexMainCarousel {
  -webkit-box-shadow: 0px 75px 73px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 75px 73px 0px rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  overflow: hidden;
}

#indexMainCarousel .carousel-item {
  border-radius: 50px;
}

#indexMainCarousel .carousel-caption {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#indexMainCarousel .carousel-title,
#indexMainCarousel .carousel-subtitle {
  font-size: 60px;
  text-align: left;
  color: var(--dark-green-color);
  text-transform: uppercase;
}

#indexMainCarousel .slider-background-circle {
  border: 12px solid white;
  border-radius: 50%;
  position: absolute;
  width: 440px;
  height: 440px;
  background-color: transparent;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

#indexMainCarousel .slider-hero-image {
  -webkit-transform: translate(0, 5%);
  transform: translate(0, 5%);
}

#indexMainCarousel .slider-action-btn {
  position: absolute;
  width: 180px;
  height: 170px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url("../img/slider-action-btn-bg.png");
  right: 0;
  bottom: 0;
  -webkit-transform: translate(60%, -5%);
  transform: translate(60%, -5%);
  font-family: 'Gilroy-Black';
  text-transform: uppercase;
  font-size: 17px;
  color: var(--dark-blue-color);
}

#indexMainCarousel .slider-action-btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#indexMainCarousel .slider-action-btn::after {
  content: '';
  background-position: center;
  background-image: url(../img/slider-action-btn-after-bg.png);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
  left: 6px;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#indexMainCarousel .slider-action-btn:hover {
  color: var(--dark-green-color);
}

#indexMainCarousel .slider-action-btn:hover::after {
  -webkit-transform: rotate(95deg) scale(1.1);
  transform: rotate(95deg) scale(1.1);
}

.stroked-header {
  color: #848484;
  -webkit-text-stroke-color: #848484;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 3px;
  font-size: 80px;
  font-family: 'Gilroy-Black';
}

.news-section {
  margin-bottom: 72px;
}

.col-news-category {
  margin-bottom: 32px;
}

.news-category-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  -webkit-box-shadow: 0px 75px 73px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 75px 73px 0px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.news-category-wrapper::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 50%;
  height: 100%;
  border-radius: 0 30px 30px 0;
  background-color: #79d2fe;
  opacity: 0.85;
  -webkit-transition: width 0.4s, background-color 0.4s;
  transition: width 0.4s, background-color 0.4s;
}

.news-category-wrapper .news-category-img {
  position: relative;
  z-index: -1;
}

.news-category-wrapper .news-category-details {
  position: absolute;
  padding: 32px 52px;
  text-align: left;
  color: white;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.news-category-wrapper .news-category-details .news-category-title {
  font-family: 'Gilroy-Black';
  font-size: 20px;
}

.news-category-wrapper .news-category-details .news-category-title::after {
  content: '';
  display: block;
  width: 21px;
  height: 3px;
  margin-top: 3px;
  background-color: white;
}

.news-category-wrapper .news-category-details .news-category-short-description {
  font-size: 12px;
}

.news-category-wrapper .news-category-details a.btn {
  color: white;
  text-decoration: underline;
  -webkit-text-decoration-color: rgba(255, 255, 255, 0.6);
  text-decoration-color: rgba(255, 255, 255, 0.6);
  font-family: 'Gilroy-Bold';
}

.news-category-wrapper:hover::after {
  width: 100%;
  background-color: #c9f064;
}

.news-category-wrapper:hover .news-category-details {
  color: var(--dark-green-color-2);
}

.news-category-wrapper:hover .news-category-details a.btn {
  color: var(--dark-green-color-2);
  -webkit-text-decoration-color: rgba(68, 82, 38, 0.6);
  text-decoration-color: rgba(68, 82, 38, 0.6);
}

.news-category-wrapper:hover .news-category-details .news-category-title::after {
  background-color: var(--dark-green-color-2);
}

.news-category-wrapper.is-vertical::after {
  width: 100%;
  height: 65%;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
  border-radius: 30px;
}

.news-category-wrapper.is-vertical .news-category-details {
  width: 100%;
  height: 65%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 32px 40px;
}

.news-category-wrapper.is-vertical .news-category-details .news-category-title {
  font-size: 22px;
}

.news-category-wrapper.is-vertical:hover::after {
  height: 100%;
}

.do-not-wait-section {
  position: relative;
  color: white;
  margin-bottom: 180px;
}

.do-not-wait-section .do-not-wait-section-bg-wrapper {
  position: relative;
  overflow: hidden;
}

.do-not-wait-section .do-not-wait-section-bg-wrapper::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #50bee6;
  opacity: 0.55;
}

.do-not-wait-section .do-not-wait-section-bg-wrapper .do-not-wait-section-bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
}

.do-not-wait-section .do-not-wait-section-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.do-not-wait-section .do-not-wait-section-text .do-not-wait-section-heading {
  font-family: 'Gilroy-Black';
  font-size: 94px;
  line-height: 1em;
  margin-bottom: 16px;
}

.do-not-wait-section .do-not-wait-section-text .do-not-wait-section-description {
  font-size: 16px;
}

.company-info-section {
  position: relative;
  margin-bottom: 320px;
}

.company-info-section::before {
  display: block;
  content: '';
  position: absolute;
  width: 369px;
  height: 499px;
  top: 50%;
  left: 0;
  background-image: url("../img/company-info-bg-left.png");
  -webkit-transform: translateY(-10%);
  transform: translateY(-10%);
}

.company-info-section::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 374px;
  height: 499px;
  background-image: url("../img/company-info-bg-right.png");
  -webkit-transform: translateY(-30%);
  transform: translateY(-30%);
}

.company-info-section .company-info-logo {
  margin-bottom: 48px;
}

.company-info-section .company-info-text {
  margin-bottom: 64px;
  color: #666666;
  padding: 0 62px;
}

.company-info-section .company-info-read-more-btn {
  display: block;
  color: #339966;
  font-size: 18px;
  font-family: 'Gilroy-Bold';
}

.stay-safe-section {
  position: relative;
  color: white;
  overflow: hidden;
}

.stay-safe-section::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #50bee6;
  opacity: 0.55;
}

.stay-safe-section .section-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
}

.stay-safe-section .section-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
}

.stay-safe-section .section-heading {
  font-family: 'Gilroy-Black';
  font-size: 94px;
  line-height: 1em;
  margin-bottom: 16px;
}

.stay-safe-section .section-description {
  font-size: 16px;
}

.products-section .section-title {
  font-size: 80px;
  text-align: center;
  font-family: 'Gilroy-Black', sans-serif;
  background: #c8f060;
  background: linear-gradient(126deg, #c8f060 0%, #75d1fe 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c8f060", endColorstr="#75d1fe", GradientType=1);
  color: white;
  -webkit-background-clip: text;
  -webkit-text-stroke: 8px transparent;
  letter-spacing: 6px;
}

.product-box {
  background: #75d0fd;
  border-radius: 50px;
  padding: 16px 24px;
  height: 420px;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 260px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  margin-bottom: 120px;
}

.product-box .product-img {
  position: absolute;
  top: 25%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product-box .product-name {
  font-size: 26px;
  font-family: 'Gilroy-Bold', sans-serif;
  color: white;
}

.product-box:hover {
  -webkit-transform: translateY(-15%);
  transform: translateY(-15%);
  background: #75d1fe;
  background: -webkit-gradient(linear, left bottom, left top, from(#75d1fe), to(#c8f060));
  background: linear-gradient(0deg, #75d1fe 0%, #c8f060 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#75d1fe", endColorstr="#c8f060", GradientType=1);
}

.product-box.outline-green {
  background: white;
  border: 4px solid #c8f060;
}

.product-box.outline-green .product-name {
  color: #576b22;
}

.product-box.outline-green:hover {
  background: #c8f060;
}

.how-to-protect-outselves-section {
  position: relative;
  text-align: center;
}

.how-to-protect-outselves-section .section-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.how-to-protect-outselves-section .section-heading,
.news-section .section-title {
  font-size: 62px;
  font-family: 'Gilroy-Black', sans-setif;
  color: #195780;
  padding: 42px 56px;
}

.layout-min-height {
  min-height: 670px;
}

.page-layout {
  min-height: 670px;
}

.page-layout .breadcrumb {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-layout .page-title {
  font-size: 120px;
  font-family: 'Gilroy-Black', sans-serif;
  background-image: url("../img/page-title-background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 56px;
  text-align: center;
}

.page-layout .text-paragraph {
  margin-bottom: 100px;
}

.about-us-layout .breadcrumb {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-us-layout .page-title {
  font-size: 180px;
  font-family: 'Gilroy-Black', sans-serif;
  background-image: url("../img/about-us-heading-background-1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  margin-bottom: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  display: block;
  -webkit-transform: translate(-50%, calc(-50% - 19px));
  transform: translate(-50%, calc(-50% - 19px));
}

.about-us-layout .page-title.title-overflow {
  text-transform: uppercase;
  font-size: 300px;
  margin: 82px 0;
  top: 0;
  left: 0;
  width: auto;
  white-space: nowrap;
  position: relative;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.about-us-layout .page-title.title-overflow::after {
  display: block;
  content: '';
  position: absolute;
  top: 40%;
  left: 0;
  height: 50%;
  width: 100%;
  background: rgba(40, 84, 198, 0.2);
  -webkit-filter: blur(30px);
  filter: blur(30px);
  z-index: -3;
}

.category-layout .breadcrumb {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.category-layout .page-title {
  font-family: 'Gilroy-Black', sans-serif;
  font-size: 54px;
  color: var(--main-black-color);
  text-align: center;
}

.category-layout .coming-soon-wrapper {
  text-align: center;
}

.category-layout .coming-soon-wrapper .coming-soon-heading {
  font-size: 98px;
  color: var(--main-black-color);
}

.category-layout .coming-soon-wrapper .coming-soon-text {
  font-size: 16px;
  color: var(--main-black-color);
}

.product-details-layout .breadcrumb {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product-details-layout #productDetailsCarousel {
  margin-top: 24px;
}

.product-details-layout #productDetailsCarousel .carousel-indicators [data-bs-target] {
  background-color: var(--main-black-color);
}

.product-details-layout .product-top-section {
  position: relative;
  text-align: center;
  padding: 20px;
  margin-bottom: 48px;
}

.product-details-layout .product-top-section::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/product-details-main-background.png");
  z-index: -3;
}

.product-details-layout .product-top-section .product-img-wrapper::before {
  display: block;
  content: '';
  position: absolute;
  background-image: url("../img/product-details-bg-overlay-1.png");
  width: 411px;
  height: 386px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -2;
}

.product-details-layout .product-top-section .product-img-wrapper::after {
  display: block;
  content: '';
  position: absolute;
  background-image: url("../img/product-details-bg-overlay-2.png");
  width: 419px;
  height: 440px;
  top: 50%;
  left: 51%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.product-details-layout .product-slogan {
  font-size: 34px;
  font-family: 'Gilroy-Regular', sans-serif;
  text-transform: uppercase;
}

.product-details-layout .product-description {
  font-size: 18px;
  padding: 0 60px;
}

.product-details-layout .heading-related {
  font-size: 32px;
  font-family: 'Gilroy-Black', sans-serif;
  margin-bottom: 42px;
}

.news-layout .page-title {
  font-family: 'Gilroy-Black', sans-serif;
  font-size: 54px;
  color: var(--main-black-color);
  margin-bottom: 0;
  line-height: 1;
}

.news-layout .page-subtitle {
  font-family: 'Gilroy-Thin', sans-serif;
  font-size: 48px;
  color: var(--main-black-color);
}

.news-category-layout .category-information .category-name {
  font-family: 'Gilroy-Black', sans-serif;
  font-size: 36px;
  color: var(--main-black-color);
}

.news-category-layout .category-information .category-description {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 16px;
  color: var(--main-black-color);
}

.blog-post-box {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog-post-box .blog-post-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.blog-post-box .blog-post-img-wrapper::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #cae531;
  opacity: 0.7;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
}

.blog-post-box .blog-post-img-wrapper:hover::after {
  width: 100%;
}

.blog-post-box .blog-post-short-description {
  color: #333333;
  font-size: 16px;
}

.blog-post-box .btn {
  font-family: 'Gilroy-Bold', sans-serif;
  font-size: 20px;
  color: #333333;
  padding: 0;
}

.blog-post-box .btn span {
  position: relative;
}

.blog-post-box .btn span::after {
  display: block;
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.55);
  bottom: 0;
  left: 0;
}

.blog-post-box .btn svg {
  fill: #333333;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.blog-post-box .btn:hover span::after {
  content: none;
}

.blog-post-box .btn:hover svg {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.blog-post-layout .blog-post-details-img {
  border-radius: 30px;
}

.blog-post-layout .blog-post-details-wrapper {
  margin-bottom: 72px;
}

.blog-post-layout .blog-post-details-wrapper .blog-post-title {
  font-size: 54px;
  font-family: 'Gilroy-Black', sans-serif;
  color: var(--main-black-color);
}

.blog-post-layout .blog-post-details-wrapper .blog-post-img {
  border-radius: 30px;
}

.blog-post-layout .blog-post-details-wrapper .blog-post-long-description {
  font-size: 16px;
  color: var(--main-black-color);
}

.blog-post-layout .post-author-wrapper {
  margin-bottom: 64px;
}

.blog-post-layout .post-author-wrapper .avatar-wrapper img {
  border-radius: 50%;
}

.blog-post-layout .post-author-wrapper .author-info {
  font-size: 16px;
  color: var(--main-black-color);
}

.blog-post-layout .post-author-wrapper .author-name {
  font-size: 20px;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: #5e5e5e;
}

.blog-post-layout .post-author-wrapper .btn {
  border-radius: 0;
}

.blog-post-layout .read-more-heading {
  font-family: 'Gilroy-Black', sans-serif;
  color: var(--main-black-color);
  font-size: 24px;
}

.blog-post-layout .site-footer {
  margin-top: 220px;
}

.google-maps-wrapper {
  border-radius: 20px;
  overflow: hidden;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.75;
}

.google-maps-wrapper iframe {
  width: 100%;
  height: 610px;
}

.contacts-layout .page-title {
  font-size: 180px;
  font-family: 'Gilroy-Black', sans-serif;
  line-height: 1;
  display: inline-block;
  background-color: #c8f060;
  background-image: linear-gradient(126deg, #c8f060 0%, #75d1fe 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c8f060", endColorstr="#75d1fe", GradientType=1);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  margin-left: 56px;
  margin-top: -70px;
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}

.contacts-layout .contact-information {
  border-top: 2px solid #070809;
  border-bottom: 2px solid #070809;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts-layout .form-heading {
  font-size: 48px;
  font-family: 'Gilroy-Black', sans-serif;
}

.contacts-layout .form-control {
  padding: 30px 34px;
  border-radius: 0;
  border-color: black;
}

.contacts-layout .form-control::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
}

.contacts-layout .form-control:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
}

.contacts-layout .form-control::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
}

.contacts-layout .form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
}

.contacts-layout .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: black;
}

.contacts-layout .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: black;
}

.contacts-layout .form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: black;
}

.contacts-layout .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: black;
}

.contacts-layout .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: black;
}

.contacts-layout .btn.btn-wide {
  width: auto;
  padding: 26px 226px;
  font-family: 'Gilroy-Black', sans-serif;
  font-size: 28px;
  color: white;
  text-decoration: underline;
  background: #c8f060;
  background: linear-gradient(126deg, #c8f060 0%, #75d1fe 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c8f060", endColorstr="#75d1fe", GradientType=1);
  background-repeat: no-repeat;
}

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

.search-layout .page-title {
  font-family: 'Gilroy-Black', sans-serif;
  font-size: 54px;
  color: var(--main-black-color);
  margin-bottom: 0;
  line-height: 1;
}