html {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}


body {
  font-family: 'Merriweather', 'Helvetica Neue', Arial, sans-serif;
  position: relative;
  margin: 0;
  padding-bottom: 6rem;
  min-height: 100%;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
hr {
    max-width: 50px;
    border-width: 3px;
    border-color: #F05F40;
  }
  
  hr.light {
    border-color: #fff;
  }
  hr.odz-kl{
    max-width: 100%;
    border-top: 1px solid #333;
 }
  a {
    color: #F05F40;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
  }
  
  a:hover {
    color: #f05f40;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  }

  .bg-primary {
    background-color: #F05F40 !important;
  }
  
  .bg-dark {
    background-color: #212529 !important;
  }
  
  .text-faded {
    color: rgba(255, 255, 255, 0.7);
  }
  .fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}
.btn-common {
    padding: 10px 20px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff !important;
    border-radius: 2px;
    box-shadow: 0 2px 2.7px 0.1px rgba(0, 0, 0, 0.24) !important
}

.btn-common:hover,
.btn-common:focus,
.btn-common:active {
    box-shadow: 0 4px 4.7px 0.3px rgba(0, 0, 0, 0.24) !important
}

.btn-border {
    font-weight: 900;
    padding: 9px 20px;
    background: #fff;
    border: 1px solid transparent;
    box-shadow: 0 2px 2.7px 0.1px rgba(0, 0, 0, 0.24) !important
}

.btn-border:hover,
.btn-border:focus,
.btn-border:active {
    background-color: #eee !important
}

.btn-round {
    color: #fff !important
}

.material-icons {
    font-size: 24px;
    line-height: 1
}

.btn.btn-fab,
.input-group-btn .btn.btn-fab {
    border-radius: 50%;
    font-size: 24px;
    height: 40px;
    margin: auto;
    min-width: 40px;
    width: 40px;
    padding: 0
}


.navbar-brand {
    position: relative
}

.navbar-brand .ripple-container {
    display: none
}

.navbar-brand img {
    width: 60px
}

.top-nav-collapse {
    background: darkslategrey;
    z-index: 999999;
    box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

.top-nav-collapse .nav-link {
    color: #333 !important;
    margin-top: 0
}

.top-nav-collapse .nav-link:hover {
    color: rgba(0, 0, 0, 0.6)
}

.top-nav-collapse .navbar-brand {
    top: 0px
}

.nav-bg {
    color: #fff
    
}
.fixed-top {
    background-color: rgba(0, 0, 0, 0.6) !important;
}
.nav-bg .navbar-nav .nav-link {
    color: #fff !important
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 15px 0 18px 0;
    font-size: 14px;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    margin-left: 30px;
    margin-top: 0px;
    border-top: 3px solid transparent;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #2196F3
}

.navbar-expand-lg .navbar-nav .nav-link .ripple-container {
    display: none
}

.navbar {
    padding: 0
}

.navbar li.active a.nav-link {
    color: #2196F3
}

.dropdown-toggle::after {
    display: none
}

.dropdown-menu {
    list-style: none;
    margin: 0px 30px;
    padding: 0;
    display: none;
    position: absolute;
    z-index: 99;
    min-width: 195px;
    white-space: nowrap;
    border-radius: 2px;
    border: none;
    background: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    animation: 0.4s ease 0s normal none 1 running fadeInUpMenu
}

.dropdown:hover .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    animation: 0.4s ease 0s normal none 1 running fadeInUpMenu
}

.dropdown .dropdown-menu .dropdown-item {
    width: 100%;
    padding: 10px 20px;
    font-size: 13px;
    color: #202020;
    text-decoration: none;
    display: inline-block;
    float: left;
    clear: both;
    position: relative;
    outline: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out
}

.dropdown .dropdown-item:focus,
.dropdown .dropdown-item:hover {
    background-color: #fafafa
}

.dropdown-item.active,
.dropdown-item:active {
    background: transparent
}

@-webkit-keyframes fadeInUpMenu {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@keyframes fadeInUpMenu {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInUpMenu {
    -webkit-animation-name: fadeInUpMenu;
    animation-name: fadeInUpMenu
}

.search-side {
    position: relative;
    float: right;
    top: 0px;
    right: -20px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out
}

.search-icon span {
    position: relative;
    display: block;
    cursor: pointer;
    margin-left: 20px
}

.search-icon span i {
    font-size: 22px !important;
    display: block;
    border-radius: 2px;
    padding: 5px 8px;
    text-align: center;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out
}

.search-icon:hover i {
    color: #666
}

.navbar-form {
    background: #fff;
    z-index: 9001;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    border: 0;
    width: 100%;
    position: absolute;
    top: 0px;
    display: none;
    left: 0px;
    height: 60px
}

.navbar-form .form-group {
    height: 100%;
    width: 100%;
    margin: 10px 22px
}

.navbar-form .form-control {
    color: #333;
    border-radius: 0;
    outline: none;
    font-size: 22px;
    display: inline-block;
    width: 100%;
    height: 100%;
    font-weight: 400;
    line-height: 30px
}

.navbar-form .has-feedback .close {
    height: 30px;
    position: absolute;
    cursor: pointer;
    top: 50%;
    right: 0;
    margin-top: -15px;
    line-height: 15px;
    color: #333;
    font-size: 22px
}

.navbar-toggler {
    display: none
}

.wpb-mobile-menu {
    display: none
}

.slicknav_menu {
    display: none
}

@media screen and (max-width: 768px) {
    .navbar-header {
        width: 100%
    }
    .navbar-brand {
        position: absolute;
        padding: 0px 15px;
        top: 15px
    }
    .navbar-brand .ripple-container {
        display: none
    }
    .top-nav-collapse .navbar-brand {
        top: 15px
    }
    #wpb-mobile-menu {
        display: none
    }
    .slicknav_menu {
        display: block
    }
    .slicknav_nav .active a {
        background: #5166d8;
        color: #fff
    }
    .slicknav_nav a:hover,
    .slicknav_nav .active {
        color: #5166d8
    }
    .slicknav_nav .dropdown li a.active {
        background: #5166d8;
        color: #fff
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #nav-main li a.nav-link {
        padding-top: 18px
    }
}
.text {
   background-color: #000;
   padding: 10px;
  }
.call-to-action-section {
    padding: 140px 0;
    /* background: url(../img/header-1.jpg) no-repeat scroll; */
    background-size: auto;
    background-repeat: no-repeat;
    background-position:  top;
     background-attachment: fixed;
     
}

.call-to-action-section h1 {
    color: #18191b;
    font-size: 56px;
    font-weight: 700;
    color: #fff;
}

.call-to-action-section h3 {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase
}

a.back-to-top {
    display: none;
    position: fixed;
    bottom: 18px;
    right: 15px;
    text-decoration: none
}

a.back-to-top i {
    display: block;
    font-size: 22px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    border-radius: 2px;
    text-align: center;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28)
}

section {
    padding: 2rem 0;
}
.service-box {
    max-width: 400px;
  }
  .action-section h3 {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

a.back-to-top:hover,
a.back-to-top:focus {
    text-decoration: none
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999999
}

.loader {
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto
}

#loader-1:before,
#loader-1:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 7px solid transparent;
    border-top-color: #5166d8
}

#loader-1:before {
    z-index: 100;
    animation: spin 1s infinite
}

#loader-1:after {
    border: 7px solid #f2f2f2
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
.parallax-window {
    min-height: 300px;
    background: transparent;
}
.section-padding {
    padding: 45px
}
.section-dark{
    background-color: #FFF
}

.no-padding {
    padding: 0 !important
}

.padding-left-none {
    padding-left: 0
}

.padding-right-none {
    padding-right: 0
}
.contact-widget-section2 h2 {
    margin-bottom: 30px
}

.contact-widget-section2 .find-widget {
    padding: 10px 0
}

.contact-widget-section2 .find-widget a {
    color: #333;
    font-size: 14px
}

.contact-widget-section2 .find-widget i {
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    margin-right: 15px;
    border-radius: 2px;
    display: inline-block;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28)
}

.aterial-contact-section ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.aterial-contact-section ul li {
    color: #777;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 28px;
    min-height: 35px;
    width: 100%
}

.aterial-contact-section ul li i {
    width: 35px;
    background: #f50057;
    height: 35px;
    border: 1px solid #f50057;
    border-radius: 2px;
    line-height: 30px;
    float: left;
    color: #fff;
    text-align: center;
    font-size: 18px;
    top: 4px;
    margin-right: 10px
}

.aterial-our-team-section {
    padding-bottom: 200px
}

.page-footer {
    background: darkslategrey
}

.page-footer .footer-title {
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1rem;
    margin-bottom: 40px
}

.page-footer .footer-title:before {
    position: absolute;
    content: '';
    background: #2196F3;
    width: 40px;
    height: 2px;
    left: 0px;
    bottom: -15px
}

.page-footer p {
    color: #fff;
    line-height: 24px;
    margin: 0
}

.page-footer .recent-widget p a {
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    line-height: 28px
}

.page-footer .recent-widget p a:hover {
    color: #2196F3;
    transition: all 0.3s ease-in-out
}

.page-footer .link-widget ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.page-footer .link-widget ul li {
    list-style: none;
    float: left;
    padding-bottom: 22px;
    width: 50%
}

.page-footer .link-widget ul li a {
    color: #fff
}

.page-footer .link-widget ul li a:hover {
    color: #2196F3
}

.page-footer .widget-gallery {
    margin-right: -5px
}

.page-footer .widget-gallery ul {
    padding: 0
}

.page-footer .widget-gallery ul li {
    display: block;
    width: 33%;
    float: left;
    padding: 0 5px 5px 0;
    margin: 0
}

.page-footer .widget-gallery ul li a img {
    width: 100%
}

.footer-contact-widget p {
    color: #fff;
    line-height: 24px;
    padding: 5px 0
}

.footer-contact-widget p span {
    font-weight: 700
}

.footer-contact-widget ul {
    margin: 15px 0;
    padding: 0
}

.footer-contact-widget ul li {
    float: left;
    list-style: none
}

.footer-contact-widget ul li a .mdi {
    color: #fff;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    display: block;
    background: #2A2A2F;
    text-align: center;
    line-height: 40px;
    border-radius: 2px;
    transtion: all 0.3s ease-in-out
}

.footer-contact-widget ul li a .mdi:hover {
    transition: all 0.3s ease-in-out
}

.footer-contact-widget ul li a .mdi-facebook {
    transition: all 0.3s ease-in-out
}

.footer-contact-widget ul li a .mdi-facebook:hover {
    background: #3B5998;
    transition: all 0.3s ease-in-out
}

.footer-contact-widget ul li a .mdi-twitter:hover {
    background: #1DA1F2;
    transition: all 0.3s ease-in-out
}

.footer-contact-widget ul li a .mdi-dribbble:hover {
    background: #EA4C89;
    transition: all 0.3s ease-in-out
}

.footer-contact-widget ul li a .mdi-github-circle:hover {
    background: #009587;
    transition: all 0.3s ease-in-out
}

.footer-contact-widget ul li a .mdi-linkedin:hover {
    background: #0177B5;
    transition: all 0.3s ease-in-out
}
.c1{
    background-color: #5166d8;
    border: 1px solid #5166d8;
    
}
.card{
    border: 0px solid #5166d8;
    border-radius: 0;
}
.card-header{
    border-radius: 0;
    color: #fff;
}
.card-header:first-child {
    border-radius: 0 0;
}
.cien{
    box-shadow:0 0 2em #333;
}
.footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0;
    background-color: #efefef;
    text-align: center;
  }
.bac{
    background-color: #009587;
  }
.usun{
    border: #fff solid 1px;  
    background-color: #fff; 
}
.boxnav{
    padding: 3px;
    background-color: #fff;
}
.fotka{
    margin-bottom: 3px;
}
.bac{
    background-color: #009587;
  }
.btn.card-color{
    color: #fff;
}
.us{
    margin-top: -43px;
}
.sc
 {
    height: 340px;
 }
.ust{
   padding-right: 12px;
}


