/*
------------------

Project:        Intelart - Personal Portfolio HTML5 Template
Version:        1.0
Last change:    20/04/2020
Primary use:    Business Agency. 
Author:         Ingenious_team
------------------

----------------
Table of Content
----------------

1.  preloader
2.  Header Part

    2.1. nav part
    2.2. banner part

3.  About us Part
4.  Services Part
5.  Portfolio Part
6.  Pricing part
7.  Testimonial Part
8. Contact part
9. Footer part

---- other pages ----

10. About me page
11. Portfolio page
12. Home Recovery page
12. Newsletter popup

*/
html {

}

@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,500,600,700|Lato:400,500,600,700');
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

a:focus,
a:hover {
    text-decoration: none;
    border-color: transparent;
    outline: 0;
    color: transparent;
}

img {
    border: 0;
}

.clr {
    clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
p,
address,
strong,
i {
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: normal;
}

body {
    overflow-x: hidden;
}

/* ============================
            common 
========================= */

.pr0 {
    padding-right: 0;
}

.pl0 {
    padding-left: 0;
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.mt0 {
    margin-top: 0 !important;
}

img {
    max-width: 100%
}

.section {
    padding-top: 70px;
}

@media (max-width:991px) {
    .section {
        padding: 60px 0
    }
}

@media (max-width:767px) {
    .section {
        padding: 60px 0
    }
}

.btn {
  color: #fff !important;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    transition: ease all .3s;
    font-family: 'Ubuntu', sans-serif;
    padding: 8px 19px;
    background: #364f6b;
    border-radius: 50px;
    margin-top: 50px;
    transition: ease-in-out all .4s;
    cursor: pointer;
}
.btn:hover {
  text-decoration: none;
    -webkit-box-shadow: 0px 0px 80px 4px rgba(7, 19, 68, .3);
    -moz-box-shadow: 0px 0px 80px 4px rgba(7, 19, 68, .3);
    -o-box-shadow: 0px 0px 80px 4px rgba(7, 19,68, .3);
}
.btn-4 {
  overflow: hidden;
  position: relative;
}
.btn-4 span {
  z-index: 20;
}
.btn-4:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 8;
}

.btn-4:hover:after {
  left: 120%;
  transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1);
}
.heading {
    font-size: 36px;
    position: relative;
    color: #364f6b;
    font-family: 'Ubuntu', sans-serif;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: capitalize;
    z-index: 0;
}
.font-para p{
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    color: #444444;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}



/* ===============================
        Header Part css
==================================*/

.other-nav {
    background: #364f6b;
    border-bottom: 1px solid #5F7183;
}

.navbar {
     position: fixed;
    width: 100%;
    padding-top: 13px;
    padding-bottom: 11px;
    transition: all linear .3s;
}

.navcss {
    background: #364f6b;
    box-shadow: 0 0px 5px 0px rgba(0, 0, 0, .2);
    box-shadow: 0px 0px 30px 4px rgba(249, 220, 4, .2);
    -webkit-box-shadow: 0px 0px 30px 4px rgba(249, 220, 4, .2);
    -moz-box-shadow: 0px 0px 30px 4px rgba(249, 220, 4, .2);
    -o-box-shadow: 0px 0px 30px 4px rgba(249, 220, 4, .2);
}

.header-nav .navbar-brand {
    color: #fff;
    font-weight: 800;
    position: relative;
    font-size: 23px
}

.header-nav .navbar-brand span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    bottom: 12px;
    right: -9px;
    float: left
}

.header-nav .navbar-nav > li {
    margin: 0 0 0 25px;
}

.header-nav .navbar-nav .nav-item {
    position: relative;
}

.header-nav .navbar-nav .nav-item a {
    position: relative;
    padding: 0;
    display: inline-block;
    font-size: 18px;
    vertical-align: top;
    color: #ffffff;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Ubuntu', sans-serif;
     -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}
.header-nav .navbar-nav .active a,
.header-nav .navbar-nav .nav-item:hover a{
    color: #CBB26A;
}

.header-nav .navbar-nav .nav-item:before {
   content: '';
    position: absolute;
    z-index: -1;
    width: 104%;
    left: -1px;
    bottom: -25px;
    height: 4px;
    opacity: 0;
    background: #CBB26A;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.header-nav .navbar-nav .active:before,
.header-nav .navbar-nav .nav-item:hover:before {
   opacity: 1;
}

.navbar-toggler {
    border: none;
    padding: 10px 6px;
    outline: 0 !important;
}

.navbar-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: #CBB26A;
}

.navbar-toggler span + span {
    margin-top: 4px;
    width: 18px;
}

.navbar-toggler span + span + span {
    width: 10px;
}

.dropdown-toggle::after {
    margin-left: -1px !important;
    vertical-align: .05em !important;
}

.custom_nav ul > li > a:focus:after,
.custom_nav ul > li.active > a:after,
.custom_nav ul > li:hover > a:after {
    opacity: 1;
}

/* dropdown menu */

.dropdown-menu {
    background: #fff;
    min-width: 210px;
    box-shadow: 0 2px 3px 0px rgba(0, 0, 0, .2);
    border-radius: 0;
    border: 3px solid #00bef1;
    border-bottom: none;
    border-left: none;
    border-right: none;
    margin-top: 35px;
    transition: all .6s;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    -ms-transition: all .6s;


}

.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
    background: none;
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
    background: none;
    color: #00bef1 !important;
    font-weight: 600;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
}

.dropdown-menu > li > a {
    color: #222 !important;
    font-weight: 500;
    padding: 10px 18px !important;
    text-align: left;
    font-size: 18px !important;
    font-family: "Josefin Sans";
    text-transform: capitalize;
}

/* dropdown menu css */

@media(min-width:768px) {
    .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        top: 110%;

    }
    .custom_nav ul > li:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }
    .navbar-right .dropdown-menu {
        right: 0;
        left: 2px;
        width: 240px;
    }
}

.home-banner {
    position: relative;
    background: #364f6b;
}
.banner-img{
    position: absolute;
    right: 0;
    bottom: 0;
}
.youtube_video {
    position: absolute;
    top: 55%;
    left: 52%;
    transform: translate(-50%, -50%);
}
.banner-vedio img{
    position: relative;
    padding-top: 30%;
     transform: translateY(-8%);
    
}
.home-text-center {
    position: relative;
    margin-top: 70%;
    left: 0;
    transform: translateY(-50%);
}
.home-text-center h1 {
    font-size: 56px;
    color: #CBB26A;
    font-weight: 700;
    padding-bottom: 15px;
}
.home-banner h5 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.home-banner p {
    width: 560px;
    max-width: 100%;
    font-weight: 400;
    line-height: 24px;
    font-size: 14px;
    padding: 0 0 35px;
    color: #ffffff;
    margin: 0
}

.home-text-center ul {
    margin-bottom: 6%;
}

.home-text-center ul li {
    display: inline-block;
    margin-right: 6px;
}

.home-text-center ul li a {
    text-align: center;
    border: 1px solid #ffffff;
    float: left;
    color: #333333;
    background: #ffffff;
    font-size: 18px;
    width: 36px;
    height: 36px;
    line-height: 34px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.home-text-center ul li a:hover {
    color: #fff;
    background: #ffcc66;
    border: 1px solid #ffcc66;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -o-transition: all .4s linear;
    -ms-transition: all .4s linear;
    box-shadow: 0px 0px 10px 4px rgba(249, 220, 4, .2);
    -webkit-box-shadow: 0px 0px 10px 4px rgba(249, 220, 4, .2);
    -moz-box-shadow: 0px 0px 10px 4px rgba(249, 220, 4, .2);
    -o-box-shadow: 0px 0px 10px 4px rgba(249, 220, 4, .2);
}


/* ===========================================================
               About us Part
===============================================================*/

.aboutus {
    position: relative;
    padding-bottom: 80px;
     padding-top: 100px;
}
.about-picture{
    position: relative;
    box-shadow: 0px 0px 80px 4px rgba(7, 19, 68, .3);
    -webkit-box-shadow: 0px 0px 80px 4px rgba(7, 19, 68, .3);
    -moz-box-shadow: 0px 0px 80px 4px rgba(7, 19, 68, .3);
    -o-box-shadow: 0px 0px 80px 4px rgba(7, 19,68, .3);
/*   animation: shake 3s infinite;*/
  animation-direction: alternate;
}
.about-picture:before{
    content: '';
position: absolute;
z-index: -1;
width: 106%;
height: 105%;
border: 1px solid #364f6b;
top: -11px;
left: -13px;
animation: pulse 1.5s infinite;
}
.about-heading{
    margin-top: 20px;
}

/* ==============================
      Skill section css
=================================*/

#my-skill {
    background: #F1F1F1;
    padding-bottom: 30px;
}
/*  progress bar  */
.skills {
  width: inherit;
  position: relative;
  float: left;
  padding: 30px 0;
}

.skills ul {
  padding-top: 50px;
}
.skills ul > li {
  margin-bottom: 55px;
  background: #ccc;
  height: 12px;
}
.skills ul > li em {
  font-size: 16px;
    color: #364f6b;
    font-family: "Ubuntu";
    font-weight: 600;
    font-style: normal;
    margin: 8px 0;
  position: relative;
  top: -30px;
}
.skills ul > li span {
  height: 12px;
  background: #364f6b;
  position: absolute;
  box-shadow: 0px 0px 80px 4px rgba(7, 19, 68, .3);
    -webkit-box-shadow: 0px 0px 80px 4px rgba(7, 19, 68, .3);
    -moz-box-shadow: 0px 0px 80px 4px rgba(7, 19, 68, .3);
    -o-box-shadow: 0px 0px 80px 4px rgba(7, 19,68, .3);
    -webkit-clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);   
}

.html5 {
  width: 70%;
  animation: html5 2s ease-out;
}
.css3 {
  width: 90%;
  animation: css3 2s ease-out;
}
.jquery {
  width: 50%;
  animation: jquery 2s ease-out;
}
.photoshop {
  width: 60%;
  animation: photoshop 2s ease-out;
}
@keyframes html5 {
  0% {
    width: 0px;
  }
  100% {
    width: 70%;
  }
}
@keyframes css3 {
  0% {
    width: 0px;
  }
  100% {
    width: 90%;
  }
}
@keyframes jquery {
  0% {
    width: 0px;
  }
  100% {
    width: 50%;
  }
}
@keyframes photoshop {
  0% {
    width: 0px;
  }
  100% {
    width: 60%;
  }
}
/* ------  counter  ------------ */
.counter-shape {
    position: relative;
}

.counter-shape:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width:2px;
    height: 360px;
    background: #364f6b;
    z-index: 1;
}
.counter-shape:before {
    content: '';
    position: absolute;
    left: 3%;
    top: 46%;
    width:540px;
    height: 2px;
    background: #364f6b;
    z-index: 1;
}
.counter-pad{
    margin-bottom: 30px;
}
.counter-text{
    background: #364f6b;
    color: #fff;
    padding: 30px;
}

.counter-text h3 {
    font-size: 24px;
    font-family: "Ubuntu";
    font-weight: 700;
    margin: 8px 0;
}
.counter-text h4 {
    font-size: 18px;
    font-family: "Ubuntu";
    font-weight: 600;
    text-transform: capitalize;
}

.counter-text i{
    font-size:  40px;
    font-weight: 700;
    color: #354b7a;
}
/* ==============================
      service section Start
=================================*/
#service{
    margin-bottom: 60px;
}
.service-text{
    position: relative;
    background: #f1f1f1;
    padding: 20px 15px;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -o-transition: all .4s linear;
    -ms-transition: all .4s linear;
}
.service-text:before{
    content: '';
    position: absolute;
    z-index: -1;
    width: 106%;
    height: 108%;
    border: 1px solid #364f6b;
    top: -8px;
    left: -9px;
    opacity: 0;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -o-transition: all .4s linear;
    -ms-transition: all .4s linear;
}
.service-text img{
    height: 40px;
}
.service-text h3{
    font-size: 18px;
    font-family: "Ubuntu";
    font-weight: 600;
    text-transform: capitalize;
    color:#364f6b;
    line-height:24px;
    margin: 12px 0;
}
.service-text p{
    font-size: 14px;
    font-family: "Lato";
    font-weight: 400;
    line-height:25px;
    color: #444444;
}
.service-text:hover{
    box-shadow: 0px 3px 19px 4px rgba(7, 19, 68, .2);
    -webkit-box-shadow: 0px 3px 19px 4px rgba(7, 19, 68, .2);
    -moz-box-shadow: 0px 3px 19px 4px rgba(7, 19, 68, .2);
    -o-box-shadow: 0px 3px 19px 4px rgba(7, 19, 68, .2);
}
.service-text:hover:before {
   opacity: 1;
     transition-delay: 0.2s;
}
/* ==============================
      service section End
=================================*/

/* ==============================
        Portfolio Part
   ============================== */
#portfolio{
    background: #f1f1f1; 
    padding-bottom: 40px;
}
#portfolio .heading{
    margin-bottom: 30px;
}
#portfolio-page{
    padding-bottom: 40px;
}
#portfolio-page .portfolio_fillter{
    padding-bottom: 30px;
}
.portfolio_fillter ul.filter .mixitup-control-active,
.portfolio_fillter ul.filter .active,
.portfolio_fillter ul.filter > li:hover,
ul.filter > li > a:focus {
    text-decoration: none;
    color: #364f6b !important;
    outline: none;
}

.filter-section .filter-container .filter > li {
    cursor: pointer !important;
    padding: 0 12px;
    font-size: 18px;
    font-family: "Ubuntu";
    line-height: 24px;
    font-weight: 600;
    display: inline-flex;
    color: #999;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -o-transition: all .4s linear;
    -ms-transition: all .4s linear;
}

.port-1 {
    margin-bottom: 28px;
}

.mix,
.gap {
    display: inline-block;
}
.portfolio_img-1,
.portfolio_img {
    position: relative;
    width: 100%;
}
.portfolio_img-1:hover .overlay,
.portfolio_img:hover .overlay {
    bottom: 0;
    height: 100%;
   
}
.portfolio_img-1:hover,
.portfolio_img:hover{
     transform: scale(1.02);
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -o-transition: all .4s linear;
    -ms-transition: all .4s linear;
   box-shadow: 0px 3px 19px 4px rgba(7, 19, 68, .3);
    -webkit-box-shadow: 0px 3px 19px 4px rgba(7, 19, 68, .3);
    -moz-box-shadow: 0px 3px 19px 4px rgba(7, 19, 68, .3);
    -o-box-shadow: 0px 3px 19px 4px rgba(7, 19, 68, .3);
    z-index: 999;
}
.portfolio_img-1::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 106%;
    height: 106%;
    border: 2px solid #364f6b;
    top: -12px;
    left: -12px;
    opacity: 0;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
        transition-delay: 0s;
    -o-transition: all .4s linear;
    -ms-transition: all .4s linear;
}
.portfolio_img-1:hover:after{
    opacity: 1;
    transition-delay: 0.2s;
}
.portfolio_img::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 106%;
    height: 106%;
    border: 2px solid #364f6b;
    top: -8px;
    left: -8px;
    opacity: 0;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
        transition-delay: 0s;
    -o-transition: all .4s linear;
    -ms-transition: all .4s linear;
}
.portfolio_img-1:hover:after{
    opacity: 1;
    transition-delay: 0.2s;
}
.portfolio_img:hover:after{
    opacity: 1;
    transition-delay: 0.2s;
}
.overlay_shape i {
    position: absolute;
    font-size: 20px;
    color: #fff;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 50px;
    height: 50px;
    line-height: 49px;
    border-radius: 50%;
    background: #364f6b;
}

.overlay {
    position: absolute;
    text-align: center;
    bottom: 100%;
    left: 0%;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
}

.overlay-text {
    position: absolute;
    bottom: 10%;
    text-align: center;
    left: 37%;
    transform: translateX(-30%);
}

.overlay-text h3 {
    position: relative;
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 24px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    font-family: "Ubuntu";
}

.overlay-text p {
    position: relative;
    font-size: 16px;
    text-transform: capitalize;
    font-family: "Lato";
    color: #fff;
    width: 220px;
}
.p-r-l{
    padding: 0;
    margin: 20px -3px;
    max-width: 20.1%!important;
}
.p-r-l img {
    width: 100%;
    position: relative;
}
#project_mix {
   overflow: hidden;
}
/*=====================================
       Priing part Start
=======================================*/
.pricing{
    position: relative;
    margin-bottom: 30px;
    margin-top: -30px;
}
.price-text{
    position: relative;
    background: #f1f1f1;
    padding: 65px 20px 30px;
    -webkit-box-shadow: 0px 4px 19px 0px rgba(7, 19, 68, .23);
    -moz-box-shadow: 0px 4px 19px 0px rgba(7, 19, 68, .23);
    -o-box-shadow: 0px 4px 19px 0px rgba(7, 19,68, .23);
    margin: 55px 0;
      z-index: 99;
}
.price-text:after{
    content: '';
    position: absolute;
    z-index: 99;
    border: 1px solid #364f6b;
    border-radius: 50%;
    padding: 70px;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
}
.pricing-right-text{
    margin-top: 50px;
}
.price-text h3 {
    position: relative;
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 24px;
    color: #364f6b;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Ubuntu";
    margin-top: 60px;
}
.price-text h2 {
    position: relative;
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 24px;
    color: #364f6b;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Ubuntu";
}
.price-text h2 span{
    font-size: 14px;
    text-transform: capitalize;
}
.pricing p{
    line-height: 30px!important;
}
.price-text ul li{
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 24px;
    color: #999;
    font-weight: 400;
    text-transform: capitalize;
    font-family: "Lato";
}
.price-text a{
     text-transform: uppercase;
    margin-top: 15px;
    overflow: hidden;
}
.btn1 {
  color: #364f6b !important;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    transition: ease all .3s;
    font-family: 'Ubuntu', sans-serif;
    padding: 10px 24px;
    background: #fff;
    border-radius: 50px;
    transition: ease-in-out all .4s;
    -webkit-box-shadow: 0px 4px 19px 0px rgba(7, 19, 68, .23);
    -moz-box-shadow: 0px 4px 19px 0px rgba(7, 19, 68, .23);
    -o-box-shadow: 0px 4px 19px 0px rgba(7, 19,68, .23);
}
.price-btn{
       margin-top: 40px;
}
.price-btn .btn1:hover{
    color: #fff !important;
    background: #364f6b;
    transition: ease-in-out all .4s;
  text-decoration: none;
}

.slick-slide img {
    display: initial;
}
.price-shape{
    position: relative;
}
.pricing .slick-slide.slick-center:before{
    content: '';
    position: absolute;
    z-index: 999;
    width: 363px;
    height: 518px;
    border: 1px solid #364f6b;
    top: 7%;
    right: 0.6%;
}
.slick-slide.slick-center .price-text{
   background: #fff;
    transform: scale(1.02);
    margin-left: -35px;
      z-index: 999;
}
.slick-slide.slick-center .price-text a{
   cursor: pointer;
}
.slick-slide.price-text{
    background: #f1f1f1;
}
.price_slick{
    margin-right: -12px;
}
/*=====================================
       Priing part End
=======================================*/
/*=====================================
       Testimonial  part css
=======================================*/

.testimonial {
    position: relative;
    background: #f1f1f1;
}
.testimonial .font-para{
    margin-top: 23%;
    transform: translateY(-100%);
}
.testimonial-text{
    background: #fff;
    padding: 20px;
    -webkit-box-shadow: 0px 4px 19px 0px rgba(7, 19, 68, .23);
    -moz-box-shadow: 0px 4px 19px 0px rgba(7, 19, 68, .23);
    -o-box-shadow: 0px 4px 19px 0px rgba(7, 19,68, .23);
    margin-bottom: 10px;
}
.testimonial-shape{
    position: relative;
}
.testimonial-shape:after{
    content: '';
    position: absolute;
    z-index: 99;
    width: 320px;
    height: 416px;
    border: 1px solid #364f6b;
   top: -2%;
left: 1%;
}
.testimonial-text h3 {
    position: relative;
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 24px;
    color: #364f6b;
    font-weight: 600;
    text-transform: capitalize;
    font-family: "Ubuntu";
    margin-top: 30px;
}
.testimonial-text h2 {
    position: relative;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 24px;
    color: #364f6b;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Ubuntu";
}
.testimonial-text ul{
    display: inline-block;
}
.testimonial-text ul li {
    float: left;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 24px;
    color: #364f6b;
}
.testimonial-text p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 24px;
    font-size: 14px;
    color: #999;
    padding-bottom: 30px;
   
}
.slick-slide.slick-center .testimonial-text{
    margin-top: 60px;
}
.slick-slide.slick-center .testimonial-text p{
   display: none;
}
/*=====================================
     Testimonial  part end
=======================================*/
.contact-form {
    margin-top: -90px;
     background: #f1f1f1;
}
.about-contact-form{
      margin-top: -160px;
}
.position {
    background: #fff;
    border: 1px solid #dddddd;
    width: 100%;
    padding: 40px 15px 30px;
    border-radius: 15px;
    border: transparent;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.position {
    transform: translateY(45%);
    z-index: 9;
}

.cont-mess {
    margin-top: 20px;
    margin-bottom: 20px;
    display: contents;
}
.cont-mess .cont-group{
    margin-bottom: 25px;
}
.cont-inline .cont-group .form-control,
.cont-inline .cont-group textarea {
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    border: 1px solid #ccc;
    padding: 5px 10px;
    height: 40px;
    color: #ccc !important;
    font-size: 14px;
    background-color: transparent;
    border-radius: 26px;
    padding-left: 17px;
}

.cont-inline .cont-group textarea {
    height: 100px;
    border-radius: 2px;
    resize: none;
}


::placeholder {
    color: #999 !important;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #999 !important;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #999 !important;
}

.form-control:focus {
    outline: none !important;
    border-color: #719ECE;
    box-shadow: 0 0 10px #ccc;
}
.send_btn {
	margin-top: -4%;
}

#contact {
    background-color: #364f6b;
    position: relative;
    z-index: 0;
    padding-top: 190px;
}

.contact-heading {
    margin-top: 120px;
}

.footer_inner {
    margin-top: 55px;
    margin-bottom: 60px;
    padding: 0 0 0 70px;
}

.footer_inner a {
    text-align: center;
    float: left;
    color: #364f6b;
    font-size: 22px;
    width: 43px;
    height: 43px;
    line-height: 37px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.6s ease;
    display: inline-block;
    background: #fff;
    text-decoration: none;
}
.footer_inner:hover a {
    background: #CBB26A;
    box-shadow: 0px 0px 10px 4px rgba(249, 220, 4, .2);
    -webkit-box-shadow: 0px 0px 10px 4px rgba(249, 220, 4, .2);
    -moz-box-shadow: 0px 0px 10px 4px rgba(249, 220, 4, .2);
    -o-box-shadow: 0px 0px 10px 4px rgba(249, 220, 4, .2);
}

.footer_inner p {
    font-size: 14px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    padding-left: 53px;
}

/*=====================================
 End of contact Part Css
=======================================*/

/*=====================================
 Start of Footer Part Css
=======================================*/

#footer {
    background-color: #364f6b;
    background-position: center center;
    background-size: cover;
    padding: 20px 0;
    border-top: 1px solid #515a7c;
}
.footer-in ul li a{
        text-align: center;
    float: left;
    color: #364f6b;
    font-size: 18px;
    width: 38px;
    height: 38px;
    line-height: 34px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 2px solid transparent;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
    display: inline-block;
    background: #fff;
    text-decoration: none;
    margin-right: 8px;
}
.footer-in ul li a:hover{
    background: #CBB26A;
    box-shadow: 0px 0px 10px 4px rgba(249, 220, 4, .2);
    -webkit-box-shadow: 0px 0px 10px 4px rgba(249, 220, 4, .2);
    -moz-box-shadow: 0px 0px 10px 4px rgba(249, 220, 4, .2);
    -o-box-shadow: 0px 0px 10px 4px rgba(249, 220, 4, .2);
}

.footer-text ul li a{
    float: left;
    margin-left: 20px;
    position: relative;
    padding: 10px 0 0 0;
    font-size: 18px;
    vertical-align: top;
    color: #ffffff;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Ubuntu', sans-serif;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}
.footer-text ul li:hover a{
    color: #CBB26A;
}
.footer-info a{
    font-size: 16px;
    padding: 8px 0;
    color: #364f6b;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}
/*=====================================
 End of Footer Part Css
=======================================*/

/*=====================================
  Start of about Part Css
=======================================*/
.about_Page{
     text-align: center;
}
.about_Page h1{
    font-size: 24px;
    margin-top: 140px;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}
.about_Page ul.breadcrumb {
    padding: 10px 16px;
    font-size: 16px;
    list-style: none;
    background-color: transparent;
    font-family: 'Ubuntu', sans-serif;
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 50px;
}
.about_Page ul.breadcrumb li{
    float: left;
}

.about_Page ul.breadcrumb li p {
    display: inline;
    font-size: 16px;
    color: #CBB26A;
    text-transform: capitalize;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    padding-left: 5px;
}

.about_Page ul.breadcrumb li i {
    color: #fff;
    font-size: 13px;
    margin-left: 5px;
}

.about_Page ul.breadcrumb li + li:before {
    display: none;
}

.about_Page ul.breadcrumb li a p {
    color: #fff;
    text-decoration: none;
}
.about-page-text h5{
    font-size: 24px;
    padding-bottom: 10px;
    color: #222;
    font-family: 'lato', sans-serif;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 20px;
}
.about-page-text p{
     font-size: 14px;
    color: #222;
    font-family: 'lato', sans-serif;
    font-weight: 400;
    line-height: 24px;
}
.about-page-text ul{
    margin-left: 20px;
}
.about-page-text li{
     list-style: circle;
    font-size: 14px;
    color: #222;
    font-family: 'lato', sans-serif;
    font-weight: 400;
    line-height: 36px;
    list-style-type: initial;
    list-style-position: inside;
}
.about-page-img img{
    margin-top: 80px;
}
.portfolio-page{
    padding: 16px;
}
/*=====================================
Download popup Part Start start 
=======================================*/

.modal-content {
    border-radius: 0;
    overflow: hidden;
    margin-top: 15%;
}

.modal-header i {
    position: absolute;
}

.modal-header {
    border-bottom: none;
}

.modal-dialog {
    margin-top: 100px;
    max-width: 1024px!important;
}

.download-close {
    float: right;
    background: #364f6b;
    border-radius: 100%;
    border: 1px solid transparent;
    width: 35px;
    height: 35px;
    z-index: 99999;
    position: absolute;
    right: 4px;
    top: 4px;
}
.download-close i {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 13px 5px 10px;
}
.download-icon {
    margin-left: 59%;
    transform: translateX(-50%);
    margin-top: 30px;
}
.download-close:hover{
    -webkit-box-shadow: 0px 4px 30px 0px rgba(7, 19, 68, .4);
    -moz-box-shadow: 0px 4px 30px 0px rgba(7, 19, 68, .4);
    -o-box-shadow: 0px 4px 30px 0px rgba(7, 19,68, .4);
/*    border-radius: 100%;*/
}
.letter_inner {
    text-align: center;
}

.letter_inner img {
    padding-bottom: 30px;
    margin-top: 20px;
}

.letter_inner h2 {
    font-size: 28px;
    color: #444;
    font-weight: 500;
    font-family: "Ubuntu";
    line-height: 24px;
    margin-bottom: 30px;
}

.letter_inner h4 {
    font-size: 24px;
    color: #3c219b;
    font-weight: 500;
    font-family: "Ubuntu";
    line-height: 24px;
    margin-bottom: 25px;
}

.letter_inner p {
    font-size: 14px;
    color: #444;
    font-family: "Lato";
    font-weight: 400;
    line-height: 24px;
    padding: 0 21%;
}

.letter_inner span {
    text-transform: uppercase;
    color: #3c219b;
}

.download-icon li p {
    color: #222;
    font-size: 15px;
    font-family: sans-serif;
    padding-top: 8px;
}

.download-icon li.active p,
.download-icon li:hover p {
    color: #3c219b;
}

.download-icon li.active,
.download-icon li:hover {
    background: #3c219b;
}

.download-icon li.active i,
.download-icon li:hover i {
    color: #fff;
}
/* newsletter */

.input-group {
	margin-left: 50%;
    transform: translateX(-24%);
    margin-top: 30px;
}

.input-group a {
	text-decoration: none;
}

.input-group input {
	position: relative;
	color: #707070;
	text-transform: capitalize;
	resize: none;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-style: italic;
	border: 1px solid #ddd;
	border-radius: 100px;
	font-size: 14px;
	height: 38px;
	background: #ffffff;
	width: 500px;
	padding-left: 20px;
	font-style: italic;
}

.button {
    padding: 5px 19px;
    transform: translateX(-101%) translateY(-137%);
	-o-transform: translateX(-101%) translateY(-137%);
	-moz-transform: translateX(-101%) translateY(-137%);
	-webkit-transform: translateX(-101%) translateY(-137%);
}


.form-group {
	margin-bottom: 15px !important;
}
.tab-inner-log{
    color: #794fc5;
}
.tab-inner-log:hover{
    color: #e6a2ee;
}
/* === BACK TO TOP CSS == */

#back-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #CBB26A;
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 9999;
}

#back-top-btn i {
    color: #364f6b;
    margin: 0;
    position: relative;
    left: 18px;
    top: 15px;
    font-size: 24px;
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
}

#back-top-btn:hover i {
    color: #fff;
    top: 12px;
}

/* =========== Preloader ============ */
/**** Preloader ****/
.loader-container {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: #364f6b;
}

.loader-container::before,
.loader-container::after {
  position: absolute;
  z-index: 3;
  left: 0;
  width: 100%;
  height: 50%;
  content: "";
}

.loader-container::before {
  top: 0;
  transition: top 1.2s linear 3.1s;
}

.loader-container::after {
  bottom: 0;
  transition: bottom 1.2s linear 3.1s;
}

.loader-container.done::before {
  top: -50%;
  transition: 1s;
}

.loader-container.done::after {
  bottom: -50%;
  transition: 1s;
}

.progress-circle {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 48%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: center;
}
/*

.progress-circle .progress-item {
  line-height: 100px;
  width: 100px;
  height: 100px;
  text-align: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.progress-circle .progress-item::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 54px;
  height: 45px;
  margin-top: -3px;
  margin-left: 0;
  content: "";
  transform-origin: left bottom;
  -webkit-animation: spin 3s linear infinite;
  border-top: solid 10px #ffffff;
  border-right: solid 10px #ffffff;
  border-top-right-radius: 100%;
}

.progress-circle.float .progress-item::before {
  height: 50px;
  margin-top: 0;
  border-top-width: 2px;
}
*/

.progress-circle.float.loader-shadow::before {
  height: 50px;
  margin-top: -40px;
  border-top-width: 2px;
}

.progress-circle.loader-shadow::before,
.progress-circle.loader-shadow::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  content: "";
}

.progress-circle.loader-shadow::before {
  width: 54px;
  height: 45px;
  margin: -43px 0 0 10px;
  transform-origin: left bottom;
  -webkit-animation: spin 3s linear infinite;
  border-top: solid 10px #CBB26A;
  border-right: solid 10px #CBB26A;
  border-top-right-radius: 100%;
}

.progress-circle.loader-shadow::after {
  line-height: 100px;
  width: 100px;
  height: 100px;
  margin: -40px 0 0 -40px;
  transform-origin: center;
  text-align: center;
  color: #CBB26A;
  border: 2px solid #CBB26A;
  border-radius: 50%;
}

.progress-circle.done .progress-item {
  transition: opacity 0.3s linear 3.1s;
  -webkit-animation: done 3.1s;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.progress-circle.done .progress-item::before {
  display: none;
}

.progress-circle.done::before {
  display: none;
}

.progress-circle.done::after {
  transition: opacity 0.15s linear 3.1s;
  -webkit-animation: done 3.1s;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

@-webkit-keyframes done {
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(0.9);
  }
  30% {
    transform: scale(1.07);
  }
  40% {
    transform: scale(0.93);
  }
  50% {
    transform: scale(1.04);
  }
  60% {
    transform: scale(0.97);
  }
  80% {
    transform: scale(1.01);
  }
  90% {
    transform: scale(0.99);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes animate {
    50% {
        -ms-transform: scaleY(0);
        -webkit-transform: scaleY(0);
        transform: scaleY(0)
    }
}

@keyframes animate {
    50% {
        -ms-transform: scaleY(0);
        -webkit-transform: scaleY(0);
        transform: scaleY(0)
    }
}
@keyframes skew {
  0% {
    transform: skewX(20deg);
  }
  100% {
    transform: skewX(-20deg);
  }
}
@keyframes shake {
  0% {
    transform: skewY(2deg);
  }
  100% {
    transform: skewY(-2deg);
  }
}
@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
    }

    80% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 0, 44, 0.4);
        box-shadow: 0 0 0 0 rgba(0, 0, 44, 0.4);
    }

    80% {
        -moz-box-shadow: 0 0 0 10px rgba(0, 0, 44, 0);
        box-shadow: 0 0 0 10px rgba(0, 0, 44, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 0, 44, 0);
        box-shadow: 0 0 0 0 rgba(0, 0, 44, 0);
    }
}