@font-face {
  font-family: IRANSans;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/iransans/eot/IRANSansWeb_Bold.eot) format("eot");
  src: url(../fonts/iransans/woff2/IRANSansWeb_Bold.woff2) format("woff2"),
    url(../fonts/iransans/woff/IRANSansWeb_Bold.woff) format("woff"),
    url(../fonts/iransans/ttf/IRANSansWeb_Bold.ttf) format("truetype");
}

@font-face {
  font-family: IRANSans;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/iransans/eot/IRANSansWeb_Medium.eot) format("eot");
  src: url(../fonts/iransans/woff2/IRANSansWeb_Medium.woff2) format("woff2"),
    url(../fonts/iransans/woff/IRANSansWeb_Medium.woff) format("woff"),
    url(../fonts/iransans/ttf/IRANSansWeb_Medium.ttf) format("truetype");
}

@font-face {
  font-family: IRANSans;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/iransans/eot/IRANSansWeb.eot) format("eot");
  src: url(../fonts/iransans/woff2/IRANSansWeb.woff2) format("woff2"),
    url(../fonts/iransans/woff/IRANSansWeb.woff) format("woff"),
    url(../fonts/iransans/ttf/IRANSansWeb.ttf) format("truetype");
}

@font-face {
  font-family: ordibehesht;
  src: url(../fonts/ordibehesht/Ordibehesht-bold.eot) format("eot");
  src: url(../fonts/ordibehesht/Ordibehesht-bold.woff2) format("woff2"),
    url(../fonts/ordibehesht/Ordibehesht-bold.woff) format("woff"),
    url(../fonts/ordibehesht/Ordibehesht.TTF) format("truetype");
}

@font-face {
  font-family: IranSansEng;
  src: url(../fonts/iransanse-en/IRANSansWeb.eot) format("eot");
  src: url(../fonts/iransanse-en/IRANSansWeb.woff2) format("woff2"),
    url(../fonts/iransanse-en/IRANSansWeb.woff) format("woff"),
    url(../fonts/iransanse-en/IRANSansWeb.ttf) format("truetype");
}

:root {
  --part-ff-heading: "IRANSans", serif;
  --part-ff-p: "IRANSans", sans-serif;
  --part-fw-normal: normal;
  --part-fw-thin: 100;
  --part-fw-elight: 200;
  --part-fw-light: 300;
  --part-fw-regular: 400;
  --part-fw-medium: 500;
  --part-fw-sbold: 600;
  --part-fw-bold: 700;
  --part-fw-ebold: 800;
  --part-fw-black: 900;
  --part-fs-body: 16px;
  --part-fs-p: 16px;
  --part-fs-h1: 50px;
  --part-fs-h2: 40px;
  --part-fs-h3: 22px;
  --part-fs-h4: 20px;
  --part-fs-h5: 16px;
  --part-fs-h6: 14px;
  --part-color-common-white: #ffffff;
  --part-color-common-black: #000000;
  --part-color-heading-primary: #292930;
  --part-color-text-body: #585c61;
  --part-color-theme-primary: #31496d;
  --part-color-theme-secondary: #f07022;
  --part-color-theme-slow-orange: #f3b184;
  --part-color-theme-bg: #fff1f1;
  --part-color-border-1: #ddd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**
	Typography CSS
*/
body {
  color: var(--part-color-text-body);
  scroll-behavior: smooth;
}
.default-font {
  font-family: "IRANSans", sans-serif;
}

.en-font {
  font-family: "IranSansEng";
}
img {
  max-width: 100%;
}

a,
a:hover {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--part-ff-heading);
  color: var(--part-color-heading-primary);
  font-weight: var(--part-fw-sbold);
  line-height: 1.4;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: var(--part-fs-h1);
}

h2 {
  font-size: var(--part-fs-h2);
}

h3 {
  font-size: var(--part-fs-h3);
}

h4 {
  font-size: var(--part-fs-h4);
}

p {
  font-family: var(--part-ff-p);
  font-size: 16px;
  font-weight: var(--part-fw-normal);
  color: var(--part-color-text-body);
  line-height: 25px;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
}

button:hover {
  cursor: pointer;
}

input {
  outline: none;
}

*::-moz-selection {
  background: var(--part-color-theme-primary);
  color: var(--part-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--part-color-theme-primary);
  color: var(--part-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--part-color-theme-primary);
  color: var(--part-color-common-white);
  text-shadow: none;
}

/**
 	Common Classes CSS
*/

.text-blue {
  color: var(--part-color-theme-primary);
}

.mb-30 {
  margin-bottom: 30px;
}

.pt-100 {
  padding-top: 100px;
}

@media only screen and (max-width: 992px) {
  .pt-100 {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pt-100 {
    padding-top: 50px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

@media only screen and (max-width: 992px) {
  .pb-100 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-100 {
    padding-bottom: 50px;
  }
}

.bg-blue {
  background-color: var(--part-color-theme-primary);
}

.section-heading {
  margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
  .section-heading {
    margin-bottom: 20px;
  }
}

.section-heading .sub-heading,
.section-heading .eng-sub-heading {
  font-family: var(--part-fs-body);
  background-color: var(--part-color-grey-2);
  color: var(--part-color-theme-secondary);
  font-size: 25px;
  display: inline-block;
  padding: 5px 40px 5px 20px;
  margin-bottom: 20px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .section-heading .sub-heading,
  .section-heading .eng-sub-heading {
    font-size: 16px;
  }
}

.section-heading .sub-heading:before {
  background-color: var(--part-color-theme-secondary);
  content: "";
  height: 10px;
  width: 10px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 2px;
}

.section-heading .eng-sub-heading:before {
  background-color: var(--part-color-theme-secondary);
  content: "";
  height: 10px;
  width: 10px;
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 2px;
}

/* Preloader */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-color: var(--part-color-common-white);
  z-index: 999;
}

#preloader img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/** 
    Buttons CSS
*/
.part-primary-btn {
  background: linear-gradient(
    18deg,
    rgba(98, 137, 196, 1) 0%,
    rgba(78, 112, 163, 1) 22%,
    rgba(61, 89, 131, 1) 54%,
    rgba(49, 73, 109, 1) 100%
  );
  border: none;
  color: var(--part-color-common-white);
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  padding: 14.5px 30px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.part-primary-btn:before,
.part-primary-btn:after {
  content: "";
  width: 0;
  height: 50%;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
  background: linear-gradient(
    to left,
    rgba(232, 165, 124, 1) 0%,
    rgba(237, 147, 92, 1) 19%,
    rgba(240, 112, 34, 1) 62%,
    rgba(223, 92, 12, 1) 100%
  );
}

.part-primary-btn:before {
  top: 0;
  right: 0;
}

.part-primary-btn:after {
  bottom: 0;
  left: 0;
}

.part-primary-btn:hover {
  color: var(--part-color-common-black);
}

.part-primary-btn:hover:before,
.part-primary-btn:hover:after {
  width: 100%;
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header {
  background-color: var(--part-color-common-white);
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0px 2px 7px -3px rgba(87, 87, 87, 0.92);
}

@media only screen and (max-width: 992px) {
  .header {
    position: inherit;
  }
}

.header .header-container {
  max-width: 1420px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.header .primary-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 0 0 15px 15px;
}

@media (max-width: 1170px) {
  .header .primary-header-inner {
    padding: 12px 0;
  }
}

.header .primary-header-inner .header-logo img {
  max-width: 200px;
}

@media (max-width: 1399px) {
  .header .primary-header-inner .header-logo img {
    max-width: 150px;
  }
}

@media (max-width: 1170px) {
  .header .primary-header-inner .header-logo img {
    max-width: 130px;
  }
}

.header .primary-header-inner .header-menu-wrap {
  display: flex !important;
  align-items: center;
}

.header .primary-header-inner .header-menu-wrap .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu {
    display: none;
  }
}

.header .primary-header-inner .header-menu-wrap .sub-menu li {
  display: inline-block;
  position: relative;
  margin: 0 20px;
}

@media (max-width: 1170px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu li {
    margin: 0 10px;
  }
}

.header .primary-header-inner .header-menu-wrap .sub-menu li a {
  color: var(--part-color-heading-primary);
  display: block;
  font-size: 17px;
  padding-top: 25px;
  padding-bottom: 20px;
  letter-spacing: 0;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease-in-out;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li a i {
  font-size: 13px;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li a:before {
  content: "";
  background: linear-gradient(
    to right,
    var(--part-color-theme-primary),
    transparent
  );
  width: 0;
  height: 3px;
  position: absolute;
  bottom: 15px;
  transition: all 0.4s ease-in-out;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li:last-child a img {
  width: 36px;
  height: 36px;
  border: 0.5px solid black;
  border-radius: 50%;
  padding: 2px;
}

.header
  .primary-header-inner
  .header-menu-wrap
  .sub-menu
  li:last-child
  a:before {
  content: "";
  background: transparent;
  width: 0;
  height: 0px;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li ul {
  background-color: var(--part-color-common-white);
  display: block;
  width: 220px;
  padding: 0;
  -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
    0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
    0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  position: absolute;
  right: 0;
  top: 132px;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: all 0.6s ease;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li:hover > ul {
  visibility: visible;
  transition: all 0.6s ease;
  opacity: 1;
  transform: none;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li {
  display: flex;
  justify-content: space-between;
  text-align: right;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.header
  .primary-header-inner
  .header-menu-wrap
  .sub-menu
  li
  li:not(:last-of-type) {
  border-bottom: 1px dashed var(--part-color-border-1);
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li:last-child {
  margin: 0;
  border-bottom: none;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover {
  background-color: var(--part-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li a {
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--part-color-common-black);
  font-weight: 500;
  font-size: 15px;
  padding: 15px 0;
  letter-spacing: 0;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li a:hover {
  padding-right: 10px;
  color: var(--part-color-common-white);
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li a:before {
  display: none;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li:hover a:before {
  width: 105%;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li:hover a {
  color: var(--part-color-theme-primary);
  font-weight: bold;
}

.header
  .primary-header-inner
  .header-menu-wrap
  .sub-menu
  .menu-item-has-children {
  position: relative;
}

.header
  .primary-header-inner
  .header-menu-wrap
  .sub-menu
  .menu-item-has-children
  a {
  padding-left: 15px;
}

@media (max-width: 1170px) {
  .header
    .primary-header-inner
    .header-menu-wrap
    .sub-menu
    .menu-item-has-children
    a {
    padding-left: 15px;
  }
}

.header
  .primary-header-inner
  .header-menu-wrap
  .sub-menu
  .menu-item-has-children
  ul
  li {
  margin: 0;
  padding-right: 25px;
}

.header
  .primary-header-inner
  .header-menu-wrap
  .sub-menu
  .menu-item-has-children
  ul
  li
  a {
  padding-left: 0;
}

.header
  .primary-header-inner
  .header-menu-wrap
  .sub-menu
  .menu-item-has-children:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  content: "+";
  color: var(--part-color-heading-primary);
  position: absolute;
  top: 51%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.header
  .primary-header-inner
  .header-menu-wrap
  .sub-menu
  .menu-item-has-children:hover:before {
  color: var(--part-color-theme-primary);
}

.side-menu-icon {
  position: absolute;
  left: 20px;
  top: 25px;
  z-index: 100;
  display: block;
  cursor: pointer;
}

@media only screen and (max-width: 992px) {
  .side-menu-icon {
    display: none;
  }
}

.side-menu-wrapper {
  position: fixed;
  overflow-y: auto;
  top: 0;
  left: 0;
  width: 850px;
  -webkit-transform: translateX(850px);
  -ms-transform: translateX(850px);
  transform: translateX(850px);
  height: 100%;
  display: block;
  background-color: var(--part-color-theme-bg-dark-deep);
  z-index: 100;
  padding: 40px;
  -webkit-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}

.side-menu-wrapper .side-menu-close {
  background-color: var(--part-color-theme-primary);
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 18px;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}

.side-menu-wrapper.is-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@media only screen and (max-width: 992px) {
  .side-menu-wrapper {
    display: none;
  }
}

.side-menu-content .side-menu-header {
  font-size: 25px;
  max-width: 600px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  margin-bottom: 40px;
}

.side-menu-content .side-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box img {
  max-width: 150px;
}

.side-menu-content
  .side-menu-item
  .side-menu-thumb-box
  .side-menu-info
  .side-menu-title {
  font-size: 32px;
  font-weight: 500;
  color: var(--part-color-theme-primary);
  line-height: 1;
  margin-bottom: 10px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
  max-width: 400px;
  width: 100%;
}

.side-menu-content
  .side-menu-item
  .side-menu-thumb-box
  .side-menu-info
  p:last-child {
  margin-bottom: 0;
}

.side-menu-content .side-menu-item .side-menu-arrow {
  font-size: 45px;
  color: var(--part-color-theme-primary);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}

.side-menu-content .side-menu-item:hover {
  border: 1px solid var(--part-color-border-6);
}

.side-menu-content .side-menu-item:hover .side-menu-arrow {
  transform: rotate(0deg);
}

.side-menu-content .side-menu-item:last-child {
  margin-bottom: 0;
}

.side-menu-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 0%;
  position: fixed;
  top: 0;
  z-index: 9;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.side-menu-overlay.is-open {
  width: 100%;
  opacity: 0.5;
  visibility: visible;
  cursor: auto;
}

@media only screen and (max-width: 992px) {
  .side-menu-overlay {
    display: none;
  }
}

.sticky-header-wrap {
  width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  display: none;
  z-index: 99;
}

.sticky-header-wrap.fixed {
  display: block;
  animation-name: menuSticky;
  -webkit-animation-name: menuSticky;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  box-shadow: 0px 1px 3px 0px rgba(255, 255, 255, 0.1);
}

.sticky-header-wrap .header {
  background-color: var(--part-color-common-white);
  position: relative;
  top: 0;
}

.sticky-header-wrap .header .top-bar {
  display: none;
}

.header-2 .sticky-header-wrap .header {
  background-color: #171719;
}

@-webkit-keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

.mobile-side-menu-overlay,
.mobile-side-menu {
  display: none;
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu {
    background-color: var(--part-color-common-white);
    position: fixed;
    overflow-y: auto;
    top: 0;
    left: 0;
    width: 80%;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    height: 100%;
    display: block;
    z-index: 100;
    padding: 40px 40px 40px 40px;
    -webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
  }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu {
    padding: 40px 20px;
    width: 100%;
    max-width: 320px;
  }
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .mobile-side-menu .side-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .mobile-side-menu .side-menu-head a img {
    max-width: 120px;
  }

  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    position: fixed;
    top: 35px;
    left: 40px;
    color: var(--part-color-heading-primary);
    font-size: 17px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--part-color-border-1);
  }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    left: 16px;
  }
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
    background-color: var(--part-color-theme-primary);
    color: var(--part-color-common-white);
  }

  .mobile-side-menu .side-menu-wrap {
    overflow: hidden;
    margin-bottom: 50px;
  }

  .mobile-side-menu p {
    color: var(--part-color-common-white);
    margin-bottom: 50px;
  }

  .mobile-side-menu .list-header {
    color: var(--part-color-common-white);
    font-weight: 400;
    margin-bottom: 30px;
  }
  .mobile-side-menu .side-menu-list {
    list-style: none;
  }

  .mobile-side-menu .side-menu-list li {
    font-family: var(--part-ff-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--part-color-heading-primary);
    margin-bottom: 10px;
  }

  .mobile-side-menu .side-menu-list li span,
  .mobile-side-menu .side-menu-list li a {
    color: var(--part-color-heading-primary);
    margin-right: 10px;
    font-size: 13px;
  }

  .mobile-side-menu .side-menu-list li:first-child i {
    margin-left: 5px;
    /* width: 15%; */
  }

  .mobile-side-menu .side-menu-social ul {
    display: flex;
    align-items: center;
    column-gap: 10px;
    list-style: none;
  }

  .mobile-side-menu .side-menu-social ul li a {
    background-color: var(--part-color-theme-bg-dark-deep);
    color: var(--part-color-theme-primary);
    font-size: 18px;
    width: 50px;
    padding: 15px 0;
    line-height: 1;
    text-align: center;
    border-radius: 2px;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
  }

  .mobile-side-menu .side-menu-social ul li a:hover {
    background-color: var(--part-color-theme-primary);
    color: var(--part-color-common-white);
  }

  .mobile-side-menu .mean-bar {
    background-color: transparent;
    min-height: auto;
    padding: 0;
  }

  .mobile-side-menu .mean-bar .meanmenu-reveal {
    display: none !important;
  }

  .mobile-side-menu .mean-bar .mean-nav {
    background-color: transparent;
    margin-top: 0;
    padding-top: 20px;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul {
    display: block !important;
    padding-right: 10px;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li {
    position: relative;
    float: none;
    display: block;
    width: auto;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li:not(:last-of-type) {
    border-bottom: 1px solid var(--part-color-border-1);
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    color: var(--part-color-heading-primary);
    font-size: 18px;
    line-height: 1;
    border-top: none;
    padding: 18px 5px;
    display: block;
    float: none;
    font-weight: bold;
  }
}

.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li:last-child a img {
  width: 35px;
  height: 35px;
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    font-size: 15px;
  }
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
    background-color: var(--part-color-theme-primary);
    color: var(--part-color-common-white);
    position: absolute;
    padding: 0;
    top: -3px;
    left: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li:active {
    background-color: var(--part-color-theme-secondary);
  }

  .mobile-side-menu
    .mean-bar
    .mean-nav.mean-nav
    > ul
    li
    a.mean-expand.mean-clicked:before {
    display: none;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
    display: none;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul {
    padding: 0 0 0 30px;
    margin-top: 20px;
  }

  .mobile-side-menu
    .mean-bar
    .mean-nav.mean-nav
    > ul
    li
    ul
    li:not(:last-of-type) {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
  }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
    display: block;
  }

  .mobile-side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: auto;
  }
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/

.hero-section {
  margin-top: 80px;
}

@media only screen and (max-width: 992px) {
  .hero-section {
    margin-top: 49px;
  }
}
.hero-img {
  width: 100%;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme customer CSS
----------------------------------------*/

.customers .container-fluid {
  box-shadow: 0px 0px 16px -3px rgba(0, 0, 0, 0.25);
  background-color: rgba(256, 256, 256, 1);
}

.customers-pattern {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
  width: 300px;
  height: 100%;
}
.customers-pattern img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.customer-item {
  text-align: center;
}

.customer-item img {
  max-width: 210px;
  object-fit: contain;
}

@media only screen and (max-width: 992px) {
  .customer-item img {
    max-width: 100px;
  }
}

/* !END: Theme customer CSS */
/**----------------------------------------
START: Theme slogan CSS
----------------------------------------*/

.slogan-section h2 {
  color: var(--part-color-heading-primary);
  font-family: ordibehesht;
  padding: 5px;
  position: relative;
  display: inline-block;
}

.slogan-section h2::before,
.slogan-section h2::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--part-color-heading-primary);
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -3%;
}

.slogan-section h2::after {
  right: 102%;
}

@media only screen and (max-width: 992px) {
  .slogan-section h2 {
    font-size: 25px;
  }

  .slogan-section h2::before,
  .slogan-section h2::after {
    display: none;
  }
}

/* !END: Theme slogan CSS */
/**----------------------------------------
START: Theme about CSS
----------------------------------------*/
#aboutUs,
#customers {
  scroll-margin-top: 70px;
}
#contactUs {
  scroll-margin-top: 100px;
}

.about-section {
  overflow: hidden;
  /* position: relative; */
}

.about-section .about-content .about-main-content {
  text-align: justify;
  line-height: 28px;
  word-spacing: 4px;
  font-size: 18px;
}

@media only screen and (max-width: 992px) {
  .about-section .about-content {
    padding-top: 30px;
  }
}

.about-content .section-title {
  margin-bottom: 15px;
}

.about-section .about-img {
  margin: auto;
}

@media only screen and (max-width: 992px) {
  .about-section .about-img {
    width: 400px;
  }
}

@media only screen and (max-width: 550px) {
  .about-section .about-img {
    width: 260px;
  }
}

@media only screen and (max-width: 300px) {
  .about-section .about-img {
    width: 200px;
  }
}

.aboutUs-item {
  overflow: hidden;
  -webkit-box-shadow: 0px 2px 12px -4px #707070;
  box-shadow: 0px 2px 12px -4px #707070;
  width: 180px;
  border-radius: 18px;
  margin: 3px 3px 10px 3px;
}

.hover-up {
  transition: transform 0.2s ease-out;
}

.hover-up:hover {
  transform: translateY(-6px);
}

.about-content .aboutUs-item img {
  width: 100%;
  height: 70px;
  margin-bottom: 10px;
}

.about-content .aboutUs-item p {
  text-align: center;
  line-height: 10px;
  font-size: 12px;
  font-weight: bold;
}

.about-content .aboutUs-item p:nth-child(2) {
  color: #65abf0;
  font-size: 16px;
}

.about-content .aboutUs-item p:last-child {
  margin-top: 15px;
  color: var(--part-color-theme-primary);
}

@media only screen and (max-width: 992px) {
  .about-content .aboutUs-item {
    width: 150px;
  }

  .about-content .aboutUs-item img {
    height: 50px;
  }

  .about-content .aboutUs-item p {
    line-height: 9px;
    font-size: 11px;
  }
}

@media only screen and (max-width: 400px) {
  .about-content .aboutUs-item {
    width: 130px;
  }

  .about-content .aboutUs-item p {
    line-height: 8px;
    font-size: 10px;
  }

  .about-content .aboutUs-item p:nth-child(2) {
    font-size: 13px;
  }
}

.vira {
  color: var(--part-color-text-body);
}

/* !END: Theme customer CSS */
/**----------------------------------------
START: Theme application CSS
----------------------------------------*/
.px-200 {
  padding-right: 200px;
  padding-left: 200px;
}

.application-item {
  background-color: var(--part-color-common-white);
  padding: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
  height: 390px;
}

.application-item p {
  font-size: 14px;
  text-align: justify;
}

.application-item:after,
.application-item:before {
  background-color: var(--part-color-theme-primary);
  content: "";
  height: 95px;
  width: 95px;
  position: absolute;
  bottom: -80px;
  left: -45px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-137deg);
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.application-item:after {
  left: auto;
  right: -45px;
  transform: rotate(137deg);
}

.application-item .application-icon {
  color: var(--part-color-heading-primary);
  font-size: 20px;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px dashed transparent;
  position: relative;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.application-item .application-icon i {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.application-item .application-icon:before {
  border: 3px solid var(--part-color-theme-primary);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 10px;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.application-item .application-icon img {
  width: 80%;
  max-height: 80%;
}

.application-item .title {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 18px;
}

.application-item .title a:hover {
  color: var(--part-color-theme-primary);
}

.application-item:hover img,
.application-item:hover .title {
  transform: scale(1.05);
  /* color: #65ABF0; */
}

.application-item:hover:before {
  bottom: -70px;
  left: -45px;
}

.application-item:hover:after {
  left: auto;
  right: -45px;
  bottom: -70px;
}

.application-item:hover .title {
  border-bottom: 1px solid var(--part-color-theme-primary);
}

.application-item:hover .application-icon {
  border-color: var(--part-color-theme-primary);
  transform: rotate(-10deg);
  /* background-color: var(--part-color-theme-secondary); */
}

.application-item:hover .application-icon:before {
  transform: rotate(20deg);
}

.application-page .application-item {
  border: 1px solid var(--part-color-border-1);
}

/* !END: Theme application CSS */
/**----------------------------------------
START: Theme products CSS
*/

.products-image img {
  object-fit: contain;
}

.products-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media only screen and (max-width: 992px) {
  .products-content {
    padding-top: 15px;
  }
}

.products-content .product-item {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0px 2px 12px -4px #707070;
  -webkit-box-shadow: 0px 2px 12px -4px #707070;
  width: 170px;
  border-radius: 18px;
  margin: 10px 6px 10px 6px;
  height: 90%;
}

.products-content .product-item p {
  text-align: center;
  line-height: 13px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.products-content .product-item .first-product-item-text {
  font-size: 11px;
}

.products-content .product-item p:nth-child(2) {
  color: #cd6d44;
}

.product-item p:last-child {
  color: black;
}

.products-content .product-item .product-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  margin-top: 7px;
}

.products-content .product-item .product-logo img {
  width: 50px;
  object-fit: contain;
}

@media only screen and (max-width: 1470px) {
  .products-content .product-item {
    width: 120px;
  }

  .products-content .product-item p {
    line-height: 13px;
    font-size: 10px;
  }

  .products-content .product-item .first-product-item-text {
    font-size: 8px;
  }

  .products-content .product-item .product-logo img {
    width: 40px;
  }
}

@media only screen and (max-width: 705px) {
  .products-content .product-item {
    width: 120px;
  }

  .products-content .product-item p {
    line-height: 13px;
    font-size: 10px;
  }

  .products-content .product-item .product-logo img {
    width: 40px;
  }
}

@media only screen and (max-width: 590) {
  .products-content .product-item {
    width: 70px;
  }

  .products-content .product-item p {
    line-height: 13px;
    font-size: 10px;
  }

  .products-content .product-item .product-logo img {
    width: 30px;
  }
}

@media only screen and (max-width: 350px) {
  .products-content .product-item {
    width: 130px;
    border-radius: 18px;
    margin: 8px 5px 8px 5px;
  }

  .products-content .product-item p {
    line-height: 12px;
    font-size: 10px;
    margin-bottom: 0.2rem;
  }

  .products-content .product-item .product-logo {
    margin-bottom: 10px;
    margin-top: 3px;
  }

  .products-content .product-item .product-logo img {
    width: 30px;
  }
}

/* !END: Theme products CSS */
/*----------------------------------------*/
/**----------------------------------------
START: Theme Contact CSS
----------------------------------------*/
.contact-section .container-fluid {
  box-shadow: 0px 0px 16px -3px rgba(0, 0, 0, 0.25);
  background-color: white;
}

@media only screen and (min-width: 998px) {
  .toast {
    bottom: 0;
  }
}

@media only screen and (max-width: 992px) {
  .contact-thumb {
    padding-left: 0;
    margin-bottom: 50px;
  }
}
.contact-info p {
  font-size: 18px;
}

@media only screen and (max-width: 992px) {
  .contact-info p {
    font-size: 16px;
  }
}

.contact-info .form-wrap .form-group .form-control {
  background-color: transparent;
  padding: 15px;
  border: none;
  border-bottom: 1px solid #464648;
  margin-bottom: 30px;
  box-shadow: none;
  border-radius: 0;
}

.contact-info .form-wrap .form-group .form-control::-webkit-input-placeholder {
  font-size: 17px;
}

.contact-info .form-wrap .form-group .form-control:-moz-placeholder {
  font-size: 17px;
}

.contact-info .form-wrap .form-group .form-control::-moz-placeholder {
  font-size: 17px;
}

.contact-info .form-wrap .form-group .form-control:-ms-input-placeholder {
  font-size: 17px;
}

/* !END: Theme Contact CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.footer-section {
  background-color: var(--part-color-theme-primary);
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 1399px) {
  .footer-section {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.footer-section::before {
  content: "";
  border-top: 2px solid white;
  border-left: 2px solid white;
  border-radius: 5px;
  margin: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
}

.footer-section::after {
  content: "";
  border-top: 2px solid white;
  border-right: 2px solid white;
  border-radius: 5px;
  margin: 10px;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
}

.footer-section .overlay {
  background-color: rgba(40, 41, 54, 0.91);
  opacity: 0.6;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 60px;
  row-gap: 30px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 992px) {
  .footer-top {
    column-gap: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-top {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-section::after,
  .footer-section::before {
    display: none;
  }
}

.footer-top .footer-logo {
  background-color: #f6f3fc;
  padding: 50px 70px;
  position: relative;
}

@media only screen and (max-width: 992px) {
  .footer-top .footer-logo {
    padding: 50px 30px;
  }
}

.footer-top .footer-logo:after {
  background-color: var(--part-color-theme-primary);
  content: "";
  width: 3000px;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-top .footer-logo:before {
  background-color: transparent;
  content: "";
  width: 3000px;
  height: 100%;
  border: 1px solid #4c4b53;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.footer-widget.widget-2 {
  margin-right: 20px;
}

@media only screen and (max-width: 992px) {
  .footer-widget.widget-2 {
    margin-right: 0;
  }
}

.footer-widget.widget-3 {
  margin-right: 50px;
}

.footer-widget.widget-1 p {
  color: white;
  font-size: 17px;
  word-spacing: 4px;
  text-align: justify;
}

.footer-widget.widget-1 div {
  margin-bottom: 35px;
}

@media only screen and (max-width: 992px) {
  .footer-widget.widget-3 {
    margin-right: 0;
  }
}

.footer-widget.widget-4 {
  margin-right: 20px;
}

@media only screen and (max-width: 992px) {
  .footer-widget.widget-4 {
    margin-right: 0;
  }
}

@media only screen and (max-width: 992px) {
  .footer-widget {
    margin-bottom: 50px;
  }
}

.footer-widget .widget-header {
  color: var(--part-color-common-white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 35px;
}

.footer-widget .widget-header::after {
  content: " ";
  width: 100%;
  height: 1px;
  background-color: white;
  display: inline-block;
}

.footer-widget .address-list {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.footer-widget .address-list li {
  font-size: 16px;
  color: var(--part-color-common-white);
  display: flex;
  column-gap: 10px;
}

.footer-widget .address-list li:not(:last-of-type) {
  margin-bottom: 15px;
}

.footer-widget .address-list li i {
  color: var(--part-color-theme-secondary);
  line-height: 1;
  margin-top: 6px;
}

.footer-widget h3::after {
  content: " ";
  width: 100%;
  height: 1px;
  background-color: white;
  display: inline-block;
}
.footer-widget .address-list li a {
  color: var(--part-color-common-white);
}
.footer-widget .address-list li a:hover {
  color: var(--part-color-theme-secondary);
}

.footer-widget .social-list {
  display: flex;
  align-items: center;
  list-style: none;
}

.footer-widget .social-list li a {
  color: var(--part-color-theme-secondary);
  font-size: 17px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #4c4c53;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget .social-list li a:hover {
  background-color: var(--part-color-theme-secondary);
  color: var(--part-color-common-black);
}

.footer-widget .social-list li:nth-child(2) a:hover {
  color: var(--part-color-common-white);
}

.footer-widget .social-list li:not(:last-of-type) {
  margin-left: 10px;
}

.footer-widget .footer-list {
  list-style: none;
  padding: 0;
}

.footer-widget .footer-list li a {
  color: var(--part-color-common-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.footer-widget .footer-list li a:hover {
  color: var(--part-color-theme-secondary);
  opacity: 0.8;
}

.footer-widget .footer-list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.footer-widget .footer-post {
  display: grid;
  grid-template-columns: 85px 1fr;
  align-items: center;
  grid-gap: 20px;
}

.footer-widget .footer-post img {
  height: 85px;
  width: 85px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-widget .footer-post span {
  display: block;
  font-size: 14px;
  color: #b7b7b7;
  margin-bottom: 5px;
}

.footer-widget .footer-post .title {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 0;
}

.footer-widget .footer-post .title a {
  color: var(--part-color-common-white);
}

.footer-widget .footer-post .title a:hover {
  color: var(--part-color-theme-primary);
}

.copyright-area {
  border-top: 0.5px solid white;
}

.copyright-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 2px;
  padding: 15px 0;
}

@media only screen and (max-width: 992px) {
  .copyright-content {
    margin-top: 0;
    flex-direction: column-reverse;
    row-gap: 10px;
    padding: 20px 0;
  }
}

.copyright-content p {
  color: white;
  font-size: 16px;
  font-family: var(--part-ff-body);
  margin: 0;
}

.copyright-content p span {
  color: var(--part-color-theme-secondary);
}

/*Scrool Up*/
#scrollup {
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  overflow: hidden;
  z-index: 999;
  border-radius: 50%;
}

.scroll-to-top {
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: var(--part-color-theme-primary);
  font-size: 20px;
  padding: 0;
  line-height: 40px;
  color: var(--part-color-theme-secondary);
  border-radius: 5px;
  outline: none;
  text-decoration: none;
  transform: translateY(150%);
  transition: all 0.3s ease-in-out;
}

#scrollup.show {
  opacity: 1;
}

#scrollup.show .scroll-to-top {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

/* !END: Theme Footer CSS */

.awards {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.awards .awards-shape1 {
  position: absolute;
  top: 130px;
  left: 0;
  height: 80%;
  object-fit: contain;
}

.awards .awards-shape2 {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 80%;
  object-fit: contain;
}

.awards .swiper-container .section-heading::before {
  background-color: white;
  content: "";
  width: 100%;
  height: 110px;
  position: absolute;
  top: -1px;
  right: 0;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  z-index: -1;
}

@media only screen and (max-width: 1000px) {
  .awards .swiper-container .section-heading::before {
    height: 90px;
  }
}

.swiper-container {
  width: 100%;
  padding-top: 30px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-position: center;
  background-size: cover;
  width: 330px;
  overflow: hidden;
  border-radius: 8px;
}

.swiper-slide .picture {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 330px;
  height: 300px;
  overflow: hidden;
}

@media only screen and (max-width: 992px) {
  .swiper-slide {
    width: 300px;
  }

  .swiper-slide .picture {
    width: 250px;
    height: 230px;
  }
}

@media only screen and (max-width: 450px) {
  .swiper-slide {
    width: 240px;
  }
  .swiper-slide .picture {
    width: 180px;
    height: 150px;
  }
}

.swiper-slide .picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-slide .detail {
  width: 100%;
  padding: 15px 15px;
  text-align: center;
  background: linear-gradient(
    to bottom,
    rgba(98, 137, 196, 1) 0%,
    rgba(78, 112, 163, 1) 22%,
    rgba(61, 89, 131, 1) 54%,
    rgba(49, 73, 109, 1) 100%
  );
}

.swiper-slide .detail p {
  margin: 0;
  font-size: 17px;
  color: white;
  padding: 5px;
}

@media only screen and (max-width: 600px) {
  .swiper-slide .detail p {
    font-size: 14px;
  }
}

.application-section {
  background-color: var(--part-color-theme-primary);
  padding-left: 100px;
  padding-right: 100px;
  scroll-margin-top: 70px;
}

@media only screen and (max-width: 992px) {
  .application-section {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.application-carousel {
  position: relative;
  padding-bottom: 60px;
}

.swiper-pagination {
  line-height: 1;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: white;
  height: 15px;
  width: 15px;
  border: 1px solid var(--part-color-theme-primary);
  opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: radial-gradient(
    circle,
    rgba(232, 165, 124, 1) 0%,
    rgba(237, 147, 92, 1) 4%,
    rgba(240, 112, 34, 1) 24%,
    rgba(223, 92, 12, 1) 49%,
    rgba(117, 127, 179, 1) 79%,
    rgba(63, 78, 153, 1) 94%,
    rgba(48, 60, 121, 1) 100%
  );
}

.shape-left-top {
  position: absolute;
  top: 0;
  left: 0;
}

.shape-right-bottom {
  position: absolute;
  bottom: 0px;
  right: 0;
}

.revelotion-section {
  overflow: hidden;
}

.revelotion-section .revelotion-content {
  padding-left: 40px;
  padding-right: 40px;
  scroll-margin-top: 60px;
}

.revelotion-section .revelotion-content p {
  text-align: justify;
  line-height: 28px;
  word-spacing: 4px;
  font-size: 18px;
}

@media only screen and (max-width: 992px) {
  .revelotion-section .revelotion-content,
  .about-section .about-content .about-main-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .revelotion-section .revelotion-content p,
  .about-section .about-content .about-main-content {
    line-height: 25px;
    word-spacing: normal;
    font-size: 16px;
  }

  .about-content h3 {
    text-align: center;
  }
}
