@font-face {
  font-family: 'AlbertSans-Regular';
  src: url(../font/AlbertSans-Regular.ttf);
}

@font-face {
  font-family: 'AlbertSans-Medium';
  src: url(../font/AlbertSans-Medium.ttf);
}

@font-face {
  font-family: 'AlbertSans-Bold';
  src: url(../font/AlbertSans-Bold.ttf);
}

@font-face {
  font-family: 'AlbertSans-ExtraBold';
  src: url(../font/AlbertSans-ExtraBold.ttf);
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  color: #000000;
  font-family: 'AlbertSans-Regular';
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

p {
  font-size: 18px;
}

h1 {
  font-size: 42px;
  font-family: 'AlbertSans-Bold';
  color: #fff;
}

h2,
h3,
h4,
h5,
h6 {
  color: #B31010;
  font-family: 'AlbertSans-Bold';
}

h2 {
  font-size: 38px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

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

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #C62127;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color:#C62127;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


.fix-interested-button {
  position: fixed;
  right: -8px;
  top: 50%;
  transform: translate(100%, 100%) rotate(-90deg);
  transform-origin: left 40px;
}

.btn-get-stky {
  background-color: #C62127;
  color: #ffffff;
  padding: 10px 30px;
  font-size: 18px;
  border-radius: 10px 10px 0 0;
}


.btn-get-started {
  color: #fff !important;
  background: #C62127;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 18px;
  text-transform: uppercase;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero h2{
  margin-bottom: 15px;
}

.hero p {
  padding-top: 0px;
  color: white;
  font-size: 20px;
  margin: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

.hero-banner {
  height: 100%;
}

#hero .slick-list {
  height: 100%;
}

.hero-main {
  height: 100%;
}

#hero .hero-image {
  height: 100%;
}

.slick-track {
  height: 100%;
}

.hero .container {
  position: relative;
}

.hero-title {
  position: absolute;
  top: 63%;
  bottom: 0;
  left: -28%;
  right: 0;  
  transform: translate(-50%, -50%);
  z-index: 2;
}
.hero-image img{
  height: 100%;
}
.hero-title p {
  color: #fff;
  font-size: 24px;
}
#hero .slick-dotted.slick-slider{
  margin-bottom: 0;
}

/* Remove default dots + numbers */
#hero .slick-dots li button:before {
  content: '' !important; /* hide default circle/numbers */
}

/* Slick dots as rectangular lines */
#hero .slick-dots {
  display: flex !important;
  justify-content: center;
  margin-top: 20px;
  list-style: none;
  padding: 0;
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
}

 #hero .slick-dots li {
  margin: 0 5px;
}

#hero .slick-dots li button {
  width: 24px;          
  height: 4px;          
  padding: 0;
  background: #fff;     /* inactive color */
  border: none;
  border-radius: 2px;   /* rounded ends */
  cursor: pointer;
  font-size: 0;         /* hide numbers if any */
}

#hero .slick-dots li.slick-active button {
  background: #fff;     /* active line */
  opacity: 20%;
}

.chain-hero-text {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 8%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chain-hero-text .sub-title p{
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.about-oman-img img{
  border-radius: 15px;
}

#chain-flexibility{
  background-color: #F2F2F2;
}

#chain-flexibility .card-custom {
  position: relative;
  height: 300px;
  overflow: hidden;
  border: none;
  border-radius: 10px;
}

#chain-flexibility .card-img {
  height: 100%;
  object-fit: cover;
}

#chain-flexibility .card-img-overlay {
  position: absolute;
  top: 79%;
  left: 0;
  width: 100%;
 background: #FFF;
 background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
  color: white;
  padding: 20px;
  transition: 0.8s ease;
  border-radius: unset;
  display: unset;
}

#chain-flexibility .card-title {
  margin-bottom: 10px;
  opacity: 1;
  font-size: 22px;
}

#chain-flexibility .card-text {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.8s ease;
}

#chain-flexibility .card-img-overlay:hover .card-title {
  margin-top: 20px;
}

#chain-flexibility .card-custom:hover .card-img-overlay {
  top: 0%;
  transition: 0.8s ease;
  background: #000000B2;
}

#chain-flexibility .card-custom:hover .card-text {
  opacity: 1;
  transform: translateY(0);
}

.card-custom:hover .card-img-overlay {
  top: 0%;
  transition: 0.8s ease;
}


.card-img-overlay {
  position: absolute;
  top: 72%;
  left: 0;
  width: 100%;
  background: #000000B2;
  color: white;
  padding: 20px;
  transition: 0.8s ease;
  border-radius: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  color: #fff;
}

.card-img-overlay:hover .card-title {
  transition: 0.8s ease;
}


#how-safe-wire .accordion-image {
    display: none;
  }
#how-safe-wire .accordion-image.active {
    display: block;
  }

  #how-safe-wire .safe-wire-main{
  padding: 20px;
    background-color: #F2F2F2;
    border-radius: 20px;
}
.safe-wire-main .accordion-button{
  background-color: #F2F2F2;
  border-radius: 0;
  font-size: 22px;
  padding: 20px;
}
.safe-wire-main .accordion-button:hover{
    color:#212529;
}
.safe-wire-main .accordion-button:focus {
    box-shadow: none;
}
.safe-wire-main .accordion-button:not(.collapsed){
  background-color: #fff;
  color: #B31010;
}

.safe-wire-main .accordion-button::after{
  display: none;
}

.safe-wire-main .accordion{
  border-radius: 0;
  --bs-accordion-border-width:0;
}

.safe-wire-main .accordion-item:first-of-type>.accordion-header .accordion-button{
  border-top-left-radius:0;
  border-top-right-radius:0;
}

.safe-wire-main .accordion-item{
  border: none;
  border-bottom: 2px solid #CDCDCD !important;
}

.safe-wire-main .accordion-body{
  padding-top: 0px;
  font-size: 16px;
}
#how-safe-wire .accordion-image{
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}

#how-safe-wire .accordion-image img{
  width: 100%;
  border-radius: 10px;
}

#how-safe-wire {
  padding: 60px 0;
}

#how-safe-wire .safe-wire-wrapper {
  padding: 20px;
  background-color: #F2F2F2;
  border-radius: 20px;
}
#how-safe-wire .accordion-image-wrapper {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}
#how-safe-wire .accordion-image-wrapper img {
  width: 100%;
  border-radius: 10px;
  display: block;
}
.how-safe-content p{
  border-left: 2px solid #B31010;
  padding-left: 15px;
}

/* Footer section */
#information{
  background-image: url(../img/Last-Section.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom
}
.phoneicon img{
  max-width: 50px;
}
.number {
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  display: flex;
  padding-top: 10px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: -23px;
}
.number a {
  margin: 0;
  padding: 30px 0px;
  color: #ffffff !important;
  font-size:18px;
}
#industrial-table{
  background-image: url('../img/A-1 Kavach Table BG.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}
.table-custom {
  margin: 40px auto;
  width: 60%;
}
.table-custom thead th, .table-custom tbody td {
  border: 2px solid #000;
  vertical-align: middle;
  text-align: center;
  padding: 10px;
  color: #fff;
}
.table-custom thead th {
  background: #888888;
}
.table-group-header td {
  background: #2c2c2c;
  text-align: left;
  border-top: 2px solid #000;
}
.table-custom tbody td {
  background: #343333;
}
.custom-table {
  background: #242424;
  color: #fff;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.custom-table th, .custom-table td {
  border: 2px solid #000;
  vertical-align: middle;
  text-align: center;
}
.custom-table th {
  background: #888888;
  padding: 14px 8px;
  border-bottom-width: 2px;
}
.custom-table td {
  background: #343333;
}
.coating-cell {
  padding: 0;
}
.coating-table {
  width: 100%;
  border-collapse: collapse;
}
.coating-table td {
  border: none;
  padding: 20px 10px;
  text-align: center;
}
.coating-table tr:not(:last-child) td {
  border-bottom: 2px solid #000;
}
.application-box img{
  width: 68px;
  height: 68px;
}
.application-box{
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #CDCDCD;
}
.application-box p {
    min-height: 80px;
    margin-top: 20px;
}
.configurations{
  background-color: #F2F2F2;
}
.configuration-body{
  padding: 10px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  border: 1px solid #BFBFBF;
}
.configurations-main img{
  border-radius: 10px 10px 0 0;
}

/* iPad Pro */
@media screen and (max-width: 1199.98px) {
  
  .hero p {
    padding-top: 0;
    font-size: 22px;
    line-height: normal;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 34px;
  }
  p,
  a {
    font-size: 20px;
    line-height: 1.3;
  }
  .configuration-body p {
    min-height: 155px;
  }
  .application-box p{
        min-height: 60px;
  }
}

/* iPad Mini */
@media screen and (max-width: 991.98px) {

  .hero h1 {
    font-size: 32px;
  }
  p,
  a {
    font-size: 16px;
  }
  .hero p {
    font-size: 20px;
    line-height: normal;
  }
  h2 {
    font-size: 30px;
  }
  section {
    padding: 30px 0;
  }
  .chain-hero-text{
    width: 70%;
  }
  .configuration-body p {
      min-height: 100%;
  }
}

/* Mobile */
@media screen and (max-width:767.98px) {

  .navmenu ul li a,
  .btn-get-started,
  .btn-get-stky {
    padding: 10px 15px;
    font-size: 14px;
  }
  .logo img{
    width: 170px;
  }
  section {
    padding: 30px  0;
  }
  h2 {
    font-size: 24px;
  }
  .hero h1 {
    font-size: 26px;
  }
  h3 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
  p,
  a {
    font-size: 15px;
  }
  
  .application-box p{
    min-height: 100%;
  }
  .chain-hero-text{
    width: 90%;
  }
}
#top-bar, #top-bar a {
    color: #fff;
    font-size: 12px;}

.fade {
    transition: opacity .15s linear !important;
    opacity:1;
}
#footer-widgets,
#menu-footer-menu li a,
#sidebar .widget.widget_links ul li a, #footer-widgets .widget.widget_links ul li a,
#menu-products li a {
    font-size: 14px;
}

#main-nav ul {
    margin: 0;
    padding: 0;
}

#main-nav ul li {
    font-size: 14px;
}
#mainmenu ul li:last-child{
    content: "";
    position: absolute;
    left: 0;
    bottom: 11px;
    width: 100%;
    height: 2px;
    background-color: #ef0000;
}
.table-custom thead th, .table-custom tbody td{
    font-size:18px;}
}

