/*******************************************************
    Template Name    : Steve - Personal Portfolio Responsive Landing Page Template
    Author           : Cute Themes
    Version          : 1.0
    Created          : 2024
    File Description : Main css file of the template
********************************************************/

/**************************************
    -- Css Table of Content
    01.Generale Css
    02.Preloader Section Css
    03.Navber Section Css
    04.Home Section Css
    05.About Section Css
    06.Services Section Css
    07.Counter Section Css
    08.Portfolio Section Css
    09.Team Section Css
    10.Testimonials Section Css
    11.Faq Section Css
    12.Hire Section Css
    13.Blog Section Css
    14.Partner Logo Section Css
    15.Contact Section Css
    16.Footer Section Css
 *************************************/

/**************************************
 * 01. Generale Css
 **************************************/
*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  background: #071024;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: normal;
  line-height: 26px;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0;
  letter-spacing: 0.5px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: normal;
  color: #ffffff;
  line-height: 1.5;
}
a {
  color: #07b2ff;
  text-decoration: none !important;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
img {
  max-width: 100%;
}
a:hover {
  color: #07b2ff;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
a:hover,
a:focus {
  color: #07b2ff;
  text-decoration: none;
}
p {
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.5px;
  font-family: "Raleway", sans-serif;
}

.z-index {
  z-index: 9;
}
.position-relative {
  position: relative !important;
}
.form-control:focus {
  box-shadow: none;
  outline: 0 none;
  border-bottom: 1px solid #07b2ff;
}
.btn:focus {
  outline: none !important;
  box-shadow: none;
}
button:focus {
  outline: 0 none;
  box-shadow: none;
}
.button:focus {
  outline: none;
  box-shadow: none;
}
.button {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 10px 30px;
  text-align: center;
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 700;
  border: 2px solid #07b2ff;
  border-radius: 30px;
  color: #07b2ff;
  background: none;
  cursor: pointer;
  margin-top: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.button:hover {
  color: #fff;
}
.button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
  background-color: #07b2ff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #07b2ff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.button:hover:before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.button:hover:after {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.button-two {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 10px 30px;
  text-align: center;
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 700;
  border: 2px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  background: none;
  cursor: pointer;
  margin-top: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.button-two:hover {
  color: #07b2ff;
}
.button-two:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
  background-color: #ffffff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.button-two:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #ffffff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.button-two:hover:before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.button-two:hover:after {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

.bg-dark {
  background-color: #060d20 !important;
}

.bg-grey {
  background-color: #f8f8f9;
}

.bg-gradient {
  background-color: transparent;
  background-image: radial-gradient(at center center, #ffffff 0%, #6abff3 100%);
}

.bg-none {
  background: none !important;
}
.color-text {
  color: #07b2ff;
}
dl,
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mr-15 {
  margin-right: 15px;
}
.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}
.bg-fixed {
  background-attachment: fixed;
}
.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}
.section-padding {
  padding: 100px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 75px;
}
.section-title h5,
.sub-title {
  color: #07b2ff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.section-title h2 {
  position: relative;
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.3;
  padding-bottom: 20px;
  text-transform: capitalize;
}

.section-title h2:after {
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0),
    rgb(165, 165, 165),
    rgba(0, 0, 0, 0)
  );
  background-image: -moz-linear-gradient(
    left,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
  background-image: -ms-linear-gradient(
    left,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#000000', GradientType=1);
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  content: "";
  bottom: 0px;
  max-width: 300px;
  margin: 0 auto;
}

.display-table {
  width: 100%;
  height: 100%;
  display: table;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
}
.mr-0 {
  margin: 0;
}
.mr-top-50 {
  margin-top: 50px;
}
.back-to-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 15px;
  color: #ffffff;
  background: #023e72;
  z-index: 4;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}
.back-to-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 5px;
  background: #d7b05d;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.back-to-top:hover:before,
.back-to-top:focus:before {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover,
.back-to-top:focus {
  color: #ffffff;
}
.back-to-top.active {
  top: 97%;
  -webkit-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}
.back-to-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.back-to-top:hover i:first-child,
.back-to-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.back-to-top:hover i:last-child,
.back-to-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.back-to-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 25px;
}
.v-middle {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* [ Start Overlay ] */

[data-overlay-dark],
[data-overlay-light] {
  position: relative;
}
[data-overlay-dark] .container,
[data-overlay-light] .container {
  position: relative;
  z-index: 2;
}
[data-overlay-dark]:before,
[data-overlay-light]:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
[data-overlay-dark]:before {
  background: #02050b;
}
[data-overlay-light]:before {
  background: #fff;
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark span,
.bg-color h1,
.bg-color h2,
.bg-color h3,
.bg-color h4,
.bg-color h5,
.bg-color h6,
.bg-color span {
  color: #fff;
}
[data-overlay-dark] p,
.bg-dark p,
.bg-color p {
  color: #dad6d6;
}
[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
  opacity: 0;
}
[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
  opacity: 0.1;
}
[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
  opacity: 0.2;
}
[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
  opacity: 0.3;
}
[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
  opacity: 0.4;
}
[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
  opacity: 0.5;
}
[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
  opacity: 0.6;
}
[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
  opacity: 0.7;
}
[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
  opacity: 0.8;
}
[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before,
[data-overlay-color="9"]:before {
  opacity: 0.9;
}
[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
  opacity: 1;
}
/* [ End Overlay ] */

/* owl theme */

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 20px;
}
.owl-theme .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  margin: 5px 5px;
  background-color: rgba(0, 0, 0, 0.1);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 5px;
  transition: 0.3s;
  border: 2px solid transparent;
}
.owl-theme .owl-dots .owl-dot.active span {
  background-color: #07b2ff !important;
  width: 7px;
  height: 7px;
  transition: 0.3s;
  -webkit-box-shadow: 0 1px 5px #07b2ff;
  box-shadow: 0 1px 5px #07b2ff;
}
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: transparent;
  border: 2px solid #07b2ff;
  transition: 0.3s;
}

/**************************************
 * 02.Preloader Section Css
 **************************************/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 999999;
}
.preloader .preloader-inner {
  width: 100px;
  height: 100px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.preloader .preloader-inner span {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #2f5bea !important;
  -webkit-animation: preloader 1.3s linear infinite;
  animation: preloader 1.3s linear infinite;
}
.preloader .preloader-inner span:last-child {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

/**************************************
 * 03.Navber Section Css
 **************************************/
.navbar-b {
  transition: all 0.5s ease-in-out;
  background-color: transparent;
  padding-top: 1.563rem;
  padding-bottom: 1.563rem;
}
.navbar-b.navbar-reduce {
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}
.navbar-b.navbar-trans .nav-item,
.navbar-b.navbar-reduce .nav-item {
  position: relative;
  padding-right: 10px;
  padding-left: 0;
}
.navbar-b.navbar-trans .nav-link,
.navbar-b.navbar-reduce .nav-link {
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-family: "Raleway", sans-serif;
}
.navbar-b.navbar-trans .nav-link:hover,
.navbar-b.navbar-reduce .nav-link:hover {
  color: #1b1b1b;
}
.navbar-b.navbar-trans .nav-link:hover {
  color: #fff;
}
.navbar-b.navbar-trans .show > .nav-link,
.navbar-b.navbar-trans .active > .nav-link,
.navbar-b.navbar-trans .nav-link.show,
.navbar-b.navbar-trans .nav-link.active {
  color: #fff;
}
.navbar-b.navbar-reduce {
  transition: all 0.5s ease-in-out;
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-animation: 500ms ease-in-out 0s normal fadeInDown;
  animation: 500ms ease-in-out 0s normal fadeInDown;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.navbar-b.navbar-reduce .nav-link {
  color: #757575;
}
.navbar-b.navbar-reduce .nav-link:hover {
  color: #505050;
}
.navbar-b.navbar-reduce .show > .nav-link,
.navbar-b.navbar-reduce .active > .nav-link,
.navbar-b.navbar-reduce .nav-link.show,
.navbar-b.navbar-reduce .nav-link.active {
  color: #07b2ff;
  background: #efefef;
  border-radius: 3px;
}
.navbar-b.navbar-reduce .navbar-brand {
  color: #333;
}
.navbar-b.navbar-reduce .navbar-toggler span {
  background-color: #1b1b1b;
}
.navbar-b .navbar-brand {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}
.navbar-b .navbar-nav .dropdown-item.show .dropdown-menu,
.navbar-b .dropdown.show .dropdown-menu,
.navbar-b .dropdown-btn.show .dropdown-menu {
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  visibility: visible !important;
}
.navbar-b .dropdown-menu {
  margin: 1.12rem 0 0;
  border-radius: 0;
}
.navbar-b .dropdown-menu .dropdown-item {
  padding: 0.7rem 1.7rem;
  transition: all 500ms ease;
}
.navbar-b .dropdown-menu .dropdown-item:hover {
  background-color: #07b2ff;
  color: #fff;
  transition: all 500ms ease;
}
.navbar-b .dropdown-menu .dropdown-item.active {
  background-color: #07b2ff;
}
.navbar-toggler {
  position: relative;
}
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: 0;
  box-shadow: none;
}
.navbar-toggler span {
  display: block;
  background-color: #fff;
  height: 3px;
  width: 25px;
  margin-top: 4px;
  margin-bottom: 4px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  left: 0;
  opacity: 1;
}
.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
  position: absolute;
  left: 12px;
  top: 10px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  opacity: 0.9;
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  height: 12px;
  visibility: hidden;
  background-color: transparent;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
  position: absolute;
  left: 12px;
  top: 10px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  opacity: 0.9;
}
.navbar-b .black-logo {
  display: none;
}
.navbar-b.navbar-reduce .navbar-brand .white-logo {
  display: none;
}
.navbar-b.navbar-reduce .navbar-brand .black-logo {
  display: block;
}
.navbar-area {
  position: absolute;
  z-index: 999;
  left: 0;
  width: 100%;
  height: auto;
  background-color: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  background: #023e72 !important;
  -webkit-animation: 500ms ease-in-out 0s normal fadeInDown;
  animation: 500ms ease-in-out 0s normal fadeInDown;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.navbar-area.is-sticky .navbar-nav .nav-item a {
  color: #505050;
}

/*
.navbar-area.is-sticky .navbar-nav .nav-item a:hover,
.navbar-area.is-sticky .navbar-nav .nav-item a:focus,
.navbar-area.is-sticky .navbar-nav .nav-item a.active {
	color: #07b2ff;
	background: #efefef;
    border-radius: 3px;
}
*/

.navbar-area.is-sticky .navbar-brand .white-logo {
  display: none;
}

.navbar-area.is-sticky .navbar-brand .black-logo {
  display: block;
}
/*
.navbar-area.is-sticky .navbar-toggler span {
    display: block;
    background-color: #333;
    height: 3px;
    width: 25px;
    margin-top: 4px;
    margin-bottom: 4px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    left: 0;
    opacity: 1;
}
*/

/**************************************
 * 04.Home Section Css
 **************************************/
.home-area {
  position: relative;
  z-index: 1;
  height: 750px;
  min-height: 100vh;
  background: url(../img/hero-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 170px;
  padding-bottom: 50px;
}
.home-area::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  background-color: #080426;
}

#particles-js {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}

.hero-equal-height {
  position: relative;
  width: 100%;
  height: 750px;
  min-height: 100vh;
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.home-area .home-content {
  padding-top: 0px;
  text-align: center;
}
.home-area .home-content h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.home-area .home-content h1 {
  color: #ffffff;
  font-size: 55px;
  font-weight: 700;
  margin: 18px 0;
}
.home-area .home-content p {
  font-size: 15px;
  color: #ffffff;
}
.home-button-box {
  margin-top: 8px;
}

.button-two.home-btn-1 {
  margin-right: 15px;
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  position: absolute;
  white-space: nowrap;
  top: 0;
  left: 0;
  display: inline-block;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.cd-headline.clip span {
  display: inline-block;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
}

.cd-headline.clip .cd-words-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #fff;
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline.clip b.is-visible {
  opacity: 1;
}

.home-social-icon {
  margin-top: 20px;
}
.home-social-icon li {
  display: inline-block;
  margin-right: 10px;
}
.home-social-icon li a {
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  border-radius: 12px;
  background-color: rgb(255, 255, 255, 0.05);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.home-social-icon li a:hover {
  color: #07b2ff;
  background: #fff;
}

/**************************************
 * 05.About Section Css
 **************************************/
.about-area {
  position: relative;
  z-index: 1;
  display: block;
  padding: 100px 0;
}

.about-image {
  position: relative;
  padding-right: 30px;
  margin-right: 10px;
  margin-bottom: 50px;
}

.about-image:after {
  content: "";
  position: absolute;
  top: 30px;
  right: 0px;
  z-index: -1;
  width: calc(100% - 40px);
  height: 100%;
  border-radius: 3px;
  background: #0b162e;
}

.about-image img {
  border-radius: 3px;
  box-shadow: 5px 0 35px rgb(70, 61, 110, 0.1);
}

.about-content {
  padding-right: 0px;
}
.about-content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.about-content p {
  margin-bottom: 15px;
}
.about-cantact-info {
  margin-top: 20px;
}

.about-cv-info p {
  margin-bottom: 10px;
}
.about-cv-info p:last-child {
  margin-bottom: 0px;
}
.about-cv-info p strong {
  width: 30%;
  display: inline-block;
}

/**************************************
 * 06.Service Section Css
 **************************************/
.single-services-item {
  position: relative;
  padding: 45px 30px;
  text-align: center;
  border-radius: 5px;
  margin-top: 30px;
  overflow: hidden;
  background-color: #0b162e;
  transition: all 0.4s ease 0s;
}

.single-services-item:before {
  position: absolute;
  content: "";
  left: 0px;
  right: 0px;
  bottom: 0;
  min-width: 100%;
  border-bottom: 2px solid #07b2ff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transform: scaleX(0);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-services-item:hover:before {
  transform: scaleX(1);
}

.services-icon {
  text-align: center;
  margin-bottom: 20px;
}
.services-icon i {
  font-size: 40px;
  color: #ffffff;
  transition: all 0.6s;
}
.single-services-item:hover .services-icon i {
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(380deg);
}
.services-info h6 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: capitalize;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.services-info p {
  color: #ffffff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

/**************************************
 * 07.Counter Section Css
 **************************************/
.counter-area {
  position: relative;
  z-index: 1;
  text-align: center;
  background: url(../img/banner-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.counter-area::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  left: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  opacity: 0.7;
  background: #0a0a26;
}
.counter-area .section-title h5 {
  color: #ffffff;
}
.counter-area .section-title h2 {
  color: #fff;
}
.counter-contents h2 {
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 5px;
  word-spacing: -10px;
}
.counter-contents h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

/**************************************
 * 07.Resume Section Style
 *************************************/

.eduction-container {
  margin-bottom: 100px;
}
.bg-base-color {
  background-color: #07b2ff;
}
.timeline {
  padding: 30px 30px 40px 30px;
  border-radius: 3px;
  background-color: #0b162e;
  margin-bottom: 30px;
}

.timeline-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.timeline-item .icon {
  position: relative;
}

.timeline-item .icon:after {
  position: absolute;
  content: "";
  left: auto;
  top: auto;
  width: 8px;
  height: 8px;
  background-color: #07b2ff;
  border-radius: 50%;
  margin-top: 10px;
  margin-left: -3px;
}

.timeline-item .icon:before {
  position: absolute;
  content: "";
  left: auto;
  top: auto;
  width: 1px;
  height: calc(100% - 30px);
  background-color: #07b2ff;
  margin-top: 30px;
}

.timeline-item .box {
  padding-left: 50px;
  margin-bottom: 50px;
}

.timeline-item .box h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-item .box small {
  color: #ffffff;
  padding: 7px 18px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.5px;
  border-radius: 3px;
}

.timeline-item .box p {
  margin-top: 15px;
  margin-bottom: 0;
}

.timeline-item:last-child .box {
  margin-bottom: 0px;
}

/*  Skills  */
.skill-item {
  margin-bottom: 30px;
}

.skill-item h6 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.skill-item .skill-progress {
  background-color: #eee;
  border-radius: 20px;
}

.skill-item .skill-progress-bar {
  width: 0;
  height: 4px;
  position: relative;
  border-radius: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.skill-item .skill-progress-bar span {
  position: absolute;
  right: 0;
  top: -24px;
  font-size: 13px;
  font-weight: 500;
}
/**************************************
 * 08.Portfolio Section Css
 **************************************/
.project-area {
  position: relative;
}

.project-area .project-list {
  text-align: center;
  margin-bottom: 20px;
}

.project-area .project-list .nav {
  display: inline-block;
  margin: 0;
  position: relative;
}

.project-area .project-list .nav li {
  display: inline-block;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 5px;
  padding: 12px 30px;
  background-color: #fff;
  cursor: pointer;
  border-radius: 3px;
  -webkit-box-shadow: 0px 5px 30px 0px rgba(148, 146, 245, 0.15);
  box-shadow: 0px 5px 30px 0px rgba(148, 146, 245, 0.15);
  transition: all 0.4s ease 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.project-area .project-list .nav li:hover,
.project-area .project-list .nav li.filter-active {
  color: #fff;
  background-color: #07b2ff;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.project-area .project-container {
  display: inline-block;
  width: 100%;
}

.project-area .project-grid-item {
  overflow: hidden;
}

.project-grid-item img {
  width: 100%;
}

.project-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 3px;
  margin-top: 30px;
}

.project-item .project-img-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: transparent;
}

.project-item .project-img-overlay:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  z-index: -1;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.project-item:hover .project-img-overlay:after {
  height: 100%;
}

.project-item .project-img-overlay .project-content .info {
  position: absolute;
  left: 5%;
  bottom: 5%;
  overflow: hidden;
}
.project-item .project-img-overlay .project-content .info p {
  color: #07b2ff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.project-item .project-img-overlay .project-content .info h6 {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.project-item .project-img-overlay .project-content .icon {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid #07b2ff;
  text-align: center;
  font-size: 18px;
  color: #07b2ff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  opacity: 0;
  visibility: hidden;
}
.project-item:hover .project-img-overlay .project-content .icon {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.project-item:hover .project-img-overlay .project-content .info p,
.project-item:hover .project-img-overlay .project-content .info h6 {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.project-more-btn {
  margin-top: 30px;
}

/**************************************
 * 09.Team Section Css
 **************************************/
.team-area {
}

.team-area .section-title {
  margin-bottom: 35px;
}
.single-team-box {
  margin-top: 30px;
  border-radius: 3px;
  overflow: hidden;
  -webkit-box-shadow: 0px 5px 30px 0px rgba(148, 146, 245, 0.15);
  box-shadow: 0px 5px 30px 0px rgba(148, 146, 245, 0.15);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.team-image {
  position: relative;
  z-index: 1;
}
.single-team-box .team-image img {
  width: 100%;
  height: auto;
}
.team-info {
  padding: 20px 15px 30px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.team-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.team-info span {
  color: #07b2ff;
  font-size: 14px;
  font-weight: 600;
  display: block;
}
.team-social-icon {
  display: block;
  margin-top: 15px;
}
.single-team-box .team-social-icon a {
  position: relative;
  z-index: 1;
  color: inherit;
  font-size: 18px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin: 0 5px;
  display: inline-block;
  vertical-align: middle;
  background: transparent;
}
.single-team-box .team-social-icon a:after {
  top: 0px;
  left: 0px;
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -o-transform: scale(1.4);
  transform: scale(1.4);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  background: inherit;
  border-radius: inherit;
}
.single-team-box .team-social-icon a:hover:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.single-team-box .team-social-icon a:hover i:before {
  color: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.social-color-1:hover:after {
  background-color: #3b5998 !important;
}
.social-color-2:hover:after {
  background-color: #00acee !important;
}
.social-color-3:hover:after {
  background-color: #0e76a8 !important;
}
.social-color-1 {
  color: #3b5998 !important;
  background-color: transparent;
  border: 1px dashed #3b5998;
}
.social-color-2 {
  color: #00acee !important;
  background-color: transparent;
  border: 1px dashed #00acee;
}
.social-color-3 {
  color: #0e76a8 !important;
  background-color: transparent;
  border: 1px dashed #0e76a8;
}
.mt-70 {
  margin-top: 70px !important;
}

/**************************************
 * 10.Testimonial Section Css
 **************************************/
.testimonial-area {
  background: url(../img/review-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-gradient-area .section-title h2 {
  font-weight: 700;
  color: #fff;
}
.single-testimonial {
  position: relative;
  background-color: transparent;
  padding: 12px 40px;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}
.rating-box ul li {
  display: inline-block;
}
.rating-box ul li i {
  color: #ffce39;
  font-size: 20px;
}
.testimonial-content {
  margin-top: 15px;
  margin-bottom: 25px;
}
.testimonial-content p {
  font-size: 16px;
  color: #ccc;
  font-style: italic;
  line-height: 1.8;
  letter-spacing: 1px;
}
.single-testimonial .testimonial-bio .avatar img {
  width: 100px;
  padding: 3px;
  border-radius: 50%;
  border: 5px solid #ffffff;
  border-left-color: #07b2ff;
  border-bottom-color: #07b2ff;
  margin: 0 auto;
}
.single-testimonial .testimonial-bio .bio-info {
  text-align: center;
  margin-top: 15px;
}
.single-testimonial .testimonial-bio .bio-info .name {
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 2px;
}
.single-testimonial .testimonial-bio .bio-info span {
  color: #f1f1f1;
  font-size: 15px;
  font-weight: 600;
  display: block;
}
.testimonial-area .owl-theme .owl-nav.disabled + .owl-dots {
  position: unset;
  right: 0;
  top: 50%;
  transform: none;
  margin-top: 20px;
}
.testimonial-area .owl-theme .owl-dots .owl-dot span {
  background-color: #ddd;
}
.slider-bg-grey .owl-theme .owl-dots .owl-dot span {
  background-color: #cacaca;
}

/**************************************
 * 11.Faq Section Css
 **************************************/
.faq-area {
  background: #fff;
}
.faq-area .faq-item .accordion .accordion-item {
  margin-bottom: 20px;
}
.faq-area .faq-item .accordion .accordion-item:last-child {
  margin-bottom: 0px;
}
.faq-area .faq-item .accordion .title {
  padding: 15px 12px;
  background-color: #f5f5fa;
  border-radius: 5px;
  cursor: pointer;
  border-left: 3px solid #07b2ff;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-bottom: 1px solid #dadada;
}
.faq-area .faq-item .accordion .title:after {
  content: "\f067";
  font-family: "FontAwesome";
  font-weight: 400;
  font-size: 12px;
  position: absolute;
  right: 10px;
  color: #333;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.faq-area .faq-item .accordion .title h6 {
  font-size: 16px;
  font-weight: 700;
  padding-right: 20px;
}
.faq-area .faq-item .accordion .title h6 span {
  color: #333;
}
.faq-area .faq-item .accordion .active .title h6 span {
  color: #fff;
}
.faq-area .faq-item .accordion .accordion-info {
  display: none;
  padding: 20px 15px;
  margin-top: 10px;
  margin-left: 0;
  background: transparent;
  border-radius: 0;
}
.faq-area .faq-item .accordion .accordion-info p {
  font-size: 14px;
}
.faq-area .faq-item .accordion .active {
  display: block;
}
.faq-area .faq-item .accordion .active .title {
  color: #fff;
  background: #07b2ff;
}
.faq-area .faq-item .accordion .active .title:after {
  content: "\f068";
  color: #fff;
}
.faq-area .faq-item .accordion .active .title h6 {
  color: #fff;
}

/**************************************
 * 12. Hire Section Css
 **************************************/
.hire-area {
  position: relative;
  z-index: 1;
  text-align: center;
  background-image: url(../img/banner-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hire-area::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  left: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  opacity: 0.6;
  background: #0a0a26;
}
.hire-container {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
}
.hire-content h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.hire-content h2 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  text-transform: capitalize;
}
.hire-content .button {
  color: #fff;
}

/**************************************
 * 13. Blog Section Css
 **************************************/
.blog-area {
  text-align: center;
}
.blog-area .section-title {
  text-align: center;
  margin-bottom: 35px;
}
.blog-area .single-blog {
  position: relative;
  background: #0b162e;
  border-radius: 5px;
  margin-top: 30px;
  overflow: hidden;
}
.blog-area .post-img {
  position: relative;
  overflow: hidden;
}
.blog-area .single-blog img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.blog-area .single-blog:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: rotate(3deg) scale(1.1, 1.1);
  -ms-transform: rotate(3deg) scale(1.1, 1.1);
  transform: rotate(3deg) scale(1.1, 1.1);
}
.single-blog .blog-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  background: #07b2ff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  z-index: 2;
  text-transform: uppercase;
}
.single-blog .blog-tag a {
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  font-weight: 700;
  display: block;
}
.blog-area .single-blog .blog-text {
  padding: 30px 25px;
  text-align: left;
}
.blog-category {
  margin-bottom: 15px;
}
.blog-area .single-blog .blog-type {
  font-weight: 700;
  color: #07b2ff;
  font-size: 14px;
  display: inline-block;
}
.blog-area .single-blog .blog-type:hover {
  color: #07b2ff;
  text-decoration: underline !important;
}
.blog-area .single-blog .blog-text h5 a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}
.blog-area .single-blog .blog-text p {
  color: #fff;
}
.blog-area .single-blog .blog-text h5 a:hover {
  color: #07b2ff;
  text-decoration: underline !important;
}
.blog-bottom-text-link {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.blog-bottom-text-link span {
  font-size: 14px;
  color: #07b2ff;
  font-weight: 700;
}
.single-blog .blog-text .blog-bottom-text-link a {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  display: block;
}
.single-blog .blog-text .blog-bottom-text-link a:hover {
  color: #07b2ff;
  text-decoration: underline !important;
}
.blog-more-btn {
  text-align: center;
  margin-top: 20px;
}

/**************************************
 * 14.Partner Logo Section Css
 **************************************/
.partner-area .section-title {
  margin-bottom: 60px;
}
.partner-single-item {
  background: #ffffff;
  padding: 5px 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0.3em 1em -0.125em rgba(10, 10, 10, 0.1),
    0 0 0 1px rgba(10, 10, 10, 0.02);
  box-shadow: 0 0.3em 1em -0.125em rgba(10, 10, 10, 0.1),
    0 0 0 1px rgba(10, 10, 10, 0.02);
  margin: 15px 15px;
}
.partner-single-item img {
  margin: 0 auto;
}

/**************************************
 * 15. Contact Section Css
 **************************************/
.contact-area {
  background: url(../img/contact-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-info {
  padding-left: 15px;
  margin-top: 20px;
}
.contact-info ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.contact-info ul li {
  color: #4b5669;
  padding: 30px 30px;
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0px 5px 30px 0px rgba(148, 146, 245, 0.15);
  box-shadow: 0px 5px 30px 0px rgba(148, 146, 245, 0.15);
}
.contact-info ul li h6 {
  display: block;
  margin-bottom: 3px;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
}
.contact-info ul li p {
  color: #4b5669;
  font-weight: 400;
}
.contact-info ul li a {
  color: #4b5669;
  display: block;
  text-decoration: underline !important;
}
.contact-area .form input,
.contact-area .form textarea {
  width: 100%;
  height: 55px;
  padding: 12px 20px;
  font-weight: 500;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid #07b2ff;
  border-left: 3px solid #07b2ff;
}
.contact-area .form textarea {
  max-height: 120px;
  max-width: 100%;
  height: auto;
}
#contact-form .button {
  margin: 0;
}
.form-group {
  margin-bottom: 25px;
}

::placeholder {
  color: #ffffff;
}
::-ms-input-placeholder {
  color: #ffffff;
}

button,
input,
textarea {
  color: #ffffff;
}
button,
input,
textarea:focus {
  border: none;
  outline: none;
}
.contact-area .form-message.success {
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  display: block;
  background-color: #03b103;
  margin-bottom: 35px;
}
.contact-area .form-message.error {
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  display: block;
  background-color: #ff4d15;
  margin-bottom: 35px;
}
/*******************************
 ** - 25 - Map Section CSS
 *******************************/
.map-section {
  margin-bottom: -10px;
}

.map-section .google-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
}
/**************************************
 * 16.Footer Section Css
 **************************************/
.footer-area {
  padding: 30px 0;
}
.footer-copyright-text p {
  color: #fff;
}

/*************************************
* Left Position
**************************************/
.left.logo {
}
