/*------------------------------------------------------------------
[Master SASS Stylesheet]

Project  :  APEZ Template
Version  :  1.1
Author   :  Pepdev
Website  :  www.pepdev.com
-------------------------------------------------------------------*/
/**
* Table of Contents :
* BASIC CSS START
* BOOTSTRAP CSS START
* HEADER CSS START
* HOME PAGE CSS START
* SERVICE CSS START
* PORTFOLIO CSS START
* GRID CSS START
* LIST CSS START
* TEAM CSS START
* ACTION CSS START
* FUNFACTS CSS START
* TESTIMONIAL CSS START
* BLOG CSS START
* FORM CSS START
* CONTACT CSS START
* EVENT CSS START
* FOOTER CSS START
* MEDIA QUERIES START

[Color codes]

Background: #FCFCFC ( Body Color )
Content:    #555 ( Light black )
Content:    #777 ( Lighter black )
Content:    #DDD ( Lighter White )
Content:    #EEE ( Light White )
Header h1:  #333 ( Black )
Header h2:  #555 ( Light Black )
Footer:     $footerColor ( Check 'sass/partials/variable.scss' file )
a (active): $color-primary-0 ( Check 'sass/partials/variable.scss' file)
Primary Color: $color-primary-0 ( Check 'sass/partials/variable.scss' file )
Blue Color = #063176 ( Blue Color )
Green Color = #54C798 ( Green Color )
Orange Color = #EFA752 ( Orange Color )
Purple Color = #A675D4 ( Purple Color )

[Typography]

Body copy:  14px/ font-family: "Poppins", sans-serif;
h1, h2, h3, h4, h5, h6: 36px/ font-family: "Dosis", sans-serif;
Sidebar heading:  font-family: "Dosis", sans-serif;
Input, textarea:  font-family: "Poppins", sans-serif;

-------------------------------------------------------------------*/
/************************************************
[ BASIC CSS START ] *****************************
*************************************************/
/* [ SHORTCODES CSS START ] */
/* [ ELEMENTS CSS START ] */
html {
  height: 100% !important; }

body {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 1.6;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #555;
  background-color: #FFF;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; }

table {
  border-spacing: 0;
  border-collapse: collapse; }

a {
  text-decoration: none;
  color: inherit;
  line-height: 1.6;
  font-weight: 400;
  cursor: pointer; }
  a:hover, a:active {
    text-decoration: none;
    outline: 0;
    color: #063176; }

p,
span {
  line-height: 1.6; }

label {
  line-height: 1.6;
  font-weight: 400;
  margin: 0; }

input,
textarea {
  font-family: "Poppins", sans-serif;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  border: 0; }
  input:focus,
  textarea:focus {
    border: 0;
    outline: 0; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

textarea {
  resize: none; }

button {
  background-color: transparent;
  border: 0; }
  button:active {
    outline: none; }

select {
  border: none;
  outline: none; }
  select:focus {
    border: none;
    outline: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Dosis", "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal; }

h1 {
  font-size: 36px; }

h2 {
  font-size: 30px; }

h3 {
  font-size: 24px; }

h4 {
  font-size: 20px; }

h5 {
  font-size: 16px; }

h6 {
  font-size: 14px; }

blockquote {
  font-family: "Poppins", sans-serif; }
  blockquote::after {
    display: none; }
  blockquote::before {
    display: none; }

.blockquote {
  font-size: 18px;
  padding: .5rem 1rem;
  margin: 0 0 1rem;
  font-style: normal;
  font-family: "Dosis", "Poppins", sans-serif;
  margin-bottom: 1rem;
  color: #555;
  border-left: .25rem solid #eceeef; }

/* [ FONTSIZE CSS START ] */
.font-12 {
  font-size: 12px; }

.font-13 {
  font-size: 13px; }

.font-14 {
  font-size: 14px; }

.font-16 {
  font-size: 16px; }

.font-18 {
  font-size: 18px !important; }

.font-20 {
  font-size: 20px !important; }

.font-24 {
  font-size: 24px !important; }

.font-28 {
  font-size: 28px !important; }

.font-30 {
  font-size: 30px !important; }

.font-32 {
  font-size: 32px !important; }

.font-36 {
  font-size: 36px !important; }

/* [ FONT WEIGHT CSS START ] */
.font-400 {
  font-weight: 400; }

.font-500 {
  font-weight: 500; }

.font-600 {
  font-weight: 600; }

/* [ COLOR CSS START ] */
.text-priamry {
  color: #063176; }

.text-secondary {
  color: #cd0fd8; }

.text-white {
  color: #FFF; }

.text-less-white {
  color: #EEE; }

.text-lesser-white {
  color: #DDD; }

.text-blue {
  color: #32C1CE; }

.text-green {
  color: #54C798; }

.text-orange {
  color: #EfA752; }

.text-red {
  color: #fb9678; }

.text-purple {
  color: #A675D4; }

.text-black {
  color: #333; }

.text-dark {
  color: #555; }

.text-less-dark {
  color: #777; }

.text-lesser-dark {
  color: #999; }

.text-light {
  color: #777; }

/************************************************
[ Common CSS START ] *************************
*************************************************/
/* [ PANEL CSS START ] */
.panel {
  color: #555;
  background: #FFF;
  margin-bottom: 30px;
  box-shadow: 0 0 10px 1px rgba(150, 150, 150, 0.04); }

.panel-head {
  display: table;
  width: 100%;
  margin: 0;
  color: #777;
  padding: 20px 25px 15px 25px;
  border-bottom: 1px solid #DDD; }

.panel-title {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  font-size: 18px;
  font-family: "Dosis", "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 0; }

.panel-head-icon {
  font-size: 20px;
  padding: 0 10px 0 0;
  display: table-cell;
  vertical-align: middle; }

.panel-action {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  font-size: 18px; }

.panel-title-text {
  display: table-cell;
  vertical-align: middle; }

.panel-body {
  padding: 25px; }

.panel-footer {
  border-top: 1px solid #DDD;
  padding: 20px 25px; }

.panel-primary {
  border: 0; }
  .panel-primary .panel-head {
    color: #FFF;
    background-color: #063176; }

.panel-success {
  border: 0; }
  .panel-success .panel-head {
    color: #FFF;
    background-color: #0bc36e; }

.panel-warning {
  border: 0; }
  .panel-warning .panel-head {
    color: #FFF;
    background-color: #fec107; }

.panel-danger {
  border: 0; }
  .panel-danger .panel-head {
    color: #FFF;
    background-color: #fb9678; }

.panel-secondary {
  border: 0; }
  .panel-secondary .panel-head {
    color: #FFF;
    background-color: #cd0fd8; }

.panel-info {
  border: 0; }
  .panel-info .panel-head {
    color: #FFF;
    background-color: #063176; }

.panel-dark {
  border: 0; }
  .panel-dark .panel-head {
    color: #FFF;
    background-color: #555; }

/* [ ALERTS CSS START ] */
.alert {
  font-size: 14px; }

.alert-dismissible .close {
  cursor: pointer;
  padding: .25rem 1.25rem;
  opacity: .8; }

.alert-outline {
  background-color: #FFF; }

.alert-outline-2x {
  border: 2px solid; }

.alert-outline.alert-primary {
  border-color: #063176;
  color: #063176; }

.alert-outline.alert-secondary {
  border-color: #cd0fd8;
  color: #cd0fd8; }

.alert-outline.alert-success {
  border-color: #0bc36e;
  color: #0bc36e; }

.alert-outline.alert-warning {
  border-color: #fec107;
  color: #fec107; }

.alert-outline.alert-danger {
  border-color: #fb9678;
  color: #fb9678; }

.alert-outline.alert-info {
  border-color: #063176;
  color: #063176; }

.alert-outline.alert-dark {
  border-color: #555;
  color: #555; }

.alert-outline.alert-light {
  border-color: #EEE;
  color: #555; }

.alert-primary:not(.alert-outline) {
  color: #FFF;
  background-color: #063176; }

.alert-secondary:not(.alert-outline) {
  color: #FFF;
  background-color: #cd0fd8; }

.alert-success:not(.alert-outline) {
  color: #FFF;
  background-color: #0bc36e; }

.alert-warning:not(.alert-outline) {
  color: #FFF;
  background-color: #fec107; }

.alert-danger:not(.alert-outline) {
  color: #FFF;
  background-color: #fb9678; }

.alert-info:not(.alert-outline) {
  color: #FFF;
  background-color: #063176; }

.alert-dark:not(.alert-outline) {
  color: #FFF;
  background-color: #555; }

.alert-light:not(.alert-outline) {
  color: #555;
  background-color: #EEE; }

.alert-icon {
  display: table;
  padding: 0 25px 0 0; }

.alert--icon, .alert-text, .alert-button {
  display: table-cell;
  vertical-align: middle; }

.alert--icon {
  padding: 20px 24px;
  line-height: 0;
  width: 1%; }
  .alert--icon .fa {
    font-size: 24px; }

.alert-text {
  font-size: 16px; }

.alert-button {
  max-width: 150px; }

/* [ TABS CSS START ] */
.tab-content {
  margin-top: 30px; }

.nav-link {
  padding: 10px 15px;
  margin-left: 2px; }
  .nav-link .fa {
    font-size: 16px; }

.nav.nav-pills .nav-link.active .fa {
  color: #FFF; }

.nav-pills .nav-link.active {
  color: #FFF;
  background: #063176; }
.nav-pills .show > .nav-link {
  color: #FFF;
  background: #063176; }

.nav.nav-pills.nav-pills-primary .nav-link:hover {
  color: #063176; }
.nav.nav-pills.nav-pills-primary .nav-link.active {
  background-color: #063176; }

.nav.nav-pills.nav-pills-success .nav-link:hover {
  color: #0bc36e; }
.nav.nav-pills.nav-pills-success .nav-link.active {
  background-color: #0bc36e; }

.nav.nav-pills.nav-pills-warning .nav-link:hover {
  color: #fec107; }
.nav.nav-pills.nav-pills-warning .nav-link.active {
  background-color: #fec107; }

.nav.nav-pills.nav-pills-danger .nav-link:hover {
  color: #fb9678; }
.nav.nav-pills.nav-pills-danger .nav-link.active {
  background-color: #fb9678; }

.nav.nav-pills.nav-pills-secondary .nav-link:hover {
  color: #cd0fd8; }
.nav.nav-pills.nav-pills-secondary .nav-link.active {
  background-color: #cd0fd8; }

.nav.nav-pills.nav-pills-info .nav-link:hover {
  color: #063176; }
.nav.nav-pills.nav-pills-info .nav-link.active {
  background-color: #063176; }

.nav.nav-pills.nav-pills-dark .nav-link:hover {
  color: #555; }
.nav.nav-pills.nav-pills-dark .nav-link.active {
  background-color: #555; }

.nav-tabs.nav-tabs-line {
  border-bottom: 1px solid #DDD; }
  .nav-tabs.nav-tabs-line .nav-link {
    border: 0; }
  .nav-tabs.nav-tabs-line .nav-link.active, .nav-tabs.nav-tabs-line .show > .nav-link {
    border-bottom: 2px solid #AAA; }

.nav-tabs.nav-tabs-line-primary .nav-link:hover {
  color: #063176; }
.nav-tabs.nav-tabs-line-primary .nav-link.active, .nav-tabs.nav-tabs-line-primary .show > .nav-link {
  color: #063176;
  border-color: #063176; }

.nav-tabs.nav-tabs-line-secondary .nav-link:hover {
  color: #cd0fd8; }
.nav-tabs.nav-tabs-line-secondary .nav-link.active, .nav-tabs.nav-tabs-line-secondary .show > .nav-link {
  color: #cd0fd8;
  border-color: #cd0fd8; }

.nav-tabs.nav-tabs-line-success .nav-link:hover {
  color: #0bc36e; }
.nav-tabs.nav-tabs-line-success .nav-link.active, .nav-tabs.nav-tabs-line-success .show > .nav-link {
  color: #0bc36e;
  border-color: #0bc36e; }

.nav-tabs.nav-tabs-line-warning .nav-link:hover {
  color: #fec107; }
.nav-tabs.nav-tabs-line-warning .nav-link.active, .nav-tabs.nav-tabs-line-warning .show > .nav-link {
  color: #fec107;
  border-color: #fec107; }

.nav-tabs.nav-tabs-line-danger .nav-link:hover {
  color: #fb9678; }
.nav-tabs.nav-tabs-line-danger .nav-link.active, .nav-tabs.nav-tabs-line-danger .show > .nav-link {
  color: #fb9678;
  border-color: #fb9678; }

.nav-tabs.nav-tabs-line-info .nav-link:hover {
  color: #063176; }
.nav-tabs.nav-tabs-line-info .nav-link.active, .nav-tabs.nav-tabs-line-info .show > .nav-link {
  color: #063176;
  border-color: #063176; }

.nav-tabs.nav-tabs-line-dark .nav-link:hover {
  color: #555; }
.nav-tabs.nav-tabs-line-dark .nav-link.active, .nav-tabs.nav-tabs-line-dark .show > .nav-link {
  color: #555;
  border-color: #555; }

/* [ PROGRESSBAR CSS START ] */
.progress-xs {
  height: 5px;
  border-radius: 2px; }

.progress-sm {
  height: 10px;
  border-radius: 2px; }

.progress-md {
  height: 16px;
  border-radius: 2px; }

.progress-lg {
  height: 20px;
  border-radius: 2px; }

.progress-xl {
  height: 30px;
  border-radius: 4px; }

.progress-bar {
  background-color: #063176; }

.progress-bar-default {
  background-color: #DDD; }

.progress-bar-primary {
  background-color: #063176; }

.progress-bar-secondary {
  background-color: #cd0fd8; }

.progress-bar-warning {
  background-color: #fec107; }

.progress-bar-success {
  background-color: #0bc36e; }

.progress-bar-danger {
  background-color: #fb9678; }

.progress-bar-info {
  background-color: #063176; }

.progress-bar-dark {
  background-color: #555; }

.progress-bar-light {
  background-color: #555; }

/* [ ACCORDION CSS START ] */
.theme-accordion-container {
  width: 100%;
  text-align: left; }

.theme-accordion {
  background: #FFF;
  border-bottom: 1px solid #f4f4f4; }
  .theme-accordion:nth-last-child(1) {
    border: 0; }

.theme-accordion-hdr {
  position: relative;
  padding: 15px;
  font-size: 16px;
  color: #333;
  cursor: pointer; }
  .theme-accordion-hdr h4 {
    font-size: 18px;
    color: #063176;
    margin: 0; }
    .theme-accordion-hdr h4 i {
      width: 24px;
      height: 24px;
      line-height: 24px;
      color: #FFF;
      text-align: center;
      margin: 0 10px 0 0;
      background: #063176;
      border-radius: 2px; }

.theme-accordion-control {
  position: absolute;
  top: 15px;
  right: 15px; }
  .theme-accordion-control i {
    font-size: 24px;
    color: #0A60EA; }

.theme-accordion-bdy {
  display: none;
  width: 100%;
  padding: 15px;
  border-top: 1px solid #FAFAFA; }

/* [ COMMON CSS START ] */
/* [ COMMON CSS START ] */
.layer-wrapper {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }

.parallax-background::before {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(-90deg, rgba(31, 255, 218, 0.8), rgba(52, 131, 255, 0.8)); }

.tbl {
  display: table;
  width: 100%; }

.tbl-row {
  display: table-row; }

.tbl-cell {
  display: table-cell;
  vertical-align: middle; }

/* [ LAYOUT CSS START ] */
.layer-stretch {
  position: relative;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
  overflow: hidden; }

.layer-tablet {
  max-width: 992px;
  width: 100%;
  margin: 30px auto;
  overflow: hidden; }

.layer-mobile {
  max-width: 448px;
  width: 100%;
  margin: 0 auto; }

.layer-fixed {
  position: relative;
  max-width: 680px;
  width: 100%;
  margin: 0 auto; }

.layer-wrapper {
  position: relative;
  width: 100%;
  padding: 30px 0 50px 0;
  margin: 0; }

.layer-ttl {
  position: relative;
  margin: 0;
  text-align: center; }
  .layer-ttl h4 {
    display: inline-block;
    position: relative;
    font-size: 36px;
    font-weight: 400;
    color: #555;
    padding: 0 20px; }
    .layer-ttl h4::before, .layer-ttl h4:after {
      content: '';
      position: absolute;
      top: 55%;
      width: 50px;
      height: 2px;
      background: #063176; }
    .layer-ttl h4::before {
      right: 100%; }
    .layer-ttl h4::after {
      left: 100%; }

.layer-ttl-white h4 {
  color: #FFF; }

.layer-sub-ttl {
  font-size: 20px;
  color: #555;
  padding: 10px 0;
  text-align: center; }

.sub-ttl {
  text-align: center;
  margin: 0 0 20px 0; }

.sub-ttl-text {
  position: relative;
  display: inline-block;
  font-family: "Dosis", "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  padding: 0 15px;
  letter-spacing: .5px;
  color: #555; }
  .sub-ttl-text::before, .sub-ttl-text:after {
    content: '';
    position: absolute;
    top: 55%;
    width: 40px;
    height: 2px;
    background: #063176; }
  .sub-ttl-text::before {
    right: 100%; }
  .sub-ttl-text::after {
    left: 100%; }

.sub-ttl-white {
  color: #FFF; }

.layer-container {
  position: relative;
  width: 100%;
  margin: 0; }

.sidebar {
  padding: 10px;
  margin: 0 0 10px 0; }

.pb-20 {
  padding-bottom: 20px; }

/* [ BACKGROUND CSS START ] */
.light-background {
  background-color: #fafafa; }

.colored-background {
  width: 100%;
  background: linear-gradient(-90deg, rgba(31, 255, 218, 0.8), rgba(52, 131, 255, 0.8)); }

.parallax-background {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .parallax-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.parallax-background-1 {
  background-image: url(../uploads/background-1.jpg); }

.parallax-background-2 {
  background-image: url(../uploads/background-2.jpg); }

.parallax-background-3 {
  background-image: url(../uploads/background-3.jpg); }

.rounded {
  border-radius: 50%; }

.list-inline li {
  display: inline-block;
  padding: 0 5px; }

/* [ PARAGRAPH CSS START ] */
.paragraph-medium {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  margin: 0 0 10px 0; }

.paragraph-small {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  letter-spacing: .5px; }

.paragraph-black {
  color: #777; }

.paragraph-white {
  color: #FFF; }

.number-counter {
  position: relative;
  text-align: center; }
  .number-counter i {
    display: block;
    font-size: 36px;
    color: #DDD; }
  .number-counter .number {
    display: inline-block;
    font-size: 48px;
    font-family: "Dosis", "Poppins", sans-serif;
    color: #555;
    font-weight: 500; }
  .number-counter p {
    font-size: 16px;
    color: #063176;
    margin: 0; }

.number-counter-01 .layer-wrapper {
  padding: 40px 0; }

.theme-img img {
  width: 100%; }

.link-icon {
  display: inline-block;
  font-size: 14px;
  color: #063176; }
  .link-icon i {
    padding: 0 5px; }
  .link-icon i, .link-icon span {
    display: table-cell;
    vertical-align: middle; }

.dropcap {
    height: 64px;
    line-height: 64px;
    width: 66px;
    font-size: 75px;
    text-align: center;
    float: left;
    color: #063176;

    margin-right: 5px; }

.list-icon {
  padding: 0;
  margin: 0 0 10px 0; }
  .list-icon li {
    list-style: none;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    padding: 5px 0;
    letter-spacing: .5px; }
    .list-icon li i {
      color: #063176;
      font-weight: 500;
      margin: 0 10px 0 0; }

.tag-list a {
  display: inline-block;
  margin: 5px;
  position: relative;
  color: #333;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: capitalize;
  padding: 8px 15px 8px 25px;
  background: #DDD;
  border-radius: 2px; }
  .tag-list a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5px;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    background: #FFF;
    border-radius: 50%;
    z-index: 1; }
  .tag-list a:hover {
    color: #FFF;
    background: #063176; }
  .tag-list a.tag-colored {
    color: #FFF;
    background: #063176; }
    .tag-list a.tag-colored:hover {
      background: #063176; }

.tag-list-2 a {
  padding-right: 40px;
  padding-left: 16px; }
  .tag-list-2 a::before {
    left: inherit;
    right: 15px; }
  .tag-list-2 a::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: #FFF;
    border-bottom: 18px solid transparent;
    border-left: 20px solid #FFF;
    border-top: 18px solid transparent; }

.category-list {
  padding: 0; }
  .category-list li {
    text-align: left;
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px solid #EEE; }
    .category-list li a {
      color: #333;
      font-size: 14px; }
      .category-list li a i {
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        margin: 0 10px 0 0; }
      .category-list li a:hover {
        color: #063176; }
    .category-list li span {
      position: relative;
      top: 2px;
      float: right;
      font-size: 14px;
      color: #015259; }

.br-1x {
  border: 1px solid #DDD; }

.br-top-1x {
  border-top: 1px solid #DDD; }

.br-bottom-1x {
  border-bottom: 1px solid #DDD; }

.br-left-1x {
  border-left: 1px solid #DDD; }

.br-right-1x {
  border-right: 1px solid #DDD; }

.fc th {
  font-size: 16px;
  font-family: "Dosis", "Poppins", sans-serif; }

.fc-button-group .fc-state-down,
.fc-button-group .fc-state-active {
  color: #FFF;
  background-color: #0A60EA; }
  .fc-button-group .fc-state-down:hover,
  .fc-button-group .fc-state-active:hover {
    color: #FFF;
    background-color: #0A60EA; }

/* [ PAGE TITLE CSS START ] */
.page-ttl {
  position: relative;
  width: 100%;
  padding: 110px 0 40px 0;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../uploads/slider-1.jpg); }
  .page-ttl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); }

.page-ttl-container {
  text-align: center; }
  .page-ttl-container h1 {
    position: relative;
    font-size: 42px;
    font-weight: 500;
    color: #FFF;
    display: inline-block;
    padding: 0 20px;
    margin: 0; }
    .page-ttl-container h1::before, .page-ttl-container h1:after {
      content: '';
      position: absolute;
      top: 55%;
      width: 50px;
      height: 2px;
      background: #FFF; }
    .page-ttl-container h1::before {
      right: 100%; }
    .page-ttl-container h1::after {
      left: 100%; }
  .page-ttl-container p {
    font-size: 14px;
    color: #CCC;
    padding: 10px 0 0 0; }
    .page-ttl-container p a {
      display: inline-block;
      color: #EEE;
      margin: 0 5px 0 0; }
      .page-ttl-container p a:hover {
        text-decoration: underline; }
    .page-ttl-container p span {
      display: inline-block;
      margin: 0 0 0 5px; }

.page-light::before {
  background: rgba(255, 255, 255, 0.8); }
.page-light .page-ttl-container h1 {
  color: #555; }
  .page-light .page-ttl-container h1::before, .page-light .page-ttl-container h1:after {
    background: #063176; }
.page-light .page-ttl-container p {
  color: #555; }
  .page-light .page-ttl-container p span {
    color: #999; }
.page-light .page-ttl-container a {
  color: #555; }

.page-colored::before {
  background: rgba(52, 131, 255, 0.8); }

.page-gradient::before {
  background: linear-gradient(-90deg, rgba(31, 255, 218, 0.8), rgba(52, 131, 255, 0.8)); }

.modal-header h5 {
  font-size: 24px; }

/* [ BADGE CSS START ] */
.badge {
  padding: 0.4em .8em;
  font-size: 100%;
  letter-spacing: .5px;
  vertical-align: baseline;
  font-weight: 500; }

.badge-sm {
  font-size: 80%;
  padding: 0.6em .8em; }

.badge-default {
  background-color: #DDD; }

.badge-white {
  color: #333;
  background-color: #FFF; }

.badge-primary {
  background-color: #063176; }

.badge-secondary {
  background-color: #cd0fd8; }

.badge-success {
  background-color: #0bc36e; }

.badge-warning {
  background-color: #fec107; }

.badge-danger {
  background-color: #fb9678; }

.badge-info {
  background-color: #063176; }

.badge-light {
  color: #333;
  background-color: #FFF;
  border: 1px solid #EEE; }

.badge-dark {
  background-color: #555; }

/* [ BACKGROUND CSS START ] */
.bg-primary {
  background-color: #063176 !important; }

.bg-secondary {
  background-color: #cd0fd8 !important; }

.bg-success {
  background-color: #0bc36e !important; }

.bg-warning {
  background-color: #fec107 !important; }

.bg-danger {
  background-color: #fb9678 !important; }

.bg-info {
  background-color: #063176 !important; }

.bg-dark {
  background-color: #555 !important; }

.nav-pills .nav-item.show .nav-link, .nav-pills .nav-link.active {
  cursor: default;
  background-color: #063176; }

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: #063176; }

/* [ BUTTON CSS START ] */
/* [ BOOTSTRAP BUTTON CSS START ] */
.btn {
  height: auto;
  line-height: normal;
  padding: 10px 20px;
  font-weight: 400;
  color: #FFF;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  border-radius: 2px;
  cursor: pointer; }
  .btn.disabled {
    cursor: not-allowed; }
  .btn:focus, .btn:active {
    box-shadow: none; }

.btn-block {
  display: block;
  width: 100%; }

.btn-white {
  color: #777;
  background-color: #FFF;
  border-color: #DDD; }
  .btn-white:hover {
    color: #333; }

.btn-default {
  color: #333;
  background-color: #DDD;
  border-color: #DDD; }

.btn-primary {
  background-color: #063176;
  border-color: #063176; }

.btn-secondary {
  background-color: #cd0fd8;
  border-color: #cd0fd8; }

.btn-success {
  background-color: #0bc36e;
  border-color: #0bc36e; }

.btn-warning {
  background-color: #fec107;
  border-color: #fec107; }
  .btn-warning:hover, .btn-warning:active, .btn-warning:focus {
    color: #FFF; }

.btn-danger {
  background-color: #fb9678;
  border-color: #fb9678; }

.btn-info {
  background-color: #063176;
  border-color: #063176; }

.btn-dark {
  background-color: #555;
  border-color: #555; }

.btn-light {
  background-color: #EEE;
  border-color: #EEE; }

.btn-blue {
  color: #FFF;
  background-color: #32C1CE;
  border: 2px solid #32C1CE; }

.btn-orange {
  color: #FFF;
  background: #EfA752;
  border: 2px solid #EfA752; }

.btn-purple {
  color: #FFF;
  background-color: #A675D4;
  border: 2px solid #A675D4; }

.btn-red {
  color: #FFF;
  background-color: #cc5151;
  border: 2px solid #cc5151; }

.btn-outline.btn-default,
.btn-outline.btn-primary,
.btn-outline.btn-secondary,
.btn-outline.btn-success,
.btn-outline.btn-danger,
.btn-outline.btn-warning,
.btn-outline.btn-dark,
.btn-outline.btn-light,
.btn-outline.btn-info {
  color: #555;
  background: transparent; }
  .btn-outline.btn-default:hover,
  .btn-outline.btn-primary:hover,
  .btn-outline.btn-secondary:hover,
  .btn-outline.btn-success:hover,
  .btn-outline.btn-danger:hover,
  .btn-outline.btn-warning:hover,
  .btn-outline.btn-dark:hover,
  .btn-outline.btn-light:hover,
  .btn-outline.btn-info:hover {
    color: #FFF; }

.btn-outline-1x {
  border: 1px solid; }

.btn-outline-2x {
  border: 2px solid; }

.btn-outline.btn-default {
  color: #555;
  border-color: #DDD; }
  .btn-outline.btn-default:hover {
    background-color: #DDD; }

.btn-outline.btn-primary {
  color: #063176;
  border-color: #063176; }
  .btn-outline.btn-primary:hover {
    background-color: #063176; }

.btn-outline.btn-secondary {
  color: #cd0fd8;
  border-color: #cd0fd8; }
  .btn-outline.btn-secondary:hover {
    background-color: #cd0fd8; }

.btn-outline.btn-success {
  color: #0bc36e;
  border-color: #0bc36e; }
  .btn-outline.btn-success:hover {
    background-color: #0bc36e; }

.btn-outline.btn-danger {
  color: #fb9678;
  border-color: #fb9678; }
  .btn-outline.btn-danger:hover {
    background-color: #fb9678; }

.btn-outline.btn-warning {
  color: #fec107;
  border-color: #fec107; }
  .btn-outline.btn-warning:hover {
    background-color: #fec107; }

.btn-outline.btn-info {
  color: #063176;
  border-color: #063176; }
  .btn-outline.btn-info:hover {
    background-color: #063176; }

.btn-outline.btn-dark {
  color: #555;
  border-color: #555; }
  .btn-outline.btn-dark:hover {
    background-color: #555; }

.btn-outline.btn-light {
  color: #555;
  border-color: #EEE; }
  .btn-outline.btn-light:hover {
    background-color: #EEE; }

.btn-primary:not([disabled]):not(.disabled).active {
  border-color: #063176;
  background-color: rgba(3, 169, 243, 0.6); }

.btn-primary:not([disabled]):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  border-color: #063176;
  background-color: #063176;
  box-shadow: none; }

.btn-success:not([disabled]):not(.disabled).active {
  border-color: #0bc36e;
  background-color: rgba(11, 195, 110, 0.6); }

.btn-success:not([disabled]):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
  border-color: #0bc36e;
  background-color: #0bc36e;
  box-shadow: none; }

.btn-warning:not([disabled]):not(.disabled).active {
  border-color: #fec107;
  background-color: rgba(254, 193, 7, 0.6); }

.btn-warning:not([disabled]):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
  border-color: #fec107;
  background-color: #fec107;
  box-shadow: none; }

.btn-danger:not([disabled]):not(.disabled).active {
  border-color: #fb9678;
  background-color: rgba(251, 150, 120, 0.6); }

.btn-danger:not([disabled]):not(.disabled):active,
.show > .btn-danger.dropdown-toggle {
  border-color: #fb9678;
  background-color: #fb9678;
  box-shadow: none; }

.btn-info:not([disabled]):not(.disabled).active {
  border-color: #063176;
  background-color: rgba(3, 169, 243, 0.6); }

.btn-info:not([disabled]):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
  border-color: #063176;
  background-color: #063176;
  box-shadow: none; }

.btn-secondary:not([disabled]):not(.disabled).active {
  border-color: #cd0fd8;
  background-color: rgba(238, 238, 238, 0.6); }

.btn-secondary:not([disabled]):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  border-color: #cd0fd8;
  background-color: #cd0fd8;
  box-shadow: none; }

.btn-dark:not([disabled]):not(.disabled).active {
  border-color: #555;
  background-color: rgba(85, 85, 85, 0.6); }

.btn-light:not([disabled]):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  border-color: #EEE;
  background-color: #EEE;
  box-shadow: none; }

.btn-circle {
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  text-align: center; }

.btn-circle.btn-lg {
  width: 45px;
  height: 45px;
  padding: 0;
  border-radius: 50%; }

.btn-circle.btn-xl {
  width: 60px;
  height: 60px;
  font-size: 28px; }

.dropdown-menu {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1); }

.dropdown-menu > li > a {
  font-weight: 500;
  color: #555;
  display: block;
  min-width: 180px;
  font-size: 14px;
  padding: 8px 16px; }
  .dropdown-menu > li > a:hover {
    background-color: #E0ECFF; }

.btn-facebook {
  background-color: #3b5998; }

.btn-twitter {
  background-color: #55acee; }

.btn-google-plus {
  background-color: #dd4b39; }

.btn-instagram {
  background-color: #3f729b; }

.btn-pinterest {
  background-color: #cb2027; }

.btn-linkedin {
  background-color: #007bb6; }

.btn-youtube {
  background-color: #b00; }

.btn-dribbble {
  background-color: #ea4c89; }

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 2px; }

.btn-lg {
  padding: 12px 30px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 2px; }

.btn-pill {
  border-radius: 60px; }

/* [ MATERIAL CSS START ] */
.mdl-button.button {
  height: auto;
  line-height: normal;
  padding: 12px 30px;
  font-weight: 400;
  color: #FFF;
  font-family: "Poppins", sans-serif;
  border-radius: 2px; }

.mdl-button.button-default {
  color: #333;
  background-color: #DDD; }
  .mdl-button.button-default:hover {
    background-color: #DDD; }

.mdl-button.button-primary {
  background-color: #063176; }
  .mdl-button.button-primary:hover {
    background-color: #063176; }

.mdl-button.button-secondary {
  background-color: #cd0fd8; }
  .mdl-button.button-secondary:hover {
    background-color: #cd0fd8; }

.mdl-button.button-success {
  background-color: #0bc36e; }
  .mdl-button.button-success:hover {
    background-color: #0bc36e; }

.mdl-button.button-warning {
  background-color: #fec107; }
  .mdl-button.button-warning:hover {
    background-color: #fec107; }

.mdl-button.button-danger {
  background-color: #fb9678; }
  .mdl-button.button-danger:hover {
    background-color: #fb9678; }

.mdl-button.button-info {
  background-color: #063176; }
  .mdl-button.button-info:hover {
    background-color: #063176; }

.mdl-button.button-dark {
  background-color: #555; }
  .mdl-button.button-dark:hover {
    background-color: #555; }

.mdl-button.button-light {
  color: #333;
  background-color: #EEE; }
  .mdl-button.button-light:hover {
    background-color: #EEE; }

.mdl-button.button-transparent {
  color: #333;
  background: transparent; }

.mdl-button.button-hover-transparent:hover {
  color: #333;
  background: transparent; }

.mdl-button.button-hover-primary:hover {
  color: #FFF;
  background: #063176; }

.mdl-button.button-hover-secondary:hover {
  color: #FFF;
  background: #cd0fd8; }

.mdl-button.button-hover-success:hover {
  color: #FFF;
  background: #0bc36e; }

.mdl-button.button-hover-warning:hover {
  color: #FFF;
  background: #fec107; }

.mdl-button.button-hover-danger:hover {
  color: #FFF;
  background: #fb9678; }

.mdl-button.button-hover-info:hover {
  color: #FFF;
  background: #063176; }

.mdl-button.button-hover-dark:hover {
  color: #FFF;
  background: #555; }

.mdl-button.button-hover-light:hover {
  color: #FFF;
  background: #EEE; }

.mdl-button.button-ouline-default {
  border: 2px solid #DDD; }

.mdl-button.button-ouline-primary {
  border: 2px solid #063176; }

.mdl-button.button-ouline-secondary {
  border: 2px solid #cd0fd8; }

.mdl-button.button-ouline-success {
  border: 2px solid #0bc36e; }

.mdl-button.button-ouline-warning {
  border: 2px solid #fec107; }

.mdl-button.button-ouline-danger {
  border: 2px solid #fb9678; }

.mdl-button.button-ouline-info {
  border: 2px solid #063176; }

.mdl-button.button-ouline-dark {
  border: 2px solid #555; }

.mdl-button.button-ouline-light {
  border: 2px solid #EEE; }

.mdl-button.button-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 2px; }

.mdl-button.button-lg {
  padding: 12px 30px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 2px; }

.mdl-button.button-pill {
  border-radius: 60px; }

.mdl-button.btn-icon {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  padding: 0;
  color: #777;
  background-color: #FFF;
  border-radius: 50%;
  transition: all .3s ease-in-out; }
  .mdl-button.btn-icon:hover {
    color: #FFF;
    background-color: #063176;
    border-color: #063176; }

.mdl-button.btn-icon-boredered {
  border: 1px solid #DDD; }
  .mdl-button.btn-icon-boredered:hover {
    border-color: #063176; }

/* [ SOCIAL BUTTON CSS START ] */
.social-list {
  margin: 0;
  padding: 0; }
  .social-list li {
    display: inline-block;
    vertical-align: middle;
    list-style: none;
    margin: 5px 0; }
    .social-list li a {
      display: inline-block;
      width: 32px;
      height: 32px;
      line-height: 32px;
      text-align: center;
      margin: 0 5px;
      font-size: 20px;
      color: #777; }

.social-list-sm li a {
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin: 2px;
  font-size: 14px; }

.social-list-lg li a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 24px; }

.social-list-colored li a {
  color: #FFF; }
  .social-list-colored li a.fa-facebook {
    background: #3B5999; }
  .social-list-colored li a.fa-twitter {
    background: #55ACEE; }
  .social-list-colored li a.fa-google {
    background: #DC4A38; }
  .social-list-colored li a.fa-instagram {
    background: #AE8268; }
  .social-list-colored li a.fa-youtube {
    background: #e42b26; }
  .social-list-colored li a.fa-linkedin {
    background: #0274b3; }
  .social-list-colored li a.fa-flickr {
    background: #ff0175; }
  .social-list-colored li a.fa-rss {
    background: #f8991d; }

.social-list-black li a {
  color: #FFF;
  background: #555; }
  .social-list-black li a:hover {
    background: #063176; }

.social-list-white li a {
  color: #EEE;
  background: transparent;
  border: 1px solid #EEE; }
  .social-list-white li a:hover {
    border: 1px solid #063176;
    background: #063176; }

.social-list-bordered a {
  border: 2px solid #777; }
  .social-list-bordered a:hover {
    color: #FFF;
    border: 2px solid #063176;
    background: #063176; }

.social-list-rounded a {
  border-radius: 50%; }

/* [ THEME TABLE CSS START ] */
.table {
  margin-bottom: 0; }
  .table thead tr th, .table thead tr td, .table tbody tr th, .table tbody tr td, .table tfoot tr th, .table tfoot tr td {
    padding: 14px 8px; }
  .table th {
    padding: 16px 8px;
    font-weight: 500; }
  .table tbody {
    color: #777; }

.table-dark tbody {
  color: #CCC; }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f3f5f7; }

.table-hover tbody tr:hover {
  background-color: #f3f5f7; }

.table-head-bg thead tr th {
  color: #FFF;
  border: 0; }

.table-head-bg.table-head-primary thead tr th {
  background-color: #063176; }

.table-head-bg.table-head-secondary thead tr th {
  background-color: #cd0fd8; }

.table-head-bg.table-head-success thead tr th {
  background-color: #0bc36e; }

.table-head-bg.table-head-danger thead tr th {
  background-color: #fb9678; }

.table-head-bg.table-head-warning thead tr th {
  background-color: #fec107; }

.table-head-bg.table-head-info thead tr th {
  background-color: #063176; }

.table-head-bg.table-head-dark thead tr th {
  background-color: #555; }

.table-bordered-primary {
  border: 2px solid #063176; }

.table-bordered-secondary {
  border: 2px solid #cd0fd8; }

.table-bordered-success {
  border: 2px solid #0bc36e; }

.table-bordered-danger {
  border: 2px solid #fb9678; }

.table-bordered-warning {
  border: 2px solid #fec107; }

.table-bordered-info {
  border: 2px solid #063176; }

.table-bordered-dark {
  border: 2px solid #555; }

/* [ PRICING TABLE CSS START ] */
.pricing01 {
  border: 1px solid #DDD;
  margin-bottom: 30px;
  text-align: center;
  transition: all ease-in 200ms;
  -moz-transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
  -o-transition: all ease-in 200ms;
  -ms-transition: all ease-in 200ms; }
  .pricing01:hover {
    background-color: #20a3f0;
    border-color: #20a3f0;
    color: #FFF; }
    .pricing01:hover .pricing-footer .btn {
      color: #333;
      background-color: #FFF; }
  .pricing01 .pricing-title {
    margin-bottom: 30px; }
    .pricing01 .pricing-title i {
      font-size: 62px;
      margin: 40px 0 32px;
      display: inline-block; }
    .pricing01 .pricing-title h2 {
      color: #555;
      font-size: 24px;
      margin: 0;
      transition: all .2s ease-in-out; }
    .pricing01 .pricing-title small {
      font-style: italic;
      font-size: 14px; }
  .pricing01 .pricing-box .sup {
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    vertical-align: top;
    margin-right: 10px; }
  .pricing01 .pricing-box .price {
    font-size: 80px;
    font-weight: bold;
    font-family: "Dosis", "Poppins", sans-serif;
    line-height: 1; }
  .pricing01 .pricing-box .unit {
    display: block;
    font-size: 14px;
    margin-bottom: 28px;
    font-style: italic;
    padding-top: 20px; }
  .pricing01 .pricing-body ul {
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
    margin: 0 20px 28px;
    padding: 13px 0;
    list-style: none; }
    .pricing01 .pricing-body ul li {
      list-style: none;
      padding: 10px 0; }
  .pricing01 .pricing-footer {
    padding: 0 0 30px 0; }

.pricing02 {
  border: 1px solid #DDD;
  margin-bottom: 30px;
  text-align: center;
  transition: all ease-in 200ms;
  -moz-transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
  -o-transition: all ease-in 200ms;
  -ms-transition: all ease-in 200ms; }
  .pricing02 .pricing-title {
    margin-bottom: 30px; }
    .pricing02 .pricing-title h2 {
      font-size: 24px;
      color: #333;
      text-transform: uppercase;
      margin: 0px 0 0; }
      .pricing02 .pricing-title h2:after {
        content: "";
        border-bottom: 1px solid #333;
        width: 35px;
        display: block;
        margin: 31px auto 26px; }
  .pricing02 .pricing-box {
    width: 150px;
    height: 150px;
    line-height: 146px;
    font-size: 64px;
    color: #063176;
    margin: 40px auto 40px auto;
    text-align: center;
    border-radius: 50%;
    border: 3px solid #063176; }
    .pricing02 .pricing-box .sup {
      font-size: 30px;
      font-weight: 500; }
    .pricing02 .pricing-box .price {
      font-family: "Dosis", "Poppins", sans-serif; }
  .pricing02 .pricing-body ul {
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
    margin: 0 20px 28px;
    padding: 13px 0;
    list-style: none; }
    .pricing02 .pricing-body ul li {
      list-style: none;
      padding: 10px 0; }
  .pricing02 .pricing-footer {
    padding: 0 0 30px 0; }

/* [ SLIDER CSS START ] */
.dots-overlay .owl-nav.disabled + .owl-dots {
  margin-top: -30px; }
.dots-overlay .owl-dots {
  position: relative;
  z-index: 9; }
  .dots-overlay .owl-dots .owl-dot span {
    background-color: #FFF; }
  .dots-overlay .owl-dots .owl-dot.active span {
    background-color: #063176; }

/* [ IMAGE CSS START ] */
.img-hover-icon {
  position: relative; }
  .img-hover-icon:hover .img-icon-wrapper {
    opacity: 1;
    visibility: visible; }
  .img-hover-icon:hover .img-icon {
    opacity: 1;
    visibility: visible;
    transform: scale(1); }

.img-icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all .4s ease-in-out; }
  .img-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 2%;
    left: 2%;
    width: 96%;
    height: 96%;
    background-color: #333;
    opacity: .8; }
  .img-icon-wrapper .img-icon {
    position: relative;
    top: 50%;
    margin-top: -30px;
    text-align: center;
    transform: scale(0);
    transition: all .4s ease;
    transition-delay: .2s;
    opacity: 0;
    visibility: hidden;
    z-index: 11; }
    .img-icon-wrapper .img-icon a {
      display: inline-block;
      vertical-align: middle;
      margin: 5px; }
      .img-icon-wrapper .img-icon a i {
        display: block;
        font-size: 20px;
        color: #FFF;
        width: 48px;
        height: 48px;
        line-height: 48px;
        color: #777;
        border-radius: 50%;
        background-color: #FFF; }

.img-icon-colored::after {
  background-color: #063176; }

/* [ NOT FOUND PAGE CSS START ] */
.notfound-wrapper {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 50px 0 0 0; }

.notfound-ttl {
  font-size: 150px;
  text-transform: uppercase;
  color: #F09E71;
  letter-spacing: 2px;
  font-weight: bold;
  display: block;
  margin: 10px 0; }

.notfound-tag-1 {
  font-size: 48px;
  text-transform: uppercase;
  color: #333;
  margin: 10px 0;
  font-weight: 600; }

.notfound-tag-2 {
  display: block;
  font-size: 28px;
  color: #555;
  margin: 10px 0; }

.notfound-link {
  margin: 30px 0; }

.notfound-link a {
  margin: 30px; }

.notfound-social li {
  margin: 10px; }
  .notfound-social li a {
    font-size: 24px; }

/**************************************************
[ HEADER CSS START ] ******************************
***************************************************/
#header {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  z-index: 99; }

#hdr-wrapper {
  background: #FFF;
  -webkit-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.15); }

.hdr {
  overflow: visible; }

.hdr-logo a {
  display: inline-block; }
.hdr-logo a img {

    height: 60px;!important }

.menu {
  text-align: right;
  margin: 0; }
  .menu ul {
    margin: 0;
    padding: 0; }
  .menu li li {
    position: relative;
    margin: 0;
    display: block;
    width: auto; }
    .menu li li.row {
      display: flex;
      display: -ms-flexbox;
      -ms-flex-wrap: wrap; }
    .menu li li a {
      position: relative;
      font-size: 16px;
      color: #333;
      padding: 10px 5px;
      transition: all .4s ease-in-out; }
      .menu li li a::before {
        content: '';
        position: absolute;
        top: 20%;
        left: 0;
        width: 0;
        height: 60%;
        background: #063176;
        transition: all .4s ease-in-out; }
      .menu li li a:hover {
        color: #063176;
        padding-left: 10px; }
        .menu li li a:hover i {
          color: #063176; }
        .menu li li a:hover::before {
          width: 5px; }
      .menu li li a i {
        color: #333; }
    .menu li li:nth-last-child(1) a {
      border-bottom: 0; }
  .menu li:hover > .menu-dropdown, .menu li:hover > .menu-megamenu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  .menu a {
    display: block;
    height: auto;
    font-weight: 400;
    font-family: "Dosis", "Poppins", sans-serif;
    text-transform: none; }
  .menu > li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 10px 5px; }
    .menu > li > a {
      position: relative;
      line-height: 36px;
      color: #333;
      font-weight: 500;
      font-size: 18px;
      padding: 10px; }
      .menu > li > a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: #063176;
        transition: all .3s ease-in-out; }
      .menu > li > a .fa {
        font-size: 12px;
        color: #AAA; }
      .menu > li > a.active {
        background: rgba(158, 158, 158, 0.1); }
        .menu > li > a.active::after {
          width: 100%; }
      .menu > li > a:hover::after {
        width: 100%; }
    .menu > li a.hdr-search i {
      font-size: 24px; }
  .menu .menu-megamenu-li {
    position: static; }
  .menu > .mobile-menu-close {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    line-height: 15px;
    text-align: center;
    padding: 8px;
    background-color: #000;
    border-radius: 50%; }
    .menu > .mobile-menu-close .fa {
      width: 16px;
      height: 16px;
      line-height: 16px;
      font-size: 18px;
      color: #EEE; }

.search-bar {
  display: table;
  table-layout: fixed;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  animation-duration: .4s;
  display: none; }

.search-content {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 100%; }

.search-input {
  position: relative;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto; }
  .search-input input {
    width: 100%;
    font-size: 24px;
    padding: 20px;
    border-bottom: 1px solid #777; }

.search-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  color: #333;
  cursor: pointer; }

.search-close {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer; }
  .search-close i {
    font-size: 36px;
    color: #333; }

/* [ MEGAMENU CSS START ] */
.menu-megamenu, .menu-dropdown {
  position: absolute;
  left: 0%;
  top: 90%;
  background: #FFF;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  text-align: left;
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -o-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -moz-transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -ms-transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -o-transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.2); }
  .menu-megamenu li, .menu-dropdown li {
    padding: 0;
    border-bottom: 1px solid #EEE; }
    .menu-megamenu li:nth-last-child(1), .menu-dropdown li:nth-last-child(1) {
      border-bottom: 0; }

.menu-megamenu {
  width: 100%;
  padding: 10px; }
  .menu-megamenu > li {
    padding: 15px 10px; }

.menu-megamenu-small {
  left: auto;
  right: 0;
  max-width: 700px; }

.menu-megamenu-medium {
  left: auto;
  right: 0;
  max-width: 850px; }

/* [ MENU DROPDOWM TABLE CSS START ] */
.menu-dropdown {
  width: 160px; }
  .menu-dropdown li {
    padding: 5px 5px 5px 10px; }
  .menu-dropdown .menu-dropdown {
    top: 0;
    left: 100%;
    margin-left: 3px; }
  .menu-dropdown .menu-dropdown-left {
    top: 0;
    left: auto;
    right: 100%;
    margin: 0 3px 0 0; }

.megamenu-ttl {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  padding: 10px 5px;
  text-transform: uppercase; }

#menu-bar {
  display: none;
  text-align: right; }
  #menu-bar a {
    display: inline-block; }
  #menu-bar .fa {
    font-size: 28px;
    color: #777;
    height: 60px;
    line-height: 60px;
    padding: 0 5px; }

.header-dark .menu > li a {
  color: #FFF; }
  .header-dark .menu > li a i {
    color: #EEE; }
.header-dark .menu > li li a {
  color: #333; }
  .header-dark .menu > li li a i {
    color: #333; }
.header-dark #menu-bar .fa {
  color: #EEE; }

.header-colored .menu > li li a {
  color: #333; }
.header-colored .menu > li a {
  color: #FFF; }
  .header-colored .menu > li a i {
    color: #EEE; }
.header-colored #menu-bar .fa {
  color: #EEE; }

.header-gradient .menu > li li a {
  color: #333; }
.header-gradient .menu > li a {
  color: #FFF; }
  .header-gradient .menu > li a i {
    color: #EEE; }
.header-gradient #menu-bar .fa {
  color: #EEE; }

/* [ FIXED HEADER CSS START ] */
.hdr-fixed-light {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1); }

.hdr-fixed-dark {
  background-color: #063176;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1); }

.hdr-fixed-colored {
  background-color: rgba(3, 169, 243, 0.9);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1); }

.hdr-fixed-gradient {
  background: linear-gradient(-90deg, rgba(31, 255, 218, 0.8), rgba(52, 131, 255, 0.8));
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1); }

/*************************************************
[ HOME PAGE CSS START ] **********************
**************************************************/
/* [ BANNER CSS START ] */
#slider {
  height: 100%; }

.slider-wrapper {
  height: 100%;
  border: 0;
  margin: 0;
  overflow: hidden; }
  .slider-wrapper .slides {
    height: 100%; }
    .slider-wrapper .slides li {
      position: relative;
      height: 100%; }
      .slider-wrapper .slides li::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.8); }
      .slider-wrapper .slides li img {
        width: 100%; }

.flex-direction-nav a {
  line-height: 40px; }
  .flex-direction-nav a::before {
    color: #777; }

.slider-info {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  padding: 2% 20%;
  text-align: center;
  z-index: 9999; }
  .slider-info h1,
  .slider-info h2 {
    display: inline-block;
    font-size: 54px;
    color: #555;
    font-weight: 600;
    margin: 0 0 15px 0;
    animation-delay: .4s; }
    .slider-info h1 i,
    .slider-info h2 i {
      font-style: normal; }
  .slider-info p {
    font-size: 18px;
    color: #777;
    animation-delay: .6s; }

.slider-button {
  padding: 40px 0 10px 0; }
  .slider-button a.mdl-button {
    font-size: 16px;
    padding: 16px 28px; }

.slider-backgroung-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.slider-dark .slides li::after {
  background: rgba(0, 0, 0, 0.8); }
.slider-dark .flex-direction-nav a::before {
  color: #FFF; }
.slider-dark .slider-info h1,
.slider-dark .slider-info h2 {
  color: #FFF; }
.slider-dark .slider-info p {
  color: #FFF; }

.slider-colored .slides li::after {
  background: rgba(52, 131, 255, 0.8); }

.slider-gradient .slides li::after {
  background: linear-gradient(-90deg, rgba(31, 255, 218, 0.8), rgba(52, 131, 255, 0.8)); }

.slider-half .slider-info {
  width: 50%;
  text-align: left;
  padding: 0 0 0 8%; }
.slider-half li .slider-bnnr {
  position: absolute;
  top: 12%;
  right: 0;
  text-align: center;
  width: 50%;
  z-index: 111; }
  .slider-half li .slider-bnnr img {
    display: inline-block;
    width: 50%; }

/* [ FEATURE CSS START ] */
.feature-block {
  background-color: #063176; }
  .feature-block:nth-child(1) {
    background-color: #063176; }
  .feature-block:nth-child(2) {
    background-color: #0A60EA; }
  .feature-block:nth-child(3) {
    background-color: #063176; }
  .feature-block:nth-child(4) {
    background-color: #77ACFF; }
  .feature-block .block {
    padding: 100px 20px;
    text-align: center; }
    .feature-block .block i {
      font-size: 64px;
      color: #FFF; }
    .feature-block .block span {
      position: relative;
      display: block;
      font-family: "Dosis", "Poppins", sans-serif;
      padding: 40px 0 0 0;
      font-size: 24px;
      color: #EEE; }
      .feature-block .block span::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 50%;
        margin-left: -20px;
        width: 40px;
        height: 2px;
        background-color: #DDD; }

/*************************************************
[ SERVICE CSS START ] ****************************
**************************************************/
.service-card {
  position: relative;
  padding: 30px 20px 30px 20px;
  text-align: center;
  border-color: #DDD; }

.service-icon i {
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 42px;
  color: #063176;
  background-color: #f9f9f9;
  border-radius: 50%; }

.service-heading {
  font-size: 20px;
  font-weight: 400;
  padding: 20px 0 10px 0;
  color: #555;
  font-family: "Dosis", "Poppins", sans-serif; }

.service-body p {
  font-size: 15px;
  color: #AAA;
  margin-bottom: 0; }

.service-card-1 {
  position: relative;
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  border: 1px solid #DDD; }
  .service-card-1 .service-icon i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background-color: transparent; }

.service-card-2 {
  position: relative;
  text-align: center;
  padding: 0;
  margin-bottom: 30px; }
  .service-card-2 .tbl-cell {
    vertical-align: top; }
    .service-card-2 .tbl-cell:nth-last-child(1) {
      text-align: left;
      padding: 0 0 0 20px; }
  .service-card-2 .service-heading {
    padding: 0 0 10px 0; }

.service-card-3 {
  position: relative;
  text-align: center;
  background-color: #fafafa;
  border: 1px solid #EEE;
  padding: 60px 0 20px 0;
  margin: 50px 0 30px 0; }
  .service-card-3 .service-icon {
    position: absolute;
    width: 100%;
    top: -50px;
    text-align: center; }
    .service-card-3 .service-icon i {
      color: #EEE;
      background-color: #063176; }
  .service-card-3 .service-heading, .service-card-3 .service-body {
    padding: 0 10px; }
  .service-card-3 .service-heading {
    color: #555;
    margin-bottom: 10px; }

.service-card-4 {
  position: relative;
  padding: 0 20px 30px 20px;
  text-align: center; }

.about {
  background-color: #fafafa; }
.just{
	text-align:justify;	
}
/*************************************************
[ PORTFOLIO CSS START ] **************************
**************************************************/
.portfolio {
  background-color: #f4f4f4; }

.portfolio-wrapper {
  padding: 0px 0 0 0; }
  .portfolio-wrapper ul {
    margin: 0;
    padding: 0;
    width: 100%; }

.portfolio-header {
  margin-bottom: 20px; }

.portfolio-filter {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  color: #777;
  border-radius: 60px;
  padding: 10px 20px;
  font-weight: 400;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: 2px solid #EEE;
  border-radius: 60px;
  transition: all .4s ease-in-out; }
  .portfolio-filter:hover, .portfolio-filter:active, .portfolio-filter:focus {
    color: #FFF;
    box-shadow: inset 10em 0 0 0 #063176; }
  .portfolio-filter:active, .portfolio-filter:focus {
    outline: none; }
  .portfolio-filter.active {
    color: #FFF;
    box-shadow: inset 10em 0 0 0 #063176; }

.portfolio-img {
  list-style: none;
  margin-bottom: 30px;
  overflow: hidden; }
  .portfolio-img a {
    display: inline-block; }
  .portfolio-img img {
    width: 100%; }
  .portfolio-img figure {
    position: relative;
    margin: 0;
    overflow: hidden; }
    .portfolio-img figure::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(6, 49, 118, 0.9);
      z-index: 1;
      opacity: 0;
      transition: all .4s ease-in-out; }
    .portfolio-img figure figcaption {
      position: absolute;
      left: 0;
      width: 100%;
      bottom: 0;
      background: #555;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
      z-index: 2; }
      .portfolio-img figure figcaption .title {
        float: left;
        font-size: 20px;
        color: #FFF;
        margin: 0;
        padding: 0 10px;
        line-height: 60px; }
      .portfolio-img figure figcaption .icon {
        float: right;
        margin: 0;
        padding: 0 10px; }
        .portfolio-img figure figcaption .icon a {
          font-size: 16px;
          margin: 0 5px;
          color: #FFF;
          line-height: 60px; }
          .portfolio-img figure figcaption .icon a:hover {
            color: #063176; }
      .portfolio-img figure figcaption .description {
        position: absolute;
        width: 100%;
        bottom: 10em;
        margin: 0;
        opacity: 0;
        text-align: center;
        color: #FFF;
        -webkit-backface-visibility: hidden; }
      .portfolio-img figure figcaption .title, .portfolio-img figure figcaption .icon, .portfolio-img figure figcaption .description {
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
    .portfolio-img figure:hover::before, .portfolio-img figure:hover .description {
      opacity: 1; }
    .portfolio-img figure:hover figcaption {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); }

.portfolio-nospacing li {
  margin: 0;
  padding: 0; }

/*************************************************
[ GRID CSS START ] *******************************
**************************************************/
.grid {
  margin-bottom: 30px; }

.grid-img {
  position: relative; }
  .grid-img img {
    width: 100%; }

.grid-content {
  padding: 0 5px; }
  .grid-content .title {
    font-size: 20px;
    margin: 10px 0 5px 0; }
    .grid-content .title a {
      color: #555; }
  .grid-content .date {
    font-size: #AAA; }
  .grid-content .description {
    color: #777;
    letter-spacing: .5px; }

/*************************************************
[ LIST CSS START ] *******************************
**************************************************/
.list {
  padding-bottom: 35px;
  margin-bottom: 30px;
  border-bottom: 1px solid #DDD; }
  .list:nth-last-child(1) {
    padding-bottom: 0;
    border-bottom: 0; }

.list-img img {
  width: 100%; }
  .list-img img:hover {
    opacity: 8; }

.list-content .title {
  font-size: 24px;
  margin: 0 0 5px 0;
  font-weight: 600; }
  .list-content .title a {
    color: #555; }
.list-content .date {
  font-size: #AAA; }
.list-content .description {
  font-size: 14px;
  letter-spacing: .5px;
  color: #999; }

/*************************************************
[ TEAM CSS START ] *******************************
**************************************************/
.team-block {
  margin-bottom: 30px;
  background-color: #fafafa; }
  .team-block:hover .team-description {
    opacity: 1;
    visibility: visible; }
    .team-block:hover .team-description p, .team-block:hover .team-description span {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); }

.team-img {
  position: relative; }
  .team-img img {
    width: 100%; }

.team-details {
  padding: 10px; }
  .team-details h3 {
    font-size: 20px;
    color: #555;
    font-weight: 500; }
  .team-details p {
    font-size: 14px;
    color: #AAA;
    margin: 0 0 0 5px; }

.team-social ul {
  margin: 0;
  padding: 0; }
  .team-social ul li {
    display: inline-block;
    margin: 5px;
    list-style: none; }
    .team-social ul li a {
      display: block;
      padding: 5px;
      font-size: 20px;
      color: #777; }
      .team-social ul li a:hover {
        color: #063176; }

.team-description {
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  opacity: 0;
  visibility: hidden; }
  .team-description > div {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 10px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.9); }
    .team-description > div span, .team-description > div p {
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0); }
    .team-description > div span {
      display: block;
      font-family: "Dosis", "Poppins", sans-serif;
      padding: 0 0 15px 0;
      font-size: 18px;
      font-weight: 600;
      color: #333; }
    .team-description > div p {
      font-size: 12px;
      letter-spacing: .5px;
      font-weight: 500;
      color: #555; }

.team-block-1 {
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
  background-color: #fafafa; }
  .team-block-1 .team-img img {
    width: 120px;
    margin: 0 auto;
    border-radius: 50%; }
  .team-block-1 .team-details h3 {
    font-size: 20px; }
  .team-block-1 .team-details p {
    font-size: 14px; }
  .team-block-1 .team-description {
    position: relative; }
  .team-block-1 .team-content {
    padding: 20px 0 0 0;
    margin: 20px 0 0 0;
    border-top: 1px solid #f1f1f1; }
    .team-block-1 .team-content p {
      font-size: 13px;
      color: #999; }

.team-container {
  transition: all .4s ease-in-out; }

.team-block-03:hover .team-container {
  background: #063176;
  color: #FFF; }
  .team-block-03:hover .team-container .team-details h3 {
    color: #FFF; }
  .team-block-03:hover .team-container .team-details p {
    color: #EEE; }
  .team-block-03:hover .team-container .team-social ul li a {
    color: #DDD; }
    .team-block-03:hover .team-container .team-social ul li a:hover {
      color: #FFF; }

.team-block-04 {
  position: relative;
  margin-bottom: 30px; }
  .team-block-04:hover .team-description {
    opacity: 1;
    visibility: visible; }
    .team-block-04:hover .team-description p, .team-block-04:hover .team-description span {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); }
  .team-block-04::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, black 0%, transparent 70%);
    transition: all ease-in 400ms; }
  .team-block-04 .team-description {
    height: 60%;
    background-color: transparent; }
    .team-block-04 .team-description > div {
      background-color: rgba(255, 255, 255, 0.75); }
  .team-block-04 .team-container {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 11; }
    .team-block-04 .team-container .team-details h3 {
      font-size: 32px;
      color: #FFF;
      margin: 0; }
    .team-block-04 .team-container .team-details p {
      color: #063176; }
    .team-block-04 .team-container .team-social ul li a {
      width: 48px;
      height: 48px;
      line-height: 50px;
      padding: 0;
      color: #EEE;
      border: 1px solid #EEE;
      border-radius: 50%;
      transition: all .4s ease-in-out; }
      .team-block-04 .team-container .team-social ul li a:hover {
        color: #063176;
        background-color: #FFF;
        border-color: #FFF; }

.team-block-05 {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden; }
  .team-block-05 .team-container {
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1; }
    .team-block-05 .team-container .team-details h3 {
      color: #FFF; }
    .team-block-05 .team-container .team-details p {
      color: #EEE; }
    .team-block-05 .team-container .content {
      padding: 10px 15px;
      font-size: 14px;
      color: #EEE;
      letter-spacing: .5px; }
    .team-block-05 .team-container .team-social {
      text-align: center; }
      .team-block-05 .team-container .team-social ul li a {
        width: 48px;
        height: 48px;
        line-height: 50px;
        padding: 0;
        background-color: #FFF;
        border-radius: 50%;
        transition: all .4s ease-in-out; }
        .team-block-05 .team-container .team-social ul li a:hover {
          color: #FFF;
          background-color: #063176; }
  .team-block-05:hover .team-container {
    top: 30%; }

.team-block-06 {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden; }
  .team-block-06 .team-container {
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1; }
    .team-block-06 .team-container .team-details h3 {
      color: #FFF; }
    .team-block-06 .team-container .team-details p {
      color: #EEE; }
  .team-block-06 .team-details h3 {
    color: #FFF; }
  .team-block-06 .team-details p {
    color: #EEE; }
  .team-block-06 .team-content p {
    color: #EEE; }
  .team-block-06 .team-link a {
    color: #FFF; }

.team-block-07 {
  margin-bottom: 15px;
  text-align: center; }
  .team-block-07:hover .team-img:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(3, 169, 243, 0.6);
    border-radius: 50%; }
  .team-block-07 .team-img {
    position: relative;
    transition: all .4s ease-in-out; }
    .team-block-07 .team-img img {
      border-radius: 50%; }

.flip-container {
  position: relative;
  width: 100%;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  -o-perspective: 1000;
  perspective: 1000; }
  .flip-container:hover .flip .front {
    z-index: 900;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg); }
  .flip-container:hover .flip .back {
    z-index: 1000;
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform: rotateX(0deg) rotateY(0deg); }

.flip {
  width: 100%;
  -moz-transition: all .7s ease 0s;
  -o-transition: all .7s ease 0s;
  -ms-transition: all .7s ease 0s;
  transition: all .7s ease 0s;
  position: relative;
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden; }
  .flip .front {
    position: relative;
    width: 100%;
    z-index: 900;
    text-align: center;
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform: rotateX(0deg) rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    transition: all .5s ease-in-out; }
  .flip .back {
    height: inherit;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1000;
    background-color: #999;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    transition: all .5s ease-in-out; }

/*************************************************
[ ACTION CSS START ] *****************************
**************************************************/
.action {
  background-color: #fafafa; }
  .action .layer-wrapper {
    padding-bottom: 45px; }

.action-content {
  padding: 20px 40px; }

/*************************************************
[ FUNFACTS CSS START ] ***************************
**************************************************/
.funfacts {
  width: 100%;
  background-color: #fafafa;
  overflow: hidden; }

.counter-block {
  display: inline-block;
  vertical-align: top;
  width: 48%;
  padding: 20px 0 40px 0; }
  .counter-block i {
    width: 80px;
    height: 80px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    font-size: 32px;
    color: #777;
    border: 5px solid #f1f1f1;
    border-radius: 50%; }
  .counter-block h4 {
    color: #777;
    font-size: 28px;
    font-weight: 600;
    margin: 10px 0; }
  .counter-block > span {
    font-size: 14px;
    color: #555; }

/*************************************************
[ TESTIMONIAL CSS START ] ************************
**************************************************/
.testimonial {
  padding: 20px 0;
  background-color: #063176; }
  .testimonial .owl-carousel .owl-item img {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%; }

.testimonial-block {
  padding: 10px;
  text-align: center; }

.testimonial-img span {
  font-size: 20px;
  color: #EEE;
  font-weight: 400;
  display: block;
  margin: 20px 0 0 0; }
.testimonial-img p {
  font-size: 14px;
  color: #EEE;
  margin: 10px 0 5px 0; }

.testimonial-detail {
  padding: 0 10px; }
  .testimonial-detail i {
    font-size: 24px;
    padding: 20px;
    color: #DDD;
    border: 3px solid #DDD;
    border-radius: 50%; }
  .testimonial-detail p {
    font-size: 16px;
    color: #EEE;
    font-weight: 300;
    letter-spacing: .5px;
    margin: 40px 0; }

/*************************************************
[ BLOG CSS START ] *******************************
**************************************************/
.blog-card {
  margin-bottom: 30px; }
  .blog-card img {
    width: 100%; }
  .blog-card > div {
    padding: 0 5px; }
    .blog-card > div > span {
      font-size: 12px;
      color: #AAA; }
  .blog-card h4 {
    font-size: 24px;
    margin: 15px 0 5px 0;
    font-weight: 500; }
    .blog-card h4 a {
      color: #777; }
  .blog-card p {
    color: #777; }
  .blog-card a {
    color: #063176; }
    .blog-card a:hover {
      color: #063176; }
    .blog-card a i, .blog-card a span {
      display: inline-block;
      vertical-align: middle; }
    .blog-card a span {
      color: #063176; }

.blog-meta {
  padding: 0 0 5px 0; }
  .blog-meta p {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px 0 0; }
    .blog-meta p span, .blog-meta p i {
      display: table-cell;
      vertical-align: middle; }
    .blog-meta p span {
      font-size: 14px;
      color: #AAA;
      padding: 0 0 0 5px; }
    .blog-meta p i {
      font-size: 14px;
      color: #AAA; }

.blog-recent {
  margin-bottom: 15px; }
  .blog-recent:nth-last-child(1) {
    margin-bottom: 0; }
  .blog-recent:hover h4 {
    color: #063176; }

.blog-recent-post h4 {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  margin: 0; }
.blog-recent-post p {
  font-size: 14px;
  color: #999; }

.blogp-title {
  font-size: 30px;
  color: #555;
  margin: 20px 0; }

.blogp-post {
  padding: 10px 0 0 0;
  font-size: 16px;
  color: #777; }

.blogp-footer {
  background-color: #EEE;
  border-top: 1px solid #DDD;
  margin: 30px 0 0 0;
  padding: 10px; }
  .blogp-footer ul {
    margin: 0;
    padding: 0; }
  .blogp-footer li {
    display: inline-block;
    list-style: none;
    margin: 5px; }
    .blogp-footer li a {
      display: block; }

.blogp-author {
  margin: 30px 0 0 0; }

.blog-author-details h4 a {
  font-family: "Dosis", "Poppins", sans-serif;
  font-size: 20px;
  color: #555; }
.blog-author-details a {
  font-size: 14px;
  color: #777; }
.blog-author-details p {
  padding: 10px 0 0 0;
  font-size: 14px;
  color: #333; }

/* [ COMMENT TABLE CSS START ] */
.comment {
  margin: 30px 0 0 0; }

.comment-list {
  margin: 0;
  padding: 0; }
  .comment-list > li {
    position: relative;
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #EEE; }
    .comment-list > li:nth-last-child(1) {
      margin: 0;
      padding: 0;
      border-bottom: 0; }

.comment-img img {
  width: 100%; }

.second-comment {
  margin: 20px 0 0 17%;
  padding: 20px 0 0 0;
  border-top: 1px solid #EEE; }

.comment-meta span {
  display: inline-block;
  font-size: 20px;
  font-family: "Dosis", "Poppins", sans-serif;
  color: #555;
  margin: 0 14px 0 0; }
  .comment-meta span:nth-last-child(1) {
    padding: 0 0 0 16px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #063176;
    border-left: 1px solid #DDD; }

.comment-post {
  padding: 5px 0 0 0;
  font-size: 13px;
  color: #555;
  line-height: 20px;
  letter-spacing: .5px; }

.comment-action {
  padding: 0;
  margin: 0; }
  .comment-action li {
    list-style: none;
    display: inline-block;
    margin: 5px; }
    .comment-action li a {
      font-size: 12px;
      color: #555;
      padding: 5px;
      cursor: pointer; }
      .comment-action li a:hover {
        color: #063176; }
    .comment-action li .fa {
      margin: 0 5px 0 0;
      color: #999; }

.comment-form {
  margin: 30px 0 20px 0; }
  .comment-form .mdl-textfield {
    width: 100%; }

/*************************************************
[ Form CSS START ] *******************************
**************************************************/
.form-input {
  width: 100%; }
  .form-input label {
    color: #777; }
  .form-input input, .form-input textarea {
    border-color: #555; }

.or-using {
  position: relative;
  width: 70%;
  height: 1px;
  margin: 30px auto;
  font-size: 0;
  background: #DDD;
  text-align: center; }
  .or-using::before {
    content: 'Or Using';
    position: absolute;
    top: -10px;
    left: 50%;
    display: inline-block;
    margin-left: -55px;
    padding: 0 30px;
    font-size: 12px;
    color: #777;
    background: #FFF;
    z-index: 1; }

.social-login {
  text-align: center; }
  .social-login a {
    display: inline-block;
    width: 49%;
    padding: 12px 0;
    font-size: 14px;
    color: #FFF; }
    .social-login a .fa {
      width: 20px;
      height: 20px;
      line-height: 20px;
      text-align: center;
      margin: 0 10px 0 0;
      background: #FFF;
      border-radius: 2px; }
    .social-login a .fa-facebook {
      color: #3B5999; }
    .social-login a .fa-google {
      color: #DC4A38; }

.social-facebook {
  background: #3B5999; }

.social-google {
  background: #DC4A38; }

.login-link {
  text-align: center;
  padding: 20px 20px 20px 20px;
  overflow: hidden;
  background: #f4f4f4;
  margin: 20px auto 0 auto; }
  .login-link span {
    display: block;
    text-align: center; }
  .login-link a {
    display: inline-block;
    font-size: 14px;
    color: #063176;
    letter-spacing: .5px;
    margin: 0 0 0 5px;
    cursor: pointer; }

/*************************************************
[ Contact CSS START ] ****************************
**************************************************/
.contact-form{
	width:100%;	
}
.contact {
  padding: 60px 10px;
  text-align: center; }
  .contact p{
	font-size:14px;!important  
  }
  .contact i {
    font-size: 58px;
    color: #DDD; }
  .contact span {
    display: block;
    font-size: 16px;
    padding: 30px 0 10px 0;
    color: #AAA; }
  .contact p {
    font-size: 20px;
    color: #777; }

.contact-block {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  margin-top: -150px;
  background-color: #FFF;
  position: relative;
  z-index: 9;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1); }
  .contact-block .block {
    text-align: center; }
    .contact-block .block i {
      display: inline-block;
      width: 100px;
      line-height: 100px;
      text-align: center;
      font-size: 48px;
      color: #063176;
      border: 2px solid #063176;
      border-radius: 50%;
      transition: all .2s ease-in-out; }
      .contact-block .block i:hover {
        color: #FFF;
        box-shadow: inset 0 0 400px 0 #063176; }
    .contact-block .block span {
      display: block;
      font-size: 24px;
      padding: 20px 0;
      font-family: "Dosis", "Poppins", sans-serif;
      color: #333; }
    .contact-block .block p {
      font-size: 16px;
      color: #777;
      margin: 0 0 5px 0; }

/* [ MAP CSS START ] */
#map-container {
  width: 100%;
  height: 500px; }
.map-navi{
	position: absolute;
    z-index: 93;
    margin-top: 400px;
    float: none;
    /* display: inherit; */
    width: 100%;
    text-align: center;	
}
/*************************************************
[ EVENT CSS START ] ******************************
**************************************************/
.event-list {
  position: relative;
  margin-bottom: 30px; }
  .event-list .event-img img {
    width: 100%; }
  .event-list .event-info {
    position: relative;
    display: table;
    width: 100%;
    table-layout: fixed; }
  .event-list .event-title, .event-list .event-date {
    display: table-cell;
    vertical-align: top; }
  .event-list .event-title {
    padding: 5px 5px 0 15px; }
    .event-list .event-title h3 {
      font-size: 20px;
      color: #555;
      margin: 0; }
      .event-list .event-title h3 a {
        display: block;
        position: relative;
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap; }
    .event-list .event-title p {
      font-size: 12px;
      color: #AAA;
      margin: 0; }
  .event-list .event-date {
    width: 70px;
    font-size: 18px;
    text-align: center; }
    .event-list .event-date span {
      display: block;
      padding: 10px 8px;
      text-transform: uppercase;
      font-family: "Dosis", "Poppins", sans-serif;
      color: #FFF;
      background: #063176; }
      .event-list .event-date span:nth-child(1) {
        font-size: 24px;
        color: #FFF;
        background: #555; }
  .event-list .event-action {
    padding: 10px 0 0 0; }
    .event-list .event-action a {
      display: inline-block;
      vertical-align: middle;
      width: 36px;
      height: 36px;
      line-height: 36px;
      font-size: 12px;
      text-align: center;
      color: #333;
      margin: 0 5px 0 0;
      border: 1px solid #DDD;
      border-radius: 50%; }
      .event-list .event-action a:hover {
        color: #FFF;
        background: #063176;
        border-color: #063176; }
      .event-list .event-action a.active {
        color: #FFF;
        background: #063176;
        border-color: #063176; }

.eventp-title {
  margin: 0 0 15px 0; }
  .eventp-title h2 {
    font-size: 28px;
    color: #333;
    margin: 0; }
  .eventp-title p {
    color: #777;
    margin: 0; }

.eventp-action {
  margin: 0 0 15px 0; }
  .eventp-action a {
    display: inline-block;
    vertical-align: middle;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    text-align: center;
    color: #333;
    margin: 0 5px 0 0;
    border: 1px solid #DDD;
    border-radius: 50%; }
    .eventp-action a:hover {
      color: #FFF;
      background: #063176;
      border-color: #063176; }
    .eventp-action a.active {
      color: #FFF;
      background: #063176;
      border-color: #063176; }

.eventp-social {
  text-align: right;
  padding: 15px; }

.eventp-amenities {
  padding: 15px 0 0 0;
  border-top: 1px solid #DDD; }
  .eventp-amenities .title {
    font-size: 20px;
    color: #777;
    padding: 0 0 5px 0; }

.amenities {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0;
  overflow: hidden; }
  .amenities li {
    display: inline-block;
    vertical-align: middle;
    color: rgba(35, 35, 35, 0.8);
    font-size: 15px;
    margin: 10px;
    padding: 5px 10px;
    border: 1px solid #DDD; }
    .amenities li.yes {
      font-weight: 500; }
    .amenities li.no {
      opacity: .3;
      text-decoration: line-through; }

.eventp-footer {
  margin: 15px 0 0 0;
  padding: 10px;
  font-family: "Dosis", "Poppins", sans-serif; }
  .eventp-footer p {
    font-size: 20px; }

.eventp-price {
  padding: 15px;
  margin: 0 0 30px 0;
  background: #063176; }
  .eventp-price .name {
    font-size: 20px;
    color: #FFF;
    margin: 0 0 5px 0; }
  .eventp-price .city, .eventp-price .date {
    font-size: 14px;
    color: #DDD;
    margin: 0; }
  .eventp-price .price {
    font-size: 48px;
    font-family: "Dosis", "Poppins", sans-serif;
    color: #FFF;
    text-align: right; }
  .eventp-price .purchase {
    text-align: right;
    margin: 15px 0 0 0;
    padding: 15px 0 0 0;
    border-top: 1px solid #999; }

#eventp-loc {
  width: 100%;
  height: 300px; }

.eventp-address {
  margin: 10px 0 0 0; }
  .eventp-address p {
    font-size: 16px;
    color: #555;
    margin: 0; }

.eventp-sidebar {
  border: 1px solid #fafafa; }

.eventp-gallery {
  padding: 0;
  margin: 0;
  overflow: hidden; }
  .eventp-gallery li {
    width: 33.33%;
    float: left;
    margin: 0;
    padding: 0 7.5px 15px 7.5px; }
  .eventp-gallery a {
    display: inline-block; }
    .eventp-gallery a img {
      width: 100%; }

/*************************************************
[ Footer CSS START ] *****************************
**************************************************/
#footer {
  width: 100%;
  color: #AAA;
  background: #222; }
  #footer .recent {
    padding: 0 0 10px 0; }
    #footer .recent .recent-img img {
      width: 100%; }
    #footer .recent .recent-post h4 {
      font-size: 16px;
      color: #EEE;
      margin-bottom: 0; }
    #footer .recent .recent-post p {
      font-size: 12px;
      color: #AAA; }

.footer-block {
  padding: 0 20px; }
  .footer-block:nth-child(2) {
    border-left: 1px solid #555;
    border-right: 1px solid #555; }

.footer-ttl {
  text-align: center;
  padding: 0 0 10px 20px; }
  .footer-ttl p {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #AAA;
    font-weight: 500;
    font-family: "Dosis", "Poppins", sans-serif;
    margin: 0;
    text-transform: uppercase;
    padding: 10px; }
    .footer-ttl p::before, .footer-ttl p:after {
      content: '';
      position: absolute;
      top: 50%;
      width: 40px;
      height: 2px;
      background: #CCC; }
    .footer-ttl p::before {
      right: 100%; }
    .footer-ttl p::after {
      left: 100%; }

.footer-container {
  padding: 20px 30px; }
  .footer-container a {
    display: block;
    font-size: 14px;
    color: #E0ECFF;
    margin: 10px 0; }

.footer-b .tbl-cell {
  padding: 0;
  vertical-align: top; }
  .footer-b .tbl-cell:nth-last-child(1) {
    padding: 0 0 0 10px; }
.footer-b li {
  list-style-type: none; }
.footer-b p {
  display: block; }
.footer-b a {
  position: relative;
  display: inline-block;
  margin: 5px 0;
  color: #CCC;
  padding: 0 0 0 10px;
  letter-spacing: .5px; }
  .footer-b a::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 3px;
    height: 3px;
    background: #AAA;
    border-radius: 50%; }
  .footer-b a:hover {
    color: #063176; }

.footer-a .tbl-row:nth-last-child(1) .tbl-cell {
  border-bottom: 0; }
.footer-a .tbl-cell {
  padding: 10px;
  border-bottom: 1px solid #999; }
  .footer-a .tbl-cell p {
    color: #AAA; }
  .footer-a .tbl-cell i {
    font-size: 28px;
    color: #AAA; }
    .footer-a .tbl-cell i.fa-phone {
      font-size: 25px; }
    .footer-a .tbl-cell i.fa-envelope {
      font-size: 22px; }
  .footer-a .tbl-cell p {
    margin: 0; }

.footer-subscribe input {
  color: #DDD;
  border-bottom: 1px solid #DDD; }
.footer-subscribe label {
  color: #DDD; }

.footer-subscribe-button {
  padding: 10px 0 0 0; }
  .footer-subscribe-button button:hover {
    color: #FFF;
    opacity: .8;
    background: #063176; }

.footer-social {
  padding: 20px 0 0 0; }

.footer-02 {
  text-align: center; }
  .footer-02 .logo {
    padding: 40px 0 40px 0;
    text-align: center; }
    .footer-02 .logo img {
      height: 35px; }
  .footer-02 .footer-menu {
    display: inline-block;
    border-top: 1px solid #292929;
    border-bottom: 1px solid #292929;
    padding: 20px 0 20px 0;
    margin-bottom: 30px; }
    .footer-02 .footer-menu li {
      margin: 10px 30px; }
  .footer-02 #copyright {
    padding: 0 0 40px 0;
    background-color: transparent; }
    .footer-02 #copyright .paragraph-medium {
      color: #999; }

.footer-menu {
  padding: 0;
  margin: 0;
  text-align: center; }
  .footer-menu li {
    display: block;
    list-style: none;
    margin: 10px; }
    .footer-menu li a {
      font-family: "Dosis", "Poppins", sans-serif;
      color: #AAA;
      font-size: 20px; }
      .footer-menu li a:hover {
        color: #063176; }

.footer-menu-inline li {
  display: inline-block;
  vertical-align: middle; }

.footer-03 .footer-menu-ttl {
  position: relative;
  font-size: 18px;
  color: #CCC;
  padding: 20px 0 10px 0;
  margin: 0 0 30px 0;
  font-family: "Dosis", "Poppins", sans-serif; }
  .footer-03 .footer-menu-ttl:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #555; }
.footer-03 .footer-menu {
  text-align: left; }
  .footer-03 .footer-menu li a {
    font-size: 16px; }
.footer-03 .logo {
  display: inline-block; }
  .footer-03 .logo img {
    height: 60px; }
.footer-03 .footer-top {
  padding: 40px 0;
  border-top: 1px solid #2a2a2a; }
.footer-03 .social-list li {
  margin-bottom: 0; }
.footer-03 .social-list a {
  width: auto;
  height: auto;
  line-height: normal; }
  .footer-03 .social-list a i, .footer-03 .social-list a span {
    display: table-cell;
    vertical-align: middle; }
  .footer-03 .social-list a i {
    padding-right: 10px; }

.footer-04 {
  margin: 50px 0 0 0; }
  .footer-04 .layer-stretch {
    overflow: visible; }
  .footer-04 #footer-map {
    width: 100%;
    height: 400px;
    margin-top: -75px;
    box-shadow: 0 0 10px 0 rgba(63, 63, 63, 0.8); }

/* [ FOOTER COPYRIGHT CSS START ] */
#copyright {
  width: 100%;
  padding: 10px 0;
  background: #063176; }
  #copyright .paragraph-medium {
    margin: 0;
    color: #FFF;
    text-align: center;
    text-transform: uppercase; }

.coming-soon {
  position: relative;
  width: 100%;
  min-height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../uploads/slider-1.jpg); }
  .coming-soon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); }
  .coming-soon .content {
    position: relative;
    z-index: 999; }
  .coming-soon .logo {
    position: relative;
    margin: 30px 0;
    display: inline-block; }
    .coming-soon .logo img {
      height: 60px; }
  .coming-soon .heading {
    text-align: center; }
    .coming-soon .heading h1 {
      font-size: 80px;
      font-weight: 600;
      text-transform: uppercase;
      color: #fec107;
      letter-spacing: 2px;
      font-weight: bold;
      display: block; }
  .coming-soon #timer {
    text-align: center; }
    .coming-soon #timer span {
      position: relative;
      display: inline-block;
      vertical-align: middle;
      width: 200px;
      height: 200px;
      line-height: 200px;
      font-size: 64px;
      font-weight: 600;
      color: #000;
      margin: 20px;
      background-color: rgba(254, 193, 7, 0.5);
      border-radius: 50%; }
      .coming-soon #timer span::after {
        content: "\e081";
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -100px 0 0 -100px;
        width: 100%;
        height: 100%;
        line-height: 200px;
        font-family: 'simple-line-icons';
        font-style: normal;
        font-weight: normal;
        font-size: 150px;
        text-decoration: inherit;
        color: #CCC;
        z-index: -11; }
      .coming-soon #timer span i {
        font-style: normal; }
  .coming-soon .social-list {
    padding: 30px 0 0 0;
    text-align: center; }
    .coming-soon .social-list li {
      width: auto;
      margin: 20px; }
      .coming-soon .social-list li a {
        font-size: 32px;
        color: #EEE; }

/*************************************************
[ MEDIA QUERIES START ] **************************
**************************************************/
/* FROM 1200px TO 1400px */
/* FROM 992px TO 1199PX */
/* FROM 0PX TO 992PX */
@media only screen and (max-width: 992px) {
  .slider-info {
    padding: 2% 5%; }
    .slider-info h1,
    .slider-info h2 {
      font-size: 34px; }

  .service-block {
    width: 50%; }

  .menu {
    position: fixed;
    top: 0;
    left: -130%;
    width: 100%;
    min-height: 100%;
    padding: 30px 60px 30px 20px;
    overflow-y: scroll;
    background: rgba(0, 0, 0, 0.99);
    z-index: 99999999;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; }
    .menu li {
      position: relative;
      display: block; }
      .menu li a {
        display: block;
        height: auto;
        font-size: 16px;
        text-align: left;
        color: #FFF;
        padding: 5px;
        text-transform: none; }
      .menu li li a {
        color: #333; }
    .menu .menu-megamenu-li {
      position: relative; }
    .menu .mobile-menu-close {
      display: block;
      position: absolute; }

  .menu-dropdown {
    width: 70%;
    left: inherit;
    right: -55px;
    z-index: 9999999; }
    .menu-dropdown li:hover .menu-dropdown {
      display: block; }
    .menu-dropdown .menu-dropdown {
      display: none;
      left: 0;
      right: inherit;
      width: 100%;
      position: relative;
      box-shadow: none;
      z-index: 9999999; }

  .menu-megamenu {
    width: 70%;
    left: inherit;
    right: -55px; }

  #menu-bar {
    display: block; }

  .footer-block:nth-child(2) {
    padding: 20px;
    margin: 0 0 30px 0;
    border: 0;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555; } }
/* FROM 768PX TO 979PX */
/* FROM 0PX TO 768PX */
@media only screen and (max-width: 768px) {
  .layer-ttl h4 {
    font-size: 32px; }

  .layer-sub-ttl {
    font-size: 16px; }

  .page-ttl-container h1 {
    font-size: 36px; }

  .slider-half .slider-info {
    width: 100%;
    top: 15%; }

  .slider-half li .slider-bnnr {
    top: auto;
    bottom: 0;
    width: 100%; }
    .slider-half li .slider-bnnr img {
      max-width: 250px;
      margin: 0 auto; }

  .service-card {
    border: 0;
    padding: 0 15px 30px 15px; }
    .service-card:nth-last-child(1) {
      padding: 0 15px 0 15px; }

  .about-container {
    padding: 25px 0 0 0; }

  .number-counter {
    padding: 20px 0; }

  .col-md-4 .contact {
    margin-bottom: 30px; }
  .col-md-4:nth-last-child(1) .contact {
    margin-bottom: 0; }

  .number-counter-01 .layer-wrapper {
    padding: 40px 0 15px 0; }
  .number-counter-01 .number-counter {
    padding: 0 0 30px 0; }

  .number-counter-02 .number-counter {
    padding: 0 0 30px 0; }
  .number-counter-02 .col-md-3:nth-last-child(1) .number-counter {
    padding: 0 0 0 0; } }
/* FROM 0PX TO 480PX */
@media only screen and (max-width: 480px) {
  .layer-ttl h4 {
    font-size: 28px; }

  .layer-sub-ttl {
    font-size: 14px; }

  .page-ttl-container h1 {
    font-size: 32px; }

  .hdr-logo a img {
    height: 50px; }

  .slider-info p {
    display: none; }

  .blog-card > div h4 {
    font-size: 20px; }
  .blog-card > div p {
    font-size: 12px; }

  .service-heading {
    font-size: 18px; }

  .service-body p {
    font-size: 14px; }

  .feature-block .block {
    padding: 50px 20px; }
    .feature-block .block i {
      font-size: 48px; }
    .feature-block .block span {
      font-size: 20px; }

  .testimonial-detail i {
    font-size: 16px;
    padding: 16px; }
  .testimonial-detail p {
    font-size: 12px; }

  .portfolio-img {
    padding: 0; }
    .portfolio-img figure figcaption .title {
      font-size: 16px; }

  .paragraph-medium {
    font-size: 12px; }

  .footer-block {
    padding: 20px 0; }
    .footer-block:nth-child(2) {
      padding: 20px 0; } }

/*# sourceMappingURL=style.css.map */
