$font-primary: "Google Sans", sans-serif;
$font-secundary:"Poppins", sans-serif;
$font-third: "Inter", sans-serif;

$color-theme-light: #e0202e; //theme color
$color-theme-dark: #e0202e;
$color-theme-blue: #e0202e;


html,body {
    width:100%;
    height: auto;
    margin:0;
    padding:0;
    overflow-x: hidden;
}


body {
    font-family: $font-primary;
    position: relative;
    font-size:18px;
    line-height:27px;
    background-color: #fff;
    font-weight: 300;
}
img {
    width: 100%;
}
a{
    outline:none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: $color-theme-light;
}
a:active,
a:focus,
a:hover{
    outline:none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: #333;
}
section{
    padding: 80px 0;
    position: relative;
    @media (max-width: 991px) {
        padding: 50px 0;
    }
}
.btn {
    color: #fff;
    background-color: $color-theme-light;
    border: none;
    padding: 16px 30px;
    font-size: 17px;
    border-radius: 6px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: $font-secundary;
    text-transform: uppercase;
     @media (max-width: 991px) {
        font-size: 16px;
        letter-spacing: 1px;
     }
}
.btn:hover {
    color: #fff;
    background-color: $color-theme-dark;
    border-color: $color-theme-dark;
    border-radius: 48px;
}
.btn:focus {
    color: #fff !important;
    background-color: $color-theme-dark;
    border-color: $color-theme-dark;
}
.btn:active:hover, .btn:active:focus, .btn:active.focus, .btn-.active:hover, .btn.active:focus, .btn.active.focus, .open > .btn.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
    color: #fff;
    background-color: $color-theme-dark;
    border-color: $color-theme-dark;
}


.btn:active, .btn.active, .open > .btn.dropdown-toggle {
    color: #fff;
    background-color: $color-theme-dark;
    border-color: $color-theme-dark;
}
.title-h {
    font-size: 40px;
    line-height: 47px;
    color: #222;
    font-family: $font-secundary;
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: uppercase;
    @media (max-width: 991px) {
        font-size: 35px;
        line-height: 36px;
    }
}
.title-p {
    font-size: 20px;
    line-height: 28px;
    padding-bottom: 10px;
    font-weight: 300;
    color:#666;
    @media (max-width: 991px) {
        font-size: 20px;
        line-height: 28px;
    }
}
.sep {
    content: "";
    height: 2px;
    width: 100px;
    background: $color-theme-light;
    margin: 20px 0;
}
.sep-middle {
    content: "";
    height: 2px;
    width: 100px;
    background: $color-theme-light;
    margin: 20px auto;
}
.little-h {
    color: $color-theme-dark;
    font-size: 17px;
    letter-spacing: 4px;
    font-weight: 300;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: $font-secundary;
    @media (max-width: 991px) {
    font-size: 16px;
    letter-spacing: 1px;
    }
}
.back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.back-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.desctop-view {
    display: block !important;
    @media (max-width: 992px) {
        display: none !important;
    }
}
.mobile-view {
    display: none !important;
    @media (max-width: 991px) {
        display: block !important;
    }
}

.inner-h {
  font-family: $font-secundary;
  font-size: 28px;
  line-height: 34px;
  @media (max-width: 991px)  {
    font-size: 22px;
    line-height: 28px;
  }
}
/******navbar start*******/

.top-bar {
    background-color: #111;
      p, a {
          padding-top: 5px;
          margin-bottom: 5px;
          color: #fff;
          font-size: 16px;
          line-height: 23px;
          @media (max-width: 768px) {
              font-size: 15px;
              line-height: 16px;
          }
      }
      a:hover {
          color: $color-theme-light;
      }
  
  }
  @media (min-width: 991px) {
      nav.navbar.bootsnav.no-background {
          background-color: transparent;
          border: none;
      }
  }
  
  @media (max-width: 991px) {
      nav.navbar.bootsnav .navbar-toggle {
          margin-top: 17px;
          background-color: transparent;
      }
      .navbar-toggle .svg-inline--fa {
          color: #333;
      }
  }
  nav.navbar.bootsnav {
      background: #fff;
      border-bottom: solid 1px #eee;
      @media (max-width: 991px) {
          background: #fff !important;
          border-bottom: solid 1px #eee;
      }
  }
  .navbar {
      min-height: 115px;
      @media (max-width: 991px) {
          min-height: 95px;
      }
  }
  
  
  
  
  .navbar-brand {
    height: auto;
      padding: 5px 10px 2px 5px;
      @media (max-width: 1180px) {
          padding: 5px 10px 2px 5px;
      }
      @media (max-width: 991px) {
          padding: 5px 0 0 0;
      }
  }
  .navbar-brand img{
      width: auto;
      height: 74px;
      @media (max-width: 1180px) {
          height: 64px;
      }
  }
  .caret {
      margin-left: 4px;
  }
  
  @media (max-width: 992px) {
      nav.navbar.bootsnav li.dropdown a.dropdown-toggle:before {
          content: "";
          display: none;
      }
      nav.navbar.bootsnav .navbar-nav > li > a {
          border-bottom: none;
          border-top: none;
      }
      nav.navbar.bootsnav .navbar-collapse.collapse.in {
        background: #fff;
      }
      nav.navbar.bootsnav ul.nav li.dropdown ul.dropdown-menu > li > a {
          border-bottom: none;
          font-family: $font-secundary;
          color: #fff;
          font-size: 15px;
          padding: 5px 0;
      }
      nav.navbar.bootsnav .navbar-nav {
          margin: 15px -15px 20px -15px;
  }
      nav.navbar.bootsnav ul.nav > li > a {
          color: #333;
          font-size: 21px;
          font-weight: 500;
          padding: 12px 0;
          font-family: $font-secundary;
          text-transform: uppercase;
      }
  nav.navbar.bootsnav .btn {
      margin-left: 0px !important;
  }
  }
  
  @media (min-width: 991px) {
      nav.navbar.bootsnav li.dropdown ul.dropdown-menu {
          border-radius: 0px;
          padding: 0;
          background: rgba(255,255,255,.97);
          border: solid 1px #ccc;
          border-top: 4px solid $color-theme-light;
          margin-top: 0px;
          width: 280px;
  }
      nav.navbar ul.nav > li > a{
          padding: 30px 15px;
          font-weight: 500;
      }
      nav.navbar.bootsnav ul.nav > li > a {
          padding: 16px 10px 10px 10px;
          font-weight: 500;
          font-size: 17px;
          text-transform: uppercase;
          color: $color-theme-light;
          font-family: $font-secundary;
          margin: 14px 0 12px 0;
          letter-spacing: 1px;
          @media (max-width: 1050px) {
          font-weight: 600;
          font-size: 18px;
          text-decoration: none;
  
      }
      } 
  
  @media (max-width: 1199px) {
      nav.navbar.bootsnav ul.nav > li > a {
          padding: 15px 8px 10px 8px;
          font-weight: 400;
          font-size: 16px;
          text-transform: uppercase;
          font-family: $font-secundary;
          letter-spacing: 0px;
      }
  } 
      nav.navbar-fixed.bootsnav ul.nav > li > a {
          color: #333;
      }
      nav.navbar-fixed.bootsnav ul.nav > li > a:hover {
          color: $color-theme-light;
      }
      nav.no-background.bootsnav ul.nav > li > a {
          color: #fff;
      }
      nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after {
          content: "";
          display: none;
      }
      nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li a {
          text-align: left; 
      }
      nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li > a {
      padding: 11px 10px;
      border-bottom: solid 1px #ccc;
      color: #333;
      font-size: 16px;
      font-weight: 400;
  }
      nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li > a:hover {
      background-color: #eee;
  }
  }
  nav.navbar.bootsnav .btn {
      margin-top: 15px;
      text-transform: none;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 11px 15px;
      margin-right: 15px;
      font-weight: 400;
      font-family: $font-secundary;
      @media (max-width: 991px) {
          display: none;
      }
  
  }
  nav.bootsnav .btn {
      color: #fff !important;
      background-color: $color-theme-light !important;
      border: 2px solid $color-theme-light;
  }
  nav.bootsnav .btn:hover {
      color: $color-theme-light !important;
      background-color: transparent !important;
  }
  
  
  @media (max-width: 991px) {
    #navbar-menu > ul > li.dropdown.on > ul > li > a {
   color: #333;
   font-size: 21px;
   line-height: 36px;
   padding: 15px 0;
  } 
  #navbar-menu > ul > li.dropdown.on > ul {
      list-style: none;
      padding-left: 10px;
  } 
  }
  
  
  nav.no-background.bootsnav .logo1 {
  display: inline-block !important;
  }
  nav.navbar-fixed.bootsnav .logo1 {
  display: none;
  }
  nav.no-background.bootsnav .logo2 {
  display: none !important;
  }
  nav.navbar-fixed.bootsnav .logo2 {
  display: inline-block;
  }
  @media (max-width: 992px) {
  nav.no-background.bootsnav .logo1 {
  display: none !important;
  }
  nav.no-background.bootsnav .logo2 {
  display: inline-block !important;
  }
  }
  
  nav.no-background.bootsnav .navbar-brand img.logo-large {
    width: auto;
    height: 120px;
    margin-top: 0px; }
    
    @media (max-width: 991px) {
    nav.no-background.bootsnav .navbar-brand img.logo-large {
    height: 55px;
    width: auto;
    margin-top: 0; } }

nav.navbar.bootsnav.no-full .navbar-collapse {
height: auto !important;
max-height: none  !important;
}


/******navbar end**********/


/***************/

.hero {
    width: 100%;
    position: relative;
    min-height: 100vh;
    color: #fff;
}
.hero-text {
    position: relative;
    padding-top: 23vh;
    margin-bottom: 30px;
}
.hero-text h1 {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: 0px 0px 3px rgba(0,0,0,.6);
}

.hero video {
  width: 90%;
  margin-left: 5%;
  height: auto;
  cursor: pointer;
  margin-top: 20px;
  box-shadow: 0px 0px 20px rgba(0,0,0,.3);
  @media screen and (max-width: 768px) {
    width: 100%;
    margin-left: 0%;
    margin-top: 30px;
  }
}
.hero h4 {
    font-size: 44px;
    font-family: $font-secundary;
    font-weight: 700;
    margin-top: 50px;
}
.hero p {
    font-size: 18px;
    line-height: 20px;
    margin-top: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: $font-secundary;
}
.hero small {
  color: #fff;
}
@media screen and (max-width: 768px) {
    .hero {
        min-height: 65vh;
    }
    .hero-text {
        position: relative;
        padding-top: 20vh;
    }
    .hero-text h1 {
        font-size: 41px;
        @media (max-width: 768px) {
          font-size: 20px;
        }
    }
    .hero h4 {
        font-size: 24px;
        margin-top: 20px;
    }
    .hero p {
        font-size: 15px ;
        line-height: 16px;
    }
}
.hero .back {
    background-color: rgba(13,13,13,.45);
    opacity: .96;
}


/***************hero end******/

.services-box {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
    width: calc(24% - 20px);
    display: inline-block;
    vertical-align: top;
    background-color: #fff;
    margin: 10px 8px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    @media (max-width: 991px)  {
        width: calc(49% - 20px);
    }
    @media (max-width: 600px)  {
        width: calc(100% - 0px);
        margin: 10px 0px;
    }
    .services-img {
      overflow: hidden;
      position: relative;
        height: 300px;
        @media (max-width: 768px) {
          height: 230px;
        }
      &::before {
        content: "";
        position: absolute;
        inset: 0;
        background: inherit;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: transform .5s ease;
    }
    }

    .services-text {
        padding: 5px 15px 20px 15px;
        @media (max-width: 600px)  {
            padding: 5px 10px 15px 10px;
            min-height: auto; 
        }
        h3 {
            font-family: $font-secundary;
            letter-spacing: 0.5px;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        a {
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            text-decoration: underline;
            text-underline-offset: 5px;
            display: block;
        }
    }
}
.services-box:hover  {
  box-shadow: 2px -2px 15px rgba(0, 0, 0, 0.15);


}
.services-box:hover .services-img::before {
    transform: scale(1.08);
}
/*****video start****/


.video-div {
    background-color: #222;
}
.video-div .video-overlay {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    z-index: -1;
    background-color: #eee;
}

.video-div video {
    display: block;
    width: 100%;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    z-index: 1;
    margin: 0;
}

/******* cta start *********/

.cta {
    position: relative;
    background-attachment: fixed;
    padding: 190px 0;
    @media (max-width: 991px) {
        padding: 80px 0;
    }
    h3 {
        color: #fff;
        text-shadow: 0px 0px 5px rgba(0,0,0,.6);
    }
    p {
        color: #fff;
        font-size: 28px;
        line-height: 34px;
        font-weight: 400;
        text-shadow: 0px 0px 5px rgba(0,0,0,.6);
        @media (max-width: 991px)  {
            font-size: 20px;
            line-height: 24px;
        }
    }
    .back {
        background-color: rgba(13,13,13,.45);
    }
    .btn {
        margin-top: 10px;
    }
}


@supports (-webkit-touch-callout: none) {
.cta  {
@media only screen and (max-width: 990px) {
background-attachment: scroll !important;
background-size: auto 100%;
}
}
}
/******** cta end ********/

/************client start***********/
.clients {
  .clients-logo {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 120px;
    margin: 10px;
      @media (max-width: 991px) {
        height: 80px;
        margin: 10px 1px;
      }
  }
  .owl-theme .owl-controls {
      text-align: center; 
  }
  .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #000;
  }
  .owl-theme .owl-dots .owl-dot span {
      background: $color-theme-light;
  }
}
/*************client end************/



/*****tc- footer start******/
.tc-footer {
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 90px;
    @media (max-width: 991px) {
        padding-top: 60px;
        text-align: center;
    }
    a, p {
        color: #ddd;
        font-size: 18px;
        font-weight: 300;
        line-height: 21px;
        @media (max-width: 991px) {
            line-height: 22px;
            font-size: 16px;
        }
    }
    a:hover {
        color: $color-theme-light;
    }
    ul {
        list-style: none;
        padding-left: 0px;
    }
    .footer-social {
        display: inline-block;
    }
    .footer-logo {
        margin: 10px 0 10px 0;
        width: 90%;
        @media (max-width: 991px) {
            width: 95%;
        }
    }
    .svg-inline--fa {
        margin-right: 3px;
        color: $color-theme-dark;
        font-size: 17px;
        width: 20px;
        height: 20px;
        padding: 8px;
        border: 2px solid $color-theme-dark;
        border-radius: 50%;
        margin-top: 0px;
        @media (max-width: 991px) {
            margin-right: 6px;
            margin-left: 0;
        }
    }
    .svg-inline--fa:hover {
        background-color: $color-theme-light;
        border: 1px solid $color-theme-light;
        color: #fff;
    }
    .back {
        background: rgba(0, 0, 0, 0.53);
    }
}   
.footer-copyright {
    padding: 10px 0 10px 0;
    p {
        color: #fff;
        font-size: 14px;
        font-weight: 300;
    }
}


/*****tc-footer end******/


.tc-header {
  min-height: 45vh;
  position: relative;
  overflow: hidden;
  h1 {
    margin-top: 20vh;
    color: #fff;
    text-shadow: 0px 0px 7px rgba(0,0,0,.6);
  }
  h2 {
    color: #fff;
    text-shadow: 0px 0px 7px rgba(0,0,0,.6);
  }
  }
  .tc-header .back {
  background: rgba(13,13,13, .55);
  }

  .panel-default {
    border-color: rgba(224, 32, 46,.2);
}
.panel-default > .panel-heading {
  color: #333;
background-color: #fff;
  border-color: transparent;
  border-bottom: none; 
.svg-inline--fa {
    font-size: 16px;
    }}

.panel-heading {
  padding: 20px 15px;
  border-bottom: 1px solid #ccc; }
  .panel-heading .svg-inline--fa {
    color: $color-theme-light;
    margin-right: 10px;
    margin-left: 5px; }

.panel-title {
  font-family: $font-secundary;
  font-size: 19px;
  color: #333; }

@media screen and (max-width: 768px) {
  .panel-body {
    padding: 25px 20px; } }

input[type=file] {
  border: none;
  outline: none; }

  .panel-group .panel {
    margin-bottom: 10px !important;
  }

  input, textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.3);
    outline: none;
}

.logo-box {
  width: calc(25% - 20px);
  margin: 15px 7px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  @media screen and (max-width: 1050px) {
    width: calc(33% - 20px);
  }
  @media screen and (max-width: 550px) {
    width: calc(50% - 20px);
  }
  .logo-img {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 130px;
    @media screen and (max-width: 550px) {
      height: 100px;
    }
  }

}


.example-image {
  background-size: cover;
  background-position: center;
  height: 250px;
  margin: 5px 5px;
  width: calc(25% - 15px);
  display: inline-block;
  @media screen and (max-width: 999px) {
  height: 250px;
  margin: 5px 5px;
  width: calc(50% - 15px);
  }
  @media screen and (max-width: 500px) {
  height: 250px;
  margin: 5px 0px;
  width: calc(100% - 0px);
  }
  }

.sidebar {
  background-color: $color-theme-light;
  padding: 20px;
  .inner-h, p, a {
    text-transform: uppercase;
  }
}
.sidebar-box {
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  padding: 15px;

  p {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
  }
}

.who-people {
  height: 300px;
  background-position: top;
}
.who-images {
  p {
    margin: 10px 0 0 0 ;
    font-size: 14px;
    color: $color-theme-light;
  }
}


.services-row {
  ul {
    list-style: none;
    padding-left: 0;
  }
  li {
    padding: 15px;
    box-shadow: 0px 0px 3px rgba(224, 32, 46, 0.3);
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 16px;
    @media screen and (max-width: 500px) {
      padding: 12px;
      margin-bottom: 11px;
      font-size: 15px;
    }
  }
}



























  .mast__text {
    font-size: 58px;
    font-family: $font-secundary;
    letter-spacing: 1px;
    margin: 0 0 40px 0;
    line-height: 62px;
    @media (max-width: 768px) {
      font-size: 40px;
      line-height: 45px;
      margin: 0 0 10px 0;
    }
   
  }
  .mast__text span {
    -webkit-animation: letter-glow 0.7s 0s ease both;
            animation: letter-glow 0.7s 0s ease both;
  }
  .mast__text span:nth-child(1) {
    -webkit-animation-delay: 0.05s;
            animation-delay: 0.05s;
  }
  .mast__text span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  .mast__text span:nth-child(3) {
    -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
  }
  .mast__text span:nth-child(4) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .mast__text span:nth-child(5) {
    -webkit-animation-delay: 0.25s;
            animation-delay: 0.25s;
  }
  .mast__text span:nth-child(6) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  .mast__text span:nth-child(7) {
    -webkit-animation-delay: 0.35s;
            animation-delay: 0.35s;
  }
  .mast__text span:nth-child(8) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .mast__text span:nth-child(9) {
    -webkit-animation-delay: 0.45s;
            animation-delay: 0.45s;
  }
  .mast__text span:nth-child(10) {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  .mast__text span:nth-child(11) {
    -webkit-animation-delay: 0.55s;
            animation-delay: 0.55s;
  }
  .mast__text span:nth-child(12) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .mast__text span:nth-child(13) {
    -webkit-animation-delay: 0.65s;
            animation-delay: 0.65s;
  }
  .mast__text span:nth-child(14) {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  .mast__text span:nth-child(15) {
    -webkit-animation-delay: 0.75s;
            animation-delay: 0.75s;
  }
  .mast__text span:nth-child(16) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .mast__text span:nth-child(17) {
    -webkit-animation-delay: 0.85s;
            animation-delay: 0.85s;
  }
  .mast__text span:nth-child(18) {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
  .mast__text span:nth-child(19) {
    -webkit-animation-delay: 0.95s;
            animation-delay: 0.95s;
  }
  .mast__text span:nth-child(20) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .mast__text span:nth-child(21) {
    -webkit-animation-delay: 1.05s;
            animation-delay: 1.05s;
  }
  .mast__text span:nth-child(22) {
    -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
  }
  .mast__text span:nth-child(23) {
    -webkit-animation-delay: 1.15s;
            animation-delay: 1.15s;
  }
  .mast__text span:nth-child(24) {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  .mast__text span:nth-child(25) {
    -webkit-animation-delay: 1.25s;
            animation-delay: 1.25s;
  }
  .mast__text span:nth-child(26) {
    -webkit-animation-delay: 1.3s;
            animation-delay: 1.3s;
  }
  .mast__text span:nth-child(27) {
    -webkit-animation-delay: 1.35s;
            animation-delay: 1.35s;
  }
  .mast__text span:nth-child(28) {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
  .mast__text span:nth-child(29) {
    -webkit-animation-delay: 1.45s;
            animation-delay: 1.45s;
  }
  .mast__text span:nth-child(30) {
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
  }
  .mast__text span:nth-child(31) {
    -webkit-animation-delay: 1.55s;
            animation-delay: 1.55s;
  }
  .mast__text span:nth-child(32) {
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s;
  }
  .mast__text span:nth-child(33) {
    -webkit-animation-delay: 1.65s;
            animation-delay: 1.65s;
  }
  .mast__text span:nth-child(34) {
    -webkit-animation-delay: 1.7s;
            animation-delay: 1.7s;
  }
  .mast__text span:nth-child(35) {
    -webkit-animation-delay: 1.75s;
            animation-delay: 1.75s;
  }
  .mast__text span:nth-child(36) {
    -webkit-animation-delay: 1.8s;
            animation-delay: 1.8s;
  }
  .mast__text span:nth-child(37) {
    -webkit-animation-delay: 1.85s;
            animation-delay: 1.85s;
  }
  .mast__text span:nth-child(38) {
    -webkit-animation-delay: 1.9s;
            animation-delay: 1.9s;
  }
  .mast__text span:nth-child(39) {
    -webkit-animation-delay: 1.95s;
            animation-delay: 1.95s;
  }
  .mast__text span:nth-child(40) {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  .mast__text span:nth-child(41) {
    -webkit-animation-delay: 2.05s;
            animation-delay: 2.05s;
  }
  .mast__text span:nth-child(42) {
    -webkit-animation-delay: 2.1s;
            animation-delay: 2.1s;
  }
  .mast__text span:nth-child(43) {
    -webkit-animation-delay: 2.15s;
            animation-delay: 2.15s;
  }
  .mast__text span:nth-child(44) {
    -webkit-animation-delay: 2.2s;
            animation-delay: 2.2s;
  }
  .mast__text span:nth-child(45) {
    -webkit-animation-delay: 2.25s;
            animation-delay: 2.25s;
  }
  .mast__text span:nth-child(46) {
    -webkit-animation-delay: 2.3s;
            animation-delay: 2.3s;
  }
  .mast__text span:nth-child(47) {
    -webkit-animation-delay: 2.35s;
            animation-delay: 2.35s;
  }
  .mast__text span:nth-child(48) {
    -webkit-animation-delay: 2.4s;
            animation-delay: 2.4s;
  }
  .mast__text span:nth-child(49) {
    -webkit-animation-delay: 2.45s;
            animation-delay: 2.45s;
  }
  .mast__text span:nth-child(50) {
    -webkit-animation-delay: 2.5s;
            animation-delay: 2.5s;
  }
  .mast__text span:nth-child(51) {
    -webkit-animation-delay: 2.55s;
            animation-delay: 2.55s;
  }
  .mast__text span:nth-child(52) {
    -webkit-animation-delay: 2.6s;
            animation-delay: 2.6s;
  }
  .mast__text span:nth-child(53) {
    -webkit-animation-delay: 2.65s;
            animation-delay: 2.65s;
  }
  .mast__text span:nth-child(54) {
    -webkit-animation-delay: 2.7s;
            animation-delay: 2.7s;
  }
  .mast__text span:nth-child(55) {
    -webkit-animation-delay: 2.75s;
            animation-delay: 2.75s;
  }
  .mast__text span:nth-child(56) {
    -webkit-animation-delay: 2.8s;
            animation-delay: 2.8s;
  }
  .mast__text span:nth-child(57) {
    -webkit-animation-delay: 2.85s;
            animation-delay: 2.85s;
  }
  .mast__text span:nth-child(58) {
    -webkit-animation-delay: 2.9s;
            animation-delay: 2.9s;
  }
  .mast__text span:nth-child(59) {
    -webkit-animation-delay: 2.95s;
            animation-delay: 2.95s;
  }
  .mast__text span:nth-child(60) {
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
  }
  .mast__text span:nth-child(61) {
    -webkit-animation-delay: 3.05s;
            animation-delay: 3.05s;
  }
  .mast__text span:nth-child(62) {
    -webkit-animation-delay: 3.1s;
            animation-delay: 3.1s;
  }
  .mast__text span:nth-child(63) {
    -webkit-animation-delay: 3.15s;
            animation-delay: 3.15s;
  }
  .mast__text span:nth-child(64) {
    -webkit-animation-delay: 3.2s;
            animation-delay: 3.2s;
  }
  .mast__text span:nth-child(65) {
    -webkit-animation-delay: 3.25s;
            animation-delay: 3.25s;
  }
  .mast__text span:nth-child(66) {
    -webkit-animation-delay: 3.3s;
            animation-delay: 3.3s;
  }
  .mast__text span:nth-child(67) {
    -webkit-animation-delay: 3.35s;
            animation-delay: 3.35s;
  }
  .mast__text span:nth-child(68) {
    -webkit-animation-delay: 3.4s;
            animation-delay: 3.4s;
  }
  .mast__text span:nth-child(69) {
    -webkit-animation-delay: 3.45s;
            animation-delay: 3.45s;
  }
  .mast__text span:nth-child(70) {
    -webkit-animation-delay: 3.5s;
            animation-delay: 3.5s;
  }
  .mast__text span:nth-child(71) {
    -webkit-animation-delay: 3.55s;
            animation-delay: 3.55s;
  }
  .mast__text span:nth-child(72) {
    -webkit-animation-delay: 3.6s;
            animation-delay: 3.6s;
  }
  .mast__text span:nth-child(73) {
    -webkit-animation-delay: 3.65s;
            animation-delay: 3.65s;
  }
  .mast__text span:nth-child(74) {
    -webkit-animation-delay: 3.7s;
            animation-delay: 3.7s;
  }
  .mast__text span:nth-child(75) {
    -webkit-animation-delay: 3.75s;
            animation-delay: 3.75s;
  }
  .mast__text span:nth-child(76) {
    -webkit-animation-delay: 3.8s;
            animation-delay: 3.8s;
  }
  .mast__text span:nth-child(77) {
    -webkit-animation-delay: 3.85s;
            animation-delay: 3.85s;
  }
  .mast__text span:nth-child(78) {
    -webkit-animation-delay: 3.9s;
            animation-delay: 3.9s;
  }
  .mast__text span:nth-child(79) {
    -webkit-animation-delay: 3.95s;
            animation-delay: 3.95s;
  }
  .mast__text span:nth-child(80) {
    -webkit-animation-delay: 4s;
            animation-delay: 4s;
  }
  .mast__text span:nth-child(81) {
    -webkit-animation-delay: 4.05s;
            animation-delay: 4.05s;
  }
  .mast__text span:nth-child(82) {
    -webkit-animation-delay: 4.1s;
            animation-delay: 4.1s;
  }
  .mast__text span:nth-child(83) {
    -webkit-animation-delay: 4.15s;
            animation-delay: 4.15s;
  }
  .mast__text span:nth-child(84) {
    -webkit-animation-delay: 4.2s;
            animation-delay: 4.2s;
  }
  .mast__text span:nth-child(85) {
    -webkit-animation-delay: 4.25s;
            animation-delay: 4.25s;
  }
  .mast__text span:nth-child(86) {
    -webkit-animation-delay: 4.3s;
            animation-delay: 4.3s;
  }
  .mast__text span:nth-child(87) {
    -webkit-animation-delay: 4.35s;
            animation-delay: 4.35s;
  }
  .mast__text span:nth-child(88) {
    -webkit-animation-delay: 4.4s;
            animation-delay: 4.4s;
  }
  .mast__text span:nth-child(89) {
    -webkit-animation-delay: 4.45s;
            animation-delay: 4.45s;
  }
  .mast__text span:nth-child(90) {
    -webkit-animation-delay: 4.5s;
            animation-delay: 4.5s;
  }
  .mast__text span:nth-child(91) {
    -webkit-animation-delay: 4.55s;
            animation-delay: 4.55s;
  }
  .mast__text span:nth-child(92) {
    -webkit-animation-delay: 4.6s;
            animation-delay: 4.6s;
  }
  .mast__text span:nth-child(93) {
    -webkit-animation-delay: 4.65s;
            animation-delay: 4.65s;
  }
  .mast__text span:nth-child(94) {
    -webkit-animation-delay: 4.7s;
            animation-delay: 4.7s;
  }
  .mast__text span:nth-child(95) {
    -webkit-animation-delay: 4.75s;
            animation-delay: 4.75s;
  }
  .mast__text span:nth-child(96) {
    -webkit-animation-delay: 4.8s;
            animation-delay: 4.8s;
  }
  .mast__text span:nth-child(97) {
    -webkit-animation-delay: 4.85s;
            animation-delay: 4.85s;
  }
  .mast__text span:nth-child(98) {
    -webkit-animation-delay: 4.9s;
            animation-delay: 4.9s;
  }
  .mast__text span:nth-child(99) {
    -webkit-animation-delay: 4.95s;
            animation-delay: 4.95s;
  }
  .mast__text span:nth-child(100) {
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
  }
  .mast__text span:nth-child(101) {
    -webkit-animation-delay: 5.05s;
            animation-delay: 5.05s;
  }
  .mast__text span:nth-child(102) {
    -webkit-animation-delay: 5.1s;
            animation-delay: 5.1s;
  }
  .mast__text span:nth-child(103) {
    -webkit-animation-delay: 5.15s;
            animation-delay: 5.15s;
  }
  .mast__text span:nth-child(104) {
    -webkit-animation-delay: 5.2s;
            animation-delay: 5.2s;
  }
  .mast__text span:nth-child(105) {
    -webkit-animation-delay: 5.25s;
            animation-delay: 5.25s;
  }
  .mast__text span:nth-child(106) {
    -webkit-animation-delay: 5.3s;
            animation-delay: 5.3s;
  }
  .mast__text span:nth-child(107) {
    -webkit-animation-delay: 5.35s;
            animation-delay: 5.35s;
  }
  .mast__text span:nth-child(108) {
    -webkit-animation-delay: 5.4s;
            animation-delay: 5.4s;
  }
  .mast__text span:nth-child(109) {
    -webkit-animation-delay: 5.45s;
            animation-delay: 5.45s;
  }
  .mast__text span:nth-child(110) {
    -webkit-animation-delay: 5.5s;
            animation-delay: 5.5s;
  }
  .mast__text span:nth-child(111) {
    -webkit-animation-delay: 5.55s;
            animation-delay: 5.55s;
  }
  .mast__text span:nth-child(112) {
    -webkit-animation-delay: 5.6s;
            animation-delay: 5.6s;
  }
  .mast__text span:nth-child(113) {
    -webkit-animation-delay: 5.65s;
            animation-delay: 5.65s;
  }
  .mast__text span:nth-child(114) {
    -webkit-animation-delay: 5.7s;
            animation-delay: 5.7s;
  }
  .mast__text span:nth-child(115) {
    -webkit-animation-delay: 5.75s;
            animation-delay: 5.75s;
  }
  .mast__text span:nth-child(116) {
    -webkit-animation-delay: 5.8s;
            animation-delay: 5.8s;
  }
  .mast__text span:nth-child(117) {
    -webkit-animation-delay: 5.85s;
            animation-delay: 5.85s;
  }
  .mast__text span:nth-child(118) {
    -webkit-animation-delay: 5.9s;
            animation-delay: 5.9s;
  }
  .mast__text span:nth-child(119) {
    -webkit-animation-delay: 5.95s;
            animation-delay: 5.95s;
  }
  .mast__text span:nth-child(120) {
    -webkit-animation-delay: 6s;
            animation-delay: 6s;
  }
  .mast__text span:nth-child(121) {
    -webkit-animation-delay: 6.05s;
            animation-delay: 6.05s;
  }
  .mast__text span:nth-child(122) {
    -webkit-animation-delay: 6.1s;
            animation-delay: 6.1s;
  }
  .mast__text span:nth-child(123) {
    -webkit-animation-delay: 6.15s;
            animation-delay: 6.15s;
  }
  .mast__text span:nth-child(124) {
    -webkit-animation-delay: 6.2s;
            animation-delay: 6.2s;
  }
  .mast__text span:nth-child(125) {
    -webkit-animation-delay: 6.25s;
            animation-delay: 6.25s;
  }
  .mast__text span:nth-child(126) {
    -webkit-animation-delay: 6.3s;
            animation-delay: 6.3s;
  }
  .mast__text span:nth-child(127) {
    -webkit-animation-delay: 6.35s;
            animation-delay: 6.35s;
  }
  .mast__text span:nth-child(128) {
    -webkit-animation-delay: 6.4s;
            animation-delay: 6.4s;
  }
  .mast__text span:nth-child(129) {
    -webkit-animation-delay: 6.45s;
            animation-delay: 6.45s;
  }
  .mast__text span:nth-child(130) {
    -webkit-animation-delay: 6.5s;
            animation-delay: 6.5s;
  }
  .mast__text span:nth-child(131) {
    -webkit-animation-delay: 6.55s;
            animation-delay: 6.55s;
  }
  .mast__text span:nth-child(132) {
    -webkit-animation-delay: 6.6s;
            animation-delay: 6.6s;
  }
  .mast__text span:nth-child(133) {
    -webkit-animation-delay: 6.65s;
            animation-delay: 6.65s;
  }
  .mast__text span:nth-child(134) {
    -webkit-animation-delay: 6.7s;
            animation-delay: 6.7s;
  }
  .mast__text span:nth-child(135) {
    -webkit-animation-delay: 6.75s;
            animation-delay: 6.75s;
  }
  .mast__text span:nth-child(136) {
    -webkit-animation-delay: 6.8s;
            animation-delay: 6.8s;
  }
  .mast__text span:nth-child(137) {
    -webkit-animation-delay: 6.85s;
            animation-delay: 6.85s;
  }
  .mast__text span:nth-child(138) {
    -webkit-animation-delay: 6.9s;
            animation-delay: 6.9s;
  }
  .mast__text span:nth-child(139) {
    -webkit-animation-delay: 6.95s;
            animation-delay: 6.95s;
  }
  .mast__text span:nth-child(140) {
    -webkit-animation-delay: 7s;
            animation-delay: 7s;
  }
  .mast__text span:nth-child(141) {
    -webkit-animation-delay: 7.05s;
            animation-delay: 7.05s;
  }
  .mast__text span:nth-child(142) {
    -webkit-animation-delay: 7.1s;
            animation-delay: 7.1s;
  }
  .mast__text span:nth-child(143) {
    -webkit-animation-delay: 7.15s;
            animation-delay: 7.15s;
  }
  .mast__text span:nth-child(144) {
    -webkit-animation-delay: 7.2s;
            animation-delay: 7.2s;
  }
  .mast__text span:nth-child(145) {
    -webkit-animation-delay: 7.25s;
            animation-delay: 7.25s;
  }
  .mast__text span:nth-child(146) {
    -webkit-animation-delay: 7.3s;
            animation-delay: 7.3s;
  }
  .mast__text span:nth-child(147) {
    -webkit-animation-delay: 7.35s;
            animation-delay: 7.35s;
  }
  .mast__text span:nth-child(148) {
    -webkit-animation-delay: 7.4s;
            animation-delay: 7.4s;
  }
  .mast__text span:nth-child(149) {
    -webkit-animation-delay: 7.45s;
            animation-delay: 7.45s;
  }
  .mast__text span:nth-child(150) {
    -webkit-animation-delay: 7.5s;
            animation-delay: 7.5s;
  }
  .mast__text span:nth-child(151) {
    -webkit-animation-delay: 7.55s;
            animation-delay: 7.55s;
  }
  .mast__text span:nth-child(152) {
    -webkit-animation-delay: 7.6s;
            animation-delay: 7.6s;
  }
  .mast__text span:nth-child(153) {
    -webkit-animation-delay: 7.65s;
            animation-delay: 7.65s;
  }
  .mast__text span:nth-child(154) {
    -webkit-animation-delay: 7.7s;
            animation-delay: 7.7s;
  }
  .mast__text span:nth-child(155) {
    -webkit-animation-delay: 7.75s;
            animation-delay: 7.75s;
  }
  .mast__text span:nth-child(156) {
    -webkit-animation-delay: 7.8s;
            animation-delay: 7.8s;
  }
  .mast__text span:nth-child(157) {
    -webkit-animation-delay: 7.85s;
            animation-delay: 7.85s;
  }
  .mast__text span:nth-child(158) {
    -webkit-animation-delay: 7.9s;
            animation-delay: 7.9s;
  }
  .mast__text span:nth-child(159) {
    -webkit-animation-delay: 7.95s;
            animation-delay: 7.95s;
  }
  .mast__text span:nth-child(160) {
    -webkit-animation-delay: 8s;
            animation-delay: 8s;
  }
  .mast__text span:nth-child(161) {
    -webkit-animation-delay: 8.05s;
            animation-delay: 8.05s;
  }
  .mast__text span:nth-child(162) {
    -webkit-animation-delay: 8.1s;
            animation-delay: 8.1s;
  }
  .mast__text span:nth-child(163) {
    -webkit-animation-delay: 8.15s;
            animation-delay: 8.15s;
  }
  .mast__text span:nth-child(164) {
    -webkit-animation-delay: 8.2s;
            animation-delay: 8.2s;
  }
  .mast__text span:nth-child(165) {
    -webkit-animation-delay: 8.25s;
            animation-delay: 8.25s;
  }
  .mast__text span:nth-child(166) {
    -webkit-animation-delay: 8.3s;
            animation-delay: 8.3s;
  }
  .mast__text span:nth-child(167) {
    -webkit-animation-delay: 8.35s;
            animation-delay: 8.35s;
  }
  .mast__text span:nth-child(168) {
    -webkit-animation-delay: 8.4s;
            animation-delay: 8.4s;
  }
  .mast__text span:nth-child(169) {
    -webkit-animation-delay: 8.45s;
            animation-delay: 8.45s;
  }
  .mast__text span:nth-child(170) {
    -webkit-animation-delay: 8.5s;
            animation-delay: 8.5s;
  }
  .mast__text span:nth-child(171) {
    -webkit-animation-delay: 8.55s;
            animation-delay: 8.55s;
  }
  .mast__text span:nth-child(172) {
    -webkit-animation-delay: 8.6s;
            animation-delay: 8.6s;
  }
  .mast__text span:nth-child(173) {
    -webkit-animation-delay: 8.65s;
            animation-delay: 8.65s;
  }
  .mast__text span:nth-child(174) {
    -webkit-animation-delay: 8.7s;
            animation-delay: 8.7s;
  }
  .mast__text span:nth-child(175) {
    -webkit-animation-delay: 8.75s;
            animation-delay: 8.75s;
  }
  .mast__text span:nth-child(176) {
    -webkit-animation-delay: 8.8s;
            animation-delay: 8.8s;
  }
  .mast__text span:nth-child(177) {
    -webkit-animation-delay: 8.85s;
            animation-delay: 8.85s;
  }
  .mast__text span:nth-child(178) {
    -webkit-animation-delay: 8.9s;
            animation-delay: 8.9s;
  }
  .mast__text span:nth-child(179) {
    -webkit-animation-delay: 8.95s;
            animation-delay: 8.95s;
  }
  .mast__text span:nth-child(180) {
    -webkit-animation-delay: 9s;
            animation-delay: 9s;
  }
  
  @-webkit-keyframes letter-glow {
    0% {
      opacity: 0;
      text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
    }
    66% {
      opacity: 1;
      text-shadow: 0px 0px 30px rgba(255, 255, 255, 0.95);
    }
    77% {
      opacity: 1;
    }
    100% {
      opacity: 0.7;
      text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
    }
  }
  
  @keyframes letter-glow {
    0% {
      opacity: 0;
      text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
    }
    66% {
      opacity: 1;
      text-shadow: 0px 0px 30px rgba(255, 255, 255, 0.95);
    }
    77% {
      opacity: 1;
    }
    100% {
      opacity: 0.9;
      text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
    }
  }


  /****************************************************************/

  .icon-box {
    width: calc(25% - 15px);
    display: inline-block;
    vertical-align: top;
    margin: 5px;
    padding: 30px;
    @media screen and (max-width: 991px) {
        width: calc(49% - 15px);
        margin: 5px 5px;
    }
    @media screen and (max-width: 650px) {
        width: calc(100% - 0px);
        margin: 5px 0;
    }
    img {
      height: 100px;
      width: auto;
    }
      h3 {
        margin-bottom: 30px;
      font-family: $font-secundary;
    }
    p {
      font-size: 15px;
      line-height: 22px;
    }
  }

.border {
  border-right: 1px solid #eee;
  @media screen and (max-width: 991px)  {
    border-right: none;
  }
}

.services-left-text {
  padding: 0; }
  .services-left-text .services-img {
    margin-left: 45vw; }
    @media screen and (max-width: 991px) {
      .services-left-text .services-img {
        margin-left: 0; } }
  .services-left-text .services-img2 {
    display: none; }
    @media screen and (max-width: 991px) {
      .services-left-text .services-img2 {
        height: 250px;
        display: block; } }
  .services-left-text .services-text {
    padding: 110px 100px;
    width: 50vw;
    margin-right: 50vw;
    background-color: #eee;
    margin-left: -45vw; }
    @media screen and (max-width: 991px) {
      .services-left-text .services-text {
        margin-right: 0;
        margin-left: 0;
        padding: 50px 15px;
        width: 100%; } }





    .red {
      .back {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e0202e+0,000000+100&0.65+0,0+100 */
background: linear-gradient(to right,  rgba(135, 18, 26,0.95) 30%,rgba(0,0,0,.4) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
@media screen and (max-width: 991px)  {
  background: linear-gradient(to bottom,  rgba(135, 18, 26,0.95) 30%,rgba(0,0,0,.4) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

      }
      .title-h, .title-p {
        color: #fff;
      }
      .red-box {
        border: 4px solid #fff;
        padding: 70px;
        border-radius: 17px;
        @media screen and (max-width: 650px)  {
          padding: 30px 20px;
        }
        h3 {
          font-size: 36px;
          line-height: 47px;
          color: #fff;
          font-weight: 400;
          @media screen and (max-width: 650px)  {
          font-size: 30px;
          line-height: 38px;
          }
        }
        h4 {
          text-align: right;
          color: #fff;
          font-style: italic;
          font-weight: 300;
          letter-spacing: 1px;
          margin-top: 25px;
        }
        h5 a{
          color: #fff;
          font-size: 21px;
        }
        h5 a:hover {
          color: $color-theme-light;
          font-size: 21px;
        }
      }
    }

    .red-2 {
      .red-box h4 {
        text-align: center;
      }
    }

.core-values {
    .core-box {
      border: 1px solid #eee;
      width: calc(25% - 15px);
      display: inline-block;
      vertical-align: top;
      margin: 5px;
      padding: 30px 30px;
      @media screen and (max-width: 1100px)  {
          width: calc(49% - 15px);
      }
    @media screen and (max-width: 650px) {
        width: calc(100% - 0px);
        margin: 5px 0;
        padding: 30px 20px;
    }
    h3 {
      font-family: $font-secundary;
      text-transform: uppercase;
      font-size: 20px;
      font-weight: 600;
    }
    .sep {
      height: 2px;
      width: 50px;
      margin: 15px 0;
    }
    p {
      font-size: 16px;
      line-height: 22px;
      min-height: 66px;
    }
    li {
      font-size: 16px;
    }
    }

    img {
      height: 80px;
      width: auto;
    }


}
.left, .right {
  box-shadow: 4px -3px 40px  rgba(0, 0, 0, 0.15);
  padding: 40px;
  border-radius: 10px;
  @media screen and (max-width: 991px) {
    padding: 30px 20px;
    margin-top: 15px;
  }
}

.core-values .core-box ul {
  padding-left: 20px;
  margin: 20px 0 0 0;
}
.under-hero {

    z-index: 4;
    .icon2-box {
        background-color: #eee;
        border-radius: 8px;
        display: flex;
        padding: 25px 25px; 
        @media (max-width: 1200px) {
            padding: 25px 15px;
        } 
        @media (max-width: 991px) {
            padding: 15px 20px;
            margin-bottom: 15px;
        } 
    }
    .icon, .text {
        display: inline;
        h2 {
            margin-top: 5px;
            text-transform: uppercase;
            color: #4d4e4e;
            font-size: 26px;
            line-height: 26px;
            font-family: $font-secundary;
            font-weight: 600;
        @media (max-width: 991px) {
            font-size: 22px;
            line-height: 22px;
        }
        @media (max-width: 768px) {
            font-size: 28px;
            line-height: 28px;
            margin-top: 10px;
        }
        }
        h4 {
            font-size: 15px;
            line-height: 18px;
            font-weight: 400;
        @media (max-width: 991px) {
            font-size: 16px;
            line-height: 18px;
            letter-spacing: 0;
        }
        }
    }
    .icon {
        width: 110px;
    }
    img {
        width: 75px;
        vertical-align: center;
    }
}


  .process-list{
    display:grid; 
    grid-template-columns:repeat(5,1fr); 
    row-gap: 20px;
    column-gap: 10px;
    margin-top: 40px;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    @media (max-width: 991px) {
        grid-template-columns:repeat(1,1fr);
    }
}
  .process-item{
    position: relative;
    border-radius: 4px;
    z-index: 2;
    background-color: rgba(255,255,255,.6);
    box-shadow: 3px 0px 20px rgba(0, 0, 0, 0.13); 
    padding: 25px 15px;
    .svg-inline--fa {
      position: absolute;
      bottom: 20px;
      right: 20px;
      color: $color-theme-light;
      font-size: 15px;
      @media (max-width: 991px) {
              bottom: 15px;
              right: 10px;
      }
    }
  }
  .fa-arrow-right-long {
      @media (max-width: 991px) {
              transform: rotate(90deg);
              display: inline-block; /* obavezno da transform radi kako treba */
      }
  }
  .process-item .num{  
    font-weight: 700;
    font-family: $font-secundary;
    font-size:27px; 
    color:$color-theme-light; 
    margin:5px 0px 0 0;}
  .process-item h3{
    font-size:22px; 
    margin-bottom:15px; 
    font-weight:600;
    text-transform: uppercase;
    font-family: $font-secundary;
    letter-spacing: 0.5px;

}
  .process-item p{font-size:15px; line-height: 19px;}

  .left-img {
    height: 500px;
    @media (max-width: 768px) {
      height: 240px;
    }
  }

  .row-btn {
    .btn {
      margin: 15px 5px;
      min-width: 280px;
      @media (max-width: 768px) {
      margin: 4px 0px;
      min-width: 260px;
      }
    }
  }


  .services-left-text li {
    width: 49%;
    vertical-align: top;
    position: relative;
    display: inline-block;
    border: 1px solid #fff;
    margin: 5px  0.4% 5px 0;
    padding: 20px 15px 10px 30px;
    background-color: #fff;
    font-size: 18px;
    line-height: 20px;
    min-height: 70px;
    font-weight: 500;
    @media (max-width: 1200px) {
      width: 100%;
      margin: 5px  0% 5px 0;
      min-height: auto;
      padding: 15px 15px 15px 30px;
    }
  }
    .services-left-text ul {
    list-style: none;
    padding-left: 0;
  }
  .services-left-text li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: $color-theme-dark;
    border-radius: 50%;
    position: absolute;
    left: 15px;
    top: 30px;
    transform: translateY(-50%);
    @media (max-width: 1200px)  {
      top: 25px;
    }
}

.li-100 li {
  width: 100%;
  margin: 15px  0% 5px 0;
  display: block;
  padding: 20px 15px 20px 30px;
  span {
    font-family: $font-secundary;
    font-size: 25px;
    margin-bottom: 1px;
    display: block;
    color: $color-theme-light;
  }
}
.li-100 li::before {
    @media (max-width: 1200px)  {
      top: 30px;
    }
  }

.red-service {
  .title-a {
    color: #fff;
  }  
  .title-a:hover {
    color: #ccc;
  }
  h3 .svg-inline--fa {
    margin-right: 10px;
  }
  label {
    color: #fff;
    font-weight: 400;
  }
}


/*************************/

.built-img {
  height: 420px;
  @media (max-width: 991px) {
    height: 250px;
    margin-top: 30px;
  }
}



.built-item {
    display: flex;
    align-items: flex-start;
    margin-top: 35px;
}

.built-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border: 2px solid $color-theme-light;
    border-radius: 50%;
    color: $color-theme-light;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-right: 14px;
    margin-top: 1px;
}

.built-content h4 {
    margin: 0 0 4px;
    font-size: 17px;
    line-height: 20px;
    font-weight: 700;
    font-family: $font-secundary;
}

.built-content p {
    margin: 0;
    font-size: 16px;
    line-height: 23px;
    color: #444;
}

.black-box {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  padding: 30px 30px 40px 30px;
  @media (max-width: 991px) {
    margin-top: 20px;
    padding: 20px 20px 30px 20px;
  }
  .back {
    background-color: rgba(13,13,13, .8);
  }
  h3 {
    color: #fff;
    font-size: 32px;
    letter-spacing: 1px;
  }
  .title-p {
    color: #eee;
    margin: 30px 0 25px 0;
  }
}
.form-box {
  padding: 10px 25px 20px 25px;
  background-color: #eee;
  @media (max-width: 991px) {
    margin-top: 30px;
    padding: 10px 15px 20px 15px;
  }
}