/*#region ----------------- X) General */
@import url(../css/fontiran.css);
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none !important;
}

body {
  font-family: IRANYEKAN !important;
  font-weight: 300;
  direction: rtl;
  margin: 0;
  background-color: #fff;
  text-align: right;
}

html {
  scroll-behavior: smooth;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
strong,
span,
p {
  font-family: IRANYEKAN !important;
}

h1 {
  font-weight: bold;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 25px;
}

b,
strong {
  font-weight: bolder;
}

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

nav {
  display: block;
}

a {
  text-decoration: none !important;
}

img {
  vertical-align: middle;
  border-style: none;
  font-size: 13px;
  font-weight: 300;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

::-moz-selection {
  background-color: #31383e;
  color: white;
}

::selection {
  background-color: #31383e;
  color: white;
}

/*#endregion -------------- X) General */
/*#region ----------------- Buttons Styles */
.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  border-color: transparent;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-width: 170px;
}

.btn::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -50%;
  width: 200px;
  height: 250px;
  -webkit-transform: rotate(45deg) translate(50%, -50%);
  transform: rotate(45deg) translate(50%, -50%);
  background-color: rgba(194, 194, 194);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}

.btn:hover,
.btn:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn:hover::before,
.btn:focus::before {
  right: 40px;
  -webkit-transform: rotate(45deg) translate(50%, -50%);
  transform: rotate(45deg) translate(50%, -50%);
}

.btn:hover .fi,
.btn:focus .fi {
  margin-left: 10px;
}

.btn .fi {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  line-height: 0 !important;
  position: relative;
  top: 3px;
  right: 0;
  margin: 0 8px;
}

.btn-primary {
  background-color: #31383e;
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #31383e;
  border-color: #31383e;
}

.btn-primary-outline {
  background-color: transparent;
  color: #f2b500;
  border-color: #f2b500;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus {
  background-color: #f2b500;
  color: white;
}

.btn-secondary {
  background-color: #454548;
  color: white;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #2c2c2e;
  color: white;
}

.btn-secondary-outline {
  background-color: transparent;
  color: #454548;
  border-color: #454548;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  background-color: #454548;
  color: white;
}

.btn-link.color-secondary {
  color: #454548;
}

.btn-link:hover {
  color: #39393b;
}

.btn-side-collapse {
  text-align: right;
  position: relative;
  font-size: 16px;
  color: #212529;
  background-color: transparent;
  border: none;
  padding: 0.5rem 0;
}

.btn-side-collapse::before {
  content: "\f227";
  font-family: "uicons-regular-rounded";
  font-size: 20px;
  line-height: 0;
  position: relative;
  top: 6px;
}

.btn-side-collapse.collapsed::before {
  content: "\f24d";
}

.btn-side-collapse.no-icon::before {
  content: "";
}

.btn-side-collapse:hover {
  color: #f2b500;
}

/*#endregion -------------- Buttons Styles */
/*#region ----------------- Animation */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes swipeup {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes swipeup {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes swipleft {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes swipleft {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes swipeupsmall {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes swipeupsmall {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes swipeRightsmall {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes swipeRightsmall {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes shake-shake {
  0% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  20% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  40% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  60% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  80% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes shake-shake {
  0% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  20% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  40% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  60% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  80% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

/*#endregion -------------- Animation */
/*#region ----------------- Default Title */
.default-title {
  text-align: center;
  padding: 3rem 0 2rem 0;
  position: relative;
}

.default-title h2 {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #444;
}

.default-title p {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.default-title.green h2 {
  color: #f2b500;
}

.default-title::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 120px;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  width: 70px;
  height: 1px;
  border-radius: 20px;
  background-color: #f2b500;
}

.default-title.right {
  text-align: right;
}

.default-title.right::before {
  right: 0;
  -webkit-transform: unset;
  transform: unset;
}

.default-title.dark h2 {
  color: #444;
}

.default-title.dark p {
  color: #909294;
}

.default-title.dark::before {
  background-color: #fec210;
}

@media (max-width: 992px) {
  .default-title h2 {
    font-size: 20px;
  }
  .default-title p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .default-title h2 {
    font-size: 18px;
  }
  .default-title p {
    font-size: 12px;
  }
}

/*#endregion -------------- Default Title */
/*#region ----------------- Navbar */
.myNavbar {
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  -webkit-box-shadow: 0 3px 15px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 300;
}

.myNavbar.scroll-navbar {
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.myNavbar.scroll-navbar.transparent {
  background-color: #fff;
  -webkit-box-shadow: 0 5px 20px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px -3px rgba(0, 0, 0, 0.1);
}

.myNavbar.scroll-navbar.transparent .header-inner .logo a .logo-text {
  color: #777;
}

.myNavbar.scroll-navbar.transparent .header-inner .mobile-links .btn-mobile-menu .fi {
  color: #777;
}

.myNavbar.scroll-navbar.transparent .header-inner .menu-list-content .link {
  color: #777;
}

.myNavbar.scroll-navbar.transparent .header-inner .menu-list-content .link .fi {
  color: #777;
}

.myNavbar.scroll-navbar.transparent .header-inner .menu-list-content .link:hover {
  color: #777;
}

.myNavbar.scroll-navbar.transparent .header-inner .menu-list-content .link:hover .fi {
  color: #777;
}

.myNavbar.transparent {
  background-color: #fff;
  -webkit-box-shadow: 0 5px 20px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px -3px rgba(0, 0, 0, 0.1);
}

.myNavbar.transparent .header-inner .logo a .logo-text {
  color: #777;
}

.myNavbar.transparent .header-inner .mobile-links .btn-mobile-menu .fi {
  color: #777;
}

.myNavbar.transparent .menu-list-content .link {
  color: #777;
}

.myNavbar.transparent .menu-list-content .link .fi {
  color: #777;
}
.myNavbar.transparent .menu-list-content .link .fi-rr-home {
  font-size: 18px;
}

.myNavbar.transparent .menu-list-content .link:hover {
  color: #f2b500;
}

.myNavbar.transparent .menu-list-content .link:hover .fi {
  color: #f2b500;
}

.myNavbar .header-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px auto;
  grid-template-columns: 120px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.myNavbar .header-inner .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.myNavbar .header-inner .logo a img {
  height: 45px;
}

.myNavbar .header-inner .logo a .logo-text {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  color: #777;
}

.myNavbar .header-inner .links {
  margin-right: auto;
}

.myNavbar .header-inner .mobile-links {
  display: none;
}

.myNavbar .header-inner .mobile-links .btn-mobile-menu {
  background-color: transparent;
  border: none;
  width: 40px;
  height: 40px;
  padding: 0;
}

.myNavbar .header-inner .mobile-links .btn-mobile-menu .fi {
  font-size: 28px;
  position: relative;
  top: 5px;
  color: #121619;
}

.menu-list-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 100%;
}

.menu-list-content .menu-item {
  height: 100%;
  position: relative;
}

.menu-list-content .menu-item:hover .menu-list {
  display: block;
}

.menu-list-content .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 28px 15px;
  font-size: 17px;
  font-weight: 500;
  color: #121619;
  height: 100%;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.menu-list-content .link .fi {
  margin: 0 5px;
  font-size: 18px;
  color: #121619;
  display: inline-block;
  line-height: 0;
}

.menu-list-content .link:hover {
  color: whitesmoke;
}

.menu-list-content .link:hover .fi {
  color: whitesmoke;
}

.menu-list-content .menu-list {
  display: none;
  position: absolute;
  right: 0;
  top: 76px;
  min-width: 180px;
  white-space: nowrap;
  background-color: white;
  -webkit-box-shadow: 0 5px 20px rgba(80, 80, 80, 0.15);
  box-shadow: 0 5px 20px rgba(80, 80, 80, 0.15);
}

.menu-list-content .sub-link {
  display: block;
  padding: 12px 15px 12px 30px;
  font-size: 14px;
  font-weight: 400;
  color: #121619;
  position: relative;
}

.menu-list-content .sub-link .fi {
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #909294;
}

.menu-list-content .sub-link:hover {
  color: #f2b500;
}

.menu-list-content .sub-link:hover .fi {
  color: #f2b500;
}

.menu-list-content .sub-menu-item {
  position: relative;
}

.menu-list-content .sub-menu-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 90%;
  top: 0;
  /* min-width: 180px; */
  background-color: white;
  -webkit-box-shadow: 0 5px 20px rgba(80, 80, 80, 0.15);
  box-shadow: 0 5px 20px rgba(80, 80, 80, 0.15);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.menu-list-content .sub-menu-item li .menu-list {
  top: 45px;
}

.menu-list-content .sub-menu-item li:hover .menu-list-lvl-2 {
  visibility: visible;
  opacity: 1;
  right: 100%;
}

.menu-list-content .sub-menu-item:hover > .menu-list {
  visibility: visible;
  opacity: 1;
  right: 100%;
}

@media (max-width: 992px) {
  .myNavbar .header-inner {
    -ms-grid-columns: 60px auto;
    grid-template-columns: 60px auto;
  }
  .myNavbar .header-inner .links {
    display: none;
  }
  .myNavbar .header-inner .mobile-links {
    display: block;
  }
  .myNavbar .header-inner .logo {
    text-align: left;
  }
  .myNavbar .header-inner .logo a {
    display: inline-block;
    margin: 0 auto;
  }
}

/*#endregion -------------- Navbar */
/*#region ----------------- Header Background */
.header-background {
  height: 80vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header-background.mini-background {
  height: 70vh;
}

.header-background.mini-background .image-slide {
  height: 70vh;
}

.header-background .background {
  background-color: #0000;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.header-background .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header-background .image-slide {
  width: 100%;
  height: 80vh;
  position: relative;
}

.header-background .image-slide .img-inner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.header-background .image-slide .img-inner::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.header-background .image-slide .img-inner .text {
  text-align: center;
  padding: 0 2rem;
  width: 80%;
  margin: 0 auto;
}

.header-background .image-slide .img-inner .text h1 {
  font-size: 36px;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
  display: inline-block;
}

.header-background .image-slide .img-inner .text p {
  margin-bottom: 0;
  line-height: 28px;
  font-size: 17px;
  font-weight: 400;
  color: white;
  opacity: 0.8;
}

@media (max-width: 1199px) {
  .header-background {
    height: 70vh;
  }
  .header-background .image-slide {
    height: 70vh;
  }
}

@media (max-width: 992px) {
  .header-background {
    height: 60vh;
  }
  .header-background .image-slide {
    height: 60vh;
  }
  .header-background .image-slide .img-inner .text {
    width: 90%;
  }
  .header-background .image-slide .img-inner .text h1 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .header-background {
    height: 50vh;
  }
  .header-background .image-slide {
    height: 50vh;
  }
  .header-background .image-slide .img-inner .text h1 {
    font-size: 26px;
  }
  .header-background .image-slide .img-inner .text p {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .header-background .image-slide .img-inner .text h1 {
    font-size: 22px;
  }
}

/*#endregion -------------- Header Background */
/*#region ----------------- Category */
.big-category-section {
  position: relative;
  z-index: 200;
  padding-bottom: 3rem;
}

.category-mini {
  padding-bottom: 2rem;
}

.category-mini .grid-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.category-mini .grid-layout .grid-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  width: 20%;
}

.category-mini .section-inner {
  position: relative;
}

.category-mini.have-top-margin {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .big-category-section {
    top: 0;
    padding-top: 2rem;
  }
  .category-mini .grid-layout .grid-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
  }
}

/*#endregion -------------- Category */
/*#region ----------------- Download Application */
.download-application {
  background-color: #fff;
  -webkit-box-shadow: 0 5px 20px -3px rgba(0, 0, 0, 0);
  box-shadow: 0 5px 20px -3px rgba(0, 0, 0, 0.2);
  padding: 5rem 0 3rem 0;
  position: relative;
  z-index: 10;
}

.download-application .image-cover .img-inner {
  width: 88%;
  margin-left: auto;
}

.download-application .image-cover .img-inner img {
  width: 100%;
}

.download-application .info-tabs {
  margin-top: 1.5rem;
}

.download-application .information .nav-pills .nav-link {
  min-width: 100px;
  background-color: rgba(255, 255, 255, 0.4);
  color: #505050;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 10px;
  padding: 25px 10px 20px 10px;
  font-size: 14px;
  border-radius: 0;
  position: relative;
}

.download-application .information .nav-pills .nav-link::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: -12px;
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  border-style: solid;
  border-width: 14px 10px 0 10px;
  border-color: transparent transparent transparent transparent;
}

.download-application .information .nav-pills .nav-link .icon {
  width: 40px;
  height: 40px;
  color: #f2b500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: gray;
}

.download-application .information .nav-pills .nav-link .icon .fi {
  font-size: 38px;
}

.download-application .information .nav-pills .nav-link.active {
  background-color: white;
}

.download-application .information .nav-pills .nav-link.active::before {
  border-color: white transparent transparent transparent;
}

.download-application .information .nav-pills .nav-link.active .icon {
  color: #f2b500;
}

.download-application .property {
  margin-top: 2rem;
}

.download-application .property p {
  font-size: 18px;
  font-weight: 400;
  color: #444;
}

.download-application .property ul {
  list-style: disc;
  padding-right: 40px;
}

.download-application .property ul li {
  font-size: 17px;
  font-weight: 400;
  color: #444;
  opacity: 0.9;
  margin-bottom: 10px;
}

.download-background {
  position: relative;
  background-color: #454548;
  height: 100vh;
}

.download-background::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
}

.download-background .bg-image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.download-background .section-inner {
  position: relative;
  z-index: 50;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 550px auto;
  grid-template-columns: 550px auto;
  padding-top: 150px;
}

.download-background .grid-image {
  position: relative;
}

.download-background .grid-image .img-inner {
  width: 80%;
  margin: 0 auto;
}

.download-background .grid-image .img-inner img {
  width: 100%;
}

.download-background .grid-info {
  padding-top: 70px;
}

.download-background .grid-info .text-inner h1 {
  font-size: 2rem;
  color: white;
  margin-bottom: 30px;
}

.download-background .grid-info .text-inner p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.download-background .grid-info .text-inner .button-group {
  margin-top: 30px;
}

.application-row-section {
  position: relative;
}

.application-row-section.bg-primary {
  background-color: #f2b500 !important;
}

.application-row-section.bg-primary .text-info h2 {
  color: #121619;
}

.application-row-section.bg-primary .text-info p {
  color: #505050;
}

.application-row-section.have-before {
  position: relative;
}

.application-row-section.have-before::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  box-shadow: 5px 30px 15px rgba(0, 0, 0, 0.16);
}

.application-row-section.padding {
  padding: 5rem 0 5rem 0;
}

.application-row-section.max-width .container-lg {
  max-width: 100%;
  margin: 0;
}

.application-row-section.max-width .img-content .img-inner {
  width: 100%;
}

.application-row-section.bg-white .text-info h2 {
  color: #121619;
}

.application-row-section.bg-white .text-info p {
  color: #505050;
}

.application-row-section .text-info {
  position: relative;
  z-index: 50;
}

.application-row-section .text-info h2 {
  color: white;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 30px;
}

.application-row-section .text-info p {
  font-size: 15px;
  font-weight: 400;
  text-align: justify;
  color: rgba(255, 255, 255, 0.8);
}

.application-row-section .text-info .buttons-group {
  margin-top: 2rem;
}

.application-row-section .text-info .buttons-group .btn-img-link {
  margin: 10px;
  display: inline-block;
}

.application-row-section .text-info .buttons-group .btn-img-link img {
  height: 50px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0.7;
}

.application-row-section .text-info .buttons-group .btn-img-link:hover img {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  opacity: 1;
}

.application-row-section .img-content {
  position: relative;
  z-index: 50;
}

.application-row-section .img-content .img-inner {
  width: 400px;
  margin: 0 auto;
}

.application-row-section .img-content .img-inner img {
  width: 100%;
}

.application-row-section .img-content.pos-top {
  position: relative;
  top: 50px;
}

.application-row-section .download-bg {
  background-image: url(../images/background/programy_confx_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.application-row-section .cong-bg {
  background-image: url(../images/background/programy_narzedzia_wspierajace_icon.png);
  background-repeat: no-repeat;
  background-size: 500px;
  background-position: 90% -50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

@media (max-width: 1199px) {
  .download-background .section-inner {
    -ms-grid-columns: 420px auto;
    grid-template-columns: 420px auto;
  }
  .download-background .grid-image .img-inner {
    margin: 0 0 0 auto;
  }
  .download-background .grid-info .text-inner h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .download-background .grid-info .text-inner p {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .download-application::before {
    width: 60px;
  }
  .download-application::after {
    width: 80px;
    height: 160px;
    top: -80px;
  }
  .download-background {
    height: 100%;
  }
  .download-background .section-inner {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    padding-top: 120px;
  }
  .download-background .grid-image {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .download-background .grid-image .img-inner {
    margin: 0 auto;
    width: 400px;
  }
  .download-background .grid-info {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-top: 0;
    padding-bottom: 40px;
    text-align: center;
  }
  .application-row-section {
    padding-top: 3rem;
  }
  .application-row-section .text-info {
    text-align: center;
  }
  .application-row-section .text-info h2 {
    font-size: 20px;
  }
  .application-row-section .text-info p {
    text-align: center;
  }
  .application-row-section .text-info .buttons-group .btn-img-link img {
    opacity: 1;
  }
  .application-row-section .img-content {
    margin: 1rem 0;
  }
  .application-row-section .img-content .img-inner {
    width: 300px;
  }
  .application-row-section .cong-bg {
    background-size: 350px;
    background-position: 100% 100%;
  }
}

@media (max-width: 768px) {
  .download-application::before {
    width: 40px;
    height: 200px;
  }
  .download-application::after {
    width: 50px;
    height: 100px;
    top: -50px;
  }
  .download-application .image-cover {
    margin-top: 1.5rem;
  }
  .download-application .image-cover .img-inner {
    width: 300px;
    margin: 0 auto;
  }
  .download-application .image-cover .img-inner img {
    width: 100%;
  }
  .download-application .information .nav-pills .nav-link {
    font-size: 12px;
    min-width: 90px;
    padding: 15px 5px 15px 5px;
  }
  .download-application .information .nav-pills .nav-link .icon {
    width: 34px;
    height: 34px;
  }
  .download-application .information .nav-pills .nav-link .icon .fi {
    font-size: 28px;
  }
  .download-background .grid-image .img-inner {
    width: 300px;
  }
  .application-row-section .text-info h2 {
    font-size: 18px;
  }
  .application-row-section .text-info p {
    font-size: 14px;
  }
  .application-row-section .img-content .img-inner {
    width: 250px;
  }
}

@media (max-width: 575px) {
  .download-background .grid-image .img-inner {
    width: 250px;
  }
}

@media (max-width: 380px) {
  .download-application .image-cover .img-inner {
    width: 220px;
  }
}

/*#endregion -------------- Download Application */
/*#region ----------------- Blogs Styles */
.blog-index-section {
  padding: 2rem 0;
}

.blog-index-section .section-inner {
  position: relative;
}

.blog-index-section .more-blogs {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-details {
  margin: 2.5rem 0;
}

.blog-details .grid-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 320px;
  grid-template-columns: auto 320px;
}

.blog-details .grid-main {
  padding-left: 40px;
}

.blog-details .grid-side-filter .grid-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}

.blog-details .blog-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.blog-details .blog-info .item {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 30px;
}

.blog-details .blog-info .item .fi {
  font-size: 16px;
  display: inline-block;
  position: relative;
  top: 3px;
  margin-left: 5px;
  color: rgba(255, 255, 255, 0.5);
}

.blog-details .blog-description {
  margin-top: 1rem;
}

.blog-details .blog-description .img-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 0px;
  position: relative;
  margin: 0;
}

.blog-details .blog-description .img-container .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.blog-details .blog-description .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.blog-details .blog-description .description {
  margin: 2rem 0;
}

.blog-details .blog-description .description p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 28px;
  text-align: justify;
}

.blog-details .blog-description .description .img-inner {
  width: 500px;
  margin: 2rem auto;
}

.blog-details .blog-description .description .img-inner img {
  width: 100%;
}

@media (max-width: 1400px) {
  .blog-details .grid-layout {
    -ms-grid-columns: auto 300px;
    grid-template-columns: auto 300px;
  }
  .blog-details .blog-description .img-container {
    height: 400px;
  }
}

@media (max-width: 1199px) {
  .blog-details .blog-description .img-container {
    height: 350px;
  }
}

@media (max-width: 992px) {
  .blog-details .grid-layout {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .blog-details .grid-main {
    padding: 0 0 30px 0;
  }
  .blog-details .blog-description .description p {
    font-size: 14px;
  }
}

@media (max-width: 557px) {
  .blog-details .blog-description .img-container {
    height: 300px;
  }
  .blog-details .blog-description .description p {
    font-size: 13px;
  }
  .blog-details .blog-description .description .img-inner {
    width: 100%;
  }
}

/*#endregion -------------- Blogs Styles */
/*#region ----------------- Sidebar Mobile Menu */
#sidebar-menu {
  width: 350px;
  position: fixed;
  top: 0;
  right: -400px;
  height: 100vh;
  z-index: 2002;
  background: white;
  -webkit-box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

#sidebar-menu.active {
  right: 0;
  opacity: 1;
}

#sidebar-menu .sidebar-header {
  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;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

#sidebar-menu .sidebar-header .sidebar-close .btn-close-menu {
  width: 45px;
  height: 45px;
  color: rgba(0, 0, 0, 0.7);
  background-color: transparent;
  border: none;
  padding: 0;
}

#sidebar-menu .sidebar-header .sidebar-close .btn-close-menu .fi {
  font-size: 24px;
  position: relative;
  top: 4px;
}

#sidebar-menu .sidebar-header .sidebar-close .btn-close-menu:hover {
  color: #f2b500;
}

#sidebar-menu .sidebar-header .sidebar-logo a {
  display: block;
}

#sidebar-menu .sidebar-header .sidebar-logo a img {
  height: 40px;
}

#sidebar-menu .sidebar-header .sidebar-logo a .logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #121619;
  margin-bottom: 0;
  text-transform: uppercase;
}

#sidebar-menu .category-list {
  display: none;
}

#sidebar-menu .category-list .item a {
  padding: 11px 20px;
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #121619;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-bottom: 1px solid #ddd;
}

#sidebar-menu .category-list .item a .fi {
  position: absolute;
  left: 20px;
  color: #f2b500;
}

#sidebar-menu .category-list .item a:hover {
  color: #f2b500;
  padding-right: 30px;
  background-color: rgba(80, 80, 80, 0.1);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#sidebar-menu .collapse-item {
  position: relative;
}

#sidebar-menu .collapse-item .btn {
  width: 100%;
  padding: 12px 24px;
  text-align: right;
  font-size: 14px;
  border-radius: 0;
  background-color: transparent;
  border: none;
  color: #f2b500;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#sidebar-menu .collapse-item .btn:hover,
#sidebar-menu .collapse-item .btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: rgba(80, 80, 80, 0.1);
}

#sidebar-menu .collapse-item .btn:hover::before,
#sidebar-menu .collapse-item .btn:focus::before {
  display: none;
}

#sidebar-menu .collapse-item .btn .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2b500;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#sidebar-menu .collapse-item .btn .icon .fi {
  font-size: 16px;
  right: 0;
}

#sidebar-menu .collapse-item .btn.collapsed {
  color: #121619;
  padding: 0 20px;
  height: 45px;
  border-bottom: 1px solid #ddd;
}
#sidebar-menu .collapse-item .btn.collapsed.collapsed .icon {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

#sidebar-menu .collapse-item .btn.collapsed .icon {
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: #121619;
}
#sidebar-menu .collapse-item .btn.collapsed .icon .fi {
  top: 0;
}

#sidebar-menu .collapse-item .card {
  padding: 15px 15px 15px 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.2);
}

#sidebar-menu .collapse-item .card ul li:hover .name {
  color: #f2b500;
}

#sidebar-menu .collapse-item .card ul li a {
  display: block;
  padding: 6px 0;
}

#sidebar-menu .collapse-item .card ul li .name {
  font-size: 14px;
  font-weight: 400;
  color: #212529;
}

#sidebar-menu .collapse-item .card ul li .desc {
  margin-right: 10px;
  font-size: 12px;
  font-weight: 400;
  color: #505050;
}

#sidebar-menu .collapse-item .card ul li .fi {
  font-size: 18px;
  position: relative;
  top: 5px;
  color: #595959;
}
#sidebar-menu .collapse-item .card ul li .fi::before {
  display: inline-block;
  transform: rotate(-90deg);
}

#sidebar-menu .collapse-item .card ul li a.collapsed .fi::before {
  transform: rotate(0);
}
#sidebar-menu .collapse-item .card ul li .sub-col-menu li a {
  font-size: 13px;
  padding-right: 30px;
  color: #505050;
}

.overlay-back {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2001;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.overlay-back.active {
  display: block;
  opacity: 1;
}

@media (max-width: 992px) {
  #sidebar-menu .category-list {
    display: block;
  }
}

@media (max-width: 400px) {
  #sidebar-menu {
    width: 100%;
  }
}

/*#endregion -------------- Sidebar Mobile Menu */
/*#region ----------------- Cards */
.cards-list-content {
  display: -ms-grid;
  display: grid;
}

.cards-list-content.grid-5 {
  -ms-grid-columns: 20% 20% 20% 20% 20%;
  grid-template-columns: 20% 20% 20% 20% 20%;
}

.cards-list-content.grid-4 {
  -ms-grid-columns: 25% 25% 25% 25%;
  grid-template-columns: 25% 25% 25% 25%;
}

.cards-list-content.grid-3 {
  -ms-grid-columns: 33.33% 33.33% 33.33%;
  grid-template-columns: 33.33% 33.33% 33.33%;
}

.card-category {
  margin-bottom: 20px;
}

.card-category .card-inner {
  padding: 0px;
  display: block;
}

.card-category .card-inner .img-container {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  margin: -11px 0 0 0;
}

.card-category .card-inner .img-container .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.card-category .card-inner .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.card-category .card-inner .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
  font-size: 20px;
  font-weight: 400;
  padding: 20px;
  color: #fff;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.card-category .card-inner .overlay .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.card-category .card-inner .overlay .icon .fi {
  font-size: 38px;
  color: #f2b500;
  line-height: 0;
  display: inline-block;
}
.card-category .card-inner .overlay .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-category .card-inner .overlay .icon svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  fill: #f2b500;
}
.card-category .card-inner .overlay h6 {
  font-size: 17px;
  margin-bottom: 20px;
}
.card-category .card-inner .overlay .btn::before {
  display: none;
}
.card-category .card-inner .overlay .btn {
  background-color: #787878;
  padding: 0.6rem 1.2rem 0.8rem 1rem;
  overflow: unset;
}
.card-category .card-inner .overlay .btn .fi {
  margin: 0 8px 0 0;
  font-size: 20px;
  line-height: 0;
  display: inline-block;
  position: relative;
  top: 6px;
}

.card-blog {
  padding: 0 5px;
  margin-bottom: 2rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card-blog .card-inner {
  background-color: #ffffff;
  border-radius: 5px;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  display: block;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.card-blog .cover-container {
  width: 100%;
  height: 210px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  margin: 0;
}

.card-blog .cover-container .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.card-blog .cover-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.card-blog .info {
  padding: 15px;
}

.card-blog .info .title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.9);
  line-height: 30px;
  min-height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-blog .info .desc {
  font-size: 13px;
  font-weight: 400;
  min-height: 75px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-blog .date {
  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;
  border-radius: 0 0 10px 10px;
  margin-bottom: 10px;
}

.card-blog .date .eye {
  color: #909294;
}

.card-blog .date .eye .fi {
  font-size: 14px;
  margin-left: 3px;
  position: relative;
  top: 2px;
}

.card-blog .date .eye span {
  font-size: 12px;
}

.card-blog .date .day {
  font-size: 12px;
  color: #909294;
}

.card-mini-category {
  margin-bottom: 2rem;
  text-align: center;
}

.card-mini-category .card-inner {
  display: inline-block;
  margin: 0 auto;
}

.card-mini-category .img-container .img-inner {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.card-mini-category .img-container .img-inner img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
}

.card-mini-category .name {
  margin-top: 15px;
}

.card-mini-category .name h2 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  color: #121619;
}

.card-property {
  padding: 10px;
}

.card-property .card-inner {
  overflow: hidden;
  padding: 50px 15px;
  background-color: #121619;
  position: relative;
  border-radius: 3px;
}

.card-property .icon {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 60px;
}

.card-property .icon .fi {
  color: rgba(242, 181, 0, 0.3);
}

.card-property .text {
  text-align: center;
}

.card-property .text h2 {
  margin-bottom: 0;
  font-size: 18px;
  color: #f2b500;
}

.card-support {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 400px;
}

.card-support::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.card-support .card-inner {
  padding: 2rem 5rem;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.card-support p {
  font-size: 14px;
  font-weight: 400;
  color: white;
}

.card-support .buttons-group {
  margin-top: 2rem;
}

.card-support .buttons-group .btn {
  background-color: white;
  color: #121619;
}

.card-video {
  padding: 10px;
}

.card-video .card-inner {
  background-color: #1e2225;
  padding: 7px;
  cursor: pointer;
}

.card-video .img-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 0;
  position: relative;
  margin: 0;
}

.card-video .img-container .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.card-video .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.card-video .play-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.card-video .play-overlay .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(242, 181, 0, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.card-video .play-overlay .icon .fi {
  color: white;
  font-size: 24px;
  line-height: 0;
  display: inline-block;
}

.card-video .info {
  padding: 1rem;
  text-align: center;
}

.card-video .info h3 {
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-video:hover .img-container .img-inner img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.card-video:hover .info h3 {
  color: #f2b500;
}

.card-software {
  margin-bottom: 1.5rem;
}

.card-software .card-inner {
  position: relative;
  background-color: #121619;
}

.card-software .bg-image {
  width: 350px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.card-software .bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(18, 22, 25, 0.5)), to(#121619));
  background: linear-gradient(90deg, rgba(18, 22, 25, 0.5) 0%, #121619 100%);
}

.card-software .info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50px auto;
  grid-template-columns: 50px auto;
  padding: 1rem;
  position: relative;
  z-index: 20;
}

.card-software .info .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f2b500;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.card-software .info .icon .fi {
  font-size: 24px;
  line-height: 0;
  display: inline-block;
}

.card-software .info .text {
  padding-right: 1.5rem;
}

.card-software .info .text h2 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.card-software .info .text p {
  font-size: 14px;
  font-weight: 300;
  text-align: justify;
  color: rgba(255, 255, 255, 0.8);
}

.card-software .info .text .button-download {
  text-align: left;
}

@media (max-width: 1199px) {
  .cards-list-content.grid-4 {
    -ms-grid-columns: 33.33% 33.33% 33.33%;
    grid-template-columns: 33.33% 33.33% 33.33%;
  }
}

@media (max-width: 992px) {
  .card-category .card-inner .img-container {
    height: 180px;
  }
  .card-category .card-inner .overlay {
    font-size: 14px;
  }
  .card-mini-category {
    margin-bottom: 1.5rem;
  }
  .card-mini-category .img-container .img-inner {
    width: 100px;
    height: 100px;
  }
  .card-mini-category .img-container .img-inner img {
    border-width: 3px;
  }
  .card-mini-category .name {
    margin-top: 8px;
  }
  .card-mini-category .name h2 {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .cards-list-content.grid-4,
  .cards-list-content.grid-3 {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
  }
  .card-mini-category {
    margin-bottom: 1rem;
  }
  .card-mini-category .img-container .img-inner {
    width: 90px;
    height: 90px;
  }
  .card-mini-category .img-container .img-inner img {
    border-width: 3px;
  }
  .card-mini-category .name {
    margin-top: 8px;
  }
  .card-mini-category .name h2 {
    font-size: 11px;
  }
  .card-video .img-container {
    height: 150px;
  }
  .card-video .play-overlay .icon {
    width: 40px;
    height: 40px;
  }
  .card-video .play-overlay .icon .fi {
    font-size: 18px;
  }
  .card-video .info h3 {
    font-size: 11px;
  }
  .card-software .bg-image {
    width: 250px;
  }
}

@media (max-width: 575px) {
  .card-mini-category {
    margin-bottom: 0.5rem;
  }
  .card-mini-category .img-container .img-inner {
    width: 70px;
    height: 70px;
  }
  .card-mini-category .img-container .img-inner img {
    border-width: 2px;
  }
  .card-mini-category .name {
    margin-top: 8px;
  }
  .card-mini-category .name h2 {
    font-size: 10px;
  }
  .card-video {
    padding: 5px;
  }
  .card-video .img-container {
    height: 120px;
  }
  .card-video .play-overlay .icon {
    width: 36px;
    height: 36px;
  }
  .card-video .play-overlay .icon .fi {
    font-size: 16px;
  }
  .card-video .info h3 {
    font-size: 10px;
  }
  .card-software .bg-image {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .card-category .card-inner .overlay {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .card-mini-category .img-container .img-inner {
    width: 50px;
    height: 50px;
  }
  .card-mini-category .img-container .img-inner img {
    border-width: 2px;
  }
  .card-mini-category .name {
    margin-top: 6px;
  }
  .card-mini-category .name h2 {
    font-size: 8px;
  }
  .card-video .img-container {
    height: 100px;
  }
  .card-video .play-overlay .icon {
    width: 32px;
    height: 32px;
  }
  .card-video .play-overlay .icon .fi {
    font-size: 12px;
  }
  .card-video .info h3 {
    font-size: 9px;
  }
}

@media (max-width: 350px) {
  .cards-list-content.grid-4 {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .cards-list-content.grid-4 .card-category {
    padding: 10px;
  }
}

/*#endregion -------------- Cards */
/*#region ----------------- Carousel */
.swiper.swiper-products,
.swiper.swiper-blogs,
.swiper.swiper-category {
  padding: 20px 0;
  position: unset;
}

.slider-index {
  margin-top: 100px;
}

.swiper-index .swiper-pagination {
  bottom: 50px !important;
}

.swiper-index .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.swiper-index .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: white;
  opacity: 1;
}

.swiper-index .swiper-button-prev,
.swiper-index .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 0.7;
}

.swiper-index .swiper-button-prev::after,
.swiper-index .swiper-button-next::after {
  font-size: 24px;
  color: white;
}

.swiper-index .swiper-button-prev:hover,
.swiper-index .swiper-button-next:hover {
  opacity: 1;
}

.swiper-index .swiper-button-prev.swiper-button-disabled,
.swiper-index .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
}

.swiper-index.swiper-rtl .swiper-button-next {
  left: 5% !important;
  z-index: 100;
}

.swiper-index.swiper-rtl .swiper-button-prev {
  right: 5% !important;
  z-index: 100;
}

.swiper-blogs .swiper-button-prev,
.swiper-blogs .swiper-button-next,
.swiper-category .swiper-button-prev,
.swiper-category .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 0.8;
  background-color: white;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.swiper-blogs .swiper-button-prev::after,
.swiper-blogs .swiper-button-next::after,
.swiper-category .swiper-button-prev::after,
.swiper-category .swiper-button-next::after {
  font-size: 18px;
  color: #121619;
}

.swiper-blogs .swiper-button-prev:hover,
.swiper-blogs .swiper-button-next:hover,
.swiper-category .swiper-button-prev:hover,
.swiper-category .swiper-button-next:hover {
  opacity: 1;
}

.swiper-blogs .swiper-button-prev.swiper-button-disabled,
.swiper-blogs .swiper-button-next.swiper-button-disabled,
.swiper-category .swiper-button-prev.swiper-button-disabled,
.swiper-category .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
}

.swiper-blogs.swiper-rtl .swiper-button-next,
.swiper-category.swiper-rtl .swiper-button-next {
  left: -15px !important;
  z-index: 100;
}

.swiper-blogs.swiper-rtl .swiper-button-prev,
.swiper-category.swiper-rtl .swiper-button-prev {
  right: -15px !important;
  z-index: 100;
}

.swiper-category .card-mini-category {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .swiper-index.swiper-rtl .swiper-button-next {
    left: 10px !important;
    z-index: 100;
  }
  .swiper-index.swiper-rtl .swiper-button-prev {
    right: 10px !important;
    z-index: 100;
  }
  .swiper-blogs.swiper-rtl .swiper-button-next,
  .swiper-category.swiper-rtl .swiper-button-next {
    left: -5px !important;
  }
  .swiper-blogs.swiper-rtl .swiper-button-prev,
  .swiper-category.swiper-rtl .swiper-button-prev {
    right: -5px !important;
  }
}

@media (max-width: 768px) {
  .swiper-slider-index .swiper-button-prev::after,
  .swiper-slider-index .swiper-button-next::after {
    font-size: 20px;
  }
  .swiper-slider-index.swiper-rtl .swiper-button-prev {
    right: 0;
  }
  .swiper-slider-index.swiper-rtl .swiper-button-next {
    left: 0;
  }
  .swiper-slider-index .swiper-pagination-bullets {
    bottom: 10px !important;
  }
  .swiper-blogs .swiper-button-next,
  .swiper-blogs .swiper-button-prev,
  .swiper-category .swiper-button-next,
  .swiper-category .swiper-button-prev {
    width: 34px;
    height: 34px;
  }
  .swiper-blogs .swiper-button-next::after,
  .swiper-blogs .swiper-button-prev::after,
  .swiper-category .swiper-button-next::after,
  .swiper-category .swiper-button-prev::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .swiper-blogs .swiper-button-next,
  .swiper-blogs .swiper-button-prev,
  .swiper-category .swiper-button-next,
  .swiper-category .swiper-button-prev {
    width: 28px;
    height: 28px;
  }
  .swiper-blogs .swiper-button-next::after,
  .swiper-blogs .swiper-button-prev::after,
  .swiper-category .swiper-button-next::after,
  .swiper-category .swiper-button-prev::after {
    font-size: 12px;
  }
}

/*#endregion -------------- Carousel */
/*#region ----------------- Footer */
.footer {
  background-color: #121619;
  padding: 5rem 0 0 0;
  position: relative;
}

.footer .footer-inner {
  padding-bottom: 40px;
}

.footer .footer-inner .logo-content {
  padding: 0 0 0 20px;
}

.footer .footer-inner .logo-content .logo a {
  display: inline-block;
}

.footer .footer-inner .logo-content .logo h5 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
}

.footer .footer-inner .logo-content .desc {
  margin-top: 1.5rem;
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  text-align: justify;
  color: rgba(255, 255, 255, 0.5);
}

.footer .footer-inner .address {
  margin: 2rem 0;
}

.footer .footer-inner .address ul li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px auto;
  grid-template-columns: 40px auto;
  margin-top: 10px;
}

.footer .footer-inner .address ul li span {
  display: block;
}

.footer .footer-inner .address ul li .icon {
  font-size: 16px;
  position: relative;
  top: 3px;
  color: white;
}

.footer .footer-inner .address ul li .text {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.footer .footer-inner .social-icons ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.footer .footer-inner .social-icons ul li {
  margin-left: 10px;
}

.footer .footer-inner .social-icons ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #f2b500;
  border-radius: 50%;
  padding: 10px;
}

.footer .footer-inner .social-icons ul li a svg {
  width: 100%;
  fill: white;
}

.footer .footer-inner .social-icons ul li a:hover {
  background-color: #454548;
}

.footer .footer-inner .quick-links {
  padding: 0 10px;
}

.footer .footer-inner .quick-links h5 {
  font-size: 18px;
  font-weight: 800;
  color: white;
}

.footer .footer-inner .quick-links ul {
  margin-top: 1.5rem;
}

.footer .footer-inner .quick-links ul li {
  margin-top: 10px;
}


.footer .footer-inner .quick-links ul li a:hover {
  color: #f2b500;
  padding-right: 10px;
}

.footer .copyright {
  text-align: center;
  padding: 15px;
  background-color: #f2b500;
  font-size: 12px;
  font-weight: 400;
  color: white;
}

@media (max-width: 992px) {
  .footer .footer-inner .logo-content {
    margin-bottom: 1.5rem;
  }
  .footer .footer-inner .logo-content .logo a {
    text-align: center;
  }
  .footer .footer-inner .logo-content .social-icons {
    margin-bottom: 3rem;
  }
  .footer .footer-inner .logo-content .social-icons ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer .footer-inner .logo-content .social-icons ul li {
    margin: 0 8px;
  }
  .footer .footer-inner .quick-links {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer .newsletter .news-inner {
    width: 100%;
    padding: 20px;
  }
}

/*#endregion -------------- Footer */
/*#region ----------------- Footer */
.footer {
  background-color: #464646;
  padding: 5rem 0 0 0;
  position: relative;
}

.footer .footer-inner {
  padding-bottom: 40px;
}

.footer .footer-inner .logo-content {
  padding: 0 0 0 20px;
}

.footer .footer-inner .logo-content .logo a {
  display: inline-block;
}

.footer .footer-inner .logo-content .logo h5 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.footer .footer-inner .logo-content .desc {
  margin-top: 1.5rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  text-align: justify;
  color: rgba(255, 255, 255, 0.5);
}

.footer .footer-inner .address {
  margin: 2rem 0;
}

.footer .footer-inner .address ul li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px auto;
  grid-template-columns: 40px auto;
  margin-top: 10px;
}

.footer .footer-inner .address ul li span {
  display: block;
}

.footer .footer-inner .address ul li .icon {
  font-size: 16px;
  position: relative;
  top: 3px;
  color: #9e9e9e;
}

.footer .footer-inner .address ul li .text {
  font-size: 13px;
  font-weight: 400;
  color: #9e9e9e;
}

.footer .footer-inner .social-icons ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.footer .footer-inner .social-icons ul li {
  margin-left: 10px;
}

.footer .footer-inner .social-icons ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #f2b500;
  border-radius: 50%;
  padding: 10px;
}

.footer .footer-inner .social-icons ul li a svg {
  width: 100%;
  fill: #fff;
}

.footer .footer-inner .social-icons ul li a:hover {
  background-color: #454548;
}

.footer .footer-inner .quick-links {
  padding: 0 10px;
}

.footer .footer-inner .quick-links h5 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.footer .footer-inner .quick-links ul {
  margin-top: 1.5rem;
}

.footer .footer-inner .quick-links ul li {
  margin-top: 10px;
}

.footer .footer-inner .quick-links ul li a {
  font-size: 15px;
  font-weight: 400;
  display: block;
  color: #9e9e9e;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .footer-inner .quick-links ul li a:hover {
  color: #f2b500;
  padding-right: 10px;
}

.footer .copyright {
  text-align: center;
  padding: 15px;
  background-color: #464646;
  font-size: 12px;
  font-weight: 400;
  color: #9e9e9e;
}

@media (max-width: 992px) {
  .footer .footer-inner .logo-content {
    margin-bottom: 1.5rem;
  }
  .footer .footer-inner .logo-content .logo a {
    text-align: center;
  }
  .footer .footer-inner .logo-content .social-icons {
    margin-bottom: 3rem;
  }
  .footer .footer-inner .logo-content .social-icons ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer .footer-inner .logo-content .social-icons ul li {
    margin: 0 8px;
  }
  .footer .footer-inner .quick-links {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer .newsletter .news-inner {
    width: 100%;
    padding: 20px;
  }
}

/*#endregion -------------- Footer */
/*#region ----------------- Products Styles */
.products-row-list-section {
  margin-top: 2rem;
}

.products-row-list-section .section-inner {
  overflow: hidden;
  position: relative;
}

.products-row-list-section .grid-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.products-row-list-section .grid-layout::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.products-row-list-section .grid-layout.right .grid-image .img-container {
  left: -120px;
}

.products-row-list-section .grid-layout.left .grid-image .img-container {
  right: -120px;
}

.products-row-list-section .grid-layout.color-primary {
  background-color: #f2b500;
}

.products-row-list-section .grid-layout.color-primary::before {
  background-color: #f2b500;
}

.products-row-list-section .grid-layout.color-primary .grid-text {
  background-color: #f2b500;
}

.products-row-list-section .grid-layout.color-primary .grid-text .title {
  color: #121619;
}

.products-row-list-section .grid-layout.color-primary .grid-text .text {
  color: rgba(0, 0, 0, 0.6);
}

.products-row-list-section .grid-layout.color-secondary::before {
  background-color: #ffff;
}

.products-row-list-section .grid-layout.color-secondary .grid-text {
  background-color: #ffff;
}

.products-row-list-section .grid-layout.color-secondary .grid-text .title {
  color: #454548;
}

.products-row-list-section .grid-layout.color-secondary .grid-text .text {
  color: rgba(45, 45, 48, 0.7);
}

.products-row-list-section .grid-layout.have-padding {
  padding: 4rem 0;
}

.products-row-list-section .grid-image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
}

.products-row-list-section .grid-image .img-container {
  position: relative;
}

.products-row-list-section .grid-image .img-container img {
  width: 100%;
  border: 5px solid white;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.2);
  border-radius: 4%;
}

.products-row-list-section .grid-text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
}

.products-row-list-section .grid-text .title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

.products-row-list-section .grid-text .text p {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
}

.products-details {
  margin: 4rem 0;
}

.products-details .section-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 400px auto;
  grid-template-columns: 400px auto;
}

.products-details .product-image .img-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.products-details .product-image .img-inner img {
  width: 100%;
  border: 5px solid white;
  border-radius: 10px;
}

.products-details .product-info {
  padding: 20px 40px 20px 0;
}

.products-details .product-info h1 {
  font-size: 30px;
  font-weight: 700;
  color: #31383e;
  margin-bottom: 1rem;
}

.products-details .product-info p {
  font-size: 16px;
  font-weight: 400;
  line-height: 35px;
  color: rgba(31, 38, 3e, 0.8);
}

.products-details .product-info .buttons-group {
  margin-top: 1.5rem;
}

.products-property {
  margin: 5rem 0 3rem 0;
}

.products-property .list-of-property {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.products-property .list-of-property .card-property {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  width: 25%;
}

.support-content .grid-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
}

.products-preview-section .secition-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px auto;
  grid-template-columns: 300px auto;
  grid-template-areas: "detailsCategory detailsGridLayout";
}

.products-preview-section .catergory {
  grid-area: detailsCategory;
}

.products-preview-section .grid-layout {
  grid-area: detailsGridLayout;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  grid-template-areas: "productDetails" "previewImage" "tabsSection";
  padding-right: 40px;
}

.products-preview-section .preview-images-group {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: previewImage;
  width: 400px;
}

.products-preview-section .swiper-slide .image-item .img-inner {
  border: 2px solid #e2e2e2;
  border-radius: 2px;
  display: block;
}
.lightbox {
  padding-top: 30px !important;
  height: 100%;
  overflow: auto;
}

.products-preview-section .swiper-slide .image-item img {
  width: 100%;
  border-radius: 5px;
}

.products-preview-section .images-thumbs {
  margin-top: 10px;
}

.products-preview-section .images-thumbs .image-item {
  cursor: pointer;
}

.products-preview-section .images-thumbs .image-item:hover .img-inner {
  border-color: #f2b500;
}

.products-preview-section .product-details {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: productDetails;
  padding: 10px 0;
  margin: 0;
}

.products-preview-section .product-details .details-inner .name {
  font-size: 30px;
  font-weight: 500;
  color: #212529;
  margin-bottom: 20px;
}

.products-preview-section .product-details .details-inner .desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 28px;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.products-preview-section .product-details .details-inner .property {
  margin: 1.5rem 0;
}

.products-preview-section .product-details .details-inner .property li {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.products-preview-section .product-details .details-inner .property li .fi {
  font-size: 16px;
  margin-left: 10px;
  color: white;
  display: inline-block;
  position: relative;
  top: 2px;
}

.products-preview-section .product-details .phone-number {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.products-preview-section .product-details .phone-number h6 {
  margin-bottom: 0;
  margin-left: 20px;
  font-size: 14px;
  color: white;
}

.products-preview-section .product-details .phone-number span {
  color: white;
  display: block;
  width: 20px;
}

.products-preview-section .catergory .cat-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.swiper-image-thumbs .swiper-pagination {
  display: none;
}

.swiper-image-thumbs .swiper-pagination-bullet {
  background-color: white;
}

.swiper-image-thumbs .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #f2b500;
}

.tabs-section {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: tabsSection;
  margin-top: 14px;
  padding-left: 30px;
}

.tabs-section .nav-tabs {
  border: none;
}

.tabs-section .nav-link {
  background-color: #ebe9eb;
  border: none;
  border-top: 1px solid #d3ced2;
  border-left: 1px solid #d3ced2;
  border-bottom: 1px solid #d3ced2;
  border-right: 1px solid #d3ced2;
  border-radius: 2px;
  color: #345187;
  font-size: 14px;
  padding: 1rem 2rem;
}

.tabs-section .nav-link.active {
  background-color: #fff;
  border-top-color: #d3ced2;
  border-left-color: #d3ced2;
  border-right-color: #d3ced2;
  color: #515151;
}

.tabs-section .nav-link:hover {
  border-left-color: #121619;
}

.tabs-section .nav-link .fi {
  margin-left: 8px;
  font-size: 18px;
  line-height: 0;
  display: inline-block;
  position: relative;
  top: 4px;
}

.tabs-section .tab-content {
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.tabs-section .tab-content .tab-inner {
  padding: 2rem;
}

.tabs-section .tab-content p {
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  color: #212529;
}

.tabs-section .tab-content ul {
  margin: 1.5rem 0;
  list-style: disc;
  padding-right: 2rem;
}

.tabs-section .tab-content ul li {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #212529;
}

.tabs-section .tab-content .btn {
  margin: 20px 10px;
}

.tabs-section .tab-content .img-container {
  width: 500px;
  margin: 2rem 0;
}

.tabs-section .tab-content .img-container img {
  width: 100%;
}

.tabs-section .sub-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs-section .sub-nav .nav-link {
  border-top: none;
  border-bottom: 3px solid transparent;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.4);
  padding: 1rem;
}

.tabs-section .sub-nav .nav-link.active {
  border-bottom-color: #f2b500;
  color: #f2b500;
}

@media (max-width: 1400px) {
  .products-preview-section .grid-layout {
    /* -ms-grid-columns: 300px auto; */
    /* grid-template-columns: 300px auto; */
  }
}

@media (max-width: 1199px) {
  .products-preview-section .secition-inner {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    grid-template-areas: "detailsGridLayout" "detailsCategory";
  }
  .products-preview-section .grid-layout {
    padding-right: 0;
  }
  .products-preview-section .product-details {
    padding-left: 0;
  }
  .tabs-section {
    padding: 0 0 30px 0;
  }
}

@media (max-width: 992px) {
  .products-row-list-section .grid-layout.right .grid-text,
  .products-row-list-section .grid-layout.left .grid-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    padding: 1rem;
  }
  .products-row-list-section .grid-layout.right .grid-image,
  .products-row-list-section .grid-layout.left .grid-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }
  .products-row-list-section .grid-layout.right .grid-image .img-container,
  .products-row-list-section .grid-layout.left .grid-image .img-container {
    position: relative;
    left: 0;
    right: 0;
  }
  .products-row-list-section .grid-layout.right .grid-image .img-container img,
  .products-row-list-section .grid-layout.left .grid-image .img-container img {
    width: 100%;
  }
  .products-row-list-section .grid-layout.left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .products-row-list-section .grid-layout.right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .products-preview-section .preview-images-group {
    margin: 0 auto;
    width: 300px;
  }
  .products-preview-section .preview-images-group .images-thumbs {
    display: none;
  }
  .products-preview-section .product-details {
    text-align: center;
  }
  .tabs-section .tab-content .tab-inner {
    padding: 1.5rem;
  }
  .tabs-section .nav-link {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .tabs-section .sub-nav {
    margin-top: 0.5rem;
  }
  .swiper-image-thumbs {
    padding-bottom: 40px !important;
  }
  .swiper-image-thumbs .swiper-pagination {
    display: block;
  }
}

@media (max-width: 575px) {
  .products-preview-section .preview-images-group {
    width: 90%;
    margin: 0 auto;
  }
  .tabs-section .tab-content .tab-inner {
    padding: 1rem;
  }
  .tabs-section .tab-content .img-container {
    width: 100%;
  }
  .tabs-section .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0.6rem 1rem;
    font-size: 12px;
  }
  .tabs-section .nav-link .fi {
    margin: 0 0 10px 0;
    font-size: 16px;
  }
  .tabs-section .sub-nav {
    margin-top: 1rem;
  }
  .tabs-section .sub-nav .nav-link {
    padding: 0.6rem;
  }
}

/*#endregion -------------- Products Styles */
/*#region ----------------- Breadcrumb */
.breadcrumb-section {
  margin-top: 68px;
}

.breadcrumb-section .bg-image {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.breadcrumb-section .bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.67);
}

.breadcrumb-section .section-inner {
  padding: 5rem 0;
  position: relative;
  z-index: 50;
  text-align: center;
}

.breadcrumb-section .section-inner h1 {
  font-size: 38px;
  margin-bottom: 0;
  font-weight: 350;
  color: white;
}

.breadcrumb-section .section-inner p {
  margin: 1rem 0 0 0;
  font-size: 14px;
  font-weight: 400;
  color: white;
}

.my-breadcrumb {
  margin: 100px 0 30px 0;
}

.my-breadcrumb .breadcrumb-item {
  font-size: 13px;
  font-weight: 400;
}

.my-breadcrumb .breadcrumb-item a {
  color: #aab5c9;
}

.my-breadcrumb .breadcrumb-item.active {
  color: #cdcdcd;
}

@media (max-width: 992px) {
  .breadcrumb-section {
    margin-top: 55px;
  }
  .breadcrumb-section .section-inner {
    padding: 4rem 0;
  }
  .breadcrumb-section .section-inner h1 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .breadcrumb-section {
    margin-top: 55px;
  }
  .breadcrumb-section .section-inner {
    padding: 3rem 0;
  }
  .breadcrumb-section .section-inner h1 {
    font-size: 18px;
  }
}

/*#endregion -------------- Breadcrumb */
/*#region ----------------- Video List Section */
.video-list-section {
  margin: 3rem 0;
}

.video-list-section .grid-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px auto;
  grid-template-columns: 320px auto;
}

.video-list-section .grid-side-filter .grid-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}

.video-list-section .grid-main {
  padding-right: 30px;
}

.video-list-section .grid-main .title {
  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;
}

.video-list-section .grid-main .title h2 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.video-list-section .grid-main .title .sort .form-select {
  background-color: #454548;
  border-color: white;
  border-radius: 50px;
  font-size: 13px;
  color: white;
  padding: 10px 20px 10px 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.video-list-section .cards-list-content {
  margin-top: 2rem;
}

.side-box {
  background-color: #f7f7f7;
  padding: 1rem;
}

.side-box .box-header {
  margin-bottom: 1rem;
}

.side-box .box-header h2 {
  font-size: 30px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0;
}

.side-box .sub-list-items {
  background-color: rgba(255, 255, 255, 0.05);
}

.side-box .sub-list-items ul {
  padding: 10px 35px 10px 10px;
}

.side-box .sub-list-items ul li a {
  padding: 5px 0;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(34, 51, 87, 0.8);
}

.side-box .sub-list-items ul li a:hover {
  color: #f2b500;
}

.side-box .sub-list-items ul li.active a {
  color: #f2b500;
}

.side-box .links-list {
  padding: 0 10px;
}

.side-box .links-list li {
  padding: 5px 15px 5px 0;
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 23px;
  text-align: justify;
  margin-bottom: 10px;
  position: relative;
}

.side-box .links-list li::before {
  content: "\f152";
  font-family: "uicons-regular-rounded";
  position: absolute;
  top: 5px;
  right: -5px;
  color: white;
}

.side-box .links-list li a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.side-box .links-list li a:hover {
  color: #f2b500;
}

@media (max-width: 1199px) {
  .video-list-section .grid-layout {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .video-list-section .grid-side-filter {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .video-list-section .grid-main {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0 0 30px 0;
  }
}

/*#endregion -------------- Video List Section */
/*#region ----------------- Pagination */
.my-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 3rem 0;
}

.my-pagination .pagination {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.my-pagination .pagination .next .page-link,
.my-pagination .pagination .prev .page-link {
  padding: 2px 10px;
}

.my-pagination .pagination .page-item.active .page-link {
  background-color: #f2b500;
  color: white;
}

.my-pagination .pagination .page-link {
  background-color: #121619;
  border-radius: 10px;
  margin: 5px;
  font-weight: 600;
  color: white;
  border-color: transparent;
  min-width: 37px;
  height: 37px;
  padding: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.my-pagination .pagination .page-link:hover {
  background-color: #f2b500;
}

.my-pagination .pagination .page-link .fi {
  position: relative;
  display: inline-block;
  top: 4px;
}

/*#endregion -------------- Pagination */
.modal-content {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: #1e2225;
}

.modal-header {
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: none;
}

.modal-header .modal-title {
  color: rgba(255, 255, 255, 0.8);
}

.modal-header .btn-close {
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
}

.modal-body .video-preview .video-inner video,
.modal-body .video-preview .video-inner iframe {
  width: 100%;
}

.modal-footer {
  background-color: rgba(255, 255, 255, 0.1);
  border-top: none;
}

/*#region ----------------- Software List Section */
.software-list-section {
  margin: 4rem 0;
}

/*#endregion -------------- Software List Section */
/*#region ----------------- About Us */
.about-us-mini {
  position: relative;
  z-index: 200;
  padding-bottom: 2rem;
}

.about-us-mini .section-inner {
  padding: 40px;
}

.about-us-mini .grid-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% auto;
  grid-template-columns: 50% auto;
}

.about-us-mini .grid-layout .image-cover .img-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 0;
  position: relative;
  margin: 0;
}

.about-us-mini .grid-layout .image-cover .img-container .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.about-us-mini .grid-layout .image-cover .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.about-us-mini .grid-layout .information {
  padding-right: 40px;
}

.about-us-mini .grid-layout .information p {
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  color: rgba(255, 255, 255, 0.8);
}

.about-us-mini .grid-layout .information .button-group {
  text-align: left;
}

@media (max-width: 1199px) {
  .about-us-mini .grid-layout {
    -ms-grid-columns: 300px auto;
    grid-template-columns: 300px auto;
  }
  .about-us-mini .grid-layout .image-cover .img-container {
    height: 250px;
  }
}

@media (max-width: 992px) {
  .about-us-mini .grid-layout {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .about-us-mini .grid-layout .information {
    padding: 30px 0 0 0;
  }
  .about-us-mini .grid-layout .image-cover .img-container {
    height: 300px;
  }
  .about-us-mini .section-inner {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .about-us-mini {
    top: 0;
    padding: 2rem 0;
  }
}

@media (max-width: 575px) {
  .about-us-mini .grid-layout .information {
    padding: 20px 0 0 0;
  }
  .about-us-mini .grid-layout .image-cover .img-container {
    height: 200px;
  }
  .about-us-mini .section-inner {
    padding: 20px;
  }
}

.product-info {
  padding: 46px 72px 46px 75px;
  border-radius: 30px;
  margin-right: 11%;
  margin-left: 11%;
  background-color: white;
}

.product-summary-title {
  color: #031761;
  text-align: justify;
  font-size: 25px;
  font-weight: 700;
}
.product-summary-text {
  color: #031761;
  font-weight: 400;
  text-align: justify;
  font-size: 19px;
}

.product-info-title {
  color: #000000;
  text-align: justify;
  font-size: 25px;
  font-weight: 700;
}
.product-info-text {
  color: #000000;
  font-weight: 400;
  text-align: justify;
  font-size: 19px;
}
.category-item {
  font-weight: 400;
  color: black;
  text-align: center;
  font-size: 17px;
}
/*#endregion -------------- About Us */
/*#region ----------------- Master Page */
.master-inner {
  background-color: #fff;
  padding: 3rem;
  margin: 3rem 0;
  -webkit-box-shadow: 0 3px 25px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 25px -3px rgba(0, 0, 0, 0.1);
}

.master-inner .title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  position: relative;
}

.master-inner .title .fi {
  font-size: 24px;
  margin-left: 14px;
  position: relative;
  top: 4px;
  display: inline-block;
  color: #f2b500;
}

.master-inner .desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
  line-height: 27px;
  text-align: justify;
  padding-right: 40px;
}

.master-inner .social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1rem 0 3rem 0;
}

.master-inner .social-list li {
  margin: 5px;
}

.master-inner .social-list li a {
  width: 54px;
  height: 54px;
  background-color: #595959;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #909294;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 8px;
}

.master-inner .social-list li a svg {
  width: 100%;
  fill: #f2b500;
}

.master-inner .social-list li a:hover {
  background-color: #f2b500;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.master-inner .social-list li a:hover svg {
  fill: #121619;
}

.master-inner hr {
  background-color: rgba(255, 255, 255, 0.6);
}

.master-inner .map-location {
  height: 100%;
}

.master-inner .map-location iframe {
  border: none;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .master-inner {
    padding: 2rem;
  }
  .master-inner .title {
    font-size: 18px;
  }
  .master-inner .title .fi {
    font-size: 20px;
  }
  .master-inner .desc {
    font-size: 14px;
    padding-right: 30px;
  }
  .master-inner .map-location {
    height: 300px;
  }
}

/*#endregion -------------- Master Page */
/*#region ----------------- Forms */
.inputgroup {
  position: relative;
  margin-top: 25px;
  width: 100%;
}

.inputgroup .input {
  width: 100%;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-weight: 400;
  padding-right: 60px;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: white;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: #121619;
  text-align: right;
  -webkit-box-shadow: 0 8px 20px -1px rgba(18, 22, 25, 0.1);
  box-shadow: 0 8px 20px -1px rgba(18, 22, 25, 0.1);
}

.inputgroup .input:hover,
.inputgroup .input:focus {
  border-color: #f2b500;
}

.inputgroup .input:hover ~ .icon,
.inputgroup .input:focus ~ .icon {
  color: #f2b500;
}

.inputgroup .icon {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: rgba(144, 146, 148, 0.5);
}

.inputgroup .icon .fi {
  font-size: 24px;
  position: relative;
  line-height: 0 !important;
}

.select-group {
  position: relative;
  margin-top: 10px;
  width: 100%;
}

.select-group label {
  font-size: 13px;
  font-weight: 500;
  background-color: #fff;
  color: #505050;
  margin-bottom: 5px;
  padding-right: 15px;
}

.select-group .form-select {
  height: 45px;
  border-color: rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: #121619;
  text-align: right;
  font-size: 15px;
  font-weight: 400;
}

.select-group .form-select:hover,
.select-group .form-select:focus {
  border-color: #f2b500;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.textarea-group {
  position: relative;
  margin-top: 25px;
  width: 100%;
}

.textarea-group .form-control {
  text-align: right;
  font-size: 15px;
  font-weight: 400;
  border-radius: 15px;
  padding: 15px;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 8px 20px -1px rgba(18, 22, 25, 0.1);
  box-shadow: 0 8px 20px -1px rgba(18, 22, 25, 0.1);
}

.textarea-group .form-control:hover,
.textarea-group .form-control:focus {
  border-color: #f2b500;
}

/*#endregion -------------- Forms */
/*#region ----------------- X - Catch Error */
.bred {
  border: 1px dashed red;
}

.bgreen {
  border: 1px dashed green;
}

.bblue {
  border: 1px dashed blue;
}

/*#endregion -------------- X - Catch Error */


 .container {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-gap: 20px;
   margin: 20px;
 }

.product {
  text-align: center;
}

.product img {
  width: 200px;
  height: 200px;
}

.product h3 {
  margin: 10px 0;
}

.grid-item-product {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Adjust the shadow properties as per your preference */
  /* Additional styles for each grid item if needed */
}

.grid-container-custom {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* for a 3-column grid */
  grid-gap: 10px; /* gap between grid items */
}

@media (max-width: 767px) {
  .grid-container-custom {
    grid-template-columns: 1fr;
  }
}

