:root {
  --primary-color: #142430;
  --secondary-color: #d1ac2b;
  --font-family: "Poppins", sans-serif;
  --white-color: #ffffff;
  --black-color: #111111;
  --text-color: #555555;
  --green-color: #9fe061;
  --blue-color: #55bbed;
  --yellow-color: #eac147;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: #fafafc;
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 420px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
}

main {
  flex-grow: 1;
}

.text-green {
  color: var(--green-color) !important;
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.text-blue {
  color: var(--blue-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.wrapper {
  padding: 6rem 0;
}
@media (max-width: 1400px) {
  .wrapper {
    padding: 5.5rem 0;
  }
}
@media (max-width: 1024px) {
  .wrapper {
    padding: 5rem 0;
  }
}
@media (max-width: 768px) {
  .wrapper {
    padding: 4.5rem 0;
  }
}
@media (max-width: 420px) {
  .wrapper {
    padding: 4rem 0;
  }
}

.header {
  padding: 1rem 0;
}
.header_area {
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
}
.header_logo {
  background-color: var(--primary-color);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  padding-inline-end: 1.5rem;
  gap: 1rem;
  text-decoration: none;
}
.header_logo img {
  max-height: 50px;
}
.header_logo .title {
  font-weight: bold;
  color: var(--white-color);
  margin: 0;
  font-size: 1.25em;
}
@media (max-width: 1200px) {
  .header_logo {
    padding: 0.5rem;
    padding-inline-end: 1rem;
    max-width: 155px;
  }
  .header_logo .title {
    font-size: 1em;
    line-height: 1;
  }
  .header_logo img {
    max-height: 35px;
  }
}
.header_menu {
  background-color: var(--secondary-color);
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .header_menu {
    padding: 0.5rem;
  }
}
.header_menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.header_menu ul li {
  position: relative;
  border-inline-end: 2px solid rgba(255, 255, 255, 0.5);
  margin-inline-end: 1.5rem;
  padding-inline-end: 1.5rem;
}
@media (max-width: 1200px) {
  .header_menu ul li {
    border-inline-end-width: 1px;
    margin-inline-end: 0.5rem;
    padding-inline-end: 0.5rem;
  }
}
.header_menu ul li:last-child {
  border-inline-end: none;
  margin-inline-end: 0;
  padding-inline-end: 0;
}
.header_menu ul li a {
  text-decoration: none;
  color: var(--white-color);
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}
.header_menu ul li a:hover {
  color: var(--black-color);
}
@media (max-width: 1200px) {
  .header_menu ul li a {
    font-size: 0.8em;
    line-height: 1.25;
    text-align: center;
  }
}

.footer {
  background-image: linear-gradient(to right, var(--primary-color), #09141d);
  padding-top: 4rem;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 768px) {
  .footer .row > * {
    text-align: center;
    margin-bottom: 3rem;
  }
}
.footer .row > *:last-child {
  margin-bottom: 0;
}
.footer_logo {
  display: inline-block;
  flex-shrink: 0;
}
.footer_logo img {
  max-height: 100px;
}
.footer_socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer_links {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer_links li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer_links li a {
  display: inline-block;
  color: var(--white-color);
  text-decoration: none;
  transition: 0.3s;
}
.footer_links li a:hover {
  color: var(--secondary-color);
  transform: translateX(0.5rem);
}
.footer_links li:last-child {
  margin-bottom: 0;
}

.home_hero {
  padding: 12rem 0;
  position: relative;
  background: url("../images/home/hero.png") no-repeat right/65%;
}
.home_hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 35%, transparent 100%);
  background-size: cover;
  z-index: 0;
}
@media (max-width: 1200px) {
  .home_hero {
    padding: 10rem 0;
  }
}
@media (max-width: 991px) {
  .home_hero {
    padding: 8rem 0;
  }
}
@media (max-width: 640px) {
  .home_hero {
    padding: 6rem 0;
    background-size: 100%;
  }
  .home_hero::before {
    background-image: linear-gradient(90deg, var(--primary-color) 10%, transparent 100%);
  }
}
.home_hero .container {
  position: relative;
  z-index: 1;
}
.home_hero_title {
  color: var(--green-color);
  font-weight: 700;
  font-size: 4em;
  line-height: 1.1;
}
.home_hero_title b {
  font-weight: 900;
  font-size: 2.15em;
  display: block;
}
@media (max-width: 1200px) {
  .home_hero_title {
    font-size: 3.5em;
  }
}
@media (max-width: 768px) {
  .home_hero_title {
    font-size: 3em;
  }
}
.home_hero_desc {
  position: relative;
  border-top: 1px solid var(--white-color);
  padding-top: 0.5rem;
  padding-inline-start: 0.75rem;
  color: var(--white-color);
  font-weight: 300;
}
.home_hero_desc::after {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 100%;
  background-color: var(--white-color);
}
.home_about_title {
  font-size: 3.5em;
  text-align: end;
  max-width: 480px;
  font-weight: 700;
  margin-inline-end: 0;
  margin-inline-start: auto;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .home_about_title {
    max-width: unset;
    text-align: start;
    margin-bottom: 2rem;
    font-size: 2.5em;
  }
}
.home_about_content {
  border-inline-start: 1px solid var(--primary-color);
  padding-inline-start: 1.5rem;
  position: relative;
  color: var(--text-color);
}
.home_about_content p {
  margin-bottom: 0.75rem;
}
.home_about_content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.275rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary-color);
  border-radius: 100%;
}
@media (max-width: 768px) {
  .home_about_content {
    padding-inline-start: 1rem;
  }
}
.home_about_companyCard {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: #eee;
  border-radius: 0.75rem;
  padding: 1rem;
  text-decoration: none;
  color: var(--black-color);
  transition: 0.3s;
}
.home_about_companyCard:hover {
  background-color: #ddd;
}
.home_about_companyCard > img {
  max-height: 90px;
  flex-shrink: 0;
}
.home_about_companyCard_title {
  font-weight: 600;
  font-size: 1.5em;
  color: var(--green-color);
  margin-bottom: 0.5rem;
}
.home_about_companyCard_desc {
  color: var(--text-color);
  font-weight: 300;
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .home_about_companyCard {
    gap: 1rem;
  }
  .home_about_companyCard > img {
    max-height: 60px;
  }
}

.razdaneh .bgColor {
  background: #f0f0f0;
}
.razdaneh .bg-white {
  background: white;
}
.razdaneh .hero1 {
  background: url("/assets/images/razdaneh/heroRazdaneh.webp") no-repeat center;
  background-size: cover;
  height: 90svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.razdaneh .hero1 h1 {
  color: var(--secondary-color);
  font-weight: 900;
  font-size: 6rem;
  margin-bottom: 2rem;
}
.razdaneh .hero1 p {
  color: white;
  font-size: 1.35rem;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .razdaneh .hero1 h1 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .razdaneh .hero1 {
    padding-top: 3rem;
    padding-bottom: 3rem;
    height: auto;
  }
  .razdaneh .hero1 h1 {
    font-size: 2.5rem;
  }
}
.razdaneh .about h2 {
  font-weight: 900;
  font-size: 3rem;
}
.razdaneh .about h2 span {
  color: var(--secondary-color);
}
.razdaneh .about p {
  font-size: 1.45rem;
  font-weight: 400;
  color: #303030;
}
.razdaneh .about p b {
  font-weight: 500;
}
.razdaneh .about .image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 1440px) {
  .razdaneh .about h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .razdaneh .about {
    text-align: center;
  }
  .razdaneh .about h2 {
    font-size: 2rem;
  }
  .razdaneh .about p {
    font-size: 1rem;
  }
}
.razdaneh .box {
  border-radius: 2rem;
  background-color: #021824;
  position: relative;
  overflow: hidden;
  padding: 5rem;
}
.razdaneh .box p {
  font-size: 1.5rem;
  font-weight: 200;
  color: #ffffff;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.razdaneh .box .list-white li {
  color: rgb(228, 228, 228);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.razdaneh .box .logo {
  position: absolute;
  right: -22%;
  bottom: -95%;
  filter: grayscale(1);
  opacity: 0.1;
  scale: 0.5;
}
@media (max-width: 768px) {
  .razdaneh .box {
    padding: 1.5rem 2rem;
  }
  .razdaneh .box p, .razdaneh .box li {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.razdaneh .productSec {
  position: relative;
}
.razdaneh .productSec .productSlider a {
  text-decoration: none;
}
.razdaneh .productSec .productSlider .imgCont {
  width: 100%;
  height: 200px;
}
.razdaneh .productSec .productSlider .title {
  font-weight: 900;
  font-size: 3rem;
}
.razdaneh .productSec .productSlider .product {
  width: 100%;
  border-radius: 1.25rem;
  padding: 1rem;
  background: #000000;
  color: white;
  height: 100%;
}
.razdaneh .productSec .productSlider .product_image {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 400px;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.razdaneh .productSec .productSlider .product_text {
  text-align: center;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
}
.razdaneh .productSec .productSlider .products-prev.swiper-button-prev {
  right: 40px;
  left: unset;
  top: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.razdaneh .productSec .productSlider .products-prev.swiper-button-prev::after {
  width: 32px;
  height: 32px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #021824;
}
.razdaneh .productSec .productSlider .products-next.swiper-button-next {
  right: 0;
  top: 20px;
  left: unset;
  width: -moz-fit-content;
  width: fit-content;
}
.razdaneh .productSec .productSlider .products-next.swiper-button-next::after {
  width: 32px;
  height: 32px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #021824;
}
@media (max-width: 768px) {
  .razdaneh .productSec .productSlider .product_text {
    font-size: 1rem;
  }
}
@media (max-width: 1440px) {
  .razdaneh .productSec .productSlider .product_text {
    font-size: 1.25rem;
  }
}
.razdaneh .productSec_textBox {
  color: #021824;
  text-align: center;
  font-size: 2rem;
  max-width: 1070px;
  margin: 0 auto;
  margin-top: 10rem;
}
@media (max-width: 1440px) {
  .razdaneh .productSec_textBox {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .razdaneh .productSec_textBox {
    font-size: 1.35rem;
  }
}
.razdaneh .productBanner .bannerContainer {
  width: 100%;
  position: relative;
}
.razdaneh .productBanner .bannerContainer .bgGradient {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  margin-top: -25rem;
  padding-top: 12rem;
  padding-bottom: 4rem;
  background: #ffffff;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 75%, rgba(255, 255, 255, 0) 100%);
}
.razdaneh .productBanner .bannerContainer .bgGradient h1 {
  color: var(--secondary-color);
  font-weight: 900;
  font-size: 6rem;
  margin-bottom: 2rem;
}
.razdaneh .productBanner .bannerContainer .bgGradient p {
  color: #021824;
  font-size: 3rem;
  font-weight: 500;
}
.razdaneh .productBanner .bannerContainer .bgGradient .tiny {
  font-size: 1.75rem;
  font-weight: 400;
}
.razdaneh .productBanner .bannerContainer .banner {
  width: 100%;
  height: 1480px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1440px) {
  .razdaneh .productBanner .bannerContainer .bgGradient h1 {
    font-weight: 700;
    font-size: 3.5rem;
  }
  .razdaneh .productBanner .bannerContainer .bgGradient p {
    font-size: 2.2rem;
    font-weight: 400;
  }
  .razdaneh .productBanner .bannerContainer .bgGradient .tiny {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .razdaneh .productBanner .bannerContainer .bgGradient h1 {
    font-weight: 700;
    font-size: 3rem;
  }
  .razdaneh .productBanner .bannerContainer .bgGradient p {
    font-size: 1.75rem;
    font-weight: 400;
  }
  .razdaneh .productBanner .bannerContainer .bgGradient .tiny {
    font-size: 1rem;
  }
  .razdaneh .productBanner .bannerContainer .banner {
    height: 500px;
  }
}
@media (max-width: 456px) {
  .razdaneh .productBanner .bannerContainer .bgGradient h1 {
    font-weight: 500;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  .razdaneh .productBanner .bannerContainer .bgGradient p {
    font-size: 1.25rem;
    font-weight: 400;
  }
  .razdaneh .productBanner .bannerContainer .bgGradient .tiny {
    font-size: 0.9rem;
  }
}
.razdaneh .content {
  font-size: 1.5rem;
}
.razdaneh .content .title {
  font-size: 7rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: 2rem;
}
.razdaneh .content .subtitle {
  font-size: 4rem;
  color: var(--black-color);
  font-weight: 500;
}
.razdaneh .content .tiny {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 3rem;
}
.razdaneh .content li {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.razdaneh .content .yellow {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .razdaneh .content {
    font-size: 1.25rem;
  }
  .razdaneh .content .title {
    font-size: 2.5rem;
  }
  .razdaneh .content .subtitle {
    font-size: 1.5rem;
  }
  .razdaneh .content .tiny {
    font-size: 1rem;
  }
  .razdaneh .content li {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .razdaneh .content {
    font-size: 1.1rem;
  }
  .razdaneh .content .title {
    font-size: 2.25rem;
  }
  .razdaneh .content .subtitle {
    font-size: 1.25rem;
  }
  .razdaneh .content .tiny {
    font-size: 0.9rem;
  }
  .razdaneh .content li {
    font-size: 1rem;
  }
}
@media (max-width: 456px) {
  .razdaneh .content {
    font-size: 0.9rem;
  }
  .razdaneh .content .title {
    font-size: 1.5rem;
  }
  .razdaneh .content .subtitle {
    font-size: 1.125rem;
  }
  .razdaneh .content .tiny {
    font-size: 0.85rem;
  }
  .razdaneh .content li {
    font-size: 0.9rem;
  }
}

.nojan .bgColor {
  background: #f0f0f0;
}
.nojan .bg-white {
  background: white;
}
.nojan .hero1 {
  background: url("../images/nojan/heroNojan1.webp") no-repeat center;
  background-size: cover;
  height: 90svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nojan .hero1 h1 {
  color: rgb(0, 204, 255);
  font-weight: 900;
  font-size: 6rem;
  margin-bottom: 2rem;
}
.nojan .hero1 p {
  color: white;
  font-size: 1.35rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .nojan .hero1 {
    height: 50svh;
  }
  .nojan .hero1 h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 456px) {
  .nojan .hero1 h1 {
    font-size: 1.5rem;
  }
  .nojan .hero1 p {
    font-size: 1rem;
  }
}
.nojan .about h2 {
  font-weight: 900;
  font-size: 3rem;
}
.nojan .about h2 span {
  color: rgb(0, 204, 255);
}
.nojan .about p {
  font-size: 1.45rem;
  font-weight: 400;
  color: #303030;
}
.nojan .about p b {
  font-weight: 500;
}
.nojan .about .image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 768px) {
  .nojan .about {
    text-align: center;
  }
  .nojan .about h2 {
    font-size: 2rem;
  }
  .nojan .about p {
    font-size: 1rem;
  }
}
.nojan .box {
  border-radius: 2rem;
  background-color: #021824;
  position: relative;
  overflow: hidden;
  padding: 5rem;
  padding: 2rem;
}
.nojan .box p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.nojan .box p b {
  font-weight: 500;
}
.nojan .box .list-white li {
  color: rgb(228, 228, 228);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.nojan .box .logo {
  position: absolute;
  right: -25%;
  bottom: -60%;
  filter: grayscale(1);
  opacity: 0.1;
  scale: 0.65;
}
.nojan .productSec {
  position: relative;
}
.nojan .productSec .productSlider a {
  text-decoration: none;
}
.nojan .productSec .productSlider .imgCont {
  width: 100%;
  height: 200px;
}
.nojan .productSec .productSlider .title {
  font-weight: 900;
  font-size: 3rem;
}
.nojan .productSec .productSlider .product {
  width: 100%;
  border-radius: 1.25rem;
  padding: 1rem;
  background: #000000;
  color: white;
  height: 100%;
}
.nojan .productSec .productSlider .product_image {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 400px;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.nojan .productSec .productSlider .product_text {
  text-align: center;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
}
.nojan .productSec .productSlider .products-prev.swiper-button-prev {
  right: 40px;
  left: unset;
  top: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.nojan .productSec .productSlider .products-prev.swiper-button-prev::after {
  width: 32px;
  height: 32px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #021824;
}
.nojan .productSec .productSlider .products-next.swiper-button-next {
  right: 0;
  top: 20px;
  left: unset;
  width: -moz-fit-content;
  width: fit-content;
}
.nojan .productSec .productSlider .products-next.swiper-button-next::after {
  width: 32px;
  height: 32px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #021824;
}
@media (max-width: 768px) {
  .nojan .productSec .productSlider .product_text {
    font-size: 1rem;
  }
}
@media (max-width: 1440px) {
  .nojan .productSec .productSlider .product_text {
    font-size: 1.25rem;
  }
}
.nojan .productSec_textBox {
  color: #021824;
  text-align: center;
  font-size: 2rem;
  max-width: 1070px;
  margin: 0 auto;
  margin-top: 10rem;
}
@media (max-width: 1440px) {
  .nojan .productSec_textBox {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .nojan .productSec_textBox {
    font-size: 1.35rem;
  }
}
.nojan .productBanner .bannerContainer {
  width: 100%;
  position: relative;
}
.nojan .productBanner .bannerContainer .bgGradient {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  margin-top: -25rem;
  padding-top: 12rem;
  padding-bottom: 4rem;
  background: #ffffff;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 75%, rgba(255, 255, 255, 0) 100%);
}
.nojan .productBanner .bannerContainer .bgGradient h1 {
  color: rgb(0, 204, 255);
  font-weight: 900;
  font-size: 6rem;
  margin-bottom: 2rem;
}
.nojan .productBanner .bannerContainer .bgGradient p {
  color: #021824;
  font-size: 3rem;
  font-weight: 500;
}
.nojan .productBanner .bannerContainer .bgGradient .tiny {
  font-size: 1.75rem;
  font-weight: 400;
}
.nojan .productBanner .bannerContainer .banner {
  width: 100%;
  height: 1480px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .nojan .productBanner .bannerContainer .bgGradient h1 {
    font-weight: 700;
    font-size: 3rem;
  }
  .nojan .productBanner .bannerContainer .bgGradient p {
    font-size: 1.75rem;
    font-weight: 400;
  }
  .nojan .productBanner .bannerContainer .bgGradient .tiny {
    font-size: 1rem;
  }
  .nojan .productBanner .bannerContainer .banner {
    height: 500px;
  }
}
@media (max-width: 456px) {
  .nojan .productBanner .bannerContainer .bgGradient h1 {
    font-weight: 500;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  .nojan .productBanner .bannerContainer .bgGradient p {
    font-size: 1.25rem;
    font-weight: 400;
  }
  .nojan .productBanner .bannerContainer .bgGradient .tiny {
    font-size: 0.9rem;
  }
}
.nojan .content {
  font-size: 1.5rem;
}
.nojan .content .title {
  font-size: 7rem;
  font-weight: 700;
  color: var(--blue-color);
  margin-top: 2rem;
}
.nojan .content .subtitle {
  font-size: 4rem;
  color: var(--black-color);
  font-weight: 500;
}
.nojan .content .tiny {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 3rem;
}
.nojan .content li {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.nojan .content .blue {
  color: var(--blue-color);
  margin-bottom: 1rem;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .nojan .content .title {
    font-size: 3rem;
  }
  .nojan .content .subtitle {
    font-size: 1.75rem;
  }
  .nojan .content .tiny {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .nojan .content {
    font-size: 1.1rem;
  }
  .nojan .content .title {
    font-size: 2.5rem;
  }
  .nojan .content .subtitle {
    font-size: 1.5rem;
  }
  .nojan .content .tiny {
    font-size: 1rem;
  }
  .nojan .content li {
    font-size: 1.1rem;
  }
}
@media (max-width: 456px) {
  .nojan .content {
    font-size: 0.9rem;
  }
  .nojan .content .title {
    font-size: 1.5rem;
  }
  .nojan .content .subtitle {
    font-size: 1.125rem;
  }
  .nojan .content .tiny {
    font-size: 0.85rem;
  }
  .nojan .content li {
    font-size: 0.9rem;
  }
}

.imenzist_hero {
  padding: 12rem 0;
  position: relative;
  background: url("../images/imenzist/hero.png") no-repeat right/65% 100%;
}
.imenzist_hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 35%, transparent 100%);
  background-size: cover;
  z-index: 0;
}
@media (max-width: 1200px) {
  .imenzist_hero {
    padding: 10rem 0;
  }
}
@media (max-width: 991px) {
  .imenzist_hero {
    padding: 8rem 0;
  }
}
@media (max-width: 640px) {
  .imenzist_hero {
    padding: 6rem 0;
    background-size: cover;
  }
  .imenzist_hero::before {
    background-image: linear-gradient(90deg, var(--primary-color) 10%, transparent 100%);
  }
}
.imenzist_hero .container {
  position: relative;
  z-index: 1;
}
.imenzist_hero_title {
  color: var(--yellow-color);
  font-weight: 700;
  font-size: 4em;
  line-height: 1.1;
}
.imenzist_hero_title b {
  font-weight: 900;
  font-size: 2.15em;
  display: block;
}
@media (max-width: 1200px) {
  .imenzist_hero_title {
    font-size: 3.5em;
  }
}
@media (max-width: 768px) {
  .imenzist_hero_title {
    font-size: 3em;
  }
}
.imenzist_hero_desc {
  color: var(--white-color);
  font-weight: 300;
}
.imenzist_about {
  background-image: url("../images/imenzist/about.jpg");
  background-size: 45% 100%;
  background-position: left;
  background-repeat: no-repeat;
  padding: 10rem 0;
}
.imenzist_about_title {
  font-weight: 700;
  font-size: 3.25em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.imenzist_about_content {
  color: var(--text-color);
}
@media (max-width: 991px) {
  .imenzist_about {
    padding: 3rem 0;
    background-size: 48% 100%;
  }
  .imenzist_about_title {
    font-size: 2.5em;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .imenzist_about {
    padding-bottom: 620px;
    background-position: center bottom;
    background-size: 100% 600px;
  }
}
@media (max-width: 420px) {
  .imenzist_about {
    padding-bottom: 500px;
    background-size: 100% 480px;
  }
}
.imenzist_lead {
  border-radius: 1.5rem;
  background-color: var(--primary-color);
  padding: 4rem;
  color: var(--white-color);
  font-weight: 300;
  position: relative;
  overflow: hidden;
}
.imenzist_lead_title {
  font-weight: 700;
  font-size: 3em;
}
@media (max-width: 640px) {
  .imenzist_lead_title {
    font-size: 2.5em;
  }
}
.imenzist_lead.has-logo::before {
  content: "";
  position: absolute;
  right: 0;
  top: 6%;
  width: 50%;
  max-width: 360px;
  height: 90%;
  background: url("../images/logos/imen-zist-logo.png") no-repeat center center/contain;
  opacity: 0.15;
}
@media (max-width: 768px) {
  .imenzist_lead {
    padding: 3rem;
  }
}
@media (max-width: 420px) {
  .imenzist_lead {
    padding: 2.5rem;
  }
}
.imenzist .productSec {
  position: relative;
}
.imenzist .productSec .productSlider a {
  text-decoration: none;
}
.imenzist .productSec .productSlider .imgCont {
  width: 100%;
  height: 200px;
}
.imenzist .productSec .productSlider .title {
  font-weight: 900;
  font-size: 3rem;
}
.imenzist .productSec .productSlider .product {
  width: 100%;
  border-radius: 1.25rem;
  padding: 1rem;
  background: #000000;
  color: white;
  height: 100%;
}
.imenzist .productSec .productSlider .product_image {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 400px;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.imenzist .productSec .productSlider .product_text {
  text-align: center;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
}
.imenzist .productSec .productSlider .products-prev.swiper-button-prev {
  right: 40px;
  left: unset;
  top: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.imenzist .productSec .productSlider .products-prev.swiper-button-prev::after {
  width: 32px;
  height: 32px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #021824;
}
.imenzist .productSec .productSlider .products-next.swiper-button-next {
  right: 0;
  top: 20px;
  left: unset;
  width: -moz-fit-content;
  width: fit-content;
}
.imenzist .productSec .productSlider .products-next.swiper-button-next::after {
  width: 32px;
  height: 32px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #021824;
}
@media (max-width: 768px) {
  .imenzist .productSec .productSlider .product_text {
    font-size: 1rem;
  }
}
@media (max-width: 1440px) {
  .imenzist .productSec .productSlider .product_text {
    font-size: 1.25rem;
  }
}
.imenzist .productSec_textBox {
  color: #021824;
  text-align: center;
  font-size: 2rem;
  max-width: 1070px;
  margin: 0 auto;
  margin-top: 10rem;
}
@media (max-width: 1440px) {
  .imenzist .productSec_textBox {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .imenzist .productSec_textBox {
    font-size: 1.35rem;
  }
}
.imenzist .productBanner .bannerContainer {
  width: 100%;
  position: relative;
}
.imenzist .productBanner .bannerContainer .bgGradient {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  margin-top: -25rem;
  padding-top: 12rem;
  padding-bottom: 4rem;
  background: #ffffff;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 75%, rgba(255, 255, 255, 0) 100%);
}
.imenzist .productBanner .bannerContainer .bgGradient h1 {
  color: rgb(0, 204, 255);
  font-weight: 900;
  font-size: 6rem;
  margin-bottom: 2rem;
}
.imenzist .productBanner .bannerContainer .bgGradient p {
  color: #021824;
  font-size: 3rem;
  font-weight: 500;
}
.imenzist .productBanner .bannerContainer .bgGradient .tiny {
  font-size: 1.75rem;
  font-weight: 400;
}
.imenzist .productBanner .bannerContainer .banner {
  width: 100%;
  height: 1480px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .imenzist .productBanner .bannerContainer .bgGradient h1 {
    font-weight: 700;
    font-size: 3rem;
  }
  .imenzist .productBanner .bannerContainer .bgGradient p {
    font-size: 1.75rem;
    font-weight: 400;
  }
  .imenzist .productBanner .bannerContainer .bgGradient .tiny {
    font-size: 1rem;
  }
  .imenzist .productBanner .bannerContainer .banner {
    height: 500px;
  }
}
@media (max-width: 456px) {
  .imenzist .productBanner .bannerContainer h1 {
    font-weight: 500;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  .imenzist .productBanner .bannerContainer p {
    font-size: 1.25rem;
    font-weight: 400;
  }
  .imenzist .productBanner .bannerContainer .tiny {
    font-size: 0.9rem;
  }
}
.imenzist .content {
  font-size: 1.5rem;
}
.imenzist .content .title {
  font-size: 7rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: 2rem;
}
.imenzist .content .subtitle {
  font-size: 4rem;
  color: var(--black-color);
  font-weight: 500;
}
.imenzist .content .tiny {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 3rem;
}
.imenzist .content li {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.imenzist .content .yellow {
  color: var(--yellow-color);
  margin-bottom: 1rem;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .imenzist .content .title {
    font-size: 3rem;
  }
  .imenzist .content .subtitle {
    font-size: 1.75rem;
  }
  .imenzist .content .tiny {
    font-size: 1.25rem;
  }
  .imenzist .content li {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .imenzist .content {
    font-size: 1.1rem;
  }
  .imenzist .content .title {
    font-size: 2.5rem;
  }
  .imenzist .content .subtitle {
    font-size: 1.5rem;
  }
  .imenzist .content .tiny {
    font-size: 1rem;
  }
  .imenzist .content li {
    font-size: 1.1rem;
  }
}
@media (max-width: 456px) {
  .imenzist .content {
    font-size: 0.9rem;
  }
  .imenzist .content .title {
    font-size: 1.5rem;
  }
  .imenzist .content .subtitle {
    font-size: 1.125rem;
  }
  .imenzist .content .tiny {
    font-size: 0.85rem;
  }
  .imenzist .content li {
    font-size: 0.9rem;
  }
}

.section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.section_title {
  font-size: 2.5em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}/*# sourceMappingURL=style.css.map */