/**
 * Base
 */
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}
.go-up {
  z-index: 100;
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 100%;
  box-shadow: 3px 3px 7px rgba(0,0,0,.20);
}
.backdrop {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 105;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.55);
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 106;
  width: 270px;
  padding: 30px 15px;
  height: 100vh;
  overflow-y: scroll;
  background: #B62727;
}
.mobile-menu ul a {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.mobile-menu ul a span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}
.mobile-menu ul a span::after {
  content: '+';
}
.mobile-menu ul li ul {
  display: none;
  padding: 0 25px;
}
.mobile-menu .head {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  background: rgba(0,0,0,.25);
  border-radius: 5px;
}
.mobile-menu .head .close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.mobile-menu .head > img {
  display: block;
  max-width: 50%;
}
.mobile-menu ul li.active ul {
  display: block;
}
.mobile-menu ul li.active > a span::after {
  content: '-';
}
.mobile-menu .lang {
  display: flex;
  flex-wrap: wrap;
}
.mobile-menu .lang li {
  margin-right: 15px;
  opacity: .5;
}
.mobile-menu .lang li.active {
  opacity: 1;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev{
  /*top: 767px !important;
  left:1625px;*/
  color:#C82929;

}

.swiper-button-prev, .swiper-rtl .swiper-button-next{
  color:#C82929;
  /*top:767px !important; 
  left: 245px;*/
}

/**
 * Header
 */
.page-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;

}
.page-header .container {
  position: static!important;
  height:120px
}
.page-header .topbar {
   z-index: 10;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.page-header .topbar::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 55px;
  background: #c82929;
  border-radius: 0 0 0 150px;
}
.page-header .topbar .links ul {
    position: relative;
    z-index: 3;
    padding: 10px 0 10px 68px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius:0 0 0 150px;
}
.page-header .topbar .links li {
  position: relative;
  margin-left: 30px;
}
.page-header .topbar .links li:first-child {
  margin-left: 0;
}
.page-header .topbar .links li:last-child {
  margin-left: 15px;
}
.page-header .topbar .links a {
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s linear;
}
.page-header .topbar .links a::after {
  content:  '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0px;
  height: 2px;
  background: transparent;
  transition: all .3s linear;
}
.page-header .topbar .links a:hover::after {
  width: 60%;
  background: #fff;
}
.page-header .topbar .links a img {
  margin-left: 10px;
}
.page-header .topbar .links a img {
  vertical-align: middle;
}
.page-header .topbar .links a.button {
  display: block;
  width: 35px;
  height: 35px;
  color: #B62727;
  text-align: center;
  line-height: 35px;
  background: #fff;
  border-radius: 100%;
  border: unset;
}
.page-header .topbar .links a.button::after {
  display: none;
}
.page-header .topbar .links a.button img {
  position: relative;
  bottom: -9px;
  display: block;
  margin: 0 auto;
}
.page-header .topbar .links li .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
  padding-top: 5px;
  min-width: 100px;
}
.page-header .topbar .links li:hover .dropdown {
  display: block;
}
.page-header .topbar .links li .dropdown ul {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 1px 3px 5px rgba(0,0,0,.2);
}
.page-header .topbar .links li .dropdown ul li {
  margin: 5px 0;
}
.page-header .topbar .links li .dropdown ul a {
  color: #B62727;
  font-size: 11px;
}
.page-header .topbar .links li .dropdown.search {
  left: auto;
  right: 0;
  width: 300px;
}
.page-header .topbar .links li .dropdown form {
  position: relative;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 1px 3px 5px rgba(0,0,0,.2);
}
.page-header .topbar .links li .dropdown form button {
  position: absolute;
  right: 10px;
  top: 10px;
  height: 30px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  outline: none;
  border: unset;
  background: #B62727;
}
.page-header .topbar .links li .dropdown form input {
  width: 100%;
  padding: 5px;
  outline: none;
  font-size: 12px;
  font-weight: 500;
  border: solid 1px #ccc;
}
.page-header .content {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.page-header .content .navigation > ul {
  display: flex;
  flex-wrap: wrap;
}
.page-header .content .navigation > ul > li {
  position: relative;
  margin-left: 30px;
}
.page-header .content .navigation > ul > li > a {
  display: inline-block;
  padding-bottom: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s linear;
  border-bottom: solid 2px transparent;
}
.page-header .content .navigation > ul > li > a:hover {
  border-bottom-color: #fff;
}
.page-header .content .navigation > ul > li .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 7px;
  width:250px;
}
.page-header .content .navigation > ul > li:hover .dropdown {
  display: block;
}
.page-header .content .navigation > ul > li .dropdown ul {
  padding: 15px 20px;
  min-width: 210px;
  background: #fff;
  border-radius: 0 20px 0 20px;
}
.page-header .content .navigation > ul > li .dropdown ul li {
  padding: 5px 0;
}
.page-header .content .navigation > ul > li .dropdown ul a {
  color: #424242;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s linear;
}
.page-header .content .navigation > ul > li .dropdown ul a:hover {
  color: #000;
}


/**
 * Homepage Hero
 */
.homepage-hero-container {
  position: relative;
}
.homepage-hero-container .go-down {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
  position: absolute;
  z-index: 5;
  left: 94%;
  bottom: -35px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transform: translateX(-50%) rotate(0deg) translateY(-70px) translateX(50px);
}
.homepage-hero-container .go-down img {
  margin-right: 10px;
}
.homepage-hero-container .item {
  display: none;
  position: relative;
  height: 100vh;
}
.homepage-hero-container .item.active {
  display: inline-block;
}
.homepage-hero-container .item::before {
  content: '';
  display: block;
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#21335B, rgba(0,0,0,.46));
  background: -webkit-linear-gradient(#212529eb, rgba(0,0,0,.46));
}
.homepage-hero-container .item img {
  display: block;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.homepage-hero-container .item .content {
  position: absolute;
  left: 0;
  z-index: 4;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.homepage-hero-container .item .details {
  padding-right: 40%;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}
.homepage-hero-container .item .details .hero {
  margin-bottom: 10px;
  font-size: 64px;
  font-weight: 700;
}
.homepage-hero-container .item .details p {
  font-size: 16px;
  line-height: 25px;
}
.homepage-hero-container .tabs {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 20%;
  width: 100%;
}
.homepage-hero-container .tabs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.homepage-hero-container .tabs ul li {
  flex: 0 0 22%;
  max-width: 22%;
}
.homepage-hero-container .tabs ul li a {
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
  padding-bottom: 15px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: all .3s linear;
}
.homepage-hero-container .tabs ul li a::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 4px;
  transition: all .3s linear;
}
.homepage-hero-container .tabs ul li a.active::before,
.homepage-hero-container .tabs ul li a:hover::before {
  background: #c82929;
}
.homepage-hero-container .controls {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.homepage-hero-container .controls a {
  display: block;
  width: 60px;
  height: 35px;
  margin-right: 25px;
  transition: all .3s linear;
  text-indent: -9999px;
}
.homepage-hero-container .controls a.prev {
  background: url('../images/icon@left-white.svg') no-repeat;
  background-size: contain;
}
.homepage-hero-container .controls a.next {
  background: url('../images/icon@right-white.svg') no-repeat;
  background-size: contain;
}
.homepage-hero-container .controls a.prev:hover {
  background: url('../images/icon@left-yellow.svg') no-repeat;
  background-size: contain;
}
.homepage-hero-container .controls a.next:hover {
  background: url('../images/icon@right-yellow.svg') no-repeat;
  background-size: contain;
}


/**
 * About Section
 */
.about-section {
  padding: 50px 0;
}
.about-section .hero {
  padding-right: 10%;
  color: #C82929;
  font-family: 'Montserrat', sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 90px;
}
.about-section p {
  padding-right: 10%;
  margin-top: 25px;
  color: #8291AB;
  font-size: 14px;
  line-height: 22px;
}
.about-section .links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.about-section .links li {
  margin-right: 15px;
}
.about-section .links li .bordered {
  position: relative;
  display: block;
  width: 80px;
  height: 60px;
  border: solid 1px #DDDADA;
  border-radius: 5px;
  transition: all .3s linear;
}
.about-section .links li .bordered:hover {
  background: #8291AB;
}
.about-section .links li .bordered img {
  position: relative;
  bottom: -13px;
  display: block;
  margin: 0 auto;
  height: 30px;
  width: auto;
}
.about-section .links li .bordered span {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -20px;
  color: #C9C9C9;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  transition: all .3s linear;
}
.about-section .links li .bordered:hover span {
  opacity: 1;
  visibility: visible;
}
.about-section .badge {
  display: block;
  position: relative;
  padding: 0;
  color: rgba(154, 172, 192, .1);
  font-family: 'Montserrat', sans-serif;
  font-size: 80px;
  margin-bottom: 30px;
}
.about-section .badge span {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 40px;
  transform: translateX(-50%) translateY(-50%);
  color: #9AACC0;
}
.about-section .banners {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-section .banners a {
  position: relative;
  flex: 0 0 calc(60% - 10px);
  max-width: calc(60% - 10px);
  background: #C82929;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 1px 4px #8291AB;
}
.about-section .banners a:nth-child(2) {
  flex: 0 0 40%;
  max-width: 40%;
}
.about-section .banners a img {
  width: 100%;
  height: 100%;
}
.about-section .banners a div {
  position: absolute;
  left: 0;
  top: 50%;
  color: #fff;
  font-size: 20px;
  line-height: 25px;
  text-decoration: none;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  font-family: 'Montserrat', sans-serif;
}
.about-section .banners a div img {
  display: block;
  height: 70px;
  width: auto;
  margin: 0 auto 20px;
}


/**
 * Capability Section
 */
.capability-section {
  position: relative;
}
.capability-section > img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  position:absolute;
}
.capability-section .content {

}
.capability-section .content .hero {
  display: inline-block;
  width: 50%;
  padding: 0 30px;
  background: #fff;
}
.capability-section .content .hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 80%;
  margin-left: -70px;
  height: 130px;
  background: #fff;
  transform: skew(-40deg);
}
.capability-section .content .hero .badge {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0;
  color: rgba(154, 172, 192, .1);
  font-family: 'Montserrat', sans-serif;
  font-size: 100px;
  margin-bottom: 30px;
  text-align: left;
}
.capability-section .content .hero .badge span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  font-size: 60px;
  transform: translateX(-50%) translateY(-50%);
  color: #9AACC0;
}
.capability-section .content .desc {
  padding: 40px 0;
  width: 30%;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
}
.capability-section .content .item {
    padding: 30px;
    padding-bottom: 25px;
    background: #fff;
    border-radius: 5px;
    height: 100%;
    border: solid 1px #ccc;
    transition: all .3s linear;
}
.capability-section .content .item .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  background: #E5E5E5;
  border-radius: 100%;
  transition: all .3s linear;
}
.capability-section .content .item .label {
  margin: 30px 0;
  color: #646464;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  transition: all .3s linear;
}
.capability-section .content .item p {
  color: #798196;
  font-size: 16px;
  line-height: 24px;
  transition: all .3s linear;
}
.capability-section .content .item:hover {
  background: #3C3C3C;
}
.capability-section .content .item:hover .icon {
  background: #fff;
}
.capability-section .content .item:hover .label {
  color: #fff;
}
.capability-section .content .item:hover p {
  color: #fff;
}
.capability-section .content .item  a {
  text-decoration:none;
  list-style:none;
  color:#1D2B4F;
  transition: all .3s linear;
}
.capability-section .content .item:hover a {
  text-decoration:none;
  list-style:none;
  color:#fff;
}
.logos-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.logos-section img {
  flex: 0 0 15%;
  max-width: 15%;
}
.logo{
  padding: 1px;
  position:relative;
  top:2px;
}
/**
 * Machine Section
 */
.machine-section {
  padding: 100px 0;
}
.machine-section .row {
  align-items: center;
}
.machine-section .hero {
  color: #9AACC0;
  font-size: 48px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  line-height: 60px;
}
.machine-section .hero + p {
  margin-top: 15px;
  color: #000;
  font-size: 16px;
  line-height: 22px;
}
.machine-section .item {
  display: block;
  position: relative;
}
.machine-section .item > img {
  display: block;
  width: 100%;
  border-radius: 8px;
}
.machine-section .item .details {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 10px;
  transform: translateY(-50%);
}
.machine-section .item .label {
  margin: 20px 0;
  font-size: 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.machine-section .item p {
  font-size: 16px;
  line-height: 22px;
}
.icon-machine{
 fill:white;
}

/**
 * Services Section
 */
.services-section {
  padding: 100px 0;
  background: url('../images/bg@services.jpg') repeat;
}
.services-section .row {
  align-items: center;
}
.services-section .hero {
  color: #9AACC0;
  font-size: 48px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  line-height: 60px;
}
.services-section .hero + p {
  margin-top: 15px;
  color: #000;
  font-size: 16px;
  line-height: 22px;
}
.services-section .item {
  display: block;
  position: relative;
}
.services-section .item > img {
  display: block;
  width: 100%;
  border-radius: 8px;
}
.services-section .item .details {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 10px;
  transform: translateY(-50%);
}
.services-section .item .label {
  margin: 20px 0;
  font-size: 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.services-section .item p {
  font-size: 16px;
  line-height: 22px;
}



/**
 * Press Area
 */
.press-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 30px 0;
  padding-top: 70px;
  padding-bottom: 30px;
  border-top: solid 1px #D9D9D9;
  padding-left: 0;
}
.press-area .hero {
  flex: 0 0 270px;
  max-width: 270px;
  color: #C82929;
  font-size: 32px;
  line-height: 48px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.press-area .carousel {
  position: relative;
  flex: 0 0 calc(100% - 350px);
  max-width: calc(100% - 350px);
}
.press-area .carousel .item {
  position: relative;
  font-size: 12px;
  padding: 30px 0;
  line-height: 18px;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none ;
}
.press-area .carousel strong {
  font-weight: 700;
}
.press-area .carousel .slick-arrow {
  position: absolute;
  right: 0!important;
  bottom: 30px!important;
  left: auto!important;
  width: 32px;
  height: 16px;
  text-indent: -9999px;
}
.press-area .carousel .slick-arrow.slick-prev {
  margin-right: 50px;
  background: url('../images/icon@left-blue.svg') no-repeat center;
}
.press-area .carousel .slick-arrow.slick-next {
  background: url('../images/icon@right-blue.svg') no-repeat center;
}

/**
 * Page Hero
 */
.page-hero {
  position: relative;
}
.page-hero img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.page-hero .content {
  position: absolute;
  bottom: 50px;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
  width: 600px;
  text-align: center;
  max-width: 100%;
}
.page-hero .content .hero {
  font-size: 60px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.page-hero .content p {
  margin-top: 30px;
  font-size: 16px;
  line-height: 26px;
}


/**
 * Breadcrumb
 */
.breadcrumb-container {
  padding: 25px 0;
  border-bottom: solid 1px #EFEFEF;
}
.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.breadcrumb-container ul {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb-container ul:nth-child(1) li {
  margin-right: 20px;
}
.breadcrumb-container ul:nth-child(2) li {
  margin-left: 15px;
}
.breadcrumb-container ul:nth-child(1) li a {
  position: relative;
  color: #9D9D9D;
  font-size: 12px;
  text-decoration: none;
}
.breadcrumb-container ul:nth-child(1) li:not(:first-child) a::before {
  position: absolute;
  left: 0;
  top: 50%;
  margin-left: -15px;
  transform: translateY(-50%);
  content:  '>';
  font-weight: 600;
}

/**
 * About Page
 */
.page-about .hero {
  color: #C82929;
  font-size: 32px;
  line-height: 48px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.page-about p {
  font-size: 16px;
  line-height: 26px;
  margin-top: 30px;
}
.page-about .highlight {
  padding: 20px;
  background: #EBF0F3;
}
.page-about .subhead {
  color: #C82929;
  font-size: 32px;
  line-height: 48px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.page-about p + .subhead {
  margin-top: 30px;
}
.page-about .steps-area {
  margin: 50px 0;
  padding: 30px 0;
  background: #C82929;
}
.page-about .steps-area .hero {
  color: #fff;
}
.page-about .steps-area .row {
  align-items: center;
}
.page-about .steps-area p {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
}
.page-about .steps {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
.page-about .steps li {
  flex: 0 0 20%;
  max-width: 20%;
  position: relative;
  margin-right: 20px;
  padding: 15px;
  margin-right: 10px;
  padding-top: 110px;
  border: solid 2px #fff;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  transition: all .3s linear;
}
.page-about .steps li.active,
.page-about .steps li:hover {
  background: #2b2c2e;
}
.page-about .steps li span {
  position: absolute;
  left: 15px;
  top: 15px;
}
.page-about .steps-area .step-item {
  display: none;
}
.page-about .steps-area .step-item.active {
  display: block;
}
.page-about .image-area {
  padding-bottom: 70px;
}
.page-about .image-area .row {
  align-items: center;
}
.page-about .image-area .gallery-wrapper {
  position: relative;
  padding: 100px 100px 100px 0;
}
.page-about .image-area .gallery-wrapper::before {
  content:  '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 100%;
  background: #C82929;
  border-radius: 8px;
}
.page-about .image-area .gallery-wrapper > div {
  position: relative;
  z-index: 10;
}
.page-about .image-area .gallery-wrapper img {
  display: block;
  width: 100%;
  border-radius: 8px;
}
.page-about .image-area .slick-arrow {
  position: absolute;
  top: auto!important;
  right: 0!important;
  bottom: -70px!important;
  left: auto!important;
  width: 32px;
  height: 16px;
  text-indent: -9999px;
  filter: brightness(0) invert(1);
}
.page-about .image-area .slick-arrow.slick-prev {
  margin-right: 50px;
  background: url('../images/icon@left-blue.svg') no-repeat center;
}
.page-about .image-area .slick-arrow.slick-next {
  background: url('../images/icon@right-blue.svg') no-repeat center;
}

/**
 * Links Section
 */
.links-section {
  padding: 50px 0;
  background: #EBF0F3;
}
.links-section .hero {
  margin-bottom: 25px;
  color: #B62727;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}
.links-section ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.links-section ul li {
  margin: 0 10px;
}
.links-section ul li a {
  display: block;
  height: 40px;
  color: #000;
  font-size: 14px;
  text-decoration: none;
  padding-left: 15px;
  padding-right: 50px;
  line-height: 40px;
  background: #fff url('../images/icon@right-arrow.svg') no-repeat 93% center;
  border-radius: 8px;
}


/**
 * History Page
 */
.page-history {
  padding: 50px 0 100px;
}
.page-history .timeline ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-history .timeline ul::before {
  content:  '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 96%;
  margin-left: 2%;
  height: 4px;
  background: #E5E5E5;
}
.page-history .timeline ul li {
  cursor: pointer;
  position: relative;
  top: -20px;
  z-index: 10;
  text-align: center;
  transition: all .3s linear;
}
.page-history .timeline ul li span {
  display: block;
  width: 48px;
  height: 48px;
  background: #C82929;
  border-radius: 100%;
  transition: all .3s linear;
}
.page-history .timeline ul li strong {
  display: block;
  padding-top: 10px;
  color: #1D2B4F;
  font-weight: 600;
}
.page-history .timeline ul li.active span {
  background: #fff;
  border: solid 12px #6c757d;
}
.page-history .history-items {
  margin-top: 50px;
}
.page-history .history-items .item {
  display: none;
}
.page-history .history-items .item.active {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.page-history .history-items .item img {
  flex: 0 0 380px;
  max-width: 380px;
  border-radius: 8px;
}
.page-history .history-items .item .content {
  padding: 30px;
  border: solid 1px #E5E5E5;
  border-radius: 0 8px 8px 0;
  color: #798196;
  font-size: 14px;
  line-height: 26px;
  flex: 0 0 calc(100% - 380px);
  max-width: calc(100% - 380px);
}


/**
 * Page Products
 */
.page-products {
  padding-bottom: 50px;
}
.page-products .sidebar {
  border: solid 1px #EBF0F3;
  border-radius: 8px;
  overflow: hidden;
}
.page-products .sidebar .hero {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: #C82929;
  line-height: 65px;
  text-align: center;
}
.page-products .sidebar ul li a {
  position: relative;
  display: block;
  padding: 20px 12px;
  color: #9AACC0;
  font-size: 14px;
  text-decoration: none;
  border-top: solid 1px #EBF0F3;
}
.page-products .sidebar ul li a::after {
  content:  '>';
  position: absolute;
  right: 15px;
}
.page-products .sidebar ul li:first-child a {
  border-top: unset;
}
.page-products .sidebar ul li.active a {
  color: #C82929;
  font-weight: 600;
}
.page-products .products img {
  display: block;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-products .products {
  display: none;
}

.page-products .products.active {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 24px;
  border-radius: 9px;
}
/**
 * Step Detail
 */
.step-detail {
  padding-bottom: 50px;
}
.step-detail .hero {
  color: #C82929;
  font-size: 48px;
  font-weight: 600;
  margin:15px 0px;
}
.step-detail .container 
{ 
  overflow:hidden; 
}
.step-detail p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 25px;
}
.step-detail .image {
  float: right;
  margin-left: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
}

.step-detail li{
  line-height: 3rem;
}

/**
 * Product Detail
 */
.product-detail {
  padding-bottom: 100px;
}
.product-detail .categories {
  padding: 10px;
  border: solid 3px #EBF0F3;
  border-radius: 9px;
}
.product-detail .categories .hero {
  margin-bottom: 20px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 9px;
  font-family: 'Montserrat', sans-serif;
  background: #9AACC0;
}
.product-detail .categories ul {
  height: 260px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.product-detail .categories ul::-webkit-scrollbar {
  width: 6px;
}
.product-detail .categories ul::-webkit-scrollbar-track {
  background: transparent;
}
.product-detail .categories ul::-webkit-scrollbar-thumb {
  background-color: #9AACC0;
  border-radius: 20px;
}
.product-detail .categories li {
  margin-bottom: 20px;
}
.product-detail .categories li a {
  color: #9AACC0;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}
.product-detail .categories li.active a {
  color: #C82929;
}
.product-detail .product {
  display: none;
}
.product-detail .product.active {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border: solid 3px #EBF0F3;
  font-size: 16px;
  line-height: 24px;
  border-radius: 9px;
}
.product-detail .product > * {
  flex: 0 0 49%;
  max-width: 49%;
}
.product-detail p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 25px;
}


/**
 * Contact
 */
iframe {
  display: block;
}
.page-contact {
  position: relative;
}
.page-contact::before {
  content:  '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: #C82929;
}
.page-contact .address {
  padding: 20px;
  height: 100%;
  color: #fff;
  background: #C82929;
}
.page-contact .address .hero {
  font-size: 32px;
  font-weight: 600;
  line-height: 46px;
  margin-bottom: 20px;
}
.page-contact .row {
  position: relative;
  z-index: 10;
  align-self: stretch;
}
.page-contact .address p {
  font-size: 14px;
  line-height: 18px;
  margin-top: 30px;
}
.page-contact .address img {
  vertical-align: middle;
  margin-right: 15px;
}
.page-contact form {
  padding-bottom: 30px;
}
.page-contact form .field {
  margin-bottom: 20px;
}
.page-contact form .field input,
.page-contact form .field textarea {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 15px;
  font-size: 14px;
  border: solid 1px #E5E5E5;
  border-radius: 8px;
  outline: none!important;
}
.page-contact form .field .valid {
  color: #4caf50;
  border-color: #4caf50!important;
}
.page-contact form .field .error {
  color: #f44336;
  border-color: #f44336!important;
}
.page-contact form .field textarea {
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 195px;
  resize: none;
}
.page-contact form .action-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.page-contact form .action-area p {
  flex: 0 0 75%;
  max-width: 75%;
  font-size: 12px;
  line-height: 24px;
}
.page-contact form .action-area button {
  flex: 0 0 25%;
  max-width: 25%;
  height: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 9px;
  line-height: 50px;
  background: #C82929;
  border: unset;
}

/**
 * Footer
 */
.page-footer {
  position: relative;
  z-index: 6;
  background: #C82929;
  box-shadow: 0px 4px 4px rgba(0,0,0,.25);
}
.page-footer .container {
  position: relative;
}
.page-footer .container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,.25);
}
.page-footer .col-sm-9 > .row > div {
  padding: 80px 15px;
}
.page-footer .highlight {
  background: #B62727;
}
.page-footer .about {
  padding-top: 80px;
}
.page-footer .about img {
  max-width: 60%;
  display: block;
}
.page-footer .about .social {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  margin-left: 10px;
}
.page-footer .about .social li {
  margin-right: 10px;
}
.page-footer .about .social a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  border: solid 1px #fff;
  transition: all .3s linear;
}
.page-footer .about .social a:hover {
  background: #B62727;
}
.page-footer .address strong,
.page-footer .list strong {
  display: block;
  margin-bottom: 30px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.page-footer .list ul li {
  font-size: 13px;
  margin: 20px 0;
}
.page-footer .list ul a {
  position: relative;
  padding-bottom: 5px;
  color: #fff;
  text-decoration: none;
}
.page-footer .list ul a::after {
  content:  '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0px;
  height: 2px;
  background: transparent;
  transition: all .3s linear;
}
.page-footer .list ul a:hover::after {
  width: 60%;
  background: #fff;
}
.page-footer .address p {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin: 20px 0;
}
.copyright {
  background: #2B2C2E;
}
.copyright .container {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.copyright .container p {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
ek css 

.about-section .col-sm-6 .aos-init .aos-animate .about-right .about-links {
    display: flex;
    flex-direction: column;
}

.about-section .about-right .about-links .link-item .link-name {
    font-weight: 300;
    font-size: 25px;
    color: #9AACC0;
}

.about-section .container .about-right .about-links .link-item >svg {
    position: absolute;
    right: 0;
}

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

.about-section .container .about-right .about-links .link-item .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #d62a20 0%, #000000 100%);
    height: 2px;
}

.about-section .container .about-right .about-links .link-item {
    display: flex;
    position: relative;
    padding: 28px 0;
    align-items: center;
    width: auto;
    transition: 0s;
    text-decoration: none;
}
.about-section .container .about-right .about-links .link-item >svg:hover{
 color:#000;
}

.about-section .container .about-right .about-links .link-item >svg path {
    fill: #fff;
    transition: .4s;
}

.about-section .container .about-right .about-links .link-item:hover >svg path {
    fill: #000;
}

#myVid{
overflow-y: hidden;
width: 100%;
height: 100%;
}

.about_us {
    background: url(https://hazarkalip.atolye312.com/assets/images/background_left.png);
    background-repeat: no-repeat;
   background-position:left;
}

.page-header .content .navigation > ul > li >a.button{
    display: inline-block;
    width: 33px;
    height: 21px;
    color: #B62727;
    text-align: center;
    line-height: 22px;
    background: #fff;
    border-radius: 15%;
    padding-bottom: 14px;
    border: unset;
}


.icon-scroll,
.icon-scroll:before{
  position: absolute;
  left: 50%;
}
.icon-scroll{
    width: 31px;
    height: 55px;
    margin-left: -20px;
    top: 50%;
    margin-top: -18px;
    box-shadow: inset 0 0 0 1px #fff;
    border-radius: 25px;
}
.icon-scroll:before{
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: scroll;
}
@keyframes scroll{
  0%{
    opacity: 1;}
  100%{
    opacity: 0;
    transform: translateY(46px);
  }
}

.scroll-desc{
  margin-bottom:112px;
  transform: translateX(50%) rotate(90deg) translateY(27px)
}

.contact .map-responsive:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #d62617;
    pointer-events: none;
    mix-blend-mode: lighten;
    z-index: 1;
}

.map-responsive {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/*Carousel Gallery*/
.carousel-gallery{
  margin: 50px 0;
  padding: 0 30px;
  
}

.swiper-slide {
		display: block;
		width: 100%;
		height: 200px;
	    border-radius: 4px;
	    overflow: hidden;
		position: relative;
	   -webkit-box-shadow: 3px 2px 20px 0px rgba(0,0,0, .2);
       -moz-box-shadow: 3px 2px 20px 0px rgba(0,0,0, .2);
        box-shadow: 3px 2px 20px 0px rgba(0,0,0, .2);
}

.swiper-slide  a:hover, .swiper-slide > .img, .overlay{
 opacity: 1;
}

.swiper-slide .img{
				width: 100%;
				height: 100%;
				background-size: cover;
				background-position: center center;
}

.swiper-slide  a > em{
						color: #fff;
						font-size: 26px;
						position: relative;
            top: 50%; 
            -webkit-transform: translateY(-50%); 
            -ms-transform: translateY(-50%); 
            -o-transform: translateY(-50%); 
            transform: translateY(-50%);
            display: inline-block;
}

.swiper-slide .overlay{
			width: 100%;
			height: 100%;
			background-color: rgba(20,20,20, .8);
			text-align: center;
			opacity: 0;
		   -webkit-transition: all .2s linear; 
          -o-transition: all .2s linear; 
          transition: all .2s linear;
}

.swiper-pagination{
		position: relative;
		bottom: auto;
		text-align: center;
		margin-top: 25px;


}
	
	
.swiper-pagination-bullet{
	  -webkit-transition: all .2s linear; 
      -o-transition: all .2s linear; 
      transition: all .2s linear;
}
	
	.swiper-pagination-bullet:hover{
            opacity: .7;
	  }
	

	.swiper-pagination-bullet-active{
				background-color: #d63031;
				transform: scale(1.1, 1.1);
			}

/*# Carousel Gallery*/


/**
 * Responsive
 */
@media(max-width: 1024px) {


  .swiper-button-next, .swiper-rtl .swiper-button-prev{
      top: 823px !important;
      color: #C82929;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next{
      top: 823px !important;
        color: #C82929;
        
}
  .homepage-hero-container .tabs {
    bottom: 15%;
  }
  .capability-section .content .hero .badge {
    font-size: 75px;
  }
  .services-section .item .details img {
    max-width: 60%;
  }
  .services-section .item .label {
    font-size: 18px;
  }



.swiper-button-prev, .swiper-rtl .swiper-button-next{
      top: 935px !important;
        color: #C82929;
}
  .page-header .logo img {
    width: 140px;
  }
  .page-header .content ul li {
    margin-left: 15px;
  }
  .page-header .content ul li a {
    font-size: 12px;
  }
  .homepage-hero-container .tabs ul li a {
    font-size: 14px;
  }
  .about-section .badge {
    font-size: 60px;
  }
  .about-section .links li {
    margin-right: 5px;
  }
  .capability-section .content .hero .badge {
    font-size: 50px;
  }
  .capability-section .content .hero .badge span {
    font-size: 35px;
  }
  .capability-section .content .item {
    padding: 15px;
  }
  .capability-section .content .desc {
    padding-top: 60px;
  }
  .services-section .item .details img {
    display: none;
  }
  .services-section .item .label {
    font-size: 13px;
  }
  .services-section .item p {
    font-size: 11px;
  }
  .services-section .hero {
    font-size: 25px;
    line-height: 30px;
  }
  .page-about .steps li {
    flex-wrap: 0 0 24%;
    max-width: 24%;
    font-size: 12px;
    padding: 5px;
    padding-top: 80px;
  }
  .page-about .steps li span {
    top: 5px;
    left: 5px;
  }
  .step-detail .image {
    float: none;
    width: 100%;
    margin: 10px 0 10px;
  }
  .page-footer .about .social a {
    width: 36px;
    height: 36px;
  }
  .page-footer .list ul li {
    line-height: 20px;
  }

}

@media(max-width: 767px) {

  .homepage-hero-container .go-down{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer;
    position: absolute;
    z-index: 5;
    left: 75%;
    bottom: -35px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transform: translateX(-50%) rotate(0deg) translateY(-70px) translateX(50px);
  
  }
  
  .align-items-center {
    align-items: center!important;
    width: 100%;
   }

   .page-header .content .navigation > ul
   {
	  display:none;
   }
  .page-footer .list {
    margin-bottom: 50px;
  }
  .page-header {
    padding: 10px 15px;
  }
  .page-header .topbar {
    display: none!important;
  }
  
  .page-header .navigation {
    position: relative;
  }
  .page-header .navigation .mobile-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    transform: translateY(-50%);
  }
  .page-header .navigation .mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    margin: 5px 0;
  }
  .page-header .navigation ul {
    display: none;

  }
  .homepage-hero-container .item .details .hero {
    font-size: 40px;
    line-height: 48px;
  }
  .homepage-hero-container .item .details {
    padding-right: 0;
  }
  .homepage-hero-container .item .details p {
    font-size: 12px;
    line-height: 16px;
  }
  .homepage-hero-container .tabs ul li a {
    font-size: 11px;
  }
  .homepage-hero-container .tabs {
    bottom: 30%;
  }
  .homepage-hero-container .controls a {
    width: 30px;
  }
  .about-section .hero {
    padding-right: 0;
    font-size: 50px;
    line-height: 55px;
  }
  .about-section .links {
    margin-bottom: 30px;
  }
  .about-section .links li .bordered {
    width: 70px;
  }
  .about-section .badge {
    font-size: 50px;
  }
  .about-section .badge span {
    font-size: 35px;
  }
  .about-section .banners a div img {
    height: 50px;
  }
  .capability-section .content {
    position: static;
  }
  .capability-section {
    padding-bottom: 20px;
  }
  .capability-section > img {
    display: none;
  }
  .capability-section .content .desc {
    padding: 15px 0;
    color: #000;
  }
  .capability-section .content .hero .badge {
    font-size: 30px;
  }
  .capability-section .content .hero .badge span {
    font-size: 25px;
  }
  .capability-section .content .hero {
    width: 100%;
  }
  .capability-section .content .hero::after {
    transform: unset;
    width: 100%;
    height: 70px;
    margin-left: 0;
  }
  .capability-section .content .desc {
    width: 100%;
  }
  .capability-section .content .item {
    margin-bottom: 20px;
  }
  .logos-section img {
    flex: 0 0 40%;
    max-width: 40%;
    margin-bottom: 15px;
  }
  .services-section {
    padding: 40px 0;
  }
  .services-section .item {
    margin-top: 25px;
  }
  .services-section .item .details img {
    display: block;
    margin: 0 auto;
  }
  .press-area {
    padding-top: 30px;
  }
  .press-area .hero {
    flex: 0 0 100%;
    max-width: 100%;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .press-area .carousel {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .press-area .carousel .slick-arrow {
    top: -40px!important;
    bottom: auto!important;
  }
  .copyright img {
    margin-top: 15px;
  }
  .page-hero .content .hero {
    font-size: 35px;
  }
  .page-about .highlight {
    margin-top: 30px;
  }
  .page-about .steps {
    margin-bottom: 30px;
  }
  .page-about .image-area .gallery-wrapper {
    padding-right: 50px;
  }
  .links-section ul li {
    margin-bottom: 15px;
  }
  .page-history .timeline ul li span {
    width: 25px;
    height: 25px;
  }
  .page-history .timeline ul li {
    top: -11px;
  }
  .page-history .timeline ul li strong {
    font-size: 10px;
  }
  .page-history .history-items .item img {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .page-history .history-items .item .content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .page-products .sidebar {
    margin-bottom: 25px;
  }
  .product-detail .categories {
    margin-bottom: 25px;
  }
  .page-contact::before {
    width: 100%;
  }
  .page-contact .form {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    margin: 0 -15px;
  }
  .page-footer .col-sm-9 > .row > div {
    padding: 30px 15px;
  }
  
  .container .logos-section {
      padding-top: 72px;
  }

  .logos-section img {
     max-width: 18%;
  }
  
}

ul li::marker {
  
 content: " ";

}

.form-submit{
  padding: 20px;
  border:0px;
  background-color:#E9ECEF;
}
.form-submit:hover{
  padding: 20px;
  border:0px;
  background-color: #DDE0E3;
}

.form-column label{
  color:#C82929;
  line-height: 2.5;
  font-weight:600;
}

.form-column .error{
  color:red !important;
  font-size:10px !important;
  display:contents;
}

.cookie-layer img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1.5em !important;
  width: 1.5em !important;
  margin: 0 .07em !important;
  vertical-align: -0.4em !important;
  background: none !important;
  padding: 0 !important;
}

.cookie-layer .cookie-layer__text {
    color: #333;
    font-family: "Arial", sans-serif;
    color: #fff;
    font-size: 15px;
    font-size: 0.9rem;
    line-height: 1.25;
}

.cookie-layer__button {
    border: none;
    font-size: 1rem;
    border-radius: 23px;
    background: #333;
    color: #fff;
    line-height: 1;
    height: 46px;
    padding: 12px 35px 13px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

.cookie-layer a{
  color: #fff;
}

.cookie-layer {
    position: fixed;
    left: 2.2rem;
    bottom: 2.8rem;
    padding: 1rem;
    border-radius: .5rem;
    background-image: linear-gradient(to bottom, rgba(62, 62, 62, 0.7), rgba(34, 33, 33, 0.7));
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .9rem;
    width: 30rem;
    max-width: 80%;
    transition: all .3s;
    -webkit-backdrop-filter: blur(0.2rem);
    backdrop-filter: blur(0.2rem);
	z-index:10;
}

.cookie-layer__button {
    margin-left: 1rem;
    flex-shrink: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: #111114;
  
}

.cookie-layer p {
    margin: 0;
    line-height: 1.25;
}

.cookie-layer p:not(:first-child) {
    margin-top: .3rem;
}

.cookie-layer.hidden {
    opacity: 0;
    transform: translateY(35%);
    backdrop-filter: none;
}

@media screen and (min-width: 1200px) and (max-width:1600px){

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    top: 823px !important;
    color: #C82929;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    top: 823px !important;
    color: #C82929;
  }
  
  .container > .logos-section {
    padding-top: 72px;
  }

  .logos-section  img {
     max-width: 18%;
   }
 }

@media screen and (max-width: 767px) and (min-width:250px){

     .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
      top: 1250px !important;
      color: #C82929;
    }
  
    .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
      top: 1250px !important;
      color: #C82929;
    }

    .cookie-layer {
        bottom: 0;
        left: 0;
        right: 0;
        width: auto;
        max-width: none;
        flex-direction: column;
        border-radius: 0;
        text-align: center;
		z-index:20;
    }

    .cookie-layer__button {
        margin-left: 0;
        margin-top: 1rem;
    }

}

@media(min-width: 250px)and (max-width:400){
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    top: 1340px !important;
    color: #C82929;
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    top: 1340px !important;
    color: #C82929;
  }
}