/* CSS Document */

/*==============================================================

    Common Styles Initials

==============================================================*/

html {
  -webkit-text-size-adjust: none;

  /* Prevent font scaling in landscape */

  width: 100%;

  height: 100%;

  -webkit-font-smoothing: antialiased;

  -moz-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;
}

input[type="submit"] {
  -webkit-appearance: none;

  border-radius: 0;
}

*,
*:after,
*:before {
  box-sizing: border-box;

  margin: 0;

  padding: 0;
}

body {
  margin: 0;

  padding: 0;

  font-family: "Raleway", sans-serif;

  -webkit-font-smoothing: antialiased;

  font-weight: 400;

  width: 100%;

  min-height: 100%;

  color: #000;

  background: #fff;
}

a {
  outline: none;

  text-decoration: none;

  color: #7f1416;
}

a:hover,
a:focus {
  outline: none;

  text-decoration: none;

  color: #7f1416;
}

input,
textarea,
select,
.custom-select:focus {
  outline: none;

  resize: none;

  box-shadow: none;

  font-family: "Raleway", sans-serif;

  border-radius: 0px !important;
}

select:focus::-ms-value {
  background-color: transparent;
}

select::-ms-expand {
  display: none;
}

select.select {
  -moz-appearance: none;

  -webkit-appearance: none;

  appearance: none;

  background-image: url("../images/icons/arrow-down.svg");

  background-repeat: no-repeat;

  background-position: center right 19px;
}

input::-webkit-input-placeholder {
  color: #6c7ba8;

  opacity: 1;
}

input::-moz-placeholder {
  color: #6c7ba8;

  opacity: 1;
}

input:-ms-input-placeholder {
  color: #6c7ba8;

  opacity: 1;
}

input::-ms-input-placeholder {
  color: #6c7ba8;

  opacity: 1;
}

input::placeholder {
  color: #6c7ba8;

  opacity: 1;
}

a,
input,
button {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;

  padding: 0;

  font-weight: normal;
}

h1 {
  font-size: 48px;

  font-weight: bold;

  color: #fff;
}

h2 {
  font-size: 32px;

  font-weight: 600;

  color: #303e68;
}

h3 {
  font-size: 18px;

  font-weight: bold;

  color: #303e68;
}

img {
  border: 0;

  vertical-align: top;

  max-width: 100%;

  height: auto;
}

ul,
ol {
  margin: 0;

  padding: 0;

  list-style: none;
}

p {
  margin: 0 0 15px 0;

  padding: 0;

  color: #4d5d8f;

  font-size: 18px;
}

.slick-slide {
  outline: none !important;
}

.bg_img {
  display: none;
}

/*==============================================================

    Bootstrap Hack

==============================================================*/

.form-control::-webkit-input-placeholder {
  opacity: 1;
}

.form-control:-moz-placeholder {
  opacity: 1;
}

.form-control::-moz-placeholder {
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  opacity: 1;
}

.form-control:focus {
  box-shadow: none !important;
}

.btn:focus {
  box-shadow: none !important;
}

/*==============================================================

    WordPress Core

==============================================================*/

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;

  margin: 5px auto 5px auto;
}

.alignright {
  float: right;

  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;

  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;

  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;

  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;

  margin-left: auto;

  margin-right: auto;
}

.wp-caption {
  background: #fff;

  border: 1px solid #f0f0f0;

  max-width: 96%;

  /* Image does not overflow the content area */

  padding: 5px 3px 10px;

  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;

  height: auto;

  margin: 0;

  max-width: 98.5%;

  padding: 0;

  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;

  line-height: 17px;

  margin: 0;

  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */

.screen-reader-text {
  border: 0;

  clip: rect(1px, 1px, 1px, 1px);

  -webkit-clip-path: inset(50%);

  clip-path: inset(50%);

  height: 1px;

  margin: -1px;

  overflow: hidden;

  padding: 0;

  position: absolute !important;

  width: 1px;

  word-wrap: normal !important;

  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;

  clip: auto !important;

  -webkit-clip-path: none;

  clip-path: none;

  color: #444;

  display: block;

  font-size: 1em;

  height: auto;

  left: 5px;

  line-height: normal;

  padding: 15px 23px 14px;

  text-decoration: none;

  top: 5px;

  width: auto;

  z-index: 100000;
}

/*==============================================================

    Custom Style

==============================================================*/

/* animate */

.animated {
  -webkit-animation-duration: 1s;

  animation-duration: 1s;

  -webkit-animation-fill-mode: both;

  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;

  animation-duration: 2s;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;

    -webkit-transform: translateY(20px);

    transform: translateY(20px);
  }

  100% {
    opacity: 1;

    -webkit-transform: translateY(0);

    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;

    -webkit-transform: translateY(20px);

    -ms-transform: translateY(20px);

    transform: translateY(20px);
  }

  100% {
    opacity: 1;

    -webkit-transform: translateY(0);

    -ms-transform: translateY(0);

    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;

  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;

    -webkit-transform: translateY(-20px);

    transform: translateY(-20px);
  }

  100% {
    opacity: 1;

    -webkit-transform: translateY(0);

    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;

    -webkit-transform: translateY(-20px);

    -ms-transform: translateY(-20px);

    transform: translateY(-20px);
  }

  100% {
    opacity: 1;

    -webkit-transform: translateY(0);

    -ms-transform: translateY(0);

    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;

  animation-name: fadeInDown;
}

/* animate */

/* web style */

.section {
  padding: 6.25rem 0px 6.25rem;
}

.inner-pt {
  padding-top: 6.25rem;
}

.inner-pb {
  padding-bottom: 6.25rem;
}

.container {
  max-width: 1310px;

  width: 100%;
}

.bg {
  background: #f5f5f5;
}

.img {
  width: 100%;
}

.hover-box {
  overflow: hidden;
}

.hover-box > * {
  transition: transform 0.2s;
}

.hover-box:hover > * {
  transform: scale(1.1);
}

.sec-title {
  padding: 31px 0px 25px 30px;

  position: relative;
}

.sec-title .line {
  position: absolute;

  left: 0;

  top: 0;
}

.sec-title .line:before,
.sec-title .line:after {
  content: "";

  position: absolute;

  background: #7f1416;
}

.sec-title .line:before {
  width: 30px;

  height: 5px;

  top: 0;

  left: 0px;
}

.sec-title .line:after {
  width: 5px;

  height: 30px;

  top: 0;

  left: 0px;
}

.sec-title h5 {
  font-size: 24px;

  font-weight: bold;

  text-transform: uppercase;

  color: #303e68;

  margin-bottom: 12px;
}

.sec-title h2 {
  font-size: 32px;

  font-weight: 400;

  text-transform: uppercase;

  color: #303e68;
}

.btn {
  border-radius: 0 !important;

  font-size: 16px;

  font-weight: bold;

  text-transform: uppercase;

  padding: 12px 30px 12px 30px;

  text-shadow: none;
}

.btn:hover {
  text-shadow: none;
}

.btn.stl-one {
  background: #fff;

  color: #7f1416;

  border: 1px solid #fff;
}

.btn.stl-one:focus,
.btn.stl-one:hover {
  background: none;

  color: #fff;
}

.btn.stl-two {
  background: #7f1416;

  color: #fff;

  border: 1px solid #7f1416;
}

.btn.stl-two:focus,
.btn.stl-two:hover {
  background: none;

  color: #7f1416;

  border-color: #7f1416;
}

.btn.stl-three {
  background: none;

  border: 2px solid #fff;

  color: #fff;
}

.btn.stl-three:focus,
.btn.stl-three:hover {
  background: #fff;

  color: #7f1416;
}

.btn.stl-four {
  background: #7f1416;

  color: #fff;

  border: 1px solid #7f1416;
}

.btn.stl-four:focus,
.btn.stl-four:hover {
  background: none;

  color: #fff;

  border-color: #fff;
}

/* web style */

/* common design */

ul.social li:not(:last-child) {
  margin-right: 15px;
}

ul.social li a {
  width: 30px;

  height: 30px;

  border: 1px solid #7f1416;

  display: flex;

  justify-content: center;

  align-items: center;
}

ul.social li a svg {
  fill: #7f1416;
}

ul.social li a:hover {
  background: #7f1416;
}

ul.social li a:hover svg {
  fill: #fff;
}

ul.social.stl-two li a {
  border: 1px solid #fff;
}

ul.social.stl-two li a svg {
  fill: #fff;
}

ul.social.stl-two li a:hover {
  background: #fff;
}

ul.social.stl-two li a:hover svg {
  fill: #7f1416;
}

.ss-welcome ul > li,
.blog-details .content ul:not(.share) > li,
.our-product-detail ul > li,
.applications-single ul > li,
.quality ul > li,
ul.list-right-tick li {
  padding-left: 38px;

  margin-bottom: 21px;

  position: relative;

  line-height: 30px;

  color: #4d5d8f;

  font-size: 18px;
}

.ss-welcome ul > li:after,
.blog-details .content ul:not(.share) > li:after,
.our-product-detail ul > li:after,
.applications-single ul > li:after,
.quality ul > li:after,
ul.list-right-tick li:after {
  content: "";

  position: absolute;

  left: 0;

  top: 8px;

  width: 18px;

  height: 18px;

  background: url("../images/icons/right-tick.svg");

  background-repeat: no-repeat;
}

ul.list-right-tick li p {
  line-height: 30px;
}

.blog-details .content ul:not(.share) > li ul li {
  margin-bottom: 23px;

  padding-left: 32px;

  position: relative;
}

.blog-details .content ul:not(.share) > li ul li:after {
  content: "";

  position: absolute;

  width: 3px;

  height: 3px;

  border-radius: 100px;

  left: 11px;

  top: 13px;

  background: #4d5d8f;
}

.blog-details .content ol {
  counter-reset: item;
}

.blog-details .content ol > li {
  padding-left: 38px;

  margin-bottom: 6px;

  counter-increment: item;

  position: relative;
}

.blog-details .content ol > li:after {
  content: counter(item) ".";

  position: absolute;

  left: 0;

  top: 0px;

  width: 18px;

  height: 18px;

  font-size: 19px;

  font-weight: bold;

  color: #4d5d8f;
}

.blog-details .content ol > li p {
  line-height: 30px;
}

.blog-details .content ol > li > ul li {
  margin-bottom: 23px;

  padding-left: 32px;

  position: relative;
}

.blog-details .content ol > li > ul li:after {
  content: "";

  position: absolute;

  width: 3px;

  height: 3px;

  border-radius: 100px;

  left: 11px;

  top: 13px;

  background: #4d5d8f;
}

.arrow-container {
  margin-top: 58px;

  display: flex;

  justify-content: center;
}

.arrow-container .arrow {
  margin: 0px 12.5px;
}

.arrow {
  width: 53px;

  height: 53px;

  border: 1px solid #7f1416;

  cursor: pointer;

  justify-content: center;

  align-items: center;

  display: flex;

  justify-content: center;
}

.arrow:hover {
  background: #7f1416;
}

.arrow:hover svg #arrow {
  fill: #fff;
}

.pagination-container {
  text-align: center;
}

.wp-pagenavi {
  display: flex;

  justify-content: center;

  margin-top: 19px;
}

.wp-pagenavi .previouspostslink {
  margin-right: 20px;
}

.wp-pagenavi .nextpostslink {
  margin-left: 20px;
}

.wp-pagenavi span,
.wp-pagenavi a {
  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 16px;

  font-weight: bold;
}

.wp-pagenavi .current,
.wp-pagenavi a.page {
  height: 53px;

  width: 53px;

  border: 1px solid #cccccc !important;

  margin: 0px 10px;
}

.wp-pagenavi .current,
.wp-pagenavi a.page:hover {
  background: #7f1416;

  border-color: #7f1416 !important;

  color: #fff;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  border: none;

  padding: 0px;

  color: #000;
}

.input-box {
  margin: 0px 0px 27px;
}

.input-box label:not(.error) {
  font-size: 18px;

  font-weight: bold;

  color: #303e68;
}

.input-box select,
.input-box textarea,
.input-box input {
  background-color: #f5f5f5;

  border: 1px solid #dddddd;

  color: #303e68;

  height: 50px;

  width: 100%;

  padding: 12px 20px;
}

.input-box textarea:focus,
.input-box input:focus {
  border-color: #303e68;
}

.input-box label.error {
  color: red;
}

.content-area.common p {
  margin-bottom: 34px;
}

.content-area.common h2 {
  font-size: 20px;

  margin-bottom: 34px;

  display: block;
}

.content-area.common h3 {
  font-size: 18px;

  margin-bottom: 12px;

  display: block;
}

#formPopup {
  padding: 20px !important;

  background: none !important;

  max-width: 576px;

  width: 100%;
}

.catalog_popup_container {
  padding: 20px !important;

  background: none !important;

  max-width: calc(752px + 40px);

  width: 100%;
}

.popup-style .common-form-stl {
  padding: 0px !important;
}

.popup-style .common-form-stl h2 {
  margin-bottom: 37px !important;

  border-bottom: 1px solid #dedede;

  padding: 30px 40px;
}

.popup-form form {
  padding: 0px 40px 40px !important;
}

.popup-catalog .product-title {
  margin-bottom: 15px;
}

.popup-catalog .box {
  padding: 0px 40px 40px !important;
}

.fancybox-button {
  width: 40px;

  height: 40px;

  background: #000;

  border-radius: 100px;

  opacity: 1;
}

.fancybox-button svg path {
  fill: #fff;
}

/* plugin hack*/

.ns-container {
  padding: 0;

  background: none;
}

.ns-container .ns-wrapper {
  border-radius: 0;

  padding: 0px;

  border: none;

  max-width: 100%;

  width: 100%;

  box-shadow: none;

  background: none;

  margin: 0;
}

/* plugin hack*/

/* common design */

.navbar-brand img {
  height: 95px;
}

/*header*/

ul.top-links li:not(:last-child) {
  margin-right: 31px;
}

ul.top-links li a {
  font-size: 16px;

  font-weight: 400;

  color: #4d4d4d;
}

ul.top-links li a .icon {
  margin-right: 10px;
}

ul.top-links li a svg {
  fill: #7f1416;
}

ul.navbar-nav li:not(:last-child) a {
  color: #f1c3c4;

  font-size: 18px;

  display: inline-block;
}

ul.navbar-nav li:not(:last-child).active a {
  color: #fff;
}

ul.navbar-nav > li:not(:last-child) {
  position: relative;
}

ul.navbar-nav:last-child .btn {
  padding: 12px 30px;
}

ul.navbar-nav .sub-menu {
  background: #6a1314;
}

ul.navbar-nav .sub-menu a {
  color: #fff !important;

  padding: 10px !important;
}

.navbar-toggler {
  padding: 0px;

  background: none;

  border-radius: 0;

  border: none;

  width: 50px;
}

.navbar-toggler svg {
  fill: #fff;
}

body:not(.history-page) .header-wrap {
  position: relative;

  height: 119px;

  -webkit-transition: all 0.3s ease-in-out;

  -moz-transition: all 0.3s ease-in-out;

  -o-transition: all 0.3s ease-in-out;

  transition: all 0.3s ease-in-out;
}

body:not(.history-page) .header-wrap.sticky .head-bottom .navbar {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.15);
}

body:not(.history-page) header {
  position: fixed;

  left: 0;

  top: 0;

  width: 100%;

  height: 119px;

  z-index: 1234;

  -webkit-transition: all 0.3s ease-in-out;

  -moz-transition: all 0.3s ease-in-out;

  -o-transition: all 0.3s ease-in-out;

  transition: all 0.3s ease-in-out;
}

body:not(.history-page) header .head-top {
  padding: 15px 0px;
}

body:not(.history-page) header .head-bottom {
  display: inline-block;

  width: 100%;
}

body:not(.history-page) header .head-bottom .navbar {
  background: #7f1416;

  padding: 0px 30px 0px 37px;
}

.history-page .header-wrap {
  position: absolute;

  left: 0;

  right: 0;

  z-index: 9999;

  z-index: 999;
}

.history-page .header-wrap header {
  margin: 3% 3% 0px;
}

.history-page .header-wrap .head-bottom .container {
  max-width: 100%;
}

.history-page .header-wrap .navbar {
  padding: 0px;
}

.history-page .header-wrap .navbar-brand {
  margin: 0px;

  padding: 20px 40px;

  background: #7f1416;
}

.history-page .side-menu {
  max-width: 500px;

  width: 100%;

  position: fixed;

  right: calc(-100% - 15px);

  top: 0px;

  bottom: 0;

  z-index: 0;

  background: #7f1416;

  padding: 3% 1% 1% 1%;

  height: 100vh;

  -webkit-transition: all 0.5s ease;

  -moz-transition: all 0.5s ease;

  -o-transition: all 0.5s ease;

  transition: all 0.5s ease;

  z-index: 1;
}

.history-page .side-menu.show {
  right: 0%;
}

.history-page .side-menu .menu-scroll {
  overflow: auto;
  height: 100%;
}

.history-page .side-menu .navbar-nav {
  overflow: hidden;
}

.history-page .side-toggle {
  cursor: pointer;

  margin-left: auto;
}

.history-page .side-toggle span {
  display: block;

  width: 33px;

  height: 4px;

  margin-bottom: 5px;

  position: relative;

  background: #fff;

  border-radius: 1px;

  z-index: 1;

  -webkit-transform-origin: 4px 0px;

  transform-origin: 4px 0px;

  -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);

  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease,
    -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.history-page .side-toggle.close {
  position: absolute;

  left: -53px;

  background: #000;

  padding: 13px 0px 16px 12px;

  opacity: 1;

  text-align: center;
}

.history-page .side-toggle.close span {
  background: #fff;
}

.history-page .side-toggle.close span:first-child {
  opacity: 1;

  -webkit-transform: rotate(45deg) translate(-2px, 0px);

  transform: rotate(45deg) translate(-2px, 0px);
}

.history-page .side-toggle.close span:last-child {
  opacity: 1;

  -webkit-transform: rotate(-45deg) translate(-8px, 2px);

  transform: rotate(-45deg) translate(-8px, 2px);
}

.history-page ul.navbar-nav li:not(.sub-menu) {
  display: flex;

  align-items: center;

  flex-wrap: wrap;
}

.history-page ul.navbar-nav li a {
  padding: 10px !important;
}

.history-page ul.navbar-nav > li a {
  padding: 10px;
}

.history-page ul.navbar-nav > li > ul.sub-menu > li {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.history-page ul.navbar-nav > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.history-page ul.navbar-nav .sub-menu {
  display: none;

  width: 100%;
}

.history-page ul.navbar-nav > li > ul > li > ul.sub-menu > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.history-page ul.navbar-nav > li > ul > li > ul.sub-menu > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.history-page ul.navbar-nav .dropdown-icon {
  margin-left: auto;

  padding: 10px;

  transition: all 0.3s;
}

.history-page ul.navbar-nav .dropdown-icon.open {
  transform: rotate(-180deg);
}

.history-page ul.navbar-nav > li:last-child .btn {
  margin-top: 10px;
}

/*header*/

/*banner*/

.banner {
  position: relative;

  overflow: hidden;
}

.banner .slide {
  height: 650px;

  background-size: cover;

  background-position: center center;

  background-repeat: no-repeat;
}

.banner .info {
  margin-top: -50px;

  max-width: 1060px;

  padding: 15px 15px;
}

.banner .info h1 {
  line-height: 58px;

  margin-bottom: 25px;
}

.banner .info p {
  color: #fff;

  font-size: 20px;
}

.banner .info .btn {
  font-size: 20px;

  padding: 19px 30px 19px 30px;

  margin-top: 42px;
}

.banner .btn-arrow {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  cursor: pointer;

  width: 80px;

  height: 80px;

  background: #000000;
}

.banner .btn-arrow svg {
  fill: #fff;
}

.banner .btn-arrow.banner-next {
  right: 0px;
}

.banner .btn-arrow.banner-prev {
  left: 0px;
}

.banner .scroll-down {
  position: absolute;

  left: 0;

  right: 0;

  text-align: center;

  bottom: 20px;
}

.banner .scroll-down span {
  font-size: 12px;

  font-weight: bold;

  color: #fff;

  text-transform: uppercase;

  margin-bottom: 8px;
}

/*banner*/

/*client-brand*/

.client-brand .brand-slide .brand {
  text-align: center;

  display: flex;

  align-items: center;

  justify-content: center;
}

.client-brand .brand-slide .brand a {
  display: inline-block;
}

.client-brand .brand-slide .brand a img {
  transition: all 0.3s;
}

.client-brand .brand-slide .brand:not(:hover) a img {
  opacity: 0.5;
}

/*client-brand*/

/*testimonials*/

.testimonials {
  background: #e9e9e9;
}

.testimonials .test-list .col {
  margin-top: 32px;
}

.testimonials .single-box {
  background: #fff;

  width: 100%;

  border: 1px solid #cccccc;

  padding: 0px 30px 10px 40px;

  display: flex;

  height: 100%;
}

.testimonials .single-box .icon {
  margin-right: 30px;

  margin-top: -21px;
}

.testimonials .single-box .icon svg {
  fill: #cccccc;
}

.testimonials .single-box .ctn-box {
  padding-top: 29px;
}

.testimonials .single-box .ctn-box p {
  line-height: 30px;

  color: #4d5d8f;
}

.testimonials .single-box .ctn-box .author-name {
  font-size: 20px;

  font-weight: bold;

  color: #303e68;
}

.testimonials .btn {
  margin-top: 60px;
}

.testimonials.testimonial-page .test-list {
  column-count: 2;

  -webkit-column-count: 2;

  -moz-column-count: 2;

  column-count: 2;

  -webkit-column-gap: 30px;

  -moz-column-gap: 30px;

  column-gap: 30px;

  orphans: 1;

  widows: 1;

  display: block;

  width: 100%;

  -webkit-column-break-inside: avoid;

  page-break-inside: avoid;

  break-inside: avoid;
}

.testimonials.testimonial-page .test-list .test-item {
  margin-top: 51px;

  width: 100%;

  display: inline-block;

  -webkit-column-break-inside: avoid;

  page-break-inside: avoid;

  break-inside: avoid;
}

/*testimonials*/

/*get-in-touch*/

.get-in-touch {
  background: #1c2131;
}

.get-in-touch h2 {
  font-size: 52px;

  color: #fff;

  margin-bottom: 15px;
}

.get-in-touch p {
  font-size: 28px;

  line-height: 33px !important;

  color: #fff !important;
}

.get-in-touch .btn {
  font-size: 20px;

  padding: 19px 78px;
}

.get-in-touch.stl-one {
  background: #7f1416;
}

.get-in-touch.stl-one .btn {
  padding: 19px 30px;
}

/*get-in-touch*/

/*footer*/

.contact-info div {
  display: flex;

  padding-bottom: 12px;
}

.contact-info div a {
  color: #fff;

  font-size: 18px;

  font-weight: 400;
}

.contact-info div .icon {
  margin-right: 11px;

  margin-top: 3px;

  width: 20px;

  min-width: 20px;
}

.contact-info div .icon svg {
  fill: #fff;

  height: 20px;

  width: 24px;
}

.contact-info div .icon.email {
  margin-top: 6px;
}

.contact-info div .ctn-box p {
  color: #fff;

  line-height: 28px;

  margin-bottom: 3px;
}

.contact-info div .ctn-box strong {
  display: block;

  margin-bottom: 7px;
}

footer {
  background: #373a42;
}

footer .news-box .ns-form {
  display: flex;

  width: 100%;
}

footer .news-box .ns-form .ns-action {
  min-width: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  background-color: #7f1416;
}

footer .news-box .ns-form .ns-group {
  padding-bottom: 0px;
}

footer .news-box span.ns-error {
  top: 100%;
}

footer .news-box .ns-form .ns-action input {
  width: 100%;

  height: 100%;

  font-size: 0px;

  background: url("../images/icons/foo-new-icon.svg");

  background-repeat: no-repeat;

  background-position: center;
}

footer .news-box .loader {
  left: calc(100% - 100px);

  right: auto;
}

footer .news-box .ns-form input:not(.ns-submit) {
  width: 100%;

  min-width: 220px;

  height: 50px;

  padding: 10px 20px 10px 20px;

  background: #dddddd;

  border: 1px solid #dddddd;

  border-right: none;
}

footer .news-box .ns-form input:not(.ns-submit)::-webkit-input-placeholder {
  color: #aaaaaa;
}

footer .news-box .ns-form input:not(.ns-submit)::-moz-placeholder {
  color: #aaaaaa;
}

footer .news-box .ns-form input:not(.ns-submit):-ms-input-placeholder {
  color: #aaaaaa;
}

footer .news-box .ns-form input:not(.ns-submit)::-ms-input-placeholder {
  color: #aaaaaa;
}

footer .news-box .ns-form input:not(.ns-submit)::placeholder {
  color: #aaaaaa;
}

footer .foo-top {
  padding: 97px 0px 41px;
}

footer .foo-bottom {
  padding: 30px 0px 31px;

  background: #fff;
}

footer .foo-bottom p {
  margin-bottom: 0px;

  color: #303e68;
}

footer .foo-bottom p a {
  color: #303e68;
}

footer .widget {
  margin: 0px 0px 64px;
}

footer .widget .title {
  color: #fff;

  font-size: 24px;

  font-weight: 400;

  text-transform: uppercase;

  margin-bottom: 20px;

  display: inline-block;
}

footer .widget .social {
  margin: 2px 0px 0px 6px;
}

footer ul.foo-nav {
  margin-top: 8px;

  display: block;
}

footer ul.foo-nav li {
  padding-bottom: 11px;
}

footer ul.foo-nav li a {
  color: #fff;

  font-size: 18px;

  font-weight: 400;
}

/*footer*/

/*===== blog blog list blog details sidebar  =====*/

.blog h3 {
  font-size: 20px;

  line-height: 30px;

  font-weight: bold;

  color: #303e68;
}

.blog h3 a {
  color: #303e68;
}

.blog .date {
  color: #4d5d8f;

  font-weight: 600;

  font-size: 18px;
}

.blog p {
  line-height: 28px;

  color: #4d5d8f;
}

.blog .read-more {
  font-size: 16px;

  font-weight: bold;

  color: #7f1416;

  text-transform: uppercase;

  display: inline-block;
}

.blog .read-more:hover {
  color: #303e68;

  text-decoration: underline;
}

.blog .single-block .img-box {
  overflow: hidden;
}

.blog .single-block .img-box img {
  transition: transform 0.2s;

  width: 100%;
}

.blog .single-block:hover h3 a {
  color: #7f1416;
}

.blog .single-block:hover .img-box img {
  transform: scale(1.1);
}

.blog .single-block .ctn-box {
  padding-top: 32px;
}

.blog .single-block .ctn-box h3 {
  margin-bottom: 9px;
}

.blog .single-block .ctn-box .date {
  margin-bottom: 15px;
}

.blog .single-block .ctn-box .read-more {
  margin-top: 2px;
}

.blog.ssp-home .col {
  margin-top: 37px;
}

.blog.ssp-home .btn {
  margin-top: 40px;
}

.blog-page .blog-top-design .ctn-box {
  padding: 49px 37px 15px 15px;
}

.blog-page .blog-list .col {
  margin-bottom: 37px;
}

.sidebar .title {
  font-size: 18px;

  line-height: 21px;

  margin-bottom: 10px;

  display: inline-block;
}

.sidebar ul.side-list {
  margin-top: 11px;
}

.sidebar ul.side-list li {
  margin-bottom: 23px;

  padding-left: 32px;

  position: relative;
}

.sidebar ul.side-list li:after {
  content: "";

  position: absolute;

  width: 3px;

  height: 3px;

  border-radius: 100px;

  left: 11px;

  top: 13px;

  background: #4d5d8f;
}

.sidebar ul.side-list li a {
  font-size: 18px;

  color: #4d5d8f;
}

.sidebar ul.side-list li a:hover,
.sidebar ul.side-list li.active a {
  color: #7f1416;

  font-weight: 600;
}

.sidebar ul.side-list li:hover:after,
.sidebar ul.side-list li.active:after {
  background: #7f1416;
}

.sidebar input:not(.ns-submit) {
  width: 100% !important;

  padding: 12px 40px 12px 20px !important;

  border: 1px solid #ddd !important;

  background: #f5f5f5 !important;

  color: #4d5d8f !important;

  border-radius: 0px;

  font-size: 16px !important;
}

.sidebar input:not(.ns-submit)::-webkit-input-placeholder {
  color: #4d5d8f;
}

.sidebar input:not(.ns-submit)::-moz-placeholder {
  color: #4d5d8f;
}

.sidebar input:not(.ns-submit):-ms-input-placeholder {
  color: #4d5d8f;
}

.sidebar input:not(.ns-submit)::-ms-input-placeholder {
  color: #4d5d8f;
}

.sidebar input:not(.ns-submit)::placeholder {
  color: #4d5d8f;
}

.sidebar input.ns-submit {
  font-size: 16px;
  font-weight: 700;
}

.sidebar .widget {
  background: #fff;

  padding: 30px;
}

.sidebar .newsletter {
  margin-bottom: 40px;
}

.sidebar .newsletter .icon-box {
  margin: 0px 0px 27px;
}

.sidebar .newsletter .ns-group {
  padding-bottom: 0px;
}

.sidebar .newsletter span.ns-error {
  top: 100% !important;
}

.sidebar .newsletter input:not(.ns-submit) {
  margin: 32px 0px 30px;
}

.sidebar .newsletter .btn {
  width: 100%;
}

.sidebar .newsletter .loader {
  top: -92px;

  right: -80%;
}

.sidebar .search {
  border-bottom: 1px solid #dddddd;
}

.sidebar .search .email-box {
  position: relative;
}

.sidebar .search .email-box input {
  padding: 12px 49px 12px 15px;
}

.sidebar .search .email-box .btn {
  position: absolute;

  z-index: 999;

  top: 0;

  right: 0;

  display: flex;

  height: 100%;

  padding: 12px 15px;
}

.sidebar .categories {
  border-bottom: 1px solid #dddddd;
}

.blog-details p {
  line-height: 28px;

  margin-bottom: 33px;

  display: inline-block;
}

.blog-details h2 {
  font-size: 20px;

  margin-bottom: 30px;

  display: block;
}

.blog-details h3 {
  font-size: 18px;

  margin-bottom: 10px;

  display: block;
}

.blog-details .content-area {
  max-width: 844px;

  width: 100%;
}

.blog-details .content-area .blob-img {
  margin-bottom: 20px;
}

.blog-details .content-area .date {
  margin-bottom: 10px;
}

.blog-details .content-area ul li,
.blog-details .content-area ol li {
  margin-bottom: 0px;
}

.blog-details .content-area ul li p,
.blog-details .content-area ol li p {
  margin-bottom: 13px;
}

.blog-details .content-area ul li ul,
.blog-details .content-area ol li ul {
  padding-left: 20px;
}

.blog-details .content-area ul li ul li,
.blog-details .content-area ol li ul li {
  padding-right: 37px;
}

.blog-details .share-tag-container {
  border-top: 1px solid #dddddd;

  border-bottom: 1px solid #dddddd;

  margin-top: 100px;
}

.blog-details .share-tag-container h3 {
  margin-bottom: 0px;
}

.blog-details .share-tag-container .post-tag a {
  font-size: 12px;

  background: #eeeeee;

  border: 1px solid #cccccc;

  color: #4d5d8f;

  text-transform: uppercase;

  padding: 5px 12px;

  margin: 0 5px 10px;
}

.blog-details .share-tag-container ul.share {
  margin-left: 18px;
}

.blog-details .share-tag-container ul.share li {
  margin: 0px 5px;
}

.blog-details .post-pagination {
  padding: 52px 0px;
}

.blog-details .post-pagination a {
  font-size: 16px;

  font-weight: bold;

  color: #000000;
}

.blog-details .post-pagination > div {
  width: 100%;
}

.blog-details .post-pagination > div.left .icon {
  padding-right: 17px;
}

.blog-details .post-pagination > div.right {
  text-align: right;
}

.blog-details .post-pagination > div.right .icon {
  padding-left: 17px;
}

.blog-details .post-pagination > div a:hover {
  color: #7f1416;
}

.blog-details .post-pagination > div a:hover .icon svg #Shape {
  fill: #7f1416;
}

/*===== blog blog list blog details  =====*/

/*===== applications applications list applications details product product details product single =====*/

.app-single-block img {
  width: 100%;
}

.app-single-block .title-box {
  width: 100%;

  border: 1px solid #dddddd;

  background: #fff;

  min-height: 93px;

  text-align: center;

  padding: 21px;
}

.applications .flex-box {
  margin: 36px -15px 0px;
}

.applications .flex-box .app-box {
  padding: 0px 15px;

  width: 100%;

  margin-bottom: 35px;
}

.applications.slide .arrow-container {
  margin-top: 39px;
}

.applications-single .app-img-box {
  position: relative;

  z-index: 0;
}

.applications-single .app-img-box .overlay {
  position: absolute;

  top: 0;

  right: 0;

  left: 0;

  bottom: 0;

  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.34) 69%,
    rgba(0, 0, 0, 0.5) 83%,
    black 100%
  );
}

.applications-single .app-img-box .overlay h3 {
  font-size: 36px;

  color: #fff;

  padding: 21px 28px;
}

.applications-single .details {
  max-width: 844px;
}

.applications-single .details .ctn-box {
  padding-top: 30px;
}

.applications-single .details h3 {
  font-size: 20px;

  margin: 33px 0px 33px;
}

.applications-single .details p {
  line-height: 28px;
}

.app-slide {
  margin: 0px -15px 0px;
}

.app-slide .item {
  padding: 0px 15px;
}

/*===== applications applications list applications details product product details product single =====*/

/*export*/

.export.ssp-home {
  position: relative;
  z-index: 1;
}

.export img {
  width: 100%;
}

.export .ctn-box {
  padding-right: 10px;
}

.export .ctn-box p {
  line-height: 30px;
}

.export .ctn-box .btn {
  margin-top: 6px;
}

/*export*/

/*our-product */

.product-single-block .img-box {
  margin-bottom: 30px;

  text-align: center;
}

.product-single-block h3 {
  font-size: 28px;

  font-weight: 600;

  margin-bottom: 13px;
}

.product-single-block p {
  line-height: 30px;
}

.product-single-block .readmore {
  font-size: 16px;

  font-weight: bold;

  text-transform: uppercase;
}

.product-single-block .readmore.stl-download {
  background: url("../images/icons/download.svg");

  padding-left: 30px;

  background-size: 10%;

  background-repeat: no-repeat;

  background-position: left center;
}

.our-product .single-block {
  height: 100%;

  background: #303e68;
}

.our-product .single-block img {
  width: 100%;
}

.our-product .single-block .ctn-box {
  padding: 30px 24px 25px;
}

.our-product .single-block .ctn-box h3 {
  color: #fff;

  font-size: 28px;

  margin-bottom: 25px;
}

.our-product .single-block .ctn-box ul li:not(:last-child) {
  margin-bottom: 9px;
}

.our-product .single-block .ctn-box a {
  color: #fff;

  font-size: 18px;

  padding: 2px 0px;

  display: inline-block;

  border-bottom: 1px solid #fff;
}

.product-slide {
  margin: 0px -15px 0px;
}

.product-slide .item {
  padding: 0px 15px;
}

.link-left-right .img-box {
  position: relative;

  overflow: hidden;
}

.link-left-right .img-box img {
  transition: transform 0.2s;
}

.link-left-right .img-box:hover img {
  transform: scale(1.1);
}

.link-left-right .img-box .overlay {
  position: absolute;

  left: 0;

  top: 0;

  right: 0;

  bottom: 0;

  background: rgba(0, 0, 0, 0.7);
}

.link-left-right .img-box a {
  color: #fff;

  font-weight: bold;

  font-size: 18px;

  display: inline-flex;

  align-items: center;
}

.link-left-right .img-box a span {
  padding: 5px 20px;
}

.link-left-right .img-box a svg path {
  fill: #fff;
}

.link-left-right .img-box.left a span {
  padding-right: 0px;
}

.link-left-right .img-box.right a span {
  padding-left: 0px;
}

ul.tab-box li {
  position: relative;
}

ul.tab-box li:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
}

ul.tab-box li a {
  font-size: 18px;

  font-weight: bold;

  color: #999999;

  padding: 26px 20px;

  display: block;

  background: #ffffff;
}

ul.tab-box li:hover,
ul.tab-box li.active {
  border-bottom-color: #7f1416;
}

ul.tab-box li:hover:after,
ul.tab-box li.active:after {
  content: "";

  position: absolute;

  top: 50%;

  right: 20px;

  transform: translateY(-50%);

  background: url("../images/icons/right-arrow-white.svg");

  background-repeat: no-repeat;

  background-size: 100%;

  width: 10px;

  height: 18px;
}

ul.tab-box li:hover a,
ul.tab-box li.active a {
  background: #7f1416;

  color: #fff;
}

.main-product-detail .ctn-box {
  margin: 25px 0px 10px;
}

.main-product-detail .ctn-box p {
  font-size: 20px;

  line-height: 30px;
}

.main-product-detail h3 {
  margin: 20px 0px 12px;
}

.our-product-page .top-ctn-box {
  width: 100%;
}

.our-product-page .top-ctn-box p {
  font-size: 20px;

  display: inline-block;

  margin-bottom: 0px;
}

.our-product-page p {
  line-height: 30px;
}

.our-product-page h2 {
  font-size: 28px;

  margin-bottom: 30px;
}

.our-product-page .btn {
  margin-top: 17px;
}

.our-product-detail h2.pro_name {
  font-size: 18px;

  margin-bottom: 20px;
}

.our-product-detail .ctn-box.description p {
  font-size: 20px;
}

.our-product-detail .content-area {
  max-width: 844px;

  margin: 0 auto;
}

.our-product-detail .content-area h3 {
  margin-bottom: 19px;

  font-size: 20px;
}

.our-product-detail .slider-product-container {
  position: relative;

  border: 1px solid #e3e3e7;

  margin-bottom: 30px;
}

.our-product-detail .slider-product-container .pro_arrow {
  position: absolute;

  top: 50%;

  cursor: pointer;

  transform: translateY(-50%);
}

.our-product-detail .slider-product-container .pro_arrow.arrow-next {
  right: 20px;
}

.our-product-detail .slider-product-container .pro_arrow.arrow-prev {
  left: 20px;
}

.our-product-detail .product-thumbnail-container {
  margin-bottom: 63px;
}

.our-product-detail .product-thumbnail-container .slider-product-thumbnail {
  margin: 0px -10px;
}

.our-product-detail
  .product-thumbnail-container
  .slider-product-thumbnail
  .slick-slide {
  margin: 0px 10px;
}

.our-product-detail
  .product-thumbnail-container
  .slider-product-thumbnail
  .slick-slide
  .img-box {
  border: 1px solid transparent;
}

.our-product-detail
  .product-thumbnail-container
  .slider-product-thumbnail
  .slick-slide.slick-current
  .img-box {
  border: 1px solid #7f1416;
}

.our-product-detail ul.list-right-tick li p {
  margin-bottom: 20px;
}

/*our-product*/

/*why-choose*/

.why-choose .choose-list {
  margin-top: 83px;
}

.why-choose .single-block {
  display: flex;
}

.why-choose .single-block .icon-box {
  margin-right: 25px;

  width: 98px;

  min-width: 98px;
}

.why-choose .single-block .ctn-box h3 {
  font-size: 18px;

  color: #303e68;

  margin-bottom: 15px;

  text-transform: uppercase;

  margin-bottom: 13px;
}

.why-choose .single-block .ctn-box p {
  line-height: 28px;
}

/*why-choose*/

/*ss-welcome*/

.ss-welcome .img-box {
  position: relative;
}

.ss-welcome .img-box .vid-play {
  position: absolute;

  top: 36px;

  right: 44px;

  display: inline-flex;

  background: rgba(127, 20, 22, 0.8);

  border-radius: 100px;

  padding: 10px 19px;

  color: #fff;

  text-transform: uppercase;

  align-items: center;

  font-size: 18px;

  font-weight: bold;
}

.ss-welcome .img-box .vid-play .icon {
  margin-left: 10px;
}

.ss-welcome .img-box .vid-play svg {
  fill: #fff;
}

.ss-welcome .ctn-box p {
  line-height: 30px;

  padding-bottom: 2px;
}

.ss-welcome .ctn-box h3 {
  margin-bottom: 15px;
}

/*ss-welcome*/

/*page-header*/

.page-header .page-title {
  background-size: cover;

  background-position: center center;

  background-repeat: no-repeat;

  padding: 102px 0px 105px;
}

.page-header .page-title .info {
  padding: 0px 0px;

  text-align: center;
}

.page-header .breadcrumb-container {
  background: #e2e2e2;

  padding: 20px 0px;
}

.page-header .breadcrumb-container ul.bread li {
  display: inline-block;

  position: relative;

  padding-right: 15px;
}

.page-header .breadcrumb-container ul.bread li a {
  font-size: 14px;

  color: #303e68;
}

.page-header .breadcrumb-container ul.bread li.active {
  color: #4d5d8f;

  font-size: 14px;
}

.page-header .breadcrumb-container ul.bread li:not(:last-child):after {
  content: ">";

  font-size: 14px;

  color: #4d5d8f;

  position: absolute;

  right: 0px;

  top: 50%;

  transform: translateY(-50%);
}

/*page-header*/

/*who-we-are*/

.who-we-are .img-list .img-box.bottom {
  margin-top: 30px;
}

.our-quality {
  background: url("../images/about-us/our-quality.jpg");

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center center;
}

.our-quality .ctn-box {
  background: rgba(0, 0, 0, 0.8);

  max-width: 844px;

  padding: 93px 110px 93px 110px;
}

.our-quality .ctn-box h2 {
  color: #fff;

  font-size: 36px;

  margin-bottom: 21px;
}

.our-quality .ctn-box .btn {
  margin-top: 16px;
}

.our-quality .ctn-box ul li {
  margin-bottom: 20px;

  padding-left: 34px;

  position: relative;

  color: #fff;

  line-height: 30px;

  font-size: 18px;
}

.our-quality .ctn-box ul li:after {
  content: "";

  position: absolute;

  width: 2px;

  height: 2px;

  border-radius: 100px;

  left: 17px;

  top: 16px;

  background: #fff;
}

.our-quality .ctn-box ul li p {
  color: #fff;

  line-height: 30px;
}

/*who-we-are*/

.quality h3 {
  font-size: 20px;

  font-weight: bold;

  color: #303e68;
}

.quality .quality-list:nth-child(even) > div {
  flex-direction: row-reverse;
}

.quality .ctn-box {
  padding: 107px 30px 30px;
}

.quality .ctn-box p {
  font-size: 20px;
}

.quality .ctn-box p + p {
  margin-top: 30px;
}

.quality .ctn-box h3 {
  margin: 31px 0px 30px;
}

.quality .quailty-info {
  max-width: 844px;

  margin: 0 auto 0;

  padding-top: 69px;
}

.quality .quailty-info h3 {
  margin: 33px 0px 33px;
}

/*countries*/

.countries ul.countries-list {
  display: flex;

  flex-wrap: wrap;
}

.countries ul.countries-list li {
  padding: 9px;

  border: 1px solid #7f1416;

  margin-bottom: 30px;

  display: flex;

  align-items: center;

  width: 100%;
}

.countries ul.countries-list li .flag {
  margin-right: 21px;
}

.countries ul.countries-list li span {
  font-size: 16px;

  font-weight: bold;

  color: #7f1416;
}

/*countries*/

/* contact us page */

.contact-us .form-container {
  margin-top: 22px;
}

.contact-us .form-container .wpcf7-response-output {
  display: none !important;
}

.contact-us .form-container > .wpcf7 {
  width: 100%;
}

.contact-us .form-container textarea {
  height: 148px;
}

.contact-us .form-container form {
  max-width: 1061px;

  width: 100%;

  margin: auto;
}

.contact-us .form-container form .email-mobile-box > div,
.contact-us .form-container form .name-box > div {
  width: 100%;
}

.contact-us .form-container form .email-mobile-box > div:first-child,
.contact-us .form-container form .name-box > div:first-child {
  padding-right: 44px;
}

.contact-us .form-container form .email-mobile-box > div:last-child,
.contact-us .form-container form .name-box > div:last-child {
  padding-left: 44px;
}

.contact-us .form-container form .btn {
  padding: 12px 79px 12px 78px;
}

.contact-us .form-container .submit-box {
  display: flex;

  align-items: center;
}

.contact-us .form-container .submit-box .ajax-loader {
  order: 1;
}

.contact-us .form-container .submit-box .btn {
  order: 2;
}

.contact-information .ctn-box-main {
  padding-top: 30px;
}

.contact-information .contact-info .email-phone-box {
  padding-left: 6px;
}

.contact-information .contact-info div .icon svg {
  fill: #303e68;
}

.contact-information .contact-info div .ctn-box strong {
  color: #303e68;
}

.contact-information .contact-info div .ctn-box a,
.contact-information .contact-info div .ctn-box p {
  color: #4d5d8f;

  display: block;
}

.contact-information #map iframe {
  width: 100%;
  height: 426px;
}

.our-location .single-block {
  position: relative;

  margin-bottom: 61px;
}

.our-location .single-block .overlay {
  padding: 20px;

  background: #303e68;

  position: absolute;

  left: 0%;

  right: 0%;

  bottom: -32px;

  transform: translateY(0px);

  margin: auto;

  text-align: center;

  max-width: 300px;
}

.our-location .single-block .overlay h3 {
  color: #fff;
}

/* contact us page */

/*====resources====*/

.res-single-block {
  background: #fff;

  margin-bottom: 30px;
}

.res-single-block .img-box img {
  width: 100%;
}

.res-single-block .ctn-box {
  padding: 35px 20px;
}

.res-single-block.top-design {
  display: flex;
}

.res-single-block.top-design .img-box {
  max-width: 330px;

  min-width: 330px;
}

.res-single-block.top-design .ctn-box {
  padding-left: 30px;
}

.res-single-block .link {
  font-size: 16px;

  font-weight: bold;

  color: #7f1416;

  display: inline-block;
}

.resources h3 {
  font-size: 20px;

  font-weight: bold;

  margin-bottom: 20px;

  line-height: 30px;
}

.resources p {
  line-height: 28px;
}

.resources .pagination-container {
  margin-top: 10px;
}

.common-form-stl {
  background: #fff;

  padding: 30px;
}

.common-form-stl h2 {
  font-size: 28px;

  margin-bottom: 27px;
}

.common-form-stl .btn {
  padding: 12px 12px 12px 12px;

  margin-left: auto;

  max-width: 298px;

  width: 100%;
}

.resources-download .ctn-box.left {
  padding-bottom: 30px;
}

.resources-download .ctn-box.left h3 {
  margin-bottom: 10px;
}

.resources-download .ctn-box.left .btn {
  margin-top: 5px;

  max-width: 347px;

  padding: 13px 30px 14px 30px;

  width: 100%;
}

/*====resources====*/

/*export-market*/

.export-market .content-area {
  max-width: 844px;
}

/*export-market*/

/*country-detail*/

.country-detail .content-area {
  max-width: 844px;

  padding-bottom: 30px;
}

/*country-detail*/

/*thank-you*/

.thank-you .content-area {
  max-width: 844px;
}

.thank-you .content-area p {
  margin-bottom: 24px;
}

.thank-you .btn {
  padding: 13px 102px 14px 102px;
}

.thank-you .btn svg {
  margin-right: 10px;
}

/*thank-you*/

/*history*/

.history {
  position: relative;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center center;
}

.history .right-container {
  position: relative;
}

.history .right-container .arrow-box {
  position: absolute;

  right: 100px;

  bottom: 100px;

  display: flex;
}

.history .right-container .arrow-box .arrow {
  width: 50px;

  height: 50px;

  border: 3px solid #cccccc;

  -webkit-transition: all 0.3s ease-in-out;

  -moz-transition: all 0.3s ease-in-out;

  -o-transition: all 0.3s ease-in-out;

  transition: all 0.3s ease-in-out;
}

.history .right-container .arrow-box .arrow:first-child {
  margin-right: 30px;
}

.history .history-slider {
  position: relative;
}

.history .history-slider .slick-slide {
  height: 100vh;

  width: 100%;

  display: flex;

  align-items: center;

  position: relative;
}

.history .history-slider .slick-slide:after,
.history .history-slider .slick-slide:before {
  content: "";

  position: absolute;

  width: 4px;

  height: 100%;

  background: #cccccc;

  left: 6%;
}

.history .history-slider .slick-slide:after {
  top: calc(-50% - 110px);

  transform: translateY(0%);
}

.history .history-slider .slick-slide:before {
  top: calc(50% + 110px);

  transform: translateY(0%);
}

.history .history-slider .slick-slide .sun {
  padding: 25px;

  color: #fff;
}

.history .history-slider .slick-slide .sun span {
  font-size: 22px;

  text-transform: uppercase;

  display: block;

  margin-bottom: 15px;

  visibility: hidden;

  opacity: 0;

  -webkit-transform: translate(0px, 20px);

  -moz-transform: translate(0px, 20px);

  -o-transform: translate(0px, 20px);

  -ms-transform: translate(0px, 20px);

  transform: translate(0px, 20px);

  -webkit-transition: all 0.4s ease-in-out;

  -moz-transition: all 0.4s ease-in-out;

  -o-transition: all 0.4s ease-in-out;

  transition: all 0.4s ease-in-out;

  transition-delay: 0.3s;
}

.history .history-slider .slick-slide .sun h3 {
  font-size: 24px;

  color: #fff;

  font-weight: bold;

  visibility: hidden;

  opacity: 0;

  -webkit-transform: translate(0px, 20px);

  -moz-transform: translate(0px, 20px);

  -o-transform: translate(0px, 20px);

  -ms-transform: translate(0px, 20px);

  transform: translate(0px, 20px);

  -webkit-transition: all 0.4s ease-in-out;

  -moz-transition: all 0.4s ease-in-out;

  -o-transition: all 0.4s ease-in-out;

  transition: all 0.4s ease-in-out;

  transition-delay: 0.6s;
}

.history .history-slider .slick-slide.slick-active .sun h3,
.history .history-slider .slick-slide.slick-active .sun span {
  visibility: visible;

  opacity: 1;

  -webkit-transform: translate(0px, 0px);

  -moz-transform: translate(0px, 0px);

  -o-transform: translate(0px, 0px);

  -ms-transform: translate(0px, 0px);

  transform: translate(0px, 0px);
}

.history .pagination {
  padding-left: 70px;

  position: relative;

  z-index: 1;
}

.history .pagination .sun {
  cursor: pointer;

  display: flex;

  align-items: center;

  height: 30px;

  margin: 6px 0px;
}

.history .pagination .sun span {
  display: inline-block;

  color: #fff;

  font-size: 20px;

  font-weight: bold;
}

.history .pagination .sun .line {
  height: 4px;

  width: 30px;

  background: #cccccc;

  margin-right: 30px;

  -webkit-transition: all 0.3s ease-in-out;

  -moz-transition: all 0.3s ease-in-out;

  -o-transition: all 0.3s ease-in-out;

  transition: all 0.3s ease-in-out;
}

.history .pagination .arrow-nav {
  margin-left: 4px;

  cursor: pointer;
}

.history .pagination .arrow-nav.nav-h-up {
  margin-bottom: 15px;
}

.history .pagination .arrow-nav.nav-h-down {
  margin-top: 15px;
}

.history .pagination .slick-slide:not(.slick-current) .sun span.txt {
  display: none;
}

.history .pagination .slick-slide.slick-current .sun span.line {
  width: 100px;
}

/*history*/

.country-detail .content-area.common h2 {
  font-size: 28px;
}


/*11/09/2024*/
h1.pro-sub-title {
  font-size: 28px;
  font-weight: 400;
  margin: 10px 0 !important;
}

.info.text-center h2, .info h2{
    font-size: 48px;
    color: #fff !important;
}