﻿@import url("../../css.css");
::selection {
  background-color: #80ddd8;
  color: #27303f;
}

::-moz-selection {
  /* Code for Firefox */
  background-color: #80ddd8;
  color: #27303f;
}

html {
  overflow-x: hidden;
}

body {
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  color: #313131;
  line-height: 25px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-size: 38px;
  color: #27303f;
  font-weight: 700;
  font-family: "Work Sans", sans-serif;
}

a {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
a:hover {
  text-decoration: none;
}
a a:focus {
  outline: none;
}

p {
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin: 0px;
  font-size: 14px;
}

ul, ol {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
ul li, ol li {
  list-style: none;
}

a:not([href]):not([tabindex]) {
  color: #fff;
}

.section-header {
  margin-bottom: 30px;
}
.section-header p {
  text-align: center;
  font-weight: 400;
  line-height: 26px;
}

.section-title {
  font-size: 30px;
  color: #27303f;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

.padding-none {
  padding: 0px;
}

.bg-gray {
  background: #f9f9f9;
}

.bg-mint {
  background: none;
}
.bg-mint .row {
  position: relative;
}
.bg-mint .row::before {
  content: "";
  position: absolute;
  background: #edfaf4;
  top: 50px;
  left: -15px;
  width: 105%;
  height: 100%;
  border-radius: 50px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #27303f;
}

.btn {
  font-size: 14px;
  padding: 10px 30px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  border-radius: 30px;
  transition: all 0.3s linear;
  display: inline-block;
}

.btn:focus,
.btn:active {
  box-shadow: none;
  outline: none;
  color: #fff;
}

.btn-common {
  background-color: #80ddd8;
  color: #27303f;
  border: 0;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
}
.btn-common span {
  position: relative;
  z-index: 3;
}
.btn-common::before, .btn-common::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.btn-common::before {
  width: 100%;
  height: 100%;
  background-color: #80ddd8;
  z-index: 1;
}
.btn-common::after {
  width: 220px;
  height: 300px;
  display: block;
  background-color: #27303f;
  z-index: 2;
  transform: rotate(45deg) translate(-150%, -50%);
  transition: transform 0.3s ease-in-out;
}
.btn-common:hover {
  color: #fff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}
.btn-common:hover::after {
  transform: rotate(0deg) translate(0%, 0%);
}

.btn-border {
  color: #27303f;
  background-color: transparent;
  border: 1px solid #27303f;
  border-radius: 30px;
  text-transform: uppercase;
}
.btn-border:hover {
  color: #fff;
  border-color: #27303f;
  background-color: #27303f;
}

.btn-border:focus {
  color: #fff;
  border-color: #27303f;
  background-color: #27303f;
}

.btn-lg {
  padding: 14px 33px;
  text-transform: uppercase;
  font-size: 16px;
}

.btn-rm {
  padding: 7px 18px;
  text-transform: capitalize;
}

.btn-link {
  color: #27303f;
}
.btn-link:hover, .btn-link:focus {
  color: #27303f;
}

button:focus {
  outline: none !important;
}

.icon-close, .icon-check {
  color: #27303f;
}

.social-icon a {
  color: #666;
  background: #fff;
  width: 32px;
  height: 32px;
  line-height: 34px;
  display: inline-block;
  text-align: center;
  border-radius: 100%;
  font-size: 16px;
  margin: 15px 6px 12px 4px;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}
.social-icon a:hover {
  color: #fff !important;
}
.social-icon .facebook:hover {
  background: #3b5999;
}
.social-icon .twitter:hover {
  background: #4A9CEC;
}
.social-icon .instagram:hover {
  background: #D6274D;
}
.social-icon .linkedin:hover {
  background: #1260A2;
}
.social-icon .google:hover {
  background: #CE332A;
}

/* ScrollToTop */
a.back-to-top {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 15px;
  text-decoration: none;
  z-index: 4;
}
a.back-to-top i {
  display: block;
  font-size: 22px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  background: #27303f;
  border-radius: 30px;
  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);
}
a.back-to-top:hover, a.back-to-top:focus {
  text-decoration: none;
}

/* Preloader */
#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: #27303f;
}

#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);
  }
}
.section-padding {
  padding: 60px 0;
}

hr {
  border-top: 1px dotted #ddd;
}

.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.feature-bg {
  background: #27303f;
}

.text-wrapper {
  height: 100%;
  display: table;
  padding-left: 140px;
}
.text-wrapper > div {
  vertical-align: middle;
  display: table-cell;
}

.feature-thumb {
  padding: 40px 0;
}

.feature-item {
  padding: 30px;
}
.feature-item .icon {
  float: left;
  border: 1px solid #fff;
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
}
.feature-item .icon i {
  font-size: 36px;
  color: #fff;
  line-height: 80px;
}

.feature-content {
  color: #fff;
  margin-left: 100px;
}
.feature-content h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
}

/* Services Item */
.services-item {
  background: #fff;
  margin: 15px 0;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 1px 4px 13px -6px #000;
  transition: all 0.3s ease-in-out 0s;
}
@media (min-width: 768px) {
  .services-item {
    height: 280px;
  }
}
@media (min-width: 992px) {
  .services-item {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .services-item {
    height: 260px;
  }
}
.services-item .icon i {
  font-size: 42px;
  color: #27303f;
}
.services-item .services-content h3 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.services-item .services-content h3 a {
  font-size: 18px;
  color: #313131;
}
.services-item .services-content h3 a:hover {
  color: #27303f;
}

#service {
  position: relative;
}

#services {
  margin-bottom: 20px;
}

/* Container Outside Shape */
.container-outside {
  position: absolute;
  top: 0;
  right: 0;
  width: 47.1%;
  height: 100%;
  background: #27303f;
  overflow: hidden;
}

.heading {
  padding-left: 30px;
}

.d-table {
  display: table;
  width: 100%;
  height: 100%;
}

.dt-cell {
  display: table-cell;
  vertical-align: middle;
}

.skill-area svg {
  width: 100%;
  height: auto;
}
.skill-area #server_dot1 {
  animation: server_dot 5s step-end infinite;
}
.skill-area #server_dot2 {
  animation: server_dot 4s step-end infinite 1s;
}
.skill-area #server_dot4 {
  animation: server_dot 5s step-end infinite 3s;
}
.skill-area #server_dot5 {
  animation: server_dot 6s step-end infinite 2s;
}
.skill-area #line1 {
  animation: line 6s ease-in-out infinite;
}
.skill-area #line2 {
  animation: line 8s ease-in-out infinite 5s;
}
.skill-area #line3 {
  animation: line 4s ease-in-out infinite 3s;
}
.skill-area #line4 {
  animation: line 8s ease-in-out infinite 4s;
}
.skill-area #line5 {
  animation: line 6s ease-in-out infinite 2s;
}
.skill-area #line6 {
  animation: line 7s ease-in-out infinite 1s;
}

.skills-section {
  margin-top: 30px;
}
.skills-section .progress-box .progress-box-heading {
  color: #313131;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.skills-section .progress {
  background: #f9f9f9;
  height: 10px;
  margin-bottom: 30px;
}
.skills-section .progress .progress-bar {
  background: #27303f;
}

#stroke1, #stroke2, #stroke3, #stroke4 {
  fill: none;
  stroke: #27303f;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: miter;
  stroke-miterlimit: 4;
  stroke-opacity: 1;
  stroke-dashoffset: 0;
  stroke-dasharray: 150px 10px;
}

#stroke1 {
  animation: stroke1 9s linear 0s infinite;
}

#stroke2 {
  animation: stroke1 9s linear 3s infinite;
}

#stroke3 {
  animation: stroke1 9s linear 6s infinite;
}

#stroke4 {
  animation: stroke1 9s linear 9s infinite;
}

@keyframes server_dot {
  0% {
    fill: #27303f;
  }
  10% {
    fill: #e7ed4e;
  }
  20% {
    fill: #27303f;
  }
  60% {
    fill: #eb7f48;
  }
  70% {
    fill: #27303f;
  }
  100% {
    fill: #27303f;
  }
}
@keyframes line {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }
  10% {
    transform: scaleX(1.4);
    opacity: 1;
  }
  20% {
    transform: scaleX(1);
    opacity: 1;
  }
  70% {
    transform: scaleX(0.8);
    opacity: 1;
  }
  80% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes stroke1 {
  0% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: -300px;
  }
  51% {
    stroke-dashoffset: 300px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes stroke2 {
  0% {
    stroke-dashoffset: 0;
  }
  20% {
    stroke-dashoffset: -140px;
  }
  21% {
    stroke-dashoffset: 140px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.navbar-brand {
  position: relative;
  padding: 0px;
}
.navbar-brand img {
  height: 25px;
}
@media (min-width: 992px) {
  .navbar-brand img {
    height: 25px;
  }
}

.top-nav-collapse {
  background: #fff;
  z-index: 999999;
  top: 0px !important;
  box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  background: #fff !important;
}
.top-nav-collapse .navbar-brand {
  top: 0px;
}
.top-nav-collapse .navbar-nav .nav-link {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.indigo {
  background: transparent;
}

.menu-bg {
  background: transparent;
}

.navbar-expand-md .navbar-nav .nav-link i {
  font-size: 14px;
  margin-left: 5px;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}

.navbar-expand-md .navbar-nav .nav-link {
  font-family: "Work Sans", sans-serif;
  color: #27303f;
  position: relative;
  transition: color 0.3s ease-in-out;
  font-weight: 600;
  padding: 8px 10px;
  line-height: 40px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-size 0.3s ease-in-out, color 0.3s ease-in-out;
}
.navbar-expand-md .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: #27303f;
  bottom: 0;
  left: 0;
  transition: height 0.3s ease-in-out;
  z-index: -1;
}
.navbar-expand-md .navbar-nav .nav-link:hover {
  color: white;
  background-size: 100% 100%;
}
.navbar-expand-md .navbar-nav .nav-link:hover::before {
  height: 100%;
}

.navbar-expand-md .navbar-nav li a:hover,
.navbar-expand-md .navbar-nav li .active > a,
.navbar-expand-md .navbar-nav li a:focus {
  color: #27303f;
  outline: none;
}

.navbar {
  padding: 10px;
}
.navbar li.active a.nav-link {
  color: #27303f;
}

.menu-white .navbar-nav .nav-link {
  color: #fff;
}

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

.dropdown-menu {
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99;
  min-width: 210px;
  background-color: #fff;
  white-space: nowrap;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  animation: fadeIn 0.4s;
  -webkit-animation: fadeIn 0.4s;
  -moz-animation: fadeIn 0.4s;
  -o-animation: fadeIn 0.4s;
  -ms-animation: fadeIn 0.4s;
}
.dropdown-menu:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 100%;
  left: 20%;
  margin-left: -5px;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #fff;
}

.dropdown:hover .dropdown-menu {
  display: block;
  position: absolute;
  text-align: left;
  top: 100%;
  border: none;
  animation: fadeIn 0.4s;
  -webkit-animation: fadeIn 0.4s;
  -moz-animation: fadeIn 0.4s;
  -o-animation: fadeIn 0.4s;
  -ms-animation: fadeIn 0.4s;
}

.dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  color: #313131;
  border-bottom: 1px solid #f1f1f1;
  text-decoration: none;
  display: inline-block;
  float: left;
  clear: both;
  position: relative;
  outline: 0;
  transition: all 0.3s ease-in-out;
  -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;
}

.dropdown .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.dropdown .dropdown-menu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.dropdown .dropdown-item:focus,
.dropdown .dropdown-item:hover,
.dropdown .dropdown-item.active {
  color: #27303f;
  background: #f7f7f7;
}

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

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

/* ==========================================================================
3. Hero Area
========================================================================== */
#hero-area {
  color: #fff;
  overflow: hidden;
  position: relative;
}
#hero-area .contents {
  padding: 170px 0px 50px;
  position: relative;
  z-index: 2;
}
#hero-area .contents .head-title {
  color: #27303f;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 30px;
}
#hero-area .img-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  margin-top: -80px;
}
@media (min-width: 768px) {
  #hero-area .img-hero {
    margin-top: -110px;
  }
}
@media (min-width: 992px) {
  #hero-area .img-hero {
    margin-top: -150px;
  }
}
#hero-area .img-hero .img {
  width: 40%;
}
#hero-area #dot1 {
  animation: dot 2.5s infinite;
}
#hero-area #dot2 {
  animation: dot 2.5s infinite 0.5s;
}
#hero-area #dot3 {
  animation: dot 2.5s ease infinite 1s;
}
#hero-area #new_msg_dot {
  animation: new_msg 3s ease infinite 2s;
}
#hero-area #foot1 {
  animation: foot 3s linear infinite;
}
#hero-area #hand1bg, #hero-area #hand1 {
  animation: hand 1s linear infinite;
}
#hero-area #hand2bg, #hero-area #hand2 {
  animation: hand2 1s linear infinite 0.5s;
}

@keyframes dot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  10% {
    transform: translateY(-15px);
    opacity: 1;
  }
  20% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes new_msg {
  0% {
    transform: translate(0, 0) scale(1);
    transform-box: fill-box;
    opacity: 1;
  }
  30% {
    transform: translate(-2px, -2px) scale(1.2);
    transform-box: fill-box;
    fill: #eb7f48;
  }
  40% {
    transform: translate(0, 0) scale(1);
    transform-box: fill-box;
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) scale(1);
    transform-box: fill-box;
    opacity: 1;
  }
}
@keyframes foot {
  0% {
    transform: rotate(0);
    transform-box: fill-box;
    opacity: 1;
  }
  25% {
    transform: rotate(10deg);
    transform-box: fill-box;
  }
  75% {
    transform: rotate(-10deg);
    transform-box: fill-box;
    opacity: 1;
  }
  100% {
    transform: rotate(0);
    transform-box: fill-box;
    opacity: 1;
  }
}
@keyframes hand {
  0% {
    transform: translate(0);
    transform-box: fill-box;
    opacity: 1;
  }
  50% {
    transform: translate(0, -3px);
    transform-box: fill-box;
  }
  100% {
    transform: translate(0);
    transform-box: fill-box;
    opacity: 1;
  }
}
@keyframes hand2 {
  0% {
    transform: translate(0);
    transform-box: fill-box;
    opacity: 1;
  }
  50% {
    transform: translate(0, -4px);
    transform-box: fill-box;
  }
  100% {
    transform: translate(0);
    transform-box: fill-box;
    opacity: 1;
  }
}
/* Team Item */
.team-item:hover {
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.08);
}

.team-item {
  margin: 15px 0;
  border-radius: 0px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}
.team-item .team-img {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}
.team-item .info-text {
  padding: 20px;
  background: #fff;
}
@media (min-width: 576px) {
  .team-item .info-text {
    padding: 20px 20px 20px 0;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .team-item .info-text {
    height: 260px;
  }
}
.team-item .info-text h3 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 5px;
}
.team-item .info-text p {
  margin: 0;
  font-size: 14px;
  color: #313131;
}

/* ==========================================================================
 Counter Section Style
 ========================================================================== */
#counter {
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
#counter .counter-text {
  height: 100%;
  width: 100%;
  display: table;
}
#counter .counter-text > div {
  vertical-align: middle;
  display: table-cell;
}
#counter .counter-text h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
#counter .counter-text .desc-text p {
  margin-bottom: 15px;
}
#counter .counter-box {
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.1) none repeat scroll 0 0;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0px 9px 16px 0px rgba(225, 225, 225, 0.004);
  text-align: center;
  position: relative;
}
#counter .counter-box .icon-o {
  color: #fff;
  margin-bottom: 20px;
}
#counter .counter-box .icon-o i {
  font-size: 42px;
}
#counter .counter-box .fact-count > div {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
#counter .counter-box .fact-count > div:before {
  position: absolute;
  content: "";
  height: 1px;
  width: 45px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #e5e5e5;
}
#counter .counter-box p {
  color: #fff;
  font-size: 16px;
}

/* ==========================================================================
   Video promo Style
   ========================================================================== */
.video-promo {
  position: relative;
  background: url(../img/bg-video.jpg);
}
.video-promo .video-promo-content {
  color: #fff;
  margin-bottom: 15px;
}
.video-promo .video-promo-content .video-popup {
  width: 80px;
  height: 80px;
  background: transparent;
  line-height: 80px;
  text-align: center;
  border: 3px solid #fff;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  font-size: 26px;
}
.video-promo .video-promo-content .video-popup:hover {
  background: #fff;
  color: #27303f;
  box-shadow: 0px 8px 9px 0px rgba(96, 94, 94, 0.17);
}
.video-promo .video-promo-content h2 {
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
}
.video-promo .video-promo-content p {
  color: #fff;
}

.client-item-wrapper {
  text-align: center;
  padding: 15px;
}
.client-item-wrapper img {
  opacity: 0.5;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  filter: gray;
  transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
}

.client-item-wrapper:hover img {
  opacity: 1;
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

#latest .text-content {
  height: 100%;
  display: table;
  padding-left: 60px;
  padding-right: 120px;
}
#latest .text-content > div {
  vertical-align: middle;
  display: table-cell;
}

/* ==========================================================================
  Portfolio Section
  ========================================================================== */
#portfolios {
  background: #f9f9f9;
}
#portfolios .mix {
  padding: 0px;
}
#portfolios .portfolio-item {
  padding: 10px;
}

#portfolio .mix {
  display: none;
}

.controls {
  text-align: center;
  padding: 0px 0px 20px;
}
.controls .active {
  color: #27303f !important;
  border-color: #27303f;
  background: transparent;
}
.controls .btn {
  text-transform: uppercase;
  margin: 2px;
}
.controls:hover {
  color: #fff;
  cursor: pointer;
}

.shot-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.shot-item img {
  width: 100%;
  height: 100%;
  transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
}
.shot-item .single-content {
  background-color: rgba(22, 26, 39, 0.7);
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  width: 100%;
}
.shot-item .single-content .fancy-table {
  display: table;
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 2;
}
.shot-item .single-content .fancy-table .table-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.shot-item .single-content .zoom-icon {
  margin-bottom: 15px;
}
.shot-item .single-content .zoom-icon a i {
  color: #fff;
  font-size: 22px;
  background: #27303f;
  width: 48px;
  height: 48px;
  display: block;
  line-height: 48px;
  margin: 0 auto;
  border-radius: 30px;
}
.shot-item .single-content a {
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}

.shot-item:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shot-item:hover .single-content {
  opacity: 1;
}

.shot-item:hover .single-content a {
  margin-bottom: 0;
}

/* ==========================================================================
   Pricing Table Style
   ========================================================================== */
#pricing {
  text-align: center;
}
#pricing .title {
  padding-top: 25px;
  padding-bottom: 25px;
  background: #27303f;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
#pricing .title h3 {
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
  margin-bottom: 0px;
}
#pricing .table {
  margin-top: 15px;
  padding-bottom: 30px;
  border-radius: 4px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
#pricing .table .icon {
  padding-top: 30px;
}
#pricing .table .icon i {
  color: #27303f;
  font-size: 42px;
}
#pricing .table .pricing-header {
  position: relative;
  padding-bottom: 20px;
  text-align: center;
}
#pricing .table .pricing-header .price-value {
  font-family: "Work Sans", sans-serif;
  font-size: 30px;
  color: #222222;
  position: relative;
  text-align: center;
  font-weight: 700;
  padding: 30px 0;
  border-bottom: 1px solid #f1f1f1;
}
#pricing .table .pricing-header .price-value sup {
  font-size: 18px;
  font-weight: 600;
  top: -18px;
}
#pricing .table .pricing-header .price-value span {
  font-size: 14px;
  font-weight: 600;
}
#pricing .table .description {
  text-align: center;
  padding: 0px 50px;
  margin-bottom: 20px;
}
#pricing .table .description li {
  font-size: 14px;
  font-weight: 400;
  color: #313131;
  padding-bottom: 15px;
}
#pricing .table:hover {
  background: #ffffff;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.08);
}
#pricing #active-tb {
  background: #ffffff;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.08);
}
#pricing #active-tb .title {
  background: #313131;
}
#pricing #active-tb .price-value {
  color: #27303f;
}
#pricing #active-tb .btn-common {
  background: #313131;
}
#pricing .active {
  z-index: 99999;
}

/* ==========================================================================
  17. Blog 
   ========================================================================== */
#blog .blog-item-wrapper {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: transform 0.2s linear, -webkit-box-shadow 0.2s linear;
  -moz-transition: transform 0.2s linear, -moz-box-shadow 0.2s linear;
  transition: transform 0.2s linear, box-shadow 0.2s linear;
}
#blog .blog-item-wrapper:hover {
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.08);
}
#blog .blog-item-wrapper:hover .blog-item-img:before {
  opacity: 1;
  height: 100%;
  width: 100%;
}
#blog .blog-item-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
#blog .blog-item-img img {
  width: 100%;
}
#blog .blog-item-text {
  padding: 20px;
}
#blog .blog-item-text h3 {
  font-size: 15px;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
}
#blog .blog-item-text h3 a {
  color: #27303f;
}
#blog .blog-item-text h3 a:hover {
  color: #27303f;
}
#blog .blog-item-text p {
  line-height: 25px;
  margin-bottom: 20px;
}

.meta-tags {
  margin-bottom: 10px;
}
.meta-tags span {
  color: #999;
  margin-right: 10px;
}
.meta-tags span i {
  margin-right: 5px;
}
.meta-tags span a {
  color: #999;
}
.meta-tags span a:hover {
  color: #27303f;
}

.page-header {
  background-image: url(../img/page-header-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 400px;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 1;
}
.page-header::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.breadcrumb-wrapper {
  padding: 180px 0 100px;
}
.breadcrumb-wrapper h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 10px;
  position: relative;
  text-transform: uppercase;
}
.breadcrumb-wrapper .breadcrumb-title p,
.breadcrumb-wrapper .breadcrumb-title a {
  color: #fff;
}
.breadcrumb-wrapper .breadcrumb-title p:hover,
.breadcrumb-wrapper .breadcrumb-title a:hover {
  color: #27303f;
}

#blog-single {
  padding: 60px 0;
}
#blog-single .blog-post {
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 40px;
}
#blog-single .blog-post .post-thumb img {
  width: 100%;
}
#blog-single .blog-post .post-content {
  padding: 30px;
}
#blog-single .blog-post .post-content h3 {
  font-size: 22px;
  padding-bottom: 10px;
}

.blog-comment {
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  margin-top: 30px;
  overflow: hidden;
}
.blog-comment h4 {
  font-size: 24px;
  margin-bottom: 30px;
}
.blog-comment .comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 50px;
}
.blog-comment .comment-list .the-comment {
  border-bottom: 1px solid #e7e6e6;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.blog-comment .comment-list .children {
  padding-left: 40px;
}
.blog-comment .avatar {
  float: left;
  margin-right: 15px;
  padding: 5px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #f1f1f1;
}
.blog-comment .comment-author {
  margin-bottom: 10px;
}
.blog-comment .meta {
  margin-bottom: 10px;
  color: #999;
}

.post-meta {
  color: #fff;
  margin-top: 15px;
  margin-bottom: 15px;
}
.post-meta ul li {
  display: inline-block;
  margin-right: 8px;
  margin-left: 8px;
}
.post-meta ul li i {
  margin-right: 5px;
}
.post-meta ul li a {
  color: #fff;
}
.post-meta ul li a:hover {
  color: #27303f;
}

.single-widget {
  margin-bottom: 30px;
}
.single-widget .form-control {
  margin-bottom: 0;
}

.single-widget {
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.widget-latest-post h4,
.categories h4,
.tags h4 {
  color: #27303f;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 24px;
  margin-bottom: 30px;
  text-transform: capitalize;
  padding-bottom: 10px;
  border-bottom: 3px double #ddd;
}

.single-latest-post {
  margin-bottom: 20px;
  overflow: hidden;
}
.single-latest-post .latest-post-img {
  float: left;
  width: 30%;
  margin-right: 20px;
}
.single-latest-post a {
  color: #27303f;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: capitalize;
}
.single-latest-post h5 {
  margin-bottom: 0;
}

.single-latest-post a:hover {
  color: #27303f;
}

.categories ul li {
  padding-bottom: 10px;
}
.categories ul li a {
  color: #999999;
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 18px;
}
.categories ul li a:hover {
  color: #27303f;
}

.tags {
  width: 100%;
  display: inline-block;
}
.tags ul li a {
  color: #999;
  border: 1px solid #f1f1f1;
  padding: 5px 15px;
  margin: 0 5px 5px 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 18px;
  display: block;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.tags ul li a:hover {
  background-color: #222222;
  border-color: #222222;
  color: #fff;
}

.testimonial {
  background: #313131;
  position: relative;
}
.testimonial .section-title {
  color: #fff;
}
.testimonial p {
  color: #fff;
}

.testimonial-item {
  border-radius: 4px;
  text-align: center;
}
.testimonial-item .img-thumb {
  position: relative;
  margin: 15px 15px 15px 0;
}
.testimonial-item .img-thumb img {
  border-radius: 50%;
  display: inline-block;
  width: inherit;
  padding: 7px;
}
.testimonial-item .content {
  overflow: hidden;
}
.testimonial-item .content .description {
  width: 100%;
}
.testimonial-item .info h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 30px;
  margin: 0 0 20px 0;
}
.testimonial-item .info h3 a {
  color: #fff;
}
.testimonial-item .info .indicator {
  font-size: 26px;
  font-weight: 700;
  color: #27303f;
}
.testimonial-item .icon-social {
  margin-top: 30px;
}
.testimonial-item .icon-social a {
  color: #666;
  background: #fff;
  width: 32px;
  height: 32px;
  line-height: 34px;
  display: inline-block;
  text-align: center;
  border-radius: 100%;
  font-size: 15px;
  margin: 15px 6px 12px 4px;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}
.testimonial-item .icon-social a:hover {
  color: #fff;
}
.testimonial-item .icon-social .facebook:hover {
  background: #3b5999;
}
.testimonial-item .icon-social .twitter:hover {
  background: #4A9CEC;
}
.testimonial-item .icon-social .instagram:hover {
  background: #D6274D;
}
.testimonial-item .icon-social .linkedin:hover {
  background: #1260A2;
}
.testimonial-item .icon-social .google:hover {
  background: #CE332A;
}

.owl-pagination {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -40px;
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-carousel button.owl-dot {
  display: inline-block;
  zoom: 1;
  display: inline;
  text-align: center;
}

.owl-carousel button.owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 2px 4px;
  filter: alpha(opacity=50);
  opacity: 1;
  border-radius: 30px;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.owl-carousel button.owl-dot.active span, .owl-carousel button.owl-dot.clickable, .owl-carousel button.owl-dot:hover span {
  background: #27303f;
}

.slick-slider {
  padding: 80px 0;
}

.slider-center img {
  opacity: 0.7;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  padding: 63px 63px;
  position: relative;
  text-align: center;
}

.slider-center .slick-center img {
  -moz-transform: scale(1.9);
  -ms-transform: scale(1.9);
  -o-transform: scale(1.9);
  -webkit-transform: scale(1.9);
  opacity: 1;
  transform: scale(1.9);
}

.form-control {
  width: 100%;
  margin-bottom: 20px;
  font-size: 14px;
  border-radius: 0;
  transition: all 0.3s;
  padding: 8px 20px 8px 0;
  color: #27303f;
  border: 0;
  border-bottom: 2px solid #27303f;
}

.form-control:focus {
  border-color: #27303f;
  box-shadow: none;
  outline: none;
}

textarea {
  border-radius: 0;
}

.form-control:focus {
  box-shadow: none;
  outline: none;
}

.btn.disabled, .btn:disabled {
  opacity: 1;
}

.contact-right-area {
  margin-left: 50px;
  padding-bottom: 80px;
}
@media screen and (min-width: 520px) {
  .contact-right-area {
    padding-bottom: 120px;
  }
}
.contact-right-area::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../img/Group 487.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 90%;
}
@media screen and (min-width: 520px) {
  .contact-right-area::before {
    background-size: 85%;
  }
}
@media screen and (min-width: 520px) {
  .contact-right-area::before {
    background-position: 0 bottom;
  }
}
@media screen and (min-width: 1200px) {
  .contact-right-area::before {
    background-position: 40px bottom;
  }
}
@media screen and (min-width: 1300px) {
  .contact-right-area::before {
    background-size: 90%;
    background-position: 50px bottom;
  }
}
@media screen and (min-width: 1400px) {
  .contact-right-area::before {
    background-position: 55px bottom;
  }
}
.contact-right-area .contact-title {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.contact-right-area .contact-title h2 {
  font-size: 22px;
}
.contact-right-area .contact-title a {
  color: #313131;
  text-decoration: underline;
}

.contact-right {
  padding: 4px;
}
.contact-right .single-contact {
  margin: 30px 0px;
  padding: 3px 55px;
  position: relative;
  color: #313131;
}
.contact-right .single-contact p {
  margin-bottom: 0px;
}
.contact-right .single-contact p a {
  color: #313131;
}
.contact-right .contact-icon {
  background: #27303f;
  color: #fff;
  border-radius: 4px;
  font-size: 20px;
  height: 40px;
  left: 0;
  padding-top: 8px;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
}

#contact {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}

.text-danger {
  font-size: 14px;
  margin-top: 10px;
}

.list-unstyled li {
  color: #d9534f;
}

#conatiner-map {
  margin-top: 30px;
  text-align: center;
  background-color: #fff;
  height: 480px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 101;
  width: 100%;
}

.h3 {
  font-size: 16px;
  margin-top: 26px;
}

.subscribes {
  background: #f8f9fb;
}
.subscribes h4 {
  text-align: center;
  font-size: 40px;
}
.subscribes p {
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
}

.subscribe {
  margin-top: 5px;
  width: 100%;
  text-align: center;
}
.subscribe .form-control {
  width: 100%;
  border-radius: 50px;
  position: relative;
  height: 52px;
  border: 1px solid #27303f;
}
.subscribe .btn-submit {
  border: none;
  cursor: pointer;
  background: transparent;
}
.subscribe .btn-submit i {
  width: 48px;
  height: 48px;
  background: #27303f;
  cursor: pointer;
  display: block;
  color: #fff;
  line-height: 48px;
  border-radius: 50%;
}

/* Footer Area Start */
.footer-area {
  background: #313131;
}
.footer-area .footer-titel {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 10px;
  letter-spacing: 0.5px;
}
.footer-area ul li {
  margin-bottom: 10px;
}
.footer-area ul li a {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
}
.footer-area ul li a:hover {
  color: #27303f;
}
.footer-area #subscribe-form {
  margin-top: 15px;
}
.footer-area #subscribe-form .form-group {
  position: relative;
}
.footer-area #subscribe-form .form-group .btn-common {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 15px;
  height: 39px;
  border-radius: 0;
  background: transparent;
  color: #27303f;
  border-left: 1px solid #ddd;
}

.copyright {
  background: #fff;
}
.copyright .footer-logo {
  margin-top: 13px;
}
.copyright .footer-logo img {
  height: 18px;
}
.copyright p {
  line-height: 60px;
  color: #fff;
  text-align: center;
  margin: 0;
}
.copyright p a {
  color: #fff;
}
.copyright p a:hover {
  color: #27303f;
}

#qa .accordion {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 40px;
  box-shadow: 46px 35px 0px 0px #e7ed4e;
  padding: 10px 20px;
}
#qa .card {
  background: transparent;
  border: 0;
}
#qa .card .card-header {
  border: 0;
  background: transparent;
}
#qa .card .card-header .btn {
  padding: 0;
  font-size: 1.2rem;
  white-space: normal;
}
#qa .card .card-body {
  padding: 0 1.25rem;
}
#qa .card:last-child .show {
  padding-bottom: 2rem;
}
#qa .card .fa-solid {
  display: block;
  transition: all linear 0.3s;
}
#qa .card .collapsed .fa-solid {
  transform: rotateZ(180deg);
}

#company {
  position: relative;
  color: white;
}

#recruit a {
  color: #27303f;
  text-decoration: underline;
}
#recruit #wheel1 {
  transform-origin: 41% 94%;
  animation: wheel 6s linear infinite;
}
#recruit #wheel2 {
  transform-origin: 94.5% 94%;
  animation: wheel 6s linear infinite;
}
#recruit #hair {
  transform-origin: 68% 2%;
  animation: hair 3s linear infinite;
}

@keyframes wheel {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes hair {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(1deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}