body {
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

button:focus {
  outline: none;
}

li {
  list-style-type: none;
}

ul {
  margin-left: 0;
  padding-left: 0;
}

a {color: #060f20;}
a:hover {color: #060f20;}

.img-protection img {
  pointer-events: none;
}

/*brand*/

.brand-logo {
  font-size: 40px;
  font-weight: bold;
  color: #000000;
}

.bg-brand {
  background-color: #2b8a3e;
  color: #fff;
}
.bg-brand a {
  color: #fff;
}

.btn-brand {
  color: #fff;
  background-color: #2b8a3e;
}

.btn-brand:hover {
  color: #fff;
  background-color: #2f9e44;
}

.btn-brand-outline {
  color: #fff;
  background-color: transparent;
  background-image: none;
  border-color: #fff;
}

.btn-brand-outline:hover {
  color: #fff;
  background-color: #2b8a3e;
}

.bg {
  background-color: #000000;
  color: #fff;
}

.bg a {
  /*background-color: #4dabf7;*/
  color: #fff;
}
.bg-grey {
  background-color: #f1f3f5;
}

.flip:hover {
  background: #4dabf7;
  fill: #fff;
  color:  #fff;
}

.p-12 {
  color: #262626; 
  font-size: 12px;
}

.cover {
  background: url(../img/cover.svg) center no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
/*_____*/

/*navbar*/
.navbar-toggler {
  border: none;
  background: transparent !important;
}

.navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
  opacity: 0;
}

.navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}

.navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}

.navbar-brand {
  padding: 0;
}

/*logo-img*/
/*.navbar-nav .nav-link {
   padding-bottom: 0; 
   height: 50px; 
   line-height: 60px; 
}*/

.navbar-toggler {
  padding-top: 10px; 
  padding-bottom: 0;
}

.collapse a {
  color: #262626;
  font-size: 14px;
}

.collapse a:hover {
  color: #00aeef;
  text-decoration: underline;
}
/*_____*/



/*slider*/
.carousel-caption {
  position: absolute;
  top: 10%;
  color: #fff;
  left: 12%;
  text-align: left;
}
  .carousel-item img {
  height: auto;
  min-width: 100%;
}

/*list*/
.square li {
  list-style: none;
}
.square li::before {
  margin-right: 15px;
  content: ' ';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #003e7f;
}
ul.square  {
  margin-left: 0;
  padding-left: 0;
}
/*_____*/


.icon-bar {
  width: 25px;
  height: 3px;
  background-color: #000000;
  display: block;
  transition: all 0.2s;
  margin-top: 4px;
}

.line { 
  border-left: 1px solid #00000020;
}
@media screen and (max-width: 576px) {
.line {
  border-left: 0px solid #00000020;
  }
}
.line-two { 
  border-left: 1px solid #00000020;
}
@media screen and (max-width: 768px) {
.line-two {
  border-left: 0px solid #00000020;
  }
}

.img-job:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  transition: .5s;
}

.owl-carousel .item {
  position: relative;
  z-index: 100; 
  -webkit-backface-visibility: hidden; 
}
.owl-nav i {
  display: none;
  font-size: 10px;
}
.owl-nav .owl-prev {
  display: none;
  left: -30px;
}
.owl-nav .owl-next {
  display: none;
  right: -30px;
}
.video iframe {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 767px) {
.mobile-space {margin-top:10px;}
}

.animated-modal {
  max-width: 550px;
  border-radius: 4px;
  overflow: hidden;
  
  transform: translateY(-50px);
  transition: all .7s;
}

.animated-modal h2,
.animated-modal p {
  transform: translateY(-50px);
  opacity: 0;
  
  transition-property: transform, opacity;
  transition-duration: .4s;
}

.fancybox-slide--current .animated-modal,
.fancybox-slide--current .animated-modal h2,
.fancybox-slide--current .animated-modal p {
  transform: translateY(0);
  opacity: 1;
}

.fancybox-slide--current .animated-modal h2 {
  transition-delay: .1s;
}

.fancybox-slide--current .animated-modal p {
  transition-delay: .3s;
}

.callback {
  width: 50px;
  height: 50px;
  background: url("../img/callback.svg") no-repeat center;
  position: fixed;
  background-size: 50px; 
  bottom: 40px;
  right: 40px;
  z-index: 99;
  -webkit-animation: callback 3s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s infinite;
          animation: callback 3s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s infinite;
}
@-webkit-keyframes callback {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes callback {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*media only*/
@media (max-width: 575px) {
.text-xs-center {
  text-align: center!important;}
}
@media screen and (max-width: 991px) {
.line {
  border-left: 1px solid #00000020;}
}
@media (min-width: 220px) {
.order-sm-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  }
}
@media (max-width: 575px) {
.float-xs-right {
    float: right!important;
  }
}

.owl-prev {
  left: 5px;
}
.owl-next {
  right: 5px;
}

.nav-scroller .nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}


