/* Root */

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden !important;
  padding: 0;
  border: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.text-color {
  color: #3b3b3b;
}

.white-color {
  color: #f2f3f5;
}

.blue-background {
  background-color: #a70707;
}

/* Root */

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #a70707;
  border-bottom: 16px solid black;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#myDiv {
  display: none;
}


#button {
  display: inline-block;
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color:  black;
  color: white;
  cursor: pointer;
  border-radius: 56%;
  transition: all ease 0.25s;
  height: 50px;
  width: 50px;
  opacity: 0;
  visibility: hidden;
}

#button:hover {
  background-color: #a70707;
}

#button.show {
  opacity: 45%;
  visibility: visible;
}


/* BANNER  */

.banner-pg {
  width: 100%;
  height: 600px;
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.overbanner {
  height: inherit;
  width: 100%;
  background-color: #2e2e2ebb;
}

.banner-text h3 {
  font-weight: 800;
  text-shadow: 3px 3px 6px #454546;
}

@media screen and (min-width: 768px) {
  .banner-text h3 {
    font-size: 3.5em;
  }
}

/* BANNER  */

/* NAVBAR  */

.resp-logo {
    height: 100%;
    max-height: 60px;
    width: auto;
}

@media screen and (min-width: 991px){
    .resp-logo{
        max-height: 80px;
    }
}

nav.navbar.navbar-expand-lg {
  position: absolute;
  z-index: 1;
  background: #dfdfdf;
  min-height: 70px;
}

.flex-nav-container {
  display: flex;
  text-align: center;
  justify-content: space-evenly;
  border-top: 1px #a70707 solid;
  padding: 10px;
}

.navbar-nav {
  justify-content: flex-end;
}

.nav-item {
  background-color: #f9f9f9;
}

.flex-item {
  background-color: #ffffff;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #000000;
  padding-right: 16px;
  padding-left: 16px;
  transition: all ease 0.25s;
}

.nav-link:hover {
  color: #a70707;
}

a.nav-link.active {
  color: #a70707;
}

@media screen and (min-width: 991px) {
  .flex-nav-container {
    border-top: none;
    padding: 0;
  }
  .nav-item {
    padding-left: 8px;
    padding-right: 8px;
  }
  .nav-item {
    background-color: #ffffff;
  }
}

.nav-shadow {
  -webkit-box-shadow: 10px 10px 10px #cccccc8a;
  -moz-box-shadow: 10px 10px 10px #cccccc8a;
  box-shadow: 10px 10px 10px #cccccc8a;
}

.animated-icon2 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon2 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.animated-icon2 span {
  background: #020202;
}

/* Icon 3*/

.animated-icon2 span:nth-child(1) {
  top: 0px;
}

.animated-icon2 span:nth-child(2),
.animated-icon2 span:nth-child(3) {
  top: 10px;
}

.animated-icon2 span:nth-child(4) {
  top: 20px;
}

.animated-icon2.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.animated-icon2.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.animated-icon2.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.animated-icon2.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

#sticky-header {
  background-color: #ffffff;
  position: fixed;
  /* Make it stick/fixed */
  top: 0;
  /* Stay on top */
  left: 0;
  width: 100%;
  /* Full width */
  z-index: 98;
  box-shadow: #000000d0 16px;
  padding: 0;
}

button.navbar-toggler:focus {
  outline: none;
}

/* NAVBAR */

/* HOME-PAGE  */

/* BANNER  */




/* .home-banner-carousel {
  max-width: 1440px;
  position: relative;
  
} */

.home-banner-item{
  position: relative;
  background-position: center;
  background-size: cover;
  height: 100vh;
}

@media screen and (min-width: 991px){
  .home-banner-item{
    height: 75vh;
  }
}

#banner1{
  background-image: url("../media/home-ban1.jpg");
}

#banner2{
  background-image: url("../media/home-ban2.jpg");
}

#banner3{
  background-image: url("../media/home-ban3.jpg");
}


.ban-text-cont{
  height: inherit;
  background-color: #2e2e2ebb;
}

.ban-text-hd {
  font-weight: 900;
  font-size: 1.9em;
}

.ban-text-p {
  font-size: 0.9em;
}

.read-btn {
  padding: 12px;
  font-size: 1.1em;
  border-radius: 8px;
  transition: all ease .25s;
}

@media screen and (min-width: 768px) {

  .ban-text-hd {
    font-size: 2.8em;
  }

  .ban-text-p {
    font-size: 1.6em;
    padding: 0 80px;
  }

  .read-btn {
    font-size: 1.6em;
  }
}

@media screen and (min-width: 991px) {
  .ban-text-hd {
    font-size: 2.2em;
  }

  .ban-text-p, .read-btn {
    font-size: 1.22em;
  }
}

@media screen and (min-width: 1200px) {
  .ban-text-hd {
    font-size: 3em;
  }

  .ban-text-p, .read-btn {
    font-size: 1.3em;
  }
}

@media screen and (min-width: 1900px) {
  .ban-text-hd {
    font-size: 4em;
  }

  .ban-text-p {
    font-size: 2em;
    padding: 0 300px;
  }

  .read-btn{
    font-size: 2.2em;
  }
}



.read-btn:hover {
  color: #f2f3f5;
  background-color: black;
  text-decoration: none;
}

div.owl-nav {
  height: 60px;
  display: flex;
  position: absolute;
  width: 100vw;
  justify-content: space-between;
  cursor: pointer;
  top: 55vh;
  bottom: 0 !important;
  /* right: 0 !important; */
  font-size: 2em;
  z-index: 5;
  color: white;
  margin-top: 0 !important;
}

/* button.owl-prev{
  left: 0 !important;
}

button.owl-next{
  right: 0 !important;
} */


button.owl-prev,
button.owl-next {
  width: 50px;
  padding: 10px;
  transition: all ease 0.25s;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

button.owl-prev span,
button.owl-next span{
  padding-bottom: 5px;
} 

button.owl-prev:hover,
button.owl-next:hover {
  background-color: #a70707 !important;
  color: #f2f3f5 !important;
}

button.owl-prev:focus,
button.owl-next:focus {
  outline: none;
}

.owl-dot:focus{
  outline: none;
}

/* BANNER */

/* HOME-ABOUT  */

.hm-abt {
  margin-top: 65px;
}

.div-border {
  border-left: 10px solid #a70707;
}

.hm-hd,
.hm-hd h1 {
  font-weight: 700;
}

@media screen and (min-width: 991px) {
  .hm-abt-p p {
    font-size: 0.9em;
  }
}

/* HOME-ABOUT  */

/* VALUES  */

.values {
  width: 100%;
  height: auto;
  background: url(../media/vision-back.jpg);
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.values-content {
  background: #474948c2;
  border-radius: 10px;
}

.values-content h4 {
  color: #ffffff;
  font-size: 1.5em;
  font-weight: 700;
}

.values-content p {
  color: #ffffff;
  font-size: 1em;
}

@media screen and (min-width: 992px) {
  .values-content h4 {
    font-size: 2em;
  }
  .values-content p {
    font-size: 1.2em;
  }
}

.values-content-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: justify;
}

/* VALUES  */

/* HM-PRODUCT  */

.w-85 {
  max-width: 85%;
  height: 100% !important;
}

.hm-prod-card {
  border: none;
  transition: all ease 0.25s;
  height: 100%;
}

.hm-prod-crsl .owl-item{
    height: 100% !important;
}

.hm-prod-card:hover {
  box-shadow: 14px 14px 36px #d9d9d9, -14px -14px 36px #ffffff,
    -14px 14px 8px #d9d9d9, 14px -14px 36px #ffffff;
}

.hm-prod-img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.hm-prod-text {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.hm-prod-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 10px;
  color: #3b3b3b;
  border-radius: 8px;
  transition: all ease 0.25s;
}

.hm-prod-btn:hover {
  background-color: #a70707;
  color: #f2f3f5;
  text-decoration: none;
}

/* HM-PRODUCT  */

/* HM-SECTOR  */

.sector-card {
  border: 1px #393a3db4 solid;
  border-radius: 4px;
  margin: 10px auto;
  transition: all 0.4s;
  font-size: 1.3em;
  font-weight: 600;
}

.sector-card:hover {
  box-shadow: 14px 14px 36px #d9d9d9, -14px -14px 36px #ffffff,
    -14px 14px 36px #d9d9d9, 14px -14px 36px #ffffff;
  border: 1px #41424228 solid;
}

.sec-icon {
  width: auto;
  max-width: 110px;
}

/* HM-SECTOR */

/* CONTACT FORM */

.contact-form {
  background-position: center;
  background-attachment: fixed;
  background-image: url("../media/contact-back.jpg");
  background-size: cover;
}

.backdrop {
  background-color: #2e2e2ec0;
}

.form-heading {
  color: #f9f9f9;
}

.form-heading h1 {
  padding: 40px 0 10px 0;
  font-size: 2.5em;
  font-weight: 800;
}

.form-heading p {
  padding: 10px 0 10px 0;
  font-size: 1em;
  font-weight: 400;
}

.form-control {
  background-color: #ededed;
  box-shadow: none;
  min-height: 3em;
  padding: 1.07em 0.5em;
  border-radius: 0;
  border: none;
}

.btn-div {
  padding: 40px 0 40px 0;
  text-align: center;
}

.form-btn {
  border-radius: 8px;
  background-color: transparent;
  border: none;
  font-size: 1.5em;
  font-weight: 500;
  padding: 8px;
  width: 200px;
  transition: all ease 0.25s;
  cursor: pointer;
  outline: none;
}

.form-btn:hover {
  background-color: white;
  color: #565656;
}

.form-btn:focus {
  outline: none;
}

.form-icon {
  font-size: 1em;
  min-height: 3em;
  padding: 1em 0.5em;
  color: #565656;
  background-color: #ededed;
}

/* CONTACT-FORM  */

/* CONTACT PAGE  */

.contact-banner {
  background-image: url("../media/contact-ban.jpg");
}

.contact-col {
  display: block;
}

iframe {
  width: 100%;
  height: auto;
  min-height: 350px;
}

/* CONTACT PAGE  */

/* PRODUCT PAGE  */

.product-banner {
  background-image: url("../media/prod-ban.jpg");
}

.get-st {
  border-left: 55px solid #a70707;
  border-radius: 10px 0px 0px 10px;
}

@media screen and (max-width: 768px) {
  .get-st-text {
    font-size: 1.5em;
  }
}

.team-cols {
  text-align: center;
  padding: 15px;
  border: none;
}

.card.team-cards {
  border: none;
  transition: all 0.25s;
  border-radius: 8px !important;
  max-width: 320px;
  height: 100%;
  padding: 15px;
  box-shadow: 0 6px 25px rgba(12, 89, 219, 0.09);
  background-color: transparent !important;
}

.hvr-sweep-to-top:before {
    border-radius: 8px !important;
}

.card-img-top.team-img {
  border-radius: 8px;
  /* height: 354px; */
  /* max-width: 250px; */
}

.team-pos {
  font-weight: 300;
  font-size: 0.6em;
}

.team-info {
  font-size: 0.9em;
}

.team-name {
  margin-bottom: 16px;
  font-size: 1.3em;
  font-weight: 600;
}

/* .team-cards:hover {
    box-shadow: 14px 14px 36px #d9d9d9, -14px -14px 36px #ffffff,
      -14px 14px 36px #d9d9d9, 14px -14px 36px #ffffff;
  } */

  .pat-card{
    box-shadow: none !important;
  }

  .pat-card:hover{
    box-shadow: 0 6px 25px rgba(12, 89, 219, 0.09) !important;
  }

  #k-log{
    width: 90%;
  }


/* PRODUCT PAGE  */

/* Footer  */

footer {
  width: 100%;
  color: #ffffff;
  background-color: #39383d;
}

.social {
  display: flex;
  justify-content: center;
}

.social a {
  font-size: 1.5rem;
  transition: all ease 0.25s;
  color: #ffffff;
}

.social a:hover {
  color: #a70707 !important;
}

.adds:hover{
  color: #000000;
}

.ftr,
.ftr a,
.ftr .adds {
  color: #ffffff;
  display: block;
  font-size: 0.9em;
}

@media screen and (min-width: 768px) {
  .ftr .adds,
  .ftr a {
    font-size: 1.1em;
  }
}

/* .ftr a:hover {
  text-decoration: none;
} */

.designer {
  font-size: 12px;
}

.ftr .ft-ml {
  font-size: 0.6em;
}

@media screen and (min-width: 375px) {
  .ftr .ft-ml {
    font-size: 0.72em;
  }
}

@media screen and (min-width: 450px) {
  .ftr .ft-ml {
    font-size: 0.9em;
  }
}

.ftr-hvr:hover{
  color: #a70707 !important;
}
/* Footer */

/* ABOUT PAGE  */

.about-banner {
  background-image: url("../media/about-ban.jpg");
}

.rec-avatar {
  width: 200px;
  height: auto;
  border-radius: 50%;
}

.jst-align {
  justify-content: space-between;
}

.prof-left {
  display: flex;
}

.reg-line{
  font-size: 0.7em;
}

/* ABOUT PAGE  */
