
/* ----------------------------------

Table of contents
        
    01. Basic
    02. Header
    03. Banner
    04. Button
    05. Page title
    06. Background gradient color
    07. Feature
    08. Portfolio
    09. Blog
    10. Footer
    
---------------------------------- */
/*============================== 
    Basic
================================*/

::-moz-selection { /* Code for Firefox */
    color: #FFF;
    background: #333;
}

::selection {
    color: #FFF;
    background: #333;
}

.text-base-color {
  color: #222; }

.text-primary-color {
  color: #fff; }

.bg-base {
  background-color: rgba(0,0,0,0.8); }

.bg-primary {
  background-color: rgba(0,0,0,0.8) !important; }

/* ===================================
    Header
====================================== */
/* header */
header {
  background-color: #222;
  height: 70px; }


/* main menu */
.navbar-brand {
  background: rgba(0,0,0,0.8); }

.nav-control {
  cursor: pointer;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s; }
  .nav-control .bar {
    width: 24px;
    height: 4px;
    background: #fff;
    display: block;
    margin-top: 5px;
    transition: all 0.25s ease-in-out 0s; }
  .nav-control .top, .nav-control .middle {
    width: 40px; }
  .nav-control .bottom {
    width: 20px; }
  .nav-control:hover .top {
    width: 20px; }
  .nav-control:hover .middle, .nav-control:hover .bottom {
    width: 40px; }

.navbar-header {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.95);
  display: block;
  overflow: hidden;
  -webkit-perspective: 1200px;
  perspective: 1200px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s,visibility 0s 0.3s;
  transition: opacity 0.3s,visibility 0s 0.5s;
  left: 0px;
  top: 0px;
  z-index: 1111;
  width: 100%;
  height: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .navbar-header .nav-control {
    position: absolute;
    right: 30px;
    top: 25px;
    height: 38px;
    margin: auto;
    z-index: 999;
    cursor: pointer;
    width: 40px; }
    .navbar-header .nav-control .bar {
      position: relative;
      top: 20px;
      margin-top: -4px; }
  .navbar-header .nav-menu {
    height: 100%;
    overflow: auto;
    -webkit-transform: translateY(-35%) rotateX(50deg);
    transform: translateY(-35%) rotateX(50deg);
    -webkit-transition: -webkit-transform 0.5s,opacity 0.5s;
    transition: transform 0.5s,opacity 0.5s; }

.nav-container {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  margin-right: 5%;
  width: 95%; }

.navbar-open {
  overflow: hidden; }
  .navbar-open .navbar-header {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s; }
  .navbar-open .nav-menu {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    position: relative; }
  .navbar-open .top {
    transform: rotate(45deg);
    margin-top: 14px; }
  .navbar-open:hover .top {
    width: 40px; }
  .navbar-open .middle {
    opacity: 0; }
  .navbar-open .bottom {
    transform: rotate(-45deg);
    width: 40px; }
  .navbar-open:hover .bottom {
    width: 40px; }

.main-menu {
  padding: 0;
  margin: 0; }
  .main-menu * {
    transition-duration: 0s;
    -ms-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s; }
  .main-menu li {
    margin-bottom: 10px;
    list-style: none;
    border-bottom: 1px solid #232323;
    list-style: outside none none;
    margin-bottom: 12px;
    padding-bottom: 12px; }
    .main-menu li:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border: none; }
    .main-menu li a {
      font-size: 2rem;
      color: #fff;
      line-height: normal;
      font-weight: 700;
      transition: all 0.5s ease 0s;
      -webkit-transition: all 0.5s ease 0s;
      display: block; }
      .main-menu li a:hover {
        color: #fff; }
    .main-menu li.current > a, .main-menu li.active > a {
      color: #fff;
      /*text-decoration: line-through;*/ }

.has-sub > ul {
  margin: 20px 0;
  padding-left: 20px; }
.has-sub li a {
  font-size: 22px; }
.has-sub .submenu-button {
  float: right;
  margin-top: 6px;
  cursor: pointer;
  height: 30px;
  width: 30px;
  text-align: right; }
  .has-sub .submenu-button:after {
    font-family: "Font Awesome 5 Free";
    color: #fff;
    content: "\f107";
    font-size: 28px; }
.has-sub.active .submenu-button:after {
  content: "\f106"; }

/* sidebar menu */
.side-bar li {
  margin-bottom: 15px; }
  .side-bar li a {
    font-size: 2.8rem;
    line-height: normal;
    font-weight: 700;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s; }
    .side-bar li a:hover {
      color: #fff; }

/* social links */
.social-links li {
  display: inline-block;
  margin-right: 40px; }
  .social-links li:last-child {
    margin-right: 0; }
  .social-links li a {
    font-size: 25px; }
    .social-links li a:hover {
      color: #fff; }

/* responsive css */
@media screen and (max-width: 1199px) {
  .side-bar li a {
    font-size: 1.8rem; } }
@media screen and (max-width: 991px) {
  header {
    height: 60px; }

  .nav-container {
    margin-right: 0;
    width: 100%;
    padding-right: 25px; }

  .navbar-header .nav-control {
    right: 15px;
    top: 15px; }

  .has-sub .submenu-button {
    margin-top: 2px; }

  .navbar-open .top {
    transform: rotate(45deg);
    margin-top: 14px;
    width: 30px; }
  .navbar-open:hover .top {
    width: 30px; }
  .navbar-open .middle {
    opacity: 0; }
  .navbar-open .bottom {
    transform: rotate(-45deg);
    width: 30px; }
  .navbar-open:hover .bottom {
    width: 30px; }

  .main-menu li {
    margin-bottom: 10px;
    padding-bottom: 10px; }
    .main-menu li a {
      font-size: 1.6rem; }

  .has-sub li a {
    font-size: 1.4rem; }

  .social-links li {
    margin-right: 20px; }
    .social-links li a {
      font-size: 18px; }


 }
@media screen and (max-width: 575px) {
  .navbar-brand img {
    width: 190px; }

  .main-menu li a {
    font-size: 1.2rem; }

  .has-sub li a {
    font-size: 1rem; }

  .side-bar li {
    margin-bottom: 10px; }

  .side-bar li a {
    font-size: 1.2rem; }

  .has-sub .submenu-button {
    margin-top: 2px; }
    .has-sub .submenu-button:after {
      font-size: 22px; } }
/*============================== 
    Banner
================================*/
.home-banner-screen {
  background-image: url("../img/banner/home-banner-01.jpg"); }

.banner-desc h1 {
  font-size: 42px;
  line-height: 44px; }

.home-banner .banner-btn {
  right: -200px; }
  .home-banner .banner-btn .btn-primary, .home-banner .banner-btn .btn-base {
    display: block; }
  .home-banner .banner-btn .btn-primary {
    border-top: transparent; }

.full-banner-vertical {
  overflow: hidden; }
  .full-banner-vertical img {
    width: auto;
    height: 100%;
    max-width: none; }

.full-banner-horizontal {
  overflow: hidden; }
  .full-banner-horizontal img {
    width: 100%;
    height: auto;
    max-width: none; }

@media screen and (max-width: 575px) {
  .home-banner-screen {
    height: auto !important;
    padding: 50% 0; } }
/* home slider banner */
.home-slider-banner .slde1 {
  background-image: url("../img/banner/home-slider-01.jpg"); }
.home-slider-banner .slde2 {
  background-image: url("../img/banner/home-slider-02.jpg"); }
.home-slider-banner .slde3 {
  background-image: url("../img/banner/home-slider-03.jpg"); }

.home-slider-banner.owl-carousel .owl-nav .owl-next {
  right: 0; }
.home-slider-banner.owl-carousel .owl-nav .owl-prev {
  left: 0; }
.home-slider-banner.owl-carousel .owl-nav .owl-next, .home-slider-banner.owl-carousel .owl-nav .owl-prev {
  width: 40px;
  height: 90px;
  background: #fff;
  margin-top: -45px; }
.home-slider-banner.owl-carousel .owl-nav .owl-next:hover, .home-slider-banner.owl-carousel .owl-nav .owl-prev:hover {
  opacity: 0.65; }
.home-slider-banner.owl-carousel .owl-dots {
  bottom: 20px;
  left: 0;
  position: absolute;
  right: 0;
  margin: 0; }

@media screen and (max-width: 575px) {
  .home-slider-banner .screen-height {
    height: auto !important;
    padding: 62% 0; } }
/* type slider banner */
.home-type-banner {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.5), 
      rgba(0, 0, 0, 0.5)
    ), url("../img/banner/home/delyom_company_bg_15.jpg"); }

.home-type-banner h1 {
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
  min-height: 260px;
  color: #FFF;
  font-size: 58px;
  line-height: 58px; }

.home-banner-text {
font-size: 25px;
color: #EEE;
text-shadow: 0px 0px 6px rgba(0,0,0,1);
line-height: 30px;
}

.banner-tech {
  margin: auto;
  margin-top: -30px;
  width: 100%;
  max-width: 440px;
  min-height: 320px;
  background-image: url("../img/banner/home.png");
  background-size: 79% auto;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 440px) {
  .home-type-banner .absolute-middle-center {
      top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .banner-desc {
    margin-top: -80px !important;
    margin-bottom: 10px !important;
  }

  .banner-tech {
    margin-top: 0px !important;
    margin-bottom: -30px !important;
  }
  .home-type-banner {
    height: auto !important; }
    .home-type-banner .absolute-middle-center {
      position: relative;
      margin: 20% 0;
      left: 0;
      top: 50px;
      -ms-transform: translateX(0) translateY(0);
      -moz-transform: translateX(0) translateY(0);
      -webkit-transform: translateX(0) translateY(0);
      transform: translateX(0) translateY(0);
      -o-transform: translateX(0) translateY(0); } }
/* responsive css */
@media screen and (max-width: 1199px) {
  .banner-desc h1 {
    font-size: 32px;
    line-height: 42px; } }
@media screen and (max-width: 991px) {
  .banner-desc {
    margin: auto;
    margin-bottom: 10px;
    margin-top: -20px;
  }
  .banner-tech {
    margin-top: 40px;
    margin-bottom: -30px;
  }
  .banner-desc h1 {
    font-size: 28px;
    line-height: 34px; }

  .home-banner > .position-absolute {
    padding: 0 15px; }
  .home-banner .banner-desc {
    text-align: center; }
  .home-banner .banner-btn {
    position: static !important;
    text-align: center; }
    .home-banner .banner-btn .btn-primary {
      border-top: 3px solid;
      border-color: #222; }

  .inner-banner > .position-absolute {
    position: static !important;
    float: left;
    text-align: center;
    background: none !important;
    padding-left: 15px;
    padding-right: 15px; }
  .inner-banner .vertical-middle {
    background-color: rgba(255, 255, 255, 0.85) !important;
    position: static !important;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%); }

  .home-slider-banner .owl-nav, .home-slider-banner .owl-dots {
    display: none; }
  .home-slider-banner .banner-desc h1 {
    font-size: 28px;
    line-height: 32px; }

  .sm-full-banner img {
    width: 100%;
    height: 100%; } }
@media screen and (max-width: 767px) {
  .home-banner .banner-desc {
    margin-top: 0; }

  .banner-desc h1 {
    min-height: 84px;
    font-size: 22px;
    line-height: 28px; }
  .banner-desc .text-medium {
    font-size: 18px;
    line-height: 24px; }

  .home-slider-banner .banner-desc h1 {
    font-size: 18px;
    line-height: 22px; }
  .home-slider-banner .square-title {
    padding: 5px; } }
/*============================== 
    Button
================================*/
.btn {
  display: inline-block;
  border: 3px solid transparent;
  line-height: inherit;
  text-transform: uppercase; }
  .btn.btn-very-small {
    font-size: 9px;
    padding: 1px 17px;
    line-height: 22px; }
  .btn.btn-small {
    font-size: 11px;
    padding: 4px 24px; }
  .btn.btn-medium {
    font-size: 12px;
    padding: 12px 25px 11px; }
  .btn.btn-large {
    font-size: 13px;
    padding: 9px 34px;
    line-height: 25px; }
  .btn.btn-extra-large {
    font-size: 15px;
    padding: 12px 40px 13px;
    line-height: 25px; }

.btn-dual .btn {
  margin: 0 10px; }

.btn {
  padding: 20px 10px;
  border-radius: 0;
  width: auto;
  letter-spacing: .5px;
  font-family: "Montserrat", sans-serif;
  min-width: 200px;
  background-color: #222;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out; }
  .btn i {
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -1px; }
  .btn:hover, .btn:active {
    background-color: #fff !important;
    color: #222;
    border: 3px solid #222; }
  .btn:hover:after, .btn:active:after {
    border-color: #222 !important; }
  .btn:focus {
    background-color: #fff !important;
    color: #222;
    box-shadow: none !important;
    border: 3px solid #222; }
    .btn:focus:after {
      border-color: #222 !important; }
  .btn:after {
    display: block;
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 5px;
    right: 5px;
    border-top: 3px solid #fff !important;
    border-right: 3px solid #fff !important;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s; }
  .btn.min-width-auto {
    min-width: auto; }

.btn-primary {
  background-color: #fff !important;
  border-color: #222;
  color: #222; }
  .btn-primary:hover, .btn-primary:active, .btn-primary.active:not(:disabled):not(.disabled) {
    background-color: #222 !important;
    color: #fff !important;
    border-color: #222 !important; }
  .btn-primary:hover:after, .btn-primary:active:after {
    border-color: #fff !important; }
  .btn-primary:focus {
    background-color: #222 !important;
    color: #fff !important;
    box-shadow: none !important;
    border-color: #222; }
    .btn-primary:focus:after {
      border-color: #fff !important; }
  .btn-primary:after {
    border-top: 3px solid #222 !important;
    border-right: 3px solid #222 !important; }

.border-hover {
  border: 3px solid transparent; }

.border-primary {
  border: 3px solid #fff !important; }
  .border-primary:hover, .border-primary:active, .border-primary.active:not(:disabled):not(.disabled) {
    color: #fff !important;
    border-color: #fff !important; }

/* responsive css */
@media screen and (max-width: 767px) {
  .btn {
    padding: 15px 10px;
    font-size: 16px;
    line-height: 24px; }
    .btn.xs-btn-small {
      font-size: 11px;
      padding: 4px 24px; }
    .btn.xs-btn-medium {
      font-size: 12px;
      padding: 12px 25px 11px; }
    .btn.xs-btn-large {
      font-size: 13px;
      padding: 9px 34px;
      line-height: 25px; }
    .btn.xs-btn-extra-large {
      font-size: 15px;
      padding: 12px 40px 13px;
      line-height: 25px; } }
/*============================== 
    Page title
================================*/
/* page title */
.page-title-extra-small h1 {
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase; }

.page-title-small h1 {
  font-size: 20px;
  line-height: 26px; }

.page-title-medium h1 {
  font-size: 32px;
  line-height: 37px; }

.page-title-large h1 {
  font-size: 46px;
  line-height: 49px; }

.page-title-extra-large h1 {
  font-size: 55px;
  line-height: 50px; }

/* breadcrumb */
.breadcrumb {
  background: transparent;
  border-radius: 0;
  padding: 0; }
  .breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .breadcrumb ul li {
      display: inline-block; }
    .breadcrumb ul > li:after {
      font-family: "Font Awesome 5 Free";
      content: "\f111";
      padding: 0 11px 0 14px;
      display: inline-block;
      vertical-align: middle;
      font-size: 5px;
      color: #fff;
      opacity: .6; }
    .breadcrumb ul > li:last-child:after {
      border-right: 0;
      content: "";
      padding: 0; }

/*============================== 
    Background gradient color
================================*/
.bg-vertical-ten-half-base {
  background: linear-gradient(to bottom, #222 0%, #222 10%, #222 10%, #f7f7f7 10%, #f7f7f7 100%); }

.bg-vertical-ten-half-primary {
  background: linear-gradient(to bottom, #fff 0%, #fff 10%, #fff 10%, #222 10%, #222 100%); }

.bg-vertical-twenty-half-base {
  background: linear-gradient(to bottom, #222 0%, #222 20%, #222 20%, #f7f7f7 20%, #f7f7f7 100%); }

.bg-vertical-twenty-half-primary {
  background: linear-gradient(to bottom, #fff 0%, #fff 20%, #fff 20%, #222 20%, #222 100%); }

.bg-vertical-thirty-half-base {
  background: linear-gradient(to bottom, #222 0%, #222 30%, #222 30%, #f7f7f7 30%, #f7f7f7 100%); }

.bg-vertical-thirty-half-primary {
  background: linear-gradient(to bottom, #fff 0%, #fff 30%, #fff 30%, #222 30%, #222 100%); }

.bg-vertical-fourty-half-base {
  background: linear-gradient(to bottom, #222 0%, #222 40%, #222 40%, #f7f7f7 40%, #f7f7f7 100%); }

.bg-vertical-fourty-half-primary {
  background: linear-gradient(to bottom, #fff 0%, #fff 40%, #fff 40%, #222 40%, #222 100%); }

.bg-vertical-fifty-half-base {
  background: linear-gradient(to bottom, #222 0%, #222 50%, #222 50%, #f7f7f7 50%, #f7f7f7 100%); }

.bg-vertical-fifty-half-primary {
  background: linear-gradient(to bottom, #fff 0%, #fff 50%, #fff 30%, #222 50%, #222 100%); }

.bg-vertical-sixty-half-base {
  background: linear-gradient(to bottom, #222 0%, #222 60%, #222 60%, #f7f7f7 60%, #f7f7f7 100%); }

.bg-vertical-sixty-half-primary {
  background: linear-gradient(to bottom, #fff 0%, #fff 60%, #fff 60%, #222 60%, #222 100%); }

/* responsive CSS */
@media screen and (max-width: 1199px) {
  .md-bg-vertical-ten-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 10%, #222 10%, #f7f7f7 10%, #f7f7f7 100%); }

  .md-bg-vertical-ten-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 10%, #fff 10%, #222 10%, #222 100%); }

  .md-bg-vertical-twenty-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 20%, #222 20%, #f7f7f7 20%, #f7f7f7 100%); }

  .md-bg-vertical-twenty-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 20%, #fff 20%, #222 20%, #222 100%); }

  .md-bg-vertical-thirty-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 30%, #222 30%, #f7f7f7 30%, #f7f7f7 100%); }

  .md-bg-vertical-thirty-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 30%, #fff 30%, #222 30%, #222 100%); }

  .md-bg-vertical-fourty-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 40%, #222 40%, #f7f7f7 40%, #f7f7f7 100%); }

  .md-bg-vertical-fourty-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 40%, #fff 40%, #222 40%, #222 100%); }

  .md-bg-vertical-fifty-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 50%, #222 50%, #f7f7f7 50%, #f7f7f7 100%); }

  .md-bg-vertical-fifty-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 50%, #fff 30%, #222 50%, #222 100%); }

  .md-bg-vertical-sixty-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 60%, #222 60%, #f7f7f7 60%, #f7f7f7 100%); }

  .md-bg-vertical-sixty-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 60%, #fff 60%, #222 60%, #222 100%); } }
@media screen and (max-width: 991px) {
  .sm-bg-vertical-ten-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 10%, #222 10%, #f7f7f7 10%, #f7f7f7 100%); }

  .sm-bg-vertical-ten-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 10%, #fff 10%, #222 10%, #222 100%); }

  .sm-bg-vertical-twenty-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 20%, #222 20%, #f7f7f7 20%, #f7f7f7 100%); }

  .sm-bg-vertical-twenty-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 20%, #fff 20%, #222 20%, #222 100%); }

  .sm-bg-vertical-thirty-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 30%, #222 30%, #f7f7f7 30%, #f7f7f7 100%); }

  .sm-bg-vertical-thirty-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 30%, #fff 30%, #222 30%, #222 100%); }

  .sm-bg-vertical-fourty-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 40%, #222 40%, #f7f7f7 40%, #f7f7f7 100%); }

  .sm-bg-vertical-fourty-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 40%, #fff 40%, #222 40%, #222 100%); }

  .sm-bg-vertical-fifty-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 50%, #222 50%, #f7f7f7 50%, #f7f7f7 100%); }

  .sm-bg-vertical-fifty-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 50%, #fff 30%, #222 50%, #222 100%); }

  .sm-bg-vertical-sixty-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 60%, #222 60%, #f7f7f7 60%, #f7f7f7 100%); }

  .sm-bg-vertical-sixty-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 60%, #fff 60%, #222 60%, #222 100%); } }
@media screen and (max-width: 767px) {
  .xs-bg-vertical-ten-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 10%, #222 10%, #f7f7f7 10%, #f7f7f7 100%); }

  .xs-bg-vertical-ten-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 10%, #fff 10%, #222 10%, #222 100%); }

  .xs-bg-vertical-twenty-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 20%, #222 20%, #f7f7f7 20%, #f7f7f7 100%); }

  .xs-bg-vertical-twenty-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 20%, #fff 20%, #222 20%, #222 100%); }

  .xs-bg-vertical-thirty-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 30%, #222 30%, #f7f7f7 30%, #f7f7f7 100%); }

  .xs-bg-vertical-thirty-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 30%, #fff 30%, #222 30%, #222 100%); }

  .xs-bg-vertical-fourty-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 40%, #222 40%, #f7f7f7 40%, #f7f7f7 100%); }

  .xs-bg-vertical-fourty-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 40%, #fff 40%, #222 40%, #222 100%); }

  .xs-bg-vertical-fifty-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 50%, #222 50%, #f7f7f7 50%, #f7f7f7 100%); }

  .xs-bg-vertical-fifty-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 50%, #fff 30%, #222 50%, #222 100%); }

  .xs-bg-vertical-sixty-half-base {
    background: linear-gradient(to bottom, #222 0%, #222 60%, #222 60%, #f7f7f7 60%, #f7f7f7 100%); }

  .xs-bg-vertical-sixty-half-primary {
    background: linear-gradient(to bottom, #fff 0%, #fff 60%, #fff 60%, #222 60%, #222 100%); } }
/*============================== 
    Feature
================================*/
/* square title */
.square-title {
  display: block;
  border: 3px solid transparent;
  padding: 25px 10px;
  position: relative;
  text-align: center; }
  .square-title:before {
    display: block;
    content: "";
    width: 14%;
    height: 30%;
    position: absolute;
    bottom: -3px;
    right: -3px;
    border-bottom: 3px solid #222;
    border-right: 3px solid #222;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s; }
  .square-title:after {
    display: block;
    content: "";
    width: 14%;
    height: 30%;
    position: absolute;
    top: -3px;
    left: -3px;
    border-top: 3px solid #222;
    border-left: 3px solid #222;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s; }

.square-title-1 {
  display: block;
  border: 3px solid transparent;
  border-radius: 0;
  text-align: center;
  background: none;
  padding: 25px 10px;
  position: relative; }
  .square-title-1:before {
    display: block;
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: -3px;
    right: -3px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s; }
  .square-title-1:after {
    display: block;
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    top: -3px;
    left: -3px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s; }

/* feature box */
.feature-box {
  display: block;
  border: 5px solid rgba(0,0,0,0.3);
  border-radius: 0;
  text-align: center;
  background-color:rgba(255,255,255,0.8);
  padding: 18px 5px;
  position: relative; }
  .feature-box:before {
    display: block;
    content: "";
    width: 15%;
    height: 12%;
    position: absolute;
    bottom: -5px;
    right: -5px;
    border-bottom: 5px solid rgba(0,0,0,0.5);
    border-right: 5px solid rgba(0,0,0,0.5);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    }
  .feature-box:after {
    z-index:-1;
    display: block;
    content: "";
    width: 15%;
    height: 12%;
    position: absolute;
    top: -5px;
    left: -5px;
    border-top: 5px solid rgba(0,0,0,0.5);
    border-left: 5px solid rgba(0,0,0,0.5);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    }
  .feature-box:hover {
    background-color:rgba(255,255,255,1);
    opacity: 1;
    border-color: #d5d5d5; }
    .feature-box:hover:before, .feature-box:hover:after {
      width: 85%;
      height: 85%; }
    .feature-box:hover:after {
      border-top: 5px solid rgba(0,0,0,0.8);
      border-left: 5px solid rgba(0,0,0,0.8);
    }
    .feature-box:hover:before {
      border-bottom: 5px solid rgba(0,0,0,0.8);
      border-right: 5px solid rgba(0,0,0,0.8);
    }

/* arrow positions */
.top-arrow:after {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 12px;
  margin-left: -12px;
  z-index: 9; }

.right-arrow:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #fff;
  border-width: 12px;
  margin-top: -12px;
  z-index: 9; }

.bottom-arrow:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #fff;
  border-width: 12px;
  margin-left: -12px;
  z-index: 9; }

.left-arrow:after {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #fff;
  border-width: 12px;
  margin-top: -12px;
  z-index: 9; }

/* accordion style1 */
.accordion-style1 .card {
  background: transparent;
  box-shadow: none;
  margin-top: 0 !important;
  border: none; }
.accordion-style1 .card-header {
  border: 0px;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: none; }
.accordion-style1 .btn-link {
  background: none;
  color: #222;
  font-size: 14px;
  padding: 15px 30px 15px 0;
  font-weight: 600;
  position: relative;
  white-space: normal;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
  padding-left: 0; }
  .accordion-style1 .btn-link:hover, .accordion-style1 .btn-link:focus {
    background: none !important;
    border: none;
    text-decoration: none; }
  .accordion-style1 .btn-link.collapsed:after, .accordion-style1 .btn-link.collapsed:hover:after {
    background: none;
    content: "+";
    right: 10px;
    left: inherit;
    color: #222;
    font-size: 20px;
    height: auto;
    transform: none;
    width: auto;
    top: 15px; }
  .accordion-style1 .btn-link:after, .accordion-style1 .btn-link:hover:after {
    background: none;
    border: none !important;
    content: "-";
    right: 10px;
    left: inherit;
    color: #222;
    font-size: 20px;
    height: auto;
    transform: none;
    width: auto;
    top: 15px; }
.accordion-style1 .card-body {
  padding-left: 0;
  padding-right: 0; }

/* common-bg */
.common-bg {
  background-image: url("../img/banner/comingsoon_delyom_company.jpg"); }

/* error-page */
.error-page h5 {
  line-height: normal;
  font-size: 200px;
  line-height: 150px;
  letter-spacing: 10px;
  text-shadow: 0 10px 0 rgba(0, 0, 0, 0.1); }
.error-page span {
  line-height: normal;
  font-size: 40px;
  font-weight: 600; }

/* countdown */
ul.countdown li {
  display: inline-block;
  padding: 0 30px;
  text-align: center;
  border-right: 1px solid #626262; }
  ul.countdown li:last-child {
    border: none;
    padding-right: 0; }
  ul.countdown li span {
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    position: relative; }
    ul.countdown li span:before {
      content: "";
      height: 1px;
      position: absolute;
      width: 100%; }
  ul.countdown li p.timeRefDays, ul.countdown li p.timeRefHours, ul.countdown li p.timeRefMinutes, ul.countdown li p.timeRefSeconds {
    font-size: 12px;
    margin: 0;
    padding: 0;
    text-transform: uppercase; }

/* owl carousel */
.owl-carousel .owl-item img {
  width: auto;
  display: inline-block; }
.owl-carousel .owl-nav .owl-next {
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  margin-top: -22px;
  position: absolute;
  top: 50%;
  width: 27px;
  z-index: 10; }
.owl-carousel .owl-nav .owl-prev {
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  margin-top: -22px;
  position: absolute;
  top: 50%;
  width: 27px;
  z-index: 10;
  left: 15px; }
.owl-carousel .owl-nav .owl-next {
  right: 15px; }
.owl-carousel .owl-dots {
  margin-top: 15px; }
.owl-carousel button.owl-dot {
  background: #222;
  border-radius: 50%;
  height: 12px;
  margin-left: 6px;
  width: 12px;
  opacity: 0.35; }
  .owl-carousel button.owl-dot.active {
    opacity: 1; }
.owl-carousel .owl-item.active .animated1 {
  animation: 1s ease-in 800ms normal both 1 running lightSpeedIn; }
.owl-carousel .owl-item.active .animated2 {
  animation: 1s ease-in 800ms normal both 1 running bounceIn; }
.owl-carousel .owl-item.active .animated3 {
  animation: 2s ease-in-out 800ms normal both 1 running flipInX; }
.owl-carousel .owl-stage, .owl-carousel.owl-drag .owl-item {
  -ms-touch-action: auto;
  touch-action: auto; }

/* team style */
.team-style1:hover .team-member-img img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: 0.3s; }

.chairman-pic img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: 0.3s; }
.chairman-pic:hover img {
  -webkit-filter: none;
  filter: none; }

/* responsive CSS */
@media screen and (max-width: 991px) {
  .square-title-1 {
    padding: 15px 10px; }
    .square-title-1:before, .square-title-1:after {
      width: 25px;
      height: 25px; }

  .md-top-arrow:after {
    bottom: 100%;
    left: 50%;
    top: inherit;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 12px;
    margin-left: -12px;
    z-index: 9; }

  .error-page h5 {
    line-height: 50px;
    font-size: 70px;
    letter-spacing: normal; }
  .error-page span {
    font-size: 20px; } }
@media screen and (max-width: 767px) {
  .square-title {
    padding: 15px 10px; }
    .square-title:before, .square-title:after {
      width: 10%;
      height: 40%; }

  .square-title-1:before {
    border-bottom: 3px solid #222;
    border-right: 3px solid #222; }
  .square-title-1:after {
    border-top: 3px solid #222;
    border-left: 3px solid #222; }

  .coming-soon .text-extra-large {
    font-size: 22px;
    line-height: 24px; }

  ul.countdown li {
    padding: 0 8px; }

  .coming-soon .social-links li {
    margin-right: 15px; }

  ul.countdown li span {
    font-size: 22px; } }
/*============================== 
    Portfolio
================================*/
/*.portfolio-item-wrapper {
  display: block;
  text-decoration: none; }

.portfolio-item {
  position: relative; }

.portfolio-img-container {
  display: block;
  position: relative; }

.portfolio-item-img {
  transform: translate3d(0px, 0px, 0px);
  vertical-align: text-top; }

.portfolio-description {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f0f0f0;
  color: #fff;
  padding: 20px;
  font-size: 0.85em;
  text-align: center; }*/

/* responsive css */
/*@media screen and (min-width: 768px) {
  .portfolio-item-img {
    width: 100%;
    display: block;
    transition: all 400ms linear; }

  .portfolio-description {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
    opacity: 0;
    transition: all 200ms ease-in-out; }

  .portfolio-cover {
    background-color: rgba(255, 66, 41, 0);
    opacity: 1;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    transform: scale(2);
    transition: all 200ms ease-in-out;
    display: none; }

  .portfolio-title, .portfolio-sub-title, .view-casestudy {
    transform: translateY(15px);
    transition: transform 300ms ease-in-out,opacity 150ms ease-in;
    opacity: 0; }

  .portfolio-title, .portfolio-sub-title {
    color: #fff;
    -webkit-font-smoothing: antialiased; }

  .view-casestudy {
    margin: 0;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    display: inline-block; }
    .view-casestudy:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -3px;
      width: 100%;
      height: 1px;
      background-color: #fff; }

  .portfolio-description-wrapper {
    position: relative;
    display: table;
    width: 100%;
    height: 100%; }

  .portfolio-description-content {
    display: table-cell;
    vertical-align: middle; }

  .portfolio-item-wrapper {
    backface-visibility: hidden;
    margin-bottom: 0;
    overflow: hidden; }
    .portfolio-item-wrapper:hover .portfolio-cover {
      background-color: rgba(0, 0, 0, 0.83);
      display: block; }
    .portfolio-item-wrapper:hover .portfolio-title {
      transition-delay: 100ms,100ms; }
    .portfolio-item-wrapper:hover .portfolio-sub-title {
      transition-delay: 200ms,200ms; }
    .portfolio-item-wrapper:hover .view-casestudy {
      transition-delay: 300ms,300ms; }
    .portfolio-item-wrapper:hover .portfolio-item-img {
      transform: scale(1.05);
      -moz-filter: url("data: image/svg+xml; utf8,<svg xmlns='http: //www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
      -o-filter: url("data: image/svg+xml; utf8,<svg xmlns='http: //www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
      -webkit-filter: grayscale(100%) brightness(90%) contrast(120%);
      filter: grayscale(100%) brightness(90%) contrast(120%); }
    .portfolio-item-wrapper:hover .portfolio-description {
      opacity: 1; }
    .portfolio-item-wrapper:hover .view-casestudy, .portfolio-item-wrapper:hover .portfolio-sub-title, .portfolio-item-wrapper:hover .portfolio-title {
      opacity: 1;
      transform: translateY(0); }
    .portfolio-item-wrapper:hover .portfolio-description-award {
      transform: translate(0, 0); } }
@media screen and (max-width: 991px) {
  .portfolio-description {
    padding: 15px; }

  .portfolio-description-content .text-medium-large {
    font-size: 16px;
    line-height: 16px; } }
@media screen and (max-width: 767px) {
  .portfolio-description {
    position: initial; }

  .portfolio-sub-title {
    font-size: 14px;
    color: #6f6f6f; }

  .view-casestudy {
    display: block;
    color: #222;
    text-decoration: underline;
    font-weight: bold;
    font-size: 14px;
    margin: 15px 0px 0px 0px; } }*/
 /*============================== 
    Blog
================================*/
/* aside style */
.aside-title {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #222;
  padding-bottom: 10px; }

.aside-style {
  list-style: none;
  margin: 0;
  padding: 0; }
  .aside-style li {
    position: relative;
    padding: 0 0 0 12px;
    margin: 0 0 9px 0; }
    .aside-style li:before {
      content: "";
      width: 5px;
      height: 1px;
      background-color: #222;
      position: absolute;
      top: 12px;
      left: 0; }

.aside-social li {
  margin-right: 15px;
  display: inline-block; }
  .aside-social li:last-child {
    margin-right: 0; }

/* tag cloud */
.tag-cloud a {
  font-size: 10px;
  padding: 3px 8px;
  border: 1px solid #dbdbdb;
  margin: 0 8px 8px 0;
  display: inline-block;
  text-transform: uppercase;
  color: #232323;
  line-height: 18px; }
  .tag-cloud a:hover {
    background: #232323;
    color: #fff !important;
    border: 1px solid #232323; }

/* blog comment */
.blog-comment {
  list-style: none;
  margin: 0;
  padding: 0; }
  .blog-comment li {
    padding: 50px 0;
    border-bottom: 1px solid #ededed;
    position: relative; }
    .blog-comment li .btn-reply {
      float: right;
      border: 1px solid #ededed;
      padding: 0 8px;
      font-size: 10px;
      font-weight: 600;
      position: relative; }
    .blog-comment li > li:first-child {
      padding-top: 0; }
    .blog-comment li:last-child {
      border-bottom: none;
      padding-bottom: 0; }
    .blog-comment li ul.child-comment {
      margin-left: 40px;
      list-style: none; }
      .blog-comment li ul.child-comment li {
        border: none;
        padding-bottom: 0;
        border-top: 1px solid #ededed;
        margin-top: 50px; }

/*============================== 
    Footer
================================*/
.footer-top {
  padding: 100px 0px; }

.footer-bottom {
  padding: 30px 0px; }
  .footer-bottom a:hover {
    color: #fff; }

.footer-social a {
  display: inline-block;
  margin: 0 25px; }
  .footer-social a:first-child {
    margin-left: 0; }
  .footer-social a i {
    color: #626262;
    font-size: 22px; }
  .footer-social a:hover i {
    color: #222; }

.back-to-top {
  background: #222;
  position: fixed;
  z-index: 1000;
  left: 25px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  margin: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 350ms;
  -o-transition: opacity 350ms;
  transition: opacity 350ms; }
  .back-to-top i {
    position: absolute;
    left: 50%;
    top: 45%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px; }
  .back-to-top:hover {
    background: #222 !important; }
  .back-to-top.reveal {
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    opacity: 1;
    filter: alpha(opacity=100); }
    .back-to-top.reveal:focus, .back-to-top.reveal:hover, .back-to-top.reveal:active {
      opacity: 1;
      filter: alpha(opacity=100); }

/* responsive css */
@media screen and (max-width: 1199px) {
  .footer-top {
    padding: 80px 0; } }
@media screen and (max-width: 991px) {
  .footer-top {
    padding: 60px 0; }

  .footer-social a {
    margin: 0 15px; } }
@media screen and (max-width: 767px) {
  .footer-social a {
    margin: 0 10px; } }

/*# sourceMappingURL=style.css.map */

.zeroPadBottom {
  padding-bottom: 0px;
}

.zeroPads {
  padding: 0px;
}

.parallax {
  padding-top: 70px;
  background-image: url("../img/bgs/parallax_bg.jpg");
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax h4 {
  font-size: 32px;
  line-height: 36px;
  color:#EEE;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
  padding-bottom: 20px;
}

.service-title {
  font-size: 16px;
  color: #333;
}

.service-desc {
  color: #333;
  margin-bottom: 60px !important;
}

.service-icon {
  width: 120px;
  height: 120px;
  background-size: cover;
}


.redcarpet {
  height: auto;
}





.footer-style-1 {
    position: relative;
    background: #121212;
    padding: 40px 0 0 0;
}

.fcontainer {
    max-width: 1170px;
}

.footer-style-1 h3 {
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 30px;
    margin-top: 30px;
}

.footer-style-1 p {
    font-size: 14px;
    font-weight: 500;
    color: #999;
    line-height: 190%;
    margin-bottom: 15px;
}

.footer-style-1-social-links li {
    display: inline-block;
    background: #333;
    border-radius: 5px;
    color: #fff;
    margin-bottom: 5px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.footer-style-1-social-links li a {
    display: block;
    font-size: 15px;
    color: #fff;
    width: 35px;
    height: 35px;
    padding: 11.5px;
    padding-top: 6px;
}

.footer-style-1 a {
    font-size: 15px;
    color: #fff;
}

.footer-style-1-latest-news, .footer-style-1-contact-info, .footer-style-1-links {
    position: relative;
    padding: 0;
    margin: 0;
}

.footer-style-1-latest-news li:first-child {
    padding-top: 0;
}

.footer-style-1-latest-news li {
    list-style-type: none;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-style-1-latest-news li span {
    display: block;
    color: #fff;
    font-size: 14px;
    opacity: .5;
}

.footer-style-1-latest-news li a {
    color: #fff;
    font-size: 14px;
}

.footer-style-1-contact-info li {
    list-style-type: none;
    display: block;
    padding: 10px 0;
}

.footer-style-1-contact-info li i {
    color: #fff;
    font-size: 14px;
    margin-right: 5px;
}

.footer-style-1-contact-info li span {
    color: #fff;
    opacity: .7;
    font-size: 14px;
}

.footer-style-1-links li:first-child {
    padding-top: 0;
}

.footer-style-1-links li {
    list-style-type: none;
    display: block;
    padding: 4px 0;
}

.footer-style-1-links li a {
    color: #fff;
    font-size: 14px;
}

.footer-style-1-bar {
    position: relative;
}

.footer-style-1-bar {
    position: relative;
    background: #222;
    padding: 20px 0;
    margin-top: 60px;
}

.footer-style-1-bar h5 {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
}

.footer-style-1-bar-links {
    text-align: right;
}

.footer-style-1-bar li {
    list-style-type: none;
    display: inline-block;
    margin-left: 12px;
}

.footer-style-1-bar li a {
    color: #fff;
    font-size: 13px;
}

.navbar-dark {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
}


.no-padding {
  padding: 0 !important;
}
.no-top-padding {
  padding-top: 0 !important;
}
.no-bottom-padding {
  padding-bottom: 0 !important;
}
.no-top-margin {
  margin-top: 0 !important;
}

.noscrollbar {
  scrollbar-width: none;
}
.noscrollbar::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: rgba(0,0,0,0.5);
}

.noscrollbar::-webkit-scrollbar
{
  width: 7px;
  background-color: rgba(0,0,0,0.5);
  display: none;
}

.noscrollbar::-webkit-scrollbar-thumb
{
  border-radius: 7px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: rgba(0,0,0,0.5);
}


.footer-style-1-social-links {
  margin-top: 30px;
  padding: 0px;
}

.footer-logo {
  margin-top: 50px;
  text-align: center;
}

.services-banner {
  background-image: url(../img/banner/services-banner_delyom_company.jpg);
  background-size: cover;
  background-position: center;
  padding: 60px 0 60px 0 !important;
}

.contact-banner {
  background-image: url(../img/banner/contact-banner_delyom_company.jpg);
  background-size: cover;
  height: 450px;
}

.careers-banner {
  border-top: 10px solid #222;
  background-image: url(../img/banner/careers-banner_delyom_company.jpg);
  background-size: cover;
  height: 450px;
  color: #FFF;
}

.careers-banner-0 {
  border-top: 10px solid #222;
  background-image: url(../img/banner/careers-header_delyom_company.jpg);
  background-size: cover;
  height: 700px;
  color: #FFF;
}

.careers-banner-1 {
  border-top: 10px solid #222;
  background-image: url(../img/banner/director_office_delyom_company.jpg);
  background-size: cover;
  height: 450px;
  color: #FFF;
  background-position: bottom;
}

.careers-banner-2 {
  border-top: 10px solid #222;
  background-image: url(../img/banner/ceo_office_delyom_company.jpg);
  background-size: cover;
  height: 650px;
  color: #FFF;
  background-position: bottom;
}

.careers-banner-3 {
  border-top: 10px solid #222;
  background-image: url(../img/banner/office-space_delyom_company.jpg);
  background-size: cover;
  height: 600px;
  color: #FFF;
  background-position: center;
}



.careers-banner h5, .careers-banner-1 h3 {
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}

.careers-icon {
  background-image: url(../img/icons/careers.png);
  background-size: cover;
  width: 100px;
  height: 100px;
}


.benefit-icon {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 64px;
  min-height: 64px;
  max-height: 64px;
}

.work-from-home {
  background-image:url(../img/icons/work_from_home.png);
}

.team-building {
  background-image:url(../img/icons/team_building.png);
}

.flexi-time {
  background-image:url(../img/icons/flexi_time.png);
}

.bonus {
  background-image:url(../img/icons/bonus.png);
}

.benefit-description {
  display: inline-block;
  padding-left: 10px;
  min-height: 120px;
}
.benefit-text {
  text-align: left;
}
.benefit-title {
  text-align: left;
  font-weight: 400;
  font-size: 20px;
}

.country-btns {
  max-width: 900px;
  display: inline-block !important;
}
.careers-country-btn {
  width: 100%;
  margin: 4px;
  background-color: #fff !important;
  border-color: #222;
  color: #222;

}
.careers-country-btn:after {
    border-top: 3px solid #222 !important;
    border-right: 3px solid #222 !important;
}

.careers-country-btn-black, .careers-country-btn-black:hover {
  width: 100%;
  margin: 4px;
  background-color: #222 !important;
  border-color: #222;
  color: #fff;

}
.careers-country-btn-black:after, .careers-country-btn-black:hover:after {
    border-top: 3px solid #fff !important;
    border-right: 3px solid #fff !important;
}

.position-div {
  background-color: #DDD;
  margin-bottom: 10px;
  margin-top: 10px;
}
.position-btn {
  background-color: #484848;
  color: #fff !important;
  font-size: 18px;
  padding: 10px;
  line-height: 50px;
  font-weight: 300;
  text-transform: uppercase;
}
.position-btn:hover {
  background-color: #222;
  color: #FFF;
  cursor: pointer;
}

.position-text {
  text-align: left;
  padding: 10px;
  padding-left: 20px;
  color: #222;
}
.position-title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.careers-appSection {
  height: auto;
}
.careers-applicationForm h2, .careers-applicationForm p {
  color:#FFF;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4), 0px 8px 13px rgba(0,0,0,0.1), 0px 18px 23px rgba(0,0,0,0.1);
}


.btn-file{overflow:hidden;position:relative;vertical-align:middle;}
.btn-file>input{ cursor:pointer; position:absolute;top:0;right:0;margin:0;opacity:0;filter:alpha(opacity=0);font-size:23px;direction:ltr;}
.fileupload{ margin:0px; overflow:hidden; padding-right:110px !important; height:48px; }
.fileupload .uneditable-input{display:inline-block;margin-bottom:0px;vertical-align:middle;cursor:text;}
.fileupload-preview { float:left; margin:0px auto; vertical-align:middle; -moz-user-select:none; -o-user-select:none; -webkit-user-select:none; user-select:none; line-height: 32px; padding-right: 20px; }
.fileupload .close { margin-top:5px; vertical-align:middle; font-size:14px; color:#b81919; filter:alpha(opacity=100); opacity:1; font-weight:normal; float:none; }
.fileupload-exists .fileupload-new,.fileupload-new .fileupload-exists{display:none;}
.btnStyle2 { font-weight: 600; position:absolute;right:18px;top:4px;width:100px;color:#ffffff;font-size:13px;overflow:hidden;line-height:30px;padding:5px 20px;text-align:center;background:#222;display:inline-block;text-transform:uppercase;-webkit-transition:all 0.5s ease-out;-moz-transition:all 0.5s ease-out;-o-transition:all 0.5s ease-out;-ms-transition:all 0.5s ease-out;transition:all 0.5s ease-out;}
.btnStyle2:hover {color:#ffffff;background:#444;-webkit-transition:all 0.5s ease-out;-moz-transition:all 0.5s ease-out;-o-transition:all 0.5s ease-out;-ms-transition:all 0.5s ease-out;transition:all 0.5s ease-out;}

.cv-input {
  cursor: pointer;
}

.your-cv {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    font-size: 23px;
    direction: ltr;
    cursor: pointer;
}

.form-control {
   border-radius: 0 !important;
}


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

  .position-description {
    margin-top: 10px;
  }
  .position-text {
    margin-top: 20px;
    text-align: center;
  }
  .position-btn {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
  }
  .benefit-description {
    margin: auto;
    margin-top: 10px;
  }
  .benefit-title, .benefit-text {
    text-align: center !important;
  }
  .benefit-icon {
    margin: auto;
  }
}



.services-banner-text {
  font-size: 30px;
  line-height: 40px;
  margin-top: 20px;
}

h4[class$="services-banner-text"]::after, h3[class$="services-banner-text"]::after {
  content: " ";
  display: block;
  height: 4px;
  background: #fff;
  width: 80px;
  margin: auto;
  margin-top: 10px;
  -webkit-transition: width .5s; /* For Safari 3.1 to 6.0 */
  transition: width .5s;
}
h4[class$="services-banner-text"]:hover::after, h3[class$="services-banner-text"]:hover::after {
  width:200px;
}


.bold-text {
  font-weight: 500;
  font-size: 17px;
}

.blog-details-text ul li {
    list-style: none;
    line-height: 24px;
    padding: 2px 0px 2px 20px;
    background: url(../img/bullet.png) 0px 4px no-repeat;
    font-size: 14px;
}


.phone-btn {
    margin: auto;
    max-width: 250px;
    display: block;
    margin-top: 50px;
    margin-bottom: 50px;
    font-weight: normal;
    color: #333;
}
.phone-btn:hover {
    color: #FFF;
    background-color: #29b540 !important;
}


.newsletter-form button {
  margin-top: -10px;
}

.last-paragraph-no-margin p {
  font-size: 16px;
}

.alert-fixed {
  position: fixed;
  top:90px;
  left:20px;
  right:20px;
  text-align: center;
  z-index: 100;
}
.alert-center {
  display: inline-block;
}


.g-recaptcha {
  max-width: 310px;
  margin: auto;
  display: none;
}

.hidden {
  display: none !important;
}

.about-section {
  background-image: url(../img/banner/ceo_office_delyom_company.jpg);
  background-repeat: no-repeat;
  background-color: #f7f7f7;
  background-size: 100% 45%;
}


@media screen and (max-width: 570px) {
  .about-section {
    background-size: auto;
    background-position: top;
  }
}

.text-shadow {
  text-shadow: 0px 0px 3px rgba(0,0,0,0.6), 0px 4px 13px rgba(0,0,0,0.3), 0px 10px 23px rgba(0,0,0,0.2);
}



.lang-btn {
  display: none;
  padding-left: 5px;
}

.benefit-listings .benefit-row {
  width: 110%;
}


.gdpr {
  overflow-y:auto;
  position: fixed;
  background-color: rgba(0,0,0,0.7);
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  z-index: 1040;
}
.gdpr-container {
  padding:100px 15px;
  width: 100%;
  margin: auto;
}
.gdpr-popup {
  margin:auto;
  background-color: #FFF;
  color: #000;
  padding: 30px 30px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.gdpr-popup h3, .gdpr-buttons {
  border-bottom: 1px solid #EEE;
  padding-bottom: 10px;
}
.gdpr-popup h3 {
  font-size: 18px;
  font-weight: 500;
}
.gdpr-text {
  font-size: 14px;
}
.gdpr-text a {
  text-decoration: underline;
}
.gdpr-buttons{
  padding-top: 15px;
}
.gdpr-button {
  display: inline-block;
  background-color: #222;
  border-color: #222;
  color: #fff !important;
  margin: 0 8px 8px 0;
  white-space: nowrap;
  font-size: 12px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #ccc;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
}
.gdpr-agree {
  background-color: #fa5400;
  border-color: #fa5400;
  color: #fff;
}
.gdpr-more, .gdpr {
  display: none;
}
.gdpr-title {
  font-size: 14px;
  font-weight: 500;
}
.gdpr-text-2 {
  width: 100%;
  padding-left: 15px;
  padding-bottom: 10px;
  font-size: 13px;
}
.gdpr-footer {
  padding-top: 10px;
  color: #555;
  font-weight: 500;
  font-size: 12px;
}


.newsletter-loader {
  display: none;
  background-image: url("../img/gif/loader.gif");
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.newsletter-recaptcha {
  margin-bottom: 20px;
}

.newsletter-result .alert {
  padding: 10px;
}
.newsletter-result {
  display: none;
}


.bg-video {
  position: absolute;
  width: 100%;
  height: 100vh;
}

.bg-video-filter {
  background: linear-gradient(
      rgba(0, 0, 0, 0.5), 
      rgba(0, 0, 0, 0.5));
  position: absolute;
  width: 100%;
  height: 100vh;
}

.bg-video video {
  width: 100%;
}

.title-bg {
  background-color: rgba(0,0,0,0.7);
  padding: 10px;
}


.min-h-80 {
  min-height: 80px;
}




.lead-container, .order-container, .viewer-container {
  display: none;
  position: fixed;
  top:0px;
  bottom:0px;
  right:0px;
  left:0px;
  background-color: rgba(0,0,0,0.8);
  z-index: 1111;
  overflow-y: auto;
  overflow-x: hidden;
}

.lead-screen, .order-screen, .viewer-screen {
  margin: 0px;
}

.lead-close, .order-close, .viewer-close {
  float:right;
  font-size: 30px;
  margin-top: -40px;
  margin-right: 40px;
  cursor: pointer;
}

.lead-popup, .order-popup {
  background-color: #EEEEEE;
  padding: 30px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin-top: 60px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
.viewer-view {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
.viewer-img {
  margin: auto;
}
.nopadding {
  padding:0px !important;
}

.lead-headline, .order-headline {
  color: #000;
  text-align: center;
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 20px;
  text-shadow: 0px 0px 2px #000000;
}

.lead-buttons, .order-buttons {
  text-align: center;
}

.lead-subline, .order-subline {
  text-align: center;
  margin-bottom: 30px;
  font-size: 19px;
}
.order-subline {
  text-shadow: 0px 0px 1px #000000;
}

.newsletter {
  max-width: 20px;
  margin-top: -12px;
}

.noscroll {
  overflow: hidden;
}

.lead-spinner, .order-spinner {
  text-align: center;
  display: none;
}

.spinner {
  max-width: 100px;
}

.google-map {
  height: 25rem;
}

.google-map iframe {
  height: 100%;
  width: 100%;
}

.google-map-section {
  padding: 0px;
}


#plans {
  margin-top: 70px;
}

#nplans {
  padding-top: 60px;
}

.plans-title {
  line-height: normal;
  font-size: 36px;
  margin-bottom: 10px;
}

.plans-subtitle {
  margin-bottom: 50px;
  font-size: 16px;
}

.white-text {
  color: #fff;
}

.plan:hover {
  -webkit-box-shadow: 0px 0px 26px 5px rgba(0,0,0,0.48);
  -moz-box-shadow: 0px 0px 26px 5px rgba(0,0,0,0.48);
  box-shadow: 0px 0px 26px 5px rgba(0,0,0,0.48);
  transform: scale(1.01);
}
.plan:hover .plan-price, .plan:hover .plan-title {
  color:#000;
}
.plan b {
  color:#000;
}

.plan-features .plan-feature:nth-child(even) {
  background-color: #e8e8e8;
}

.plan-features .plan-feature:nth-child(odd) {
  background-color: #f0f0f0;
}

.plan-features .plan-feature:last-child {
  margin-bottom: 60px;
}

.plan-feature, .plan-feature-none {
  min-height: 60px;
  padding-top: 10px;
  margin-bottom: 0px;
  vertical-align: middle;
  padding: 10px;
  color:#444;
}

.plan-price {
  color:#222;
  font-size: 36px;
  line-height: 50px;
  font-weight: 700;
}
.plan-oprice {
  color: #000000;
  font-size: 21px;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.plan-oprice::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #000000;
  position: absolute;
  bottom: 11px;
  left: 0;
}

.plan-title {
  font-size: 24px;
  font-weight: 600;
}

.plan-from {
  font-weight: bold;
}

.feature-nbox {
  padding-right: 0px;
  padding-left: 0px;
  padding-top: 40px;
}

.plan-feature-none {
  background-image: url('../img/icons/none.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
}

.plan-ps {
  font-size: 16px;
  text-align: center;
  width: 100%;
}

.btn-container {
  position: absolute;
  bottom: 20px;
  right: 0px;
  left: 0px;
}

.portfolio-item {
  color:#000;
  min-height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  position: relative;
  padding-right: 0px !important;
  padding-left: 0px !important;
}
.portfolio-item-top-bg {
  background-position: center top;
}

.portfolio-item:hover {
  background-size: 110%;
}

.portfolio-cats {
  text-align: center;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin:auto;
  margin-bottom: 40px;
}

.portfolio-cat {
  display: inline-box !important;
  padding: 10px;
}


.portfolio-item:before {
  content: attr(data-title);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  height: 0%;
  width: 100%;
  bottom: 0;
  transition: height 0.5s ease-out;
  background: linear-gradient(to bottom, transparent 0%, black 100%);
  color:#FFF;
  text-shadow: 0px 0px 5px #000000;
  font-weight: 400;
  text-align: center;
  font-size: 18px;
  padding-bottom: 20px;
  opacity: 0;
}
.portfolio-item:hover:before {
  height: 100%;
  opacity: 1;
}

.reviews-container {
  position: relative;
  overflow: hidden;
  margin:auto;
}
.reviews-container .reviews {
  display: flex;
  transition: transform 0.4s;
}
.reviews-container .reviews > div {
  flex:1;
  min-width:100%;
}

.reviews-prev, .reviews-next {
  display: inline-block;
  font-size: 36px;
  padding: 10px;
  margin: 10px 50px;
  cursor: pointer;
}

.review-img img {
  width: 100px;
  height: 100px;
  margin: auto;
  margin-bottom: 10px;
  margin-top: 20px;
}
.review-name {
  font-size: 18px;
  margin-bottom: 20px;
  margin-top: 10px;
  color: #333;
}


.review-text {
  font-size: 20px;
  quotes: "\201C""\201D""\2018""\2019";
  padding: 10px 20px;
  line-height: 1.4;
}

.review-text:before {
  content: open-quote;
  display: inline;
  height: 0;
  line-height: 0;
  left: -10px;
  position: relative;
  top: 20px;
  color: #333;
  font-size: 2.5em;
}
.review-text:after {
  content: close-quote;
  display: inline;
  height: 0;
  line-height: 0;
  left: 10px;
  position: relative;
  top: 20px;
  color: #333;
  font-size: 2.5em;
}

.shadow-text {
  text-shadow: 0px 0px 6px #000000;
}

.topBottomPad {
  padding-top:60px;
  padding-bottom:20px;
}


.anunderline::after {
  content: " ";
  display: block;
  height: 4px;
  background: #fff;
  width: 80px;
  margin: auto;
  margin-top: 10px;
  -webkit-transition: width .5s; /* For Safari 3.1 to 6.0 */
  transition: width .5s;
}
.anunderline:hover::after {
  width:200px;
}
.anunderline-black::after {
  background: #000;
}

.service-img {
  float: right;
  width: 550px;
  box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.75);
  margin-left: 32px;
}

.blog-details-text h2 {
  text-shadow: 0px 1px 4px rgba(0,0,0,0.75);
}


#newsletterName {
  display: none;
}

.cta-section {
  font-size: 16px;
}

.noOverflow {
  overflow: unset;
}

.iti__selected-flag {
  outline: none;
}

.g-recaptcha {
  margin: 10px auto;
}

.callMeResponse {
  padding-top: 10px;
}

.call-loader {
  background-image: url("../img/gif/call-loader.gif");
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.phoneFormElm {
  max-width: 250px;
  min-width: 250px;
  max-height: 54px;
  border: 3px solid #222;
} 

.phoneFormCnt {
  max-width: 250px;
  display: inline-block;
}

.faicon {
  font-size:100px;
  color:#333;
}

.footer-statement {
  text-align: center;
  font-size: 45px;
  font-family: cursive;
  margin-bottom: 30px;
  margin-top: 15px;
}

.js-video-btn, .js-video-btn:hover, .js-video-btn:focus {
  background-color: #c00 !important;
  color: #fff;
  padding: 9px 27px 9px 9px !important;
  border-color: transparent;
  margin-top: 30px;
    transform-origin:50% 4em;
  -webkit-animation:wiggle 1.5s linear infinite;
  animation:wiggle 1.5s linear infinite;
}
.js-video-btn::after, .js-video-btn:hover::after, .js-video-btn:focus::after {
  border-top: 3px solid #fff !important;
  border-right: 3px solid #fff !important;
}
.js-video-btn:hover, .js-video-btn:focus {
  -webkit-animation:none !important;
  animation:none !important;
}

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform:rotateZ(0);
    transform:rotateZ(0);
  }
  10% {
    -webkit-transform:rotateZ(-15deg);
    transform:rotateZ(-15deg);
  }
  20% {
    -webkit-transition:rotateZ(10deg);
    transition:rotateZ(10deg);
  }
  25% {
    -webkit-transition:rotateZ(-10deg);
    transition:rotateZ(-10deg);
  }
  30% {
    -webkit-transition:rotateZ(6deg);
    transition:rotateZ(6deg);
  }
  35% {
    -webkit-transform:rotateZ(-4deg);
    transform:rotateZ(-4deg);
  }
  40% {
    transform:rotateZ(7deg);
  }
  50% {
    transform:rotateZ(-6deg);
  }
  60% {
    transform:rotateZ(10deg);
  }
  70% {
    transform:rotateZ(-14deg;)
  }
  80% {
    transform:rotateZ(3deg);
  }
  90% {
    transform:rotateZ(-7deg);
  }
  100% {
    -webkit-transition:rotateZ(0);
    transition:rotateZ(0);
  }
}

.js-video-btn:hover i {
  -webkit-animation-name: hvr-icon-pulse;
  animation-name: hvr-icon-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes hvr-icon-pulse {
  25% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes hvr-icon-pulse {
  25% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}