body {
  padding-top: 100px;
  background: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: #64686d;
  line-height: 1.4;
  font-display: swap;

  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #272727;
}

p{
  font-weight: 300 !important;
}
a {
  color: #c1273a;
  -webkit-transition: color 400ms, background-color 400ms;
  -moz-transition: color 400ms, background-color 400ms;
  -o-transition: color 400ms, background-color 400ms;
  transition: color 400ms, background-color 400ms;
}

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

.btn {
  border-width: 0;
  border-bottom-width: 3px;
  border-radius: 3px;
}

.btn.btn-primary {
  background: #c1273a;
  border-color: #c1273a;
  transition: 0.4s ease;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: #a4202f;
}

.section-title {
  font-size: 2.5rem;
  color: #272727;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 3.5rem;
}
.section-title:before {
  content: "";
  position: absolute;
  width: 140px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: #ebebeb;
}
.section-title:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid #fff;
  border-radius: 50%;
  background: #c1273a;
}

/* NAVBAR */
.navbar{
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;

  background: rgb(255, 255, 255);
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
}
.navbar-toggle {
  margin-top: 32px;
}
.navbar-brand {
  height: auto;
  padding: 10px 0 10px 0;
}

.navbar .nav-link{
  font-size: 18px;
  padding: 40px 20px !important;
}

.navbar .navbar-nav .active,
.navbar .navbar-nav > a:hover {
    background: #eee;
    padding-top: 37px;
    border-top: 3px solid #c1273a;
    color: #c1273a;
}

/* BANNER SLIDER */
#main-slider {
  overflow: hidden;
  
}
#main-slider .item {
  height: 558px;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}
#main-slider .slider-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
#main-slider .slider-inner h2 {
  margin-top: 180px;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}
#main-slider .slider-inner h2 > span {
  color: #c1273a;
}
#main-slider .slider-inner .btn {
  margin-top: 10px;
}
#main-slider .owl-prev,
#main-slider .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  font-size: 30px;
  height: 70px;
  width: 70px;
  line-height: 65px;
  text-align: center;
  border-radius: 100px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  -webkit-transition: background-color 400ms;
  transition: background-color 400ms;
  z-index: 5;
}
#main-slider .owl-prev:hover,
#main-slider .owl-next:hover {
  background-color: #c1273a;
}
#main-slider .owl-prev {
  left: -35px;
  text-indent: 14px;
}
#main-slider .owl-next {
  right: -35px;
  text-indent: -14px;
}

/* div added using js on main.js */
#bar {
  width: 0%;
  max-width: 100%;
  height: 4px;
  background: #c1273a;
}
#progressBar {
  margin-top: -4px;
  position: relative;
  z-index: 999;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}


/* ABOUT */
.about{
  padding: 5rem 0;
}

.about__image{
  max-width: 500px;
  
}

.about__ods{
  max-width: 510px !important;
}

/* SERVICES */
.services {
  background: #242a33 url(../images/cta2/cta2-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  color: #fff;
  padding: 5rem 0 13rem 0;

  position: relative;
}
.services h2 {
  color: #fff;
  font-size: 44px;
  line-height: 1;
  padding-bottom: 0.9rem;
}

.services h2 > span {
  color: #c1273a;
}

.services__hands{
  position: absolute !important;
  bottom: 0rem;
  transform: translateX(-50%);
  left: 50%;

  max-width: 1140px;
}

.service__icons-wrap{
  display: flex;
  justify-content: space-around;
  padding-top: 1rem;
}

.box__title{
  padding: 0;
  color: white;
  font-size: 18px;
}

div.pull-left{
  padding: 0 !important;
}

.service__box{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.service__box {
  margin: 25px 0;
}

.service__box i {
  font-size: 24px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  width: 64px;
  border-radius: 100%;
  color: #c1273a;
  box-shadow: inset 0 0 0 1px #d7d7d7;
  -webkit-box-shadow: inset 0 0 0 1px #d7d7d7;
  transition: background-color 400ms, background-color 400ms;
  position: relative;
}

.service__box:hover i {
  background-image: -moz-linear-gradient(90deg, #c1273a 0%, #c1273a 100%);
  background-image: -webkit-linear-gradient(90deg, #c1273a 0%, #c1273a 100%);
  background-image: -ms-linear-gradient(90deg, #c1273a 0%, #c1273a 100%);
  color: #fff;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.8);
}

/* PROJECTS */
.projects{
  padding: 5rem 0;
}

.projects .nav-pills {
  display: flex;
  flex-direction: column;
  background: #eee;
  border-bottom: 3px solid #222534;
  border-radius: 0;
}

.projects .nav-pills > li{
  color: #272727;
  text-align: start;
}

.projects .nav-pills > .active{
  background: #222534;
  color: #c1273a;
  border-radius: 0;
}

.nav-pills .nav-link{
  border-radius: none !important;
  padding-right: 20rem;
  color: #272727;
}

.tab-content {
  border: 1px solid #eee;
  border-top: 0;
  padding: 20px 20px 10px;
  border-radius: 0 0 3px 3px;
}


/* CONTACTS */
.contact {
  position: relative;
  overflow: hidden;
}

.contact .container-wrapper {
  padding: 5rem 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 1;
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  margin-top: -2rem !important;
}

.contact-form h3 {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea{
  margin-bottom: 1rem;
}

.form-control {
  box-shadow: none;
  -webkit-box-shadow: none;
}

/* FOOTER */
.footer {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  background: #2e2e2e;
}

.footer .row{
  display: flex;
  align-items: center;
  justify-content: space-between !important;
}

.footer .col-ul{
  text-align: end;
}

.footer p{
  font-size: 12px;
}

.footer a {
  color: #fff;
}
.footer a:hover {
  color: #c1273a;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0 -7.5px;
}
.footer ul > li {
  display: inline-block;
  margin: 0 7.5px;
}

@media screen and (max-width: 1200px){
  .services__hands{
    width: 100% !important;
  }  
}

@media screen and (max-width: 992px){
  
}

@media screen and (max-width: 768px){
  .projects__tab{
    flex-direction: column !important;
  }

  .projects__video{
    width: 100%;
  }

  .tab-content{
    padding: 2rem 0 0 0;
  }
}

@media screen and (max-width: 590px){
  /* NAVBAR */
  .navbar-default {
    padding-bottom: 15px;
  }

  /* ABOUT */
  .about__image,
  .about__ods{
    width: 100%;
  }

  /* SECOND SECTION */
  .service__icons-wrap{
    flex-direction: column;
  }

  
  /* FOOTER */
  .footer p{
    text-align: center;
  }

  .footer .row{
    flex-direction: column;
    gap: 2rem;
  }
}



